/* ============================================================
   CREATOR HUD — PREMIUM GAMING PORTFOLIO STYLESHEET
   ============================================================
   Design System:
   - Cyberpunk / Futuristic aesthetic
   - Glassmorphism panels
   - Neon glow effects
   - Orbitron + Inter typography
   ============================================================ */

/* ────────────────────────────────────────
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ──────────────────────────────────────── */
:root {
  /* Colors — Dark Base */
  --bg-deep:     #050505;
  --bg-dark:     #080810;
  --bg-panel:    #0f0f1a;
  --bg-card:     #111124;

  /* Neon Accent — Theme: Blue (default) */
  --neon:        #00f0ff;
  --neon-dim:    #00c8d4;
  --neon-glow:   rgba(0, 240, 255, 0.35);
  --neon-glow-sm: rgba(0, 240, 255, 0.15);
  --neon-2:      #ff00c8;
  --neon-2-glow: rgba(255, 0, 200, 0.3);
  --neon-purple: #9d00ff;

  /* Typography */
  --font-display: 'Orbitron', 'Share Tech Mono', monospace;
  --font-mono:    'Share Tech Mono', monospace;
  --font-body:    'Inter', sans-serif;

  /* Glassmorphism */
  --glass-bg:     rgba(15, 15, 30, 0.65);
  --glass-border: rgba(0, 240, 255, 0.18);
  --glass-blur:   12px;

  /* Spacing */
  --section-pad:  clamp(48px, 6vw, 90px);
  --container:    1200px;
  --gap:          22px;

  /* Timing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Nav */
  --nav-h: 70px;
}

/* Theme Variants */
[data-theme="pink"] {
  --neon:        #ff00c8;
  --neon-dim:    #cc00a0;
  --neon-glow:   rgba(255, 0, 200, 0.35);
  --neon-glow-sm: rgba(255, 0, 200, 0.15);
  --neon-2:      #00f0ff;
  --neon-2-glow: rgba(0, 240, 255, 0.3);
  --glass-border: rgba(255, 0, 200, 0.18);
}

[data-theme="red"] {
  --neon:        #ff2244;
  --neon-dim:    #cc1133;
  --neon-glow:   rgba(255, 34, 68, 0.35);
  --neon-glow-sm: rgba(255, 34, 68, 0.15);
  --neon-2:      #ff9900;
  --neon-2-glow: rgba(255, 153, 0, 0.3);
  --glass-border: rgba(255, 34, 68, 0.18);
}

[data-theme="green"] {
  --neon:        #00ff88;
  --neon-dim:    #00cc66;
  --neon-glow:   rgba(0, 255, 136, 0.35);
  --neon-glow-sm: rgba(0, 255, 136, 0.15);
  --neon-2:      #00e5ff;
  --neon-2-glow: rgba(0, 229, 255, 0.3);
  --glass-border: rgba(0, 255, 136, 0.18);
}

[data-theme="orange"] {
  --neon:        #ff8c00;
  --neon-dim:    #cc6e00;
  --neon-glow:   rgba(255, 140, 0, 0.35);
  --neon-glow-sm: rgba(255, 140, 0, 0.15);
  --neon-2:      #ff2244;
  --neon-2-glow: rgba(255, 34, 68, 0.3);
  --glass-border: rgba(255, 140, 0, 0.18);
}

/* ────────────────────────────────────────
   RESET & BASE
   ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: #e0e0f0;
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none; /* custom cursor */
}

@media (hover: none) {
  body { cursor: auto; }
  #cursor-glow { display: none; }
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ────────────────────────────────────────
   SCROLLBAR
   ──────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--neon); border-radius: 2px; }

/* ────────────────────────────────────────
   CUSTOM CURSOR
   ──────────────────────────────────────── */
#cursor-glow {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
}

#cursor-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--neon);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.3s;
  box-shadow: 0 0 8px var(--neon), 0 0 20px var(--neon-glow);
}

#cursor-ring {
  position: absolute;
  width: 28px; height: 28px;
  border: 1.5px solid var(--neon);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-spring), height 0.3s var(--ease-spring),
              border-color 0.3s, opacity 0.3s;
  opacity: 0.6;
}

body.cursor-hover #cursor-ring {
  width: 44px; height: 44px;
  border-color: var(--neon-2);
  opacity: 1;
}

