/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0d0d0d;
  --surface: #1a1a2e;
  --surface-light: #22223a;
  --accent: #e94560;
  --accent-glow: rgba(233, 69, 96, 0.4);
  --gold: #f5c518;
  --text: #e0e0e0;
  --text-muted: #888;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(233, 69, 96, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(245, 197, 24, 0.03) 0%, transparent 50%);
}

/* === Navigation === */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(233, 69, 96, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 20px var(--accent-glow);
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

/* === Hero === */
.hero {
  text-align: center;
  padding: 5rem 2rem 3rem;
  position: relative;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #fff;
  text-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(233, 69, 96, 0.15);
  margin-bottom: 1.25rem;
}

.tagline {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* === Film Strip Decoration === */
.film-strip {
  height: 30px;
  max-width: 600px;
  margin: 1.5rem auto;
  background:
    repeating-linear-gradient(
      90deg,
      var(--surface-light) 0px,
      var(--surface-light) 20px,
      transparent 20px,
      transparent 28px
    );
  border-top: 3px solid var(--surface-light);
  border-bottom: 3px solid var(--surface-light);
  border-radius: 2px;
  opacity: 0.5;
}

/* === Waiting Section === */
.waiting {
  text-align: center;
  padding: 2rem 2rem 4rem;
}

.waiting h2 {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(245, 197, 24, 0.2);
}

.waiting > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* === Video Container === */
.video-container {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(233, 69, 96, 0.2),
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px var(--accent-glow);
}

.video-container iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
}

/* === Content (for sub-pages) === */
.content {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem;
  flex: 1;
}

.content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
  text-shadow: 0 0 30px var(--accent-glow);
}

.content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* === 404 Page === */
.not-found {
  text-align: center;
  padding: 6rem 2rem;
  flex: 1;
}

.not-found h1 {
  font-size: 8rem;
  font-weight: 900;
  color: var(--accent);
  text-shadow: 0 0 60px var(--accent-glow);
  line-height: 1;
  margin-bottom: 1rem;
}

.not-found p {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.not-found p strong {
  color: var(--text);
}

/* === Footer === */
footer {
  text-align: center;
  padding: 2rem;
  margin-top: auto;
  border-top: 1px solid rgba(233, 69, 96, 0.1);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* === Responsive === */
@media (max-width: 600px) {
  nav {
    padding: 1rem 1.25rem;
  }

  .hero {
    padding: 3rem 1.25rem 2rem;
  }

  .film-strip {
    display: none;
  }

  .video-container {
    border-radius: 8px;
  }
}

/* === Main flex === */
main {
  flex: 1;
}
