/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Inter:wght@400;500&display=swap');

:root {
  --color-bg: #0D0A10;
  --color-primary: #FF6B00;
  --color-neon: #39FF14;
  --color-text: #F4F0FA;
  --color-text-muted: #9E92A8;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
}

.font-heading {
  font-family: 'Montserrat', sans-serif;
}

/* Hero background video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 10, 16, 0.55) 0%, rgba(13, 10, 16, 0.85) 100%);
  z-index: 1;
}

.info{
   margin-top: 40px;
   font-weight: bold;
   color: #fff;
   font-size: 18px;
}

/* Countdown digits */
.countdown-unit {
  background: rgba(26, 18, 34, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 12px;
}

/* Particles canvas */
#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  #particles-canvas {
    display: none;
  }
  .hero-video {
    display: none;
  }
  .hero-overlay {
    background: var(--color-bg);
  }
}
