@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --bg-void: #020403;
  --bg-base: #060a08;
  --bg-surface: #0a110d;
  --bg-card: rgba(10, 18, 14, 0.72);
  --bg-card-hover: rgba(16, 30, 22, 0.88);
  --bg-glass: rgba(8, 14, 11, 0.8);
  --bg-glass-elevated: rgba(12, 22, 16, 0.88);

  --neon: #00ff66;
  --neon-glow: rgba(0, 255, 102, 0.38);
  --neon-soft: rgba(0, 255, 102, 0.08);
  --neon-hover: #1aff7c;
  --neon-border: rgba(0, 255, 102, 0.28);
  
  --gold: #ffd700;
  --gold-glow: rgba(255, 215, 0, 0.35);
  --gold-gradient: linear-gradient(135deg, #ffe57f 0%, #ffd700 50%, #cca01d 100%);
  --gold-soft: rgba(255, 215, 0, 0.1);
  --gold-border: rgba(255, 215, 0, 0.32);

  --text-primary: #ffffff;
  --text-secondary: #9eb5a8;
  --text-muted: #5e7568;
  
  --line-dim: rgba(255, 255, 255, 0.07);
  --line-light: rgba(255, 255, 255, 0.12);

  --danger: #ff4757;
  --danger-soft: rgba(255, 71, 87, 0.15);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-neon: 0 0 35px rgba(0, 255, 102, 0.22);
  --shadow-gold: 0 0 35px rgba(255, 215, 0, 0.22);
  --shadow-theater: 0 20px 70px rgba(0, 0, 0, 0.85);

  --font-display: 'Outfit', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-void);
  color: var(--text-primary);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  background-color: var(--bg-void);
  background-image: 
    radial-gradient(ellipse at 50% 0%, rgba(0, 255, 102, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 90% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 10% 85%, rgba(0, 255, 102, 0.05) 0%, transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  background-position: center, center, center, 0 0, 0 0;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, .brand-title {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  font-weight: 800;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 620px;
}

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

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Layout Container */
.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Bar */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(4, 7, 5, 0.82);
  backdrop-filter: blur(28px) saturate(190%);
  border-bottom: 1px solid var(--line-dim);
  height: 82px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-decoration: none;
}

.brand-logo-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0, 255, 102, 0.2) 0%, rgba(10, 24, 16, 0.9) 100%);
  border: 1px solid var(--neon-border);
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--neon);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.1;
}

.brand-title span {
  color: var(--neon);
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 6px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line-dim);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: #000;
  background: var(--neon);
  font-weight: 700;
  box-shadow: 0 0 16px var(--neon-glow);
}

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

.status-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: rgba(0, 255, 102, 0.07);
  border: 1px solid var(--neon-border);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--neon);
  letter-spacing: 0.08em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  animation: pulseNeon 2s infinite;
}

@keyframes pulseNeon {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 255, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 102, 0); }
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-main);
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm {
  padding: 7px 14px;
  font-size: 0.8rem;
}

.btn-md {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 0.98rem;
  border-radius: var(--radius-md);
}

.btn-neon {
  background: var(--neon);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.35);
}

.btn-neon:hover {
  background: var(--neon-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 255, 102, 0.55);
}

.btn-gold {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(255, 215, 0, 0.55);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--line-light);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* -------------------------------------------------------------
   Hero Section (Cinema Spotlight Billboard)
------------------------------------------------------------- */
.hero {
  padding: 60px 0 50px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.hero-pill svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.hero-title {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Spotlight Live Broadcast Card */
.spotlight-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--neon-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(0, 255, 102, 0.15);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.spotlight-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.9), 0 0 45px rgba(0, 255, 102, 0.25);
}

.spotlight-media {
  position: relative;
  height: 240px;
  background: linear-gradient(135deg, #091a12 0%, #030a06 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.spotlight-bg-art {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 75% 30%, rgba(0, 255, 102, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 25% 70%, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
  opacity: 0.8;
}

.spotlight-badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--neon-border);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--neon);
  font-weight: 700;
}

.spotlight-quality-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--gold);
  font-weight: 700;
}

.spotlight-play-btn {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--neon);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px var(--neon-glow);
  cursor: pointer;
  transition: all 0.25s ease;
}

.spotlight-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 50px var(--neon);
}

.spotlight-play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.spotlight-body {
  padding: 20px 22px;
  background: var(--bg-surface);
}

.spotlight-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.spotlight-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.spotlight-specs {
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: flex;
  gap: 16px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line-dim);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.spec-item svg {
  color: var(--neon);
}

/* Stats Strip */
.stats-ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line-dim);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.stat-value.neon { color: var(--neon); text-shadow: 0 0 15px var(--neon-glow); }
.stat-value.gold { color: var(--gold); }

.stat-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* -------------------------------------------------------------
   Theater-Mode Web Player Deck
------------------------------------------------------------- */
.section-wrap {
  padding: 40px 0 60px;
}

.player-console {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--neon-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-theater), 0 0 40px rgba(0, 255, 102, 0.1);
  position: relative;
}

.player-stage {
  position: relative;
  background: #000;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-element {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

/* Empty State / Welcome Screen */
.player-empty-state {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(12, 28, 18, 0.95) 0%, rgba(3, 8, 5, 0.98) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  z-index: 5;
}

.empty-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(0, 255, 102, 0.1);
  border: 1.5px solid var(--neon);
  box-shadow: 0 0 30px var(--neon-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.empty-icon svg {
  width: 34px;
  height: 34px;
  color: var(--neon);
}

.empty-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.empty-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 420px;
  line-height: 1.55;
  margin-bottom: 24px;
}

/* Video Controls HUD */
.player-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.controls-left, .controls-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ctrl-btn {
  color: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.2s;
}

.ctrl-btn:hover {
  background: var(--neon);
  color: #000;
  box-shadow: 0 0 16px var(--neon);
}

.ctrl-btn svg {
  width: 18px;
  height: 18px;
}

.volume-ctrl {
  display: flex;
  align-items: center;
  gap: 8px;
}

.volume-slider {
  -webkit-appearance: none;
  width: 75px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neon);
  cursor: pointer;
}

.player-stream-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--neon-border);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--neon);
}

/* Player Sidebar Drawer */
.player-sidebar {
  background: var(--bg-card);
  border-left: 1px solid var(--line-dim);
  display: flex;
  flex-direction: column;
  padding: 20px;
  backdrop-filter: blur(20px);
}

.player-tabs {
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}

.player-tab-btn {
  flex: 1;
  padding: 8px 10px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-secondary);
  border-radius: var(--radius-xs);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.player-tab-btn:hover {
  color: #fff;
}

.player-tab-btn.active {
  background: var(--neon);
  color: #000;
  box-shadow: 0 0 12px var(--neon-glow);
}

.player-tab-content {
  display: none;
  flex-direction: column;
}

.player-tab-content.active {
  display: flex;
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input, .form-select {
  width: 100%;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  transition: all 0.2s;
  outline: none;
}

.form-input:focus, .form-select:focus {
  border-color: var(--neon);
  box-shadow: 0 0 12px rgba(0, 255, 102, 0.2);
  background: rgba(0, 0, 0, 0.7);
}

.http-warning {
  padding: 8px 12px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  font-size: 0.74rem;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Channel Items */
.channel-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 4px;
}

.channel-list::-webkit-scrollbar {
  width: 4px;
}

.channel-list::-webkit-scrollbar-thumb {
  background: var(--neon-border);
  border-radius: 4px;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line-dim);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}

.channel-item:hover {
  border-color: var(--neon);
  background: rgba(0, 255, 102, 0.06);
  transform: translateX(4px);
}

