:root {
  --bg-900: #04070f;
  --bg-800: #0b1222;
  --bg-700: #0f1a2e;
  --bg-600: #142039;
  --fg-100: #f7f7fb;
  --fg-200: #cfd7ff;
  --fg-300: #9fb1ff;
  --accent-1: #e14c45;
  --accent-2: #1ec39b;
  --accent-3: #6f7fff;
  --glass: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --shadow-1: 0 20px 70px rgba(0, 0, 0, 0.45);
  --shadow-2: 0 10px 30px rgba(0, 0, 0, 0.4);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Space Grotesk', 'Manrope', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 15% 20%, rgba(110, 145, 255, 0.12), transparent 35%),
              radial-gradient(circle at 80% 10%, rgba(225, 76, 69, 0.14), transparent 32%),
              linear-gradient(140deg, #05070f 0%, #0b1222 48%, #05070f 100%);
  color: var(--fg-100);
  min-height: 100vh;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }
body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 40;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.08;
  z-index: 1;
}

.page-shell { position: relative; z-index: 2; }

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  z-index: 30;
  transition: top 0.2s ease;
}

.skip-link:focus { top: 10px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

a:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; }

.container {
  width: min(1200px, 88vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  pointer-events: none;
}

.header-inner {
  width: min(1200px, 94vw);
  background: rgba(7, 11, 20, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-2);
  border-radius: var(--radius-lg);
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  pointer-events: auto;
  position: relative;
}

.brand {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand img { height: 38px; width: auto; filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.55)); }
.brand span { display: block; line-height: 1.12; }

nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 18px;
  font-size: 0.98rem;
}

nav a {
  padding: 10px 12px;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.25s ease, transform 0.25s ease;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  transition: width 0.3s ease;
}

nav a:hover,
nav a:focus-visible { color: var(--fg-300); background: rgba(255, 255, 255, 0.05); }
nav a:hover::after,
nav a:focus-visible::after { width: calc(100% - 24px); }

nav a[aria-current="page"] { color: var(--fg-300); }
nav a[aria-current="page"]::after { width: calc(100% - 24px); }

.mobile-nav { 
  position: fixed;
  inset: 0;
  display: none;
  pointer-events: none;
  z-index: 90;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(30, 195, 155, 0.08), transparent 40%), rgba(4, 7, 15, 0.75);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.mobile-nav__tray {
  position: absolute;
  inset: 0;
  margin-left: auto;
  width: min(420px, 100%);
  background: linear-gradient(160deg, rgba(12, 17, 30, 0.96), rgba(9, 13, 22, 0.9));
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -26px 0 48px rgba(0, 0, 0, 0.45);
  padding: 18px 18px 22px;
  display: grid;
  gap: 12px;
  transform: translateX(24px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-nav__close {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg-100);
  font-size: 1.25rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.mobile-nav__close:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-1px); }

.mobile-nav__eyebrow {
  margin: 4px 0 2px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--fg-200);
}

.mobile-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fg-100);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  transition: border 0.2s ease, transform 0.22s ease, background 0.22s ease;
}

.mobile-nav__link:hover,
.mobile-nav__link:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(-2px);
}

.mobile-nav__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--accent-1), var(--accent-2));
  box-shadow: 0 0 12px rgba(225, 76, 69, 0.55);
}

.mobile-nav__cta { display: grid; gap: 10px; }

.mobile-nav__meta {
  display: grid;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav__tag {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fg-200);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.mobile-nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
}

.mobile-nav__links a { color: var(--fg-100); opacity: 0.86; }
.mobile-nav__links a:hover { opacity: 1; }

.mobile-nav.is-open { display: grid; pointer-events: auto; }
.mobile-nav.is-open .mobile-nav__backdrop { opacity: 1; }
.mobile-nav.is-open .mobile-nav__tray { transform: translateX(0); opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  min-width: 40px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(30, 195, 155, 0.16), rgba(111, 127, 255, 0.18));
  color: var(--fg-100);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.btn:hover { transform: translateY(-2px) scale(1.01); box-shadow: var(--shadow-1); }
.btn:active { transform: translateY(0); }

.btn-ghost { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.08); }

.nav-toggle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--fg-100);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
}

main { padding-top: 120px; overflow: hidden; }

.section { position: relative; padding: min(13vh, 120px) 0; }
.section + .section { border-top: 1px solid rgba(255, 255, 255, 0.04); }

.section-heading { max-width: 760px; margin-bottom: 32px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fg-200);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

h1, h2, h3, h4, h5 { margin: 10px 0; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 4vw, 3.8rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 3vw, 2.7rem); letter-spacing: -0.02em; }
h3 { font-size: 1.4rem; }
p { color: rgba(255, 255, 255, 0.82); line-height: 1.6; }

.grid-2 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; align-items: center; }
.hero-grid { gap: 24px; min-height: 74vh; }
.hero-content { grid-column: span 7; position: relative; z-index: 2; }
.hero-aside { grid-column: span 5; position: relative; }

.hero-frame { position: absolute; inset: -80px -80px 0 -80px; z-index: 0; overflow: hidden; border-radius: 40px; opacity: 0.6; }
.hero-frame video, .hero-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.2) contrast(1.1) brightness(0.9); }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(30, 195, 155, 0.14), transparent 40%), radial-gradient(circle at 80% 10%, rgba(225, 76, 69, 0.2), transparent 32%), linear-gradient(120deg, rgba(4,7,15,0.92), rgba(4,7,15,0.68) 46%, rgba(4,7,15,0.92)); }

.hero-card, .glass-card {
  background: rgba(12, 17, 30, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

.hero-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 40%); opacity: 0.6; }
.hero-card { padding: 26px; display: grid; gap: 14px; }

.glow-dot { width: 12px; height: 12px; border-radius: 50%; background: radial-gradient(circle, #ffb199, var(--accent-1)); box-shadow: 0 0 18px rgba(225, 76, 69, 0.8); }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-top: 24px; }
.stat { padding: 14px 16px; border-radius: var(--radius-md); border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.03); display: grid; gap: 6px; box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32); transform-style: preserve-3d; transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.3s ease; will-change: transform; }
.stat:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.16); box-shadow: var(--shadow-1); }
.stat small { color: var(--fg-200); letter-spacing: 0.08em; text-transform: uppercase; }
.stat strong { font-size: 1.6rem; letter-spacing: -0.02em; }

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 12px 0; }
.badge { padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.04); font-size: 0.9rem; }

.pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 12px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.9rem; letter-spacing: 0.01em; color: var(--fg-200); }

.list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.list li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255, 255, 255, 0.8); }
.dot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent-2); margin-top: 8px; }

.split { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; align-items: start; }
.split-left { grid-column: span 6; }
.split-right { grid-column: span 6; }

.player-card iframe { border: none; width: 100%; height: 320px; border-radius: 16px; overflow: hidden; }
.player-card { padding: 16px; background: rgba(12, 17, 30, 0.82); border-radius: var(--radius-lg); border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: var(--shadow-1); position: relative; isolation: isolate; }
.player-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(30, 195, 155, 0.12), transparent 35%); opacity: 0.8; z-index: -1; }

.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 22px; }
.video-card { position: relative; border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.12); min-height: 190px; background: rgba(255, 255, 255, 0.03); box-shadow: var(--shadow-2); transform: translateZ(0); transition: transform 0.5s ease, box-shadow 0.4s ease, border-color 0.3s ease; }
.video-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.25) contrast(1.05); transition: transform 0.5s ease; }
.video-card .overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(4,7,15,0.9), rgba(12,17,30,0.45)); display: grid; align-content: space-between; padding: 18px; color: var(--fg-100); }
.video-card:hover { transform: translateY(-6px) scale(1.01); border-color: rgba(255, 255, 255, 0.2); box-shadow: var(--shadow-1); }
.video-card:hover img { transform: scale(1.08); }
.video-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; color: var(--fg-200); font-size: 0.9rem; }

.about-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; align-items: center; }
.about-text { grid-column: span 6; }
.about-visual { grid-column: span 6; display: grid; gap: 14px; }

.portrait-stack { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.portrait-main { grid-column: span 4; border-radius: var(--radius-lg); overflow: hidden; position: relative; border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: var(--shadow-1); }
.portrait-main img, .portrait-side img { width: 100%; height: 100%; object-fit: cover; display: block; }
.portrait-side { grid-column: span 2; border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.12); filter: saturate(1.1); }