/* ────────────────────────────────────────
   LOADING SCREEN
   ──────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  position: relative;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  animation: loaderPulse 2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { text-shadow: 0 0 20px var(--neon), 0 0 60px var(--neon-glow); }
  50% { text-shadow: 0 0 40px var(--neon), 0 0 100px var(--neon-glow), 0 0 140px var(--neon-glow); }
}

.loader-brackets { color: var(--neon); }
.loader-name { color: #fff; margin: 0 12px; }

.loader-tagline {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--neon);
  margin-bottom: 40px;
  opacity: 0.7;
}

.loader-bar-wrap {
  width: 300px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin: 0 auto 12px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--neon), var(--neon-2));
  border-radius: 2px;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--neon-glow);
}

.loader-percent {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--neon);
  letter-spacing: 0.2em;
}

.loader-scanlines {
  position: absolute;
  inset: -100px;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 240, 255, 0.015) 2px,
    rgba(0, 240, 255, 0.015) 4px
  );
  pointer-events: none;
}

/* ────────────────────────────────────────
   BACKGROUND CANVAS / VIDEO
   ──────────────────────────────────────── */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

#bg-video-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

#bg-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

/* ────────────────────────────────────────
   NAVIGATION
   ──────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.08);
  transition: background 0.3s, border-color 0.3s;
}

#nav.scrolled {
  background: rgba(5, 5, 10, 0.92);
  border-bottom-color: var(--glass-border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.nav-brand-brackets { color: var(--neon); }
.nav-brand-name { color: #fff; }

.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--neon);
  transition: width 0.3s var(--ease-out-expo);
  box-shadow: 0 0 8px var(--neon-glow);
}

.nav-link:hover, .nav-link.active {
  color: var(--neon);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #ff4444;
  letter-spacing: 0.15em;
}

.status-dot {
  width: 6px; height: 6px;
  background: #ff4444;
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255, 68, 68, 0.6);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ────────────────────────────────────────
   SECTIONS — LAYOUT
   ──────────────────────────────────────── */
.section {
  position: relative;
  z-index: 1;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--neon);
  margin-bottom: 12px;
  opacity: 0.8;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: clamp(28px, 4vw, 52px);
}

.text-neon {
  color: var(--neon);
  text-shadow: 0 0 30px var(--neon-glow), 0 0 60px var(--neon-glow);
}

/* Glassmorphism Panel utility */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

/* ────────────────────────────────────────
   HERO SECTION
   ──────────────────────────────────────── */
.section--hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-hud {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--nav-h) clamp(20px, 5vw, 60px) 0;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
  gap: 40px;
  height: 100%;
}

/* HUD Side Panels */
.hud-panel {
  padding: 20px 16px;
  border-radius: 8px;
  background: rgba(10, 10, 25, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.hud-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--neon), transparent);
}

.hud-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--neon);
  margin-bottom: 16px;
  opacity: 0.7;
}

.hud-stat {
  margin-bottom: 14px;
}

.hud-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neon);
  text-shadow: 0 0 20px var(--neon-glow);
  line-height: 1;
  margin-bottom: 2px;
}

.hud-stat-label {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
}

/* Center */
.hud-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: heroEnter 1s var(--ease-out-expo) 0.5s both;
}

@keyframes heroEnter {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--neon);
  opacity: 0.7;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
  text-shadow:
    0 0 30px rgba(255,255,255,0.3),
    0 0 60px var(--neon-glow),
    0 0 100px var(--neon-glow);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  letter-spacing: 0.25em;
  color: var(--neon-2);
  text-transform: uppercase;
  text-shadow: 0 0 20px var(--neon-2-glow);
}

/* CTA Buttons */
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: 4px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  overflow: hidden;
}

.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: var(--neon);
  color: var(--bg-deep);
  box-shadow: 0 0 20px var(--neon-glow), 0 8px 30px var(--neon-glow);
}

.btn-primary:hover {
  box-shadow: 0 0 40px var(--neon-glow), 0 12px 40px var(--neon-glow);
}

.btn-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  animation: btnSpin 3s linear infinite;
}

@keyframes btnSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.btn-primary:hover .btn-glow { opacity: 1; }

.btn-secondary {
  background: transparent;
  color: var(--neon);
  border: 1px solid var(--neon);
  box-shadow: 0 0 12px var(--neon-glow-sm), inset 0 0 12px var(--neon-glow-sm);
}

.btn-secondary:hover {
  background: var(--neon-glow-sm);
  box-shadow: 0 0 30px var(--neon-glow), inset 0 0 20px var(--neon-glow-sm);
}

/* Right HUD Social */
.hud-panel.hud-right::before {
  left: auto; right: 0;
}

.hud-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
  color: rgba(255,255,255,0.6);
}

.hud-social-link:last-child { border-bottom: none; }
.hud-social-link:hover { color: var(--neon); padding-left: 6px; }

.hud-social-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.hud-social-icon svg { width: 100%; height: 100%; }

.hud-social-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  flex: 1;
}

.hud-social-stat {
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--neon);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.3);
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--neon), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ────────────────────────────────────────
   STATS SECTION
   ──────────────────────────────────────── */
.section--stats {
  padding: var(--section-pad) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.stat-card {
  position: relative;
  padding: 32px 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon);
  box-shadow: 0 20px 60px var(--neon-glow-sm), 0 0 0 1px var(--neon-glow-sm);
}

.stat-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, var(--neon-glow-sm) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.stat-card:hover .stat-card-glow { opacity: 1; }

.stat-icon {
  width: 32px; height: 32px;
  margin: 0 auto 16px;
  color: var(--neon);
  opacity: 0.7;
}

.stat-icon svg { width: 100%; height: 100%; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--neon);
  text-shadow: 0 0 30px var(--neon-glow);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.stat-bar {
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon), var(--neon-2));
  border-radius: 2px;
  box-shadow: 0 0 8px var(--neon-glow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease-out-expo) 0.3s;
}

.stat-card.animated .stat-bar-fill {
  transform: scaleX(1);
}

/* ────────────────────────────────────────
   CONTENT SECTION — Video Grid
   ──────────────────────────────────────── */
.section--content {
  padding: var(--section-pad) 0;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

/* Video Card */
.video-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s, border-color 0.3s;
  transform-style: preserve-3d;
  perspective: 800px;
}

.video-card:hover {
  transform: translateY(-12px) rotateX(3deg);
  border-color: var(--neon);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--neon-glow-sm),
    0 0 40px var(--neon-glow-sm);
}

.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.video-card:hover .video-thumb { transform: scale(1.08); }

.video-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.video-card:hover .video-play-overlay { opacity: 1; }

.video-play-btn {
  width: 52px; height: 52px;
  background: var(--neon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px var(--neon-glow);
  transform: scale(0.8);
  transition: transform 0.3s var(--ease-spring);
}

.video-card:hover .video-play-btn { transform: scale(1); }
.video-play-btn svg { width: 20px; height: 20px; color: var(--bg-deep); fill: currentColor; margin-left: 3px; }

/* Card glow border on hover */
.video-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--neon), var(--neon-2));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
}

.video-card:hover::after { opacity: 0.5; }

.video-meta {
  padding: 16px;
  position: relative;
}

.video-platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 100px;
}

.video-platform.yt { color: #ff4444; background: rgba(255, 68, 68, 0.1); border: 1px solid rgba(255, 68, 68, 0.2); }
.video-platform.tw { color: #9146ff; background: rgba(145, 70, 255, 0.1); border: 1px solid rgba(145, 70, 255, 0.2); }
.video-platform.ig { color: #ff66a8; background: rgba(255, 102, 168, 0.1); border: 1px solid rgba(255, 102, 168, 0.2); }

.video-platform svg { width: 10px; height: 10px; }

.video-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 8px;
}

.video-views {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.15em;
}

/* ────────────────────────────────────────
   ABOUT SECTION
   ──────────────────────────────────────── */
.section--about {
  padding: var(--section-pad) 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
}

/* Avatar */
.avatar-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-glow {
  position: absolute;
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--neon-glow) 0%, transparent 70%);
  border-radius: 50%;
  animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

.avatar-rings {
  position: absolute;
  inset: -20px;
}

.avatar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--neon);
  opacity: 0.25;
  animation: ringRotate 8s linear infinite;
}

.avatar-ring:nth-child(2) {
  inset: 15px;
  border-color: var(--neon-2);
  animation-duration: 12s;
  animation-direction: reverse;
}

.avatar-ring:nth-child(3) {
  inset: -8px;
  opacity: 0.1;
  animation-duration: 20s;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.avatar-img {
  width: 180px; height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--neon);
  box-shadow: 0 0 30px var(--neon-glow), 0 0 80px var(--neon-glow-sm);
  position: relative;
  z-index: 1;
}