.channel-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  color: var(--text-muted);
}

.channel-name {
  flex: 1;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.channel-cat {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* -------------------------------------------------------------
   Catalog / Media Directory
------------------------------------------------------------- */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.catalog-card {
  background: var(--bg-card);
  border: 1px solid var(--line-dim);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.catalog-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 255, 102, 0.15);
}

.catalog-thumb {
  height: 140px;
  background: linear-gradient(135deg, #091a11 0%, #030805 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.catalog-thumb-art {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(0, 255, 102, 0.18) 0%, transparent 65%);
}

.catalog-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 8px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold);
}

.catalog-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.catalog-cat-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--neon);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.catalog-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.catalog-btn {
  margin-top: auto;
  width: 100%;
}

/* -------------------------------------------------------------
   Pricing & VIP Memberships
------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--line-dim);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--neon-border);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), var(--shadow-neon);
}

.pricing-card.featured {
  border: 1.5px solid var(--gold);
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.05) 0%, rgba(10, 18, 14, 0.85) 100%);
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 4px 12px;
  background: var(--gold-gradient);
  color: #000;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
}

.plan-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.plan-currency {
  font-size: 1.3rem;
  color: var(--text-secondary);
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
}

.plan-period {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  flex: 1;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-secondary);
}

.plan-feature svg {
  width: 16px;
  height: 16px;
  color: var(--neon);
  flex-shrink: 0;
}

/* -------------------------------------------------------------
   Account Portal & Credentials Card
------------------------------------------------------------- */
.creds-card {
  background: var(--bg-card);
  border: 1px solid var(--neon-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(24px);
  margin-top: 24px;
}

.creds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.cred-box {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--line-dim);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.cred-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  display: block;
}

.cred-val-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cred-val {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--neon);
  font-weight: 600;
}

/* -------------------------------------------------------------
   Locked Administrative Security Vault
------------------------------------------------------------- */
.admin-lock-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
  padding: 40px 16px;
}

.security-vault-card {
  max-width: 480px;
  width: 100%;
  background: rgba(9, 14, 11, 0.95);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 42px 34px;
  text-align: center;
  box-shadow: 0 0 45px rgba(255, 215, 0, 0.12), inset 0 0 25px rgba(0, 255, 102, 0.04);
  backdrop-filter: blur(28px);
  position: relative;
  overflow: hidden;
}

.security-vault-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon) 0%, var(--gold) 50%, var(--neon) 100%);
}

.security-shield-glow {
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.08);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: 0 0 28px rgba(255, 215, 0, 0.25);
}

.security-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: rgba(255, 215, 0, 0.12);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  margin-bottom: 14px;
}

.security-title {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
}

.security-subtitle {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 26px;
}

.security-footer-note {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dim);
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.status-dot-dim {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 6px var(--neon);
}

/* Unlocked Admin Operations */
.admin-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dim);
  flex-wrap: wrap;
  gap: 16px;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.admin-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--line-dim);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--neon-soft);
  border: 1px solid var(--neon-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-stat-icon svg {
  width: 22px;
  height: 22px;
  color: var(--neon);
}

.admin-stat-icon.gold {
  background: var(--gold-soft);
  border-color: var(--gold-border);
}

.admin-stat-icon.gold svg {
  color: var(--gold);
}

.admin-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--line-dim);
  border-radius: var(--radius-md);
  overflow-x: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.85rem;
}

.admin-table th {
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--line-dim);
}

.admin-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-dim);
  color: var(--text-secondary);
}

.admin-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-family: var(--font-mono);
  font-weight: 600;
}

.badge-active { background: rgba(0, 255, 102, 0.15); color: var(--neon); border: 1px solid var(--neon-border); }
.badge-trial { background: rgba(255, 215, 0, 0.15); color: var(--gold); border: 1px solid var(--gold-border); }
.badge-suspended { background: var(--danger-soft); color: var(--danger); border: 1px solid rgba(255, 71, 87, 0.3); }