.event-grid, .service-grid, .merch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.event-card, .service-card, .merch-card { border-radius: var(--radius-md); padding: 18px; background: rgba(12, 17, 30, 0.82); border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: var(--shadow-2); display: grid; gap: 12px; position: relative; overflow: hidden; transition: transform 0.45s ease, box-shadow 0.4s ease, border-color 0.3s ease; }
.event-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 14% 20%, rgba(225, 76, 69, 0.14), transparent 40%), radial-gradient(circle at 86% 80%, rgba(30, 195, 155, 0.14), transparent 36%); opacity: 0.7; z-index: 0; }
.event-card > *, .service-card > *, .merch-card > * { position: relative; z-index: 1; }
.event-card:hover, .service-card:hover, .merch-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-1); border-color: rgba(255, 255, 255, 0.22); }

.meta-row { display: flex; gap: 12px; flex-wrap: wrap; color: var(--fg-200); font-size: 0.95rem; }

.form-card { padding: 22px; border-radius: var(--radius-lg); background: rgba(12, 17, 30, 0.82); border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: var(--shadow-1); display: grid; gap: 12px; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
label { display: grid; gap: 6px; font-size: 0.95rem; color: var(--fg-200); }
input, textarea, select { width: 100%; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.04); color: var(--fg-100); padding: 12px 12px; font-family: inherit; font-size: 1rem; transition: border 0.2s ease, background 0.2s ease; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent-2); background: rgba(255, 255, 255, 0.06); }
textarea { resize: vertical; min-height: 120px; }

.contact-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; align-items: start; }
.contact-text { grid-column: span 5; }
.contact-form { grid-column: span 7; }

.social-row { display: flex; gap: 12px; margin-top: 10px; }
.social-btn { width: 44px; height: 44px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.1); display: inline-flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.05); transition: transform 0.25s ease, box-shadow 0.3s ease, border 0.3s ease; color: var(--fg-100); }
.social-btn:hover { transform: translateY(-3px) rotate(-2deg) scale(1.03); border-color: rgba(255, 255, 255, 0.2); box-shadow: var(--shadow-1); }

.timeline { display: grid; gap: 14px; }
.timeline-item { padding: 16px; border-radius: var(--radius-md); border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.03); box-shadow: var(--shadow-2); }

.legal-panel { padding: 18px; border-radius: var(--radius-lg); border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.04); box-shadow: var(--shadow-2); }
.legal-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; color: rgba(255, 255, 255, 0.82); }

footer { padding: 30px 0 60px; border-top: 1px solid rgba(255, 255, 255, 0.06); background: linear-gradient(180deg, rgba(4,7,15,0.6), rgba(4,7,15,0.9)); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; align-items: start; width: min(1200px, 88vw); margin: 0 auto; }
.footer-nav { display: grid; gap: 6px; }
.divider { height: 1px; background: rgba(255, 255, 255, 0.08); margin: 18px 0; }

.cookie { position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); width: min(520px, 94vw); padding: 16px; background: rgba(12, 17, 30, 0.92); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius-md); box-shadow: var(--shadow-1); display: flex; gap: 12px; align-items: center; justify-content: space-between; z-index: 25; }
.cookie p { margin: 0; font-size: 0.95rem; }

.hidden { display: none !important; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.tilt { will-change: transform; }

@media (max-width: 960px) {
  .header-inner {
    width: calc(100% - 18px);
    height: 64px;
    padding: 0 10px;
    gap: 8px;
  }
  .brand {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 8px;
  }
  .brand small {
    display: block;
    margin-top: 2px;
  }
  .brand img {
    height: 34px;
  }
  nav.desktop-nav { display: none; }
  .nav-toggle {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
    display: none;
  }
  .header-actions .btn { display: none; }
  .mobile-nav { display: none !important; pointer-events: none; }
  .mobile-nav.is-open { pointer-events: none; }
  .mobile-nav .brand small { display: block; }
  .grid-2, .split, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-content, .hero-aside, .split-left, .split-right, .about-text, .about-visual, .contact-text, .contact-form { grid-column: span 12; }
  .hero-frame { inset: -40px; }
}

@media (max-width: 600px) {
  h1 { font-size: 2.4rem; }
  .header-inner { gap: 10px; }
  .stats { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
  .section { padding: 70px 0; }
  main { padding-top: 110px; }
  .cookie { flex-direction: column; align-items: flex-start; }
  .player-card iframe { height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