.avatar-hud-label {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neon);
  color: var(--bg-deep);
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  padding: 3px 12px;
  border-radius: 100px;
  font-weight: 700;
  white-space: nowrap;
  z-index: 2;
}

/* About Content */
.about-content {
  padding: 48px;
}

.about-bio {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--neon);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 6px 14px;
  background: var(--neon-glow-sm);
  transition: all 0.3s;
}

.tag:hover {
  background: var(--neon-glow);
  border-color: var(--neon);
}

.about-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: 1px solid;
  transition: all 0.3s var(--ease-spring);
}

.social-btn svg { width: 16px; height: 16px; }

.social-btn:hover { transform: translateY(-3px); }

.social-yt { color: #ff4444; border-color: rgba(255,68,68,0.3); background: rgba(255,68,68,0.07); }
.social-yt:hover { background: rgba(255,68,68,0.15); box-shadow: 0 0 20px rgba(255,68,68,0.3); }

.social-tw { color: #9146ff; border-color: rgba(145,70,255,0.3); background: rgba(145,70,255,0.07); }
.social-tw:hover { background: rgba(145,70,255,0.15); box-shadow: 0 0 20px rgba(145,70,255,0.3); }

.social-ig { color: #ff66a8; border-color: rgba(255,102,168,0.3); background: rgba(255,102,168,0.07); }
.social-ig:hover { background: rgba(255,102,168,0.15); box-shadow: 0 0 20px rgba(255,102,168,0.3); }

.social-dc { color: #5865f2; border-color: rgba(88,101,242,0.3); background: rgba(88,101,242,0.07); }
.social-dc:hover { background: rgba(88,101,242,0.15); box-shadow: 0 0 20px rgba(88,101,242,0.3); }

.social-x { color: #9db4ff; border-color: rgba(157,180,255,0.35); background: rgba(86,112,195,0.12); }
.social-x:hover { background: rgba(86,112,195,0.22); box-shadow: 0 0 20px rgba(157,180,255,0.3); }

.social-tt { color: #ff6fb4; border-color: rgba(255,111,180,0.35); background: rgba(255,111,180,0.1); }
.social-tt:hover { background: rgba(255,111,180,0.2); box-shadow: 0 0 20px rgba(255,111,180,0.3); }

/* ────────────────────────────────────────
   HIGHLIGHT SECTION
   ──────────────────────────────────────── */
.section--highlight {
  padding: var(--section-pad) 0;
}

.highlight-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.highlight-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 12px;
}

.highlight-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.highlight-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hl-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hl-stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--neon);
  text-shadow: 0 0 20px var(--neon-glow);
  line-height: 1;
}

.hl-stat-label {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.35);
}

.highlight-player {
  position: relative;
  border-radius: 12px;
  overflow: visible;
  padding: 4px;
  box-shadow:
    0 0 0 1px var(--glass-border),
    0 30px 80px rgba(0,0,0,0.5),
    0 0 60px var(--neon-glow-sm);
}

.highlight-player-inner {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 9px;
}

.highlight-player-inner iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}

.highlight-player-label {
  position: absolute;
  bottom: -28px;
  right: 0;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: var(--neon);
  opacity: 0.5;
}

.highlight-cta {
  display: inline-flex;
}

/* ────────────────────────────────────────
   SCHEDULE SECTION
   ──────────────────────────────────────── */
.section--schedule {
  padding: var(--section-pad) 0;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.schedule-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 20px 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring), border-color 0.3s, box-shadow 0.3s;
  cursor: default;
  text-align: center;
}

.schedule-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--neon);
  opacity: 0.4;
  transition: opacity 0.3s;
}

.schedule-card--live::before {
  opacity: 1;
  animation: statusPulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 12px var(--neon-glow);
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.schedule-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon);
  box-shadow: 0 16px 50px var(--neon-glow-sm);
}

.schedule-day {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--neon);
  text-shadow: 0 0 20px var(--neon-glow);
  letter-spacing: 0.1em;
}

.schedule-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.schedule-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
}

.schedule-time {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
}

.schedule-status {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-pip {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status--live   { color: #ff4444; }
.status--live .status-pip   { background: #ff4444; box-shadow: 0 0 8px rgba(255,68,68,0.8); animation: blink 1.2s infinite; }
.status--upcoming { color: rgba(255,255,255,0.35); }
.status--upcoming .status-pip { background: rgba(255,255,255,0.25); }
.status--offline  { color: rgba(255,255,255,0.2); }
.status--offline .status-pip  { background: rgba(255,255,255,0.1); }

/* ────────────────────────────────────────
   SETUP / GEAR SECTION
   ──────────────────────────────────────── */
.section--setup {
  padding: var(--section-pad) 0;
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.setup-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 10px;
  transition: transform 0.3s var(--ease-spring), border-color 0.3s, box-shadow 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.setup-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--neon);
  opacity: 0.4;
  transition: opacity 0.3s;
}

.setup-card:hover {
  transform: translateX(6px);
  border-color: var(--neon);
  box-shadow: 0 8px 40px var(--neon-glow-sm);
}
.setup-card:hover::before { opacity: 1; }

.setup-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 44px;
  text-align: center;
}

.setup-info {
  flex: 1;
  min-width: 0;
}

.setup-category {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  color: var(--neon);
  margin-bottom: 4px;
  opacity: 0.7;
}

.setup-name {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.setup-link {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  color: var(--neon);
  opacity: 0.5;
  transition: opacity 0.3s, border-color 0.3s;
}

.setup-link:hover { opacity: 1; border-color: var(--neon); }
.setup-link svg { width: 14px; height: 14px; }
.setup-link-placeholder { width: 32px; }

/* ────────────────────────────────────────
   COLLABS SECTION
   ──────────────────────────────────────── */
.section--collabs {
  padding: var(--section-pad) 0 0;
  position: relative;
}

.collab-track-wrap {
  position: relative;
  /* break out of container to be full-width */
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  overflow: hidden;
  /* the band itself */
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(0, 240, 255, 0.06) 20%,
    rgba(255, 0, 200, 0.05) 50%,
    rgba(0, 240, 255, 0.06) 80%,
    transparent 100%
  );
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 28px 0;
  margin-bottom: 0;
  backdrop-filter: blur(6px);
}

/* Left + right fade so cards dissolve into bg */
.collab-track-wrap::before,
.collab-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.collab-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-deep) 0%, transparent 100%);
}

.collab-track-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-deep) 0%, transparent 100%);
}

.collab-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: trackScroll 22s linear infinite;
  position: relative;
  z-index: 1;
}

@keyframes trackScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.collab-track:hover { animation-play-state: paused; }

.collab-track-wrap--static {
  left: auto;
  right: auto;
  margin-left: auto;
  margin-right: auto;
  width: min(1100px, calc(100% - 40px));
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  background: rgba(10, 10, 28, 0.35);
  padding: 28px;
}

.collab-track-wrap--static::before,
.collab-track-wrap--static::after {
  display: none;
}

.collab-track--static {
  width: 100%;
  animation: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.collab-track--static:hover {
  animation-play-state: running;
}

.collab-card {
  flex-shrink: 0;
  width: 220px;
  padding: 32px 24px;
  background: rgba(10, 10, 28, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: all 0.4s var(--ease-spring);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.collab-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.collab-card:hover::before { opacity: 1; }

.collab-card:hover {
  border-color: var(--neon);
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 24px 60px var(--neon-glow-sm), 0 0 0 1px var(--neon-glow-sm);
}

.collab-logo {
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,240,255,0.08), rgba(255,0,200,0.08));
  border: 1px solid var(--glass-border);
  font-size: 2rem;
  transition: all 0.3s;
}

.collab-card:hover .collab-logo {
  border-color: var(--neon);
  box-shadow: 0 0 20px var(--neon-glow);
}

.collab-name {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

/* ────────────────────────────────────────
   COMMUNITY SECTION
   ──────────────────────────────────────── */
.section--community {
  padding: var(--section-pad) 0 calc(var(--section-pad) * 0.6);
  text-align: center;
}

.community-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 52px;
  letter-spacing: 0.05em;
}

.community-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.comm-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 36px;
  border-radius: 10px;
  border: 1px solid;
  background: transparent;
  min-width: 200px;
  transition: all 0.4s var(--ease-spring);
  overflow: hidden;
}

.comm-btn svg { width: 28px; height: 28px; flex-shrink: 0; }

.comm-btn-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: inherit;
}

.comm-btn:hover .comm-btn-glow { opacity: 1; }
.comm-btn:hover { transform: translateY(-6px); }

.comm-btn-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.comm-btn-sub {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  opacity: 0.6;
  margin-top: 2px;
}

