/* --- 1. FONT REGISTRATION --- */
@font-face {
  font-family: 'Science Gothic';
  src: url('/fonts/science.ttf') format('truetype');
  font-weight: 100 900;
  font-stretch: 50% 200%;
  font-style: normal;
  font-display: swap;
}

/* --- 2. GLOBAL BASE STYLES --- */
:root {
  --brand-green: #41c014;
  --neon-glow: rgba(65, 192, 20, 0.5);
  --background: #020202;
}

body {
  background-color: var(--background);
  color: #ffffff;
  font-family: 'Science Gothic', sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}


/* Button  */
.btn-cyber {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  color: #ffffff !important;
  text-decoration: none;
  font-family: 'Science Gothic', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #0a0a0a;
  border: 1px solid rgba(65, 192, 20, 0.4);
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  z-index: 1;
  overflow: visible;
}

/* The Glow Effect */
.btn-cyber::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: #41c014;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: blur(15px);
}

/* Hover States */
.btn-cyber:hover {
  background: #41c014;
  color: #000000 !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 20px rgba(65, 192, 20, 0.4);
}

.btn-cyber:hover::before {
  opacity: 0.6;
}

/* The Little Corner Tag */
.btn-cyber::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background: #41c014;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

/* Arrow Animation */
.btn-cyber .arrow {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.btn-cyber:hover .arrow {
  transform: translateX(5px);
}

/* Button  */