:root {
  --lime: #bef264;
  --dark: #050505;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--dark);
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

#hero-canvas.canvas-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.hero-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  width: 80vw;
  height: 60vh;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(190, 242, 100, 0.07) 0%, rgba(5, 5, 5, 0) 70%);
  filter: blur(120px);
  z-index: -2;
}

.glass-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
  border-color: var(--lime);
  transform: translateY(-8px);
}

.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  border: 0;
  border-radius: 99px;
  cursor: pointer;
  background-color: var(--lime);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(190, 242, 100, 0.4);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.text-gradient {
  background: linear-gradient(to right, #ffffff, #bef264);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee {
  display: flex;
  width: 200%;
  animation: scroll 40s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

#success-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.hidden-cv {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.reveal-cv {
  display: block !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

#gate-form input,
#gate-form select {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

#gate-form input:focus,
#gate-form select:focus {
  border-color: var(--lime);
}

.text-lime {
  color: var(--lime);
}