.comm-yt {
  color: #fff;
  background: linear-gradient(135deg, #cc0000, #ff2222);
  border-color: #ff4444;
  box-shadow: 0 4px 24px rgba(255,34,34,0.35);
}
.comm-yt .comm-btn-glow { background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.18) 0%, transparent 70%); }
.comm-yt:hover { box-shadow: 0 8px 40px rgba(255,34,34,0.55), 0 0 0 1px #ff4444; filter: brightness(1.12); }

.comm-tw {
  color: #fff;
  background: linear-gradient(135deg, #6b2fc2, #9146ff);
  border-color: #9146ff;
  box-shadow: 0 4px 24px rgba(145,70,255,0.35);
}
.comm-tw .comm-btn-glow { background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.18) 0%, transparent 70%); }
.comm-tw:hover { box-shadow: 0 8px 40px rgba(145,70,255,0.55), 0 0 0 1px #9146ff; filter: brightness(1.12); }

.comm-dc {
  color: #fff;
  background: linear-gradient(135deg, #3b45c8, #5865f2);
  border-color: #5865f2;
  box-shadow: 0 4px 24px rgba(88,101,242,0.35);
}
.comm-dc .comm-btn-glow { background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.18) 0%, transparent 70%); }
.comm-dc:hover { box-shadow: 0 8px 40px rgba(88,101,242,0.55), 0 0 0 1px #5865f2; filter: brightness(1.12); }

.comm-ig {
  color: #fff;
  background: linear-gradient(135deg, #c13584, #e1306c, #fd1d1d, #f77737);
  border-color: #e1306c;
  box-shadow: 0 4px 24px rgba(225,48,108,0.35);
}
.comm-ig .comm-btn-glow { background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.18) 0%, transparent 70%); }
.comm-ig:hover { box-shadow: 0 8px 40px rgba(225,48,108,0.55), 0 0 0 1px #e1306c; filter: brightness(1.12); }

.comm-x {
  color: #fff;
  background: linear-gradient(135deg, #2a314f 0%, #394a7a 50%, #5467a8 100%);
  border-color: #6f87d7;
  box-shadow: 0 4px 24px rgba(111,135,215,0.4);
}
.comm-x .comm-btn-glow { background: radial-gradient(ellipse at 50% 0%, rgba(173,194,255,0.28) 0%, transparent 72%); }
.comm-x:hover { box-shadow: 0 8px 40px rgba(111,135,215,0.58), 0 0 0 1px #8ea6f3; filter: brightness(1.14); }

.comm-tt {
  color: #fff;
  background: linear-gradient(135deg, #0e2630 0%, #1e1f3f 45%, #4a1e49 100%);
  border-color: #ff4ea6;
  box-shadow: 0 4px 24px rgba(255,78,166,0.4);
}
.comm-tt .comm-btn-glow { background: radial-gradient(ellipse at 50% 0%, rgba(58,225,255,0.2) 0%, rgba(255,78,166,0.14) 46%, transparent 75%); }
.comm-tt:hover { box-shadow: 0 8px 40px rgba(255,78,166,0.55), 0 0 0 1px #ff82c0; filter: brightness(1.14); }

/* ── Community quick-stat strip (fills dead space) ── */
.community-stats-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 80px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(10,10,26,0.5);
  backdrop-filter: blur(12px);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.community-stat-item {
  flex: 1;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--glass-border);
  transition: background 0.3s;
}

.community-stat-item:last-child { border-right: none; }
.community-stat-item:hover { background: var(--neon-glow-sm); }

.cs-value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--neon);
  text-shadow: 0 0 20px var(--neon-glow);
  display: block;
  margin-bottom: 4px;
}

.cs-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

/* ────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────── */
.section--footer {
  position: relative;
  z-index: 1;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.footer-brackets { color: var(--neon); }
.footer-name { color: #fff; margin: 0 8px; }

.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.footer-template {
  color: rgba(255,255,255,0.15);
  font-size: 0.7rem;
}

/* ────────────────────────────────────────
   VIDEO MODAL
   ──────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  padding: 20px;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s var(--ease-spring);
}

.modal.open .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: -16px; right: -16px;
  width: 36px; height: 36px;
  background: var(--neon);
  color: var(--bg-deep);
  border-radius: 50%;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: all 0.3s;
  z-index: 1;
}

.modal-close:hover {
  transform: scale(1.2) rotate(90deg);
  background: var(--neon-2);
}

.modal-video-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 6px;
}

.modal-video-wrap iframe {
  width: 100%; height: 100%;
  border: none;
}

/* ────────────────────────────────────────
   THEME / BG SWITCHER PANEL
   ──────────────────────────────────────── */
#switcher-toggle {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  width: 44px; height: 44px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
}

#switcher-toggle svg { width: 18px; height: 18px; }
#switcher-toggle:hover {
  transform: translateY(-50%) scale(1.15) rotate(45deg);
  border-color: var(--neon);
  box-shadow: 0 0 20px var(--neon-glow);
}

#switcher-panel {
  position: fixed;
  right: -320px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 201;
  width: 290px;
  background: rgba(8, 8, 18, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px;
  transition: right 0.5s var(--ease-out-expo);
}

#switcher-panel.open {
  right: 70px;
}

.switcher-header {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--neon);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
}