/* -------------------------------------------------------------
   Modals & Overlay Dialogs
------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  width: 100%;
  max-width: 480px;
  background: var(--bg-surface);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
  transform: translateY(20px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-dim);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-close {
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}

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

.modal-body {
  padding: 24px;
}

/* -------------------------------------------------------------
   Toasts & Notifications
------------------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(10, 20, 14, 0.94);
  border: 1px solid var(--neon-border);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.85rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 255, 102, 0.2);
  backdrop-filter: blur(16px);
  animation: slideInToast 0.3s ease;
}

.toast-gold {
  border-color: var(--gold-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.2);
}

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

/* -------------------------------------------------------------
   Footer
------------------------------------------------------------- */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--line-dim);
  background: rgba(2, 4, 3, 0.95);
  margin-top: 60px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--neon);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Views switcher */
.view-section {
  display: none;
}

.view-section.active {
  display: block;
}

/* -------------------------------------------------------------
   Device Compatibility Strip
------------------------------------------------------------- */
.device-strip-wrap {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--line-dim);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}

.device-strip-header {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}

.device-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.device-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-dim);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.25s ease;
}

.device-badge-item:hover {
  border-color: var(--neon);
  background: rgba(0, 255, 102, 0.08);
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.15);
  transform: translateY(-2px);
}

.device-badge-item.highlight {
  border-color: var(--gold-border);
  background: rgba(255, 215, 0, 0.08);
  color: var(--gold);
}

.device-badge-item svg {
  width: 17px;
  height: 17px;
  color: var(--neon);
}

.device-badge-item.highlight svg {
  color: var(--gold);
}

/* -------------------------------------------------------------
   Features Grid (Why Project Hydra)
------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--line-dim);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-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 ease;
}

.feature-card:hover {
  border-color: var(--neon-border);
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 255, 102, 0.12);
}

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

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--neon-soft);
  border: 1px solid var(--neon-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.15);
}

.feature-icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--neon);
}

.feature-icon-wrap.gold {
  background: var(--gold-soft);
  border-color: var(--gold-border);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.feature-icon-wrap.gold svg {
  color: var(--gold);
}

.feature-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* -------------------------------------------------------------
   Official Apps Showcase (Project-Hydra-TV)
------------------------------------------------------------- */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.app-card {
  background: var(--bg-card);
  border: 1px solid var(--line-dim);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

.app-card.featured {
  border: 1.5px solid var(--neon);
  box-shadow: 0 0 35px rgba(0, 255, 102, 0.15);
  background: linear-gradient(180deg, rgba(0, 255, 102, 0.04) 0%, rgba(10, 18, 14, 0.85) 100%);
}

.app-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 255, 102, 0.2);
}

.app-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 4px 12px;
  background: var(--neon);
  color: #000;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
}

.app-badge.gold {
  background: var(--gold-gradient);
}

.app-header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.app-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-icon-box svg {
  width: 26px;
  height: 26px;
  color: var(--neon);
}

.app-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.app-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: 4px;
}

.app-features-list {
  list-style: none;
  margin: 16px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.app-feature-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-secondary);
}

.app-feature-row svg {
  color: var(--neon);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* -------------------------------------------------------------
   How It Works Steps
------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--line-dim);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--neon-border);
  transform: translateY(-4px);
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  margin-bottom: 12px;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* -------------------------------------------------------------
   FAQ Accordion
------------------------------------------------------------- */
.faq-list {
  max-width: 860px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line-dim);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: var(--neon-border);
}

.faq-item.active {
  border-color: var(--neon);
  box-shadow: 0 0 25px rgba(0, 255, 102, 0.1);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  user-select: none;
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px 24px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .player-console {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .stats-ticker {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid, .apps-grid, .steps-grid {
    grid-template-columns: 1fr;
  }
}

