body {
  background-color: #031522;
  color: #d2e5f7;
  overflow-x: hidden;
}

.glass-card {
  background: rgba(26, 44, 56, 0.5);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(125, 255, 103, 0.3);
  background: rgba(26, 44, 56, 0.7);
}

.neon-glow-primary {
  box-shadow: 0 0 20px rgba(0, 231, 1, 0.3);
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
  will-change: transform;
}
.marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.reveal-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-anim.active {
  opacity: 1;
  transform: translateY(0);
}

canvas#shader-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

.btn-premium {
  background: #00e701;
  color: #013a00;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 231, 1, 0.2);
}

.btn-premium:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 231, 1, 0.4);
}