.switcher-section {
  margin-bottom: 20px;
}

.switcher-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}

.theme-swatches {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.swatch {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
  cursor: pointer;
}

.swatch.active, .swatch:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--glass-border);
  color: #fff;
}

.swatch-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px currentColor;
}

.bg-presets {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bg-btn {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-align: left;
  transition: all 0.2s;
  cursor: pointer;
}

.bg-btn.active, .bg-btn:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--glass-border);
  color: var(--neon);
}

.music-btn {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid var(--glass-border);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.music-btn:hover, .music-btn.active {
  background: rgba(255,255,255,0.06);
  color: var(--neon);
  border-color: var(--neon);
}

.switcher-close {
  display: block;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  margin-top: 16px;
  cursor: pointer;
  transition: color 0.2s;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
}

.switcher-close:hover { color: var(--neon-2); }

/* ────────────────────────────────────────
   SCROLL REVEAL ANIMATION BASE
   ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ────────────────────────────────────────
   RESPONSIVE — TABLET
   ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-hud {
    grid-template-columns: 160px 1fr 160px;
    gap: 20px;
  }

  .hud-stat-value { font-size: 1.1rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: repeat(2, 1fr); }

  .about-layout {
    grid-template-columns: 220px 1fr;
    gap: 40px;
  }

  .highlight-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .highlight-meta { order: 2; }
  .highlight-player { order: 1; }
}

/* ────────────────────────────────────────
   RESPONSIVE — MOBILE
   ──────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-pad: 48px; }

  .nav-links { display: none; }

  .hero-hud {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-items: start;
    padding-top: calc(var(--nav-h) + 20px);
    gap: 16px;
  }

  .hud-left { order: 2; display: none; }
  .hud-center { order: 1; }
  .hud-right { order: 3; display: none; }

  .hero-title { font-size: clamp(2rem, 15vw, 3.5rem); }

  .hero-ctas { flex-direction: column; width: 100%; padding: 0 20px; }
  .btn { justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }

  .about-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-visual { order: -1; }
  .about-content { padding: 28px; }
  .about-socials { justify-content: center; }
  .about-tags { justify-content: center; }

  .community-btns { flex-direction: column; align-items: center; }
  .comm-btn { width: 100%; max-width: 300px; }

  .highlight-layout { grid-template-columns: 1fr; gap: 32px; }
  .highlight-stats { gap: 20px; }

  .schedule-grid { grid-template-columns: repeat(2, 1fr); }

  .setup-grid { grid-template-columns: 1fr; }

  #switcher-panel { display: none; }
  #switcher-toggle { display: none; }
}

/* ────────────────────────────────────────
   SCANLINES OVERLAY (subtle CRT effect)
   ──────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 240, 255, 0.007) 3px,
    rgba(0, 240, 255, 0.007) 4px
  );
  pointer-events: none;
  z-index: 9998;
}

/* ────────────────────────────────────────
   CORNER HUD DECORATIONS
   ──────────────────────────────────────── */
.section--hero::before,
.section--hero::after {
  content: '';
  position: absolute;
  width: 80px; height: 80px;
  z-index: 3;
  pointer-events: none;
}

.section--hero::before {
  top: calc(var(--nav-h) + 20px);
  left: 30px;
  border-top: 2px solid var(--neon);
  border-left: 2px solid var(--neon);
  opacity: 0.4;
}

.section--hero::after {
  bottom: 30px;
  right: 30px;
  border-bottom: 2px solid var(--neon);
  border-right: 2px solid var(--neon);
  opacity: 0.4;
}
