/* 
  GEN-X THINKS - OFFICIAL HOME PAGE STYLESHEET
  Design System: Dark Mode, High-Tech Nostalgia, Synthwave Neon, Glassmorphic CRT
*/

@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Luckiest+Guy&family=Inter:wght@300;400;600;800&family=Outfit:wght@500;700;900&family=Press+Start+2P&family=Share+Tech+Mono&display=swap');

:root {
  /* Core Dark Color Palette */
  --bg-void: #06060a;
  --bg-deep: #0b0b14;
  --bg-card: rgba(18, 18, 32, 0.85);
  --bg-card-hover: rgba(28, 28, 48, 0.95);
  
  /* Vibrant Gen-X Neon Accents */
  --neon-cyan: #00f3ff;
  --neon-magenta: #ff007f;
  --neon-purple: #9d00ff;
  --amber-gold: #ffb700;
  --crt-green: #39ff14;
  
  /* Text & Border Colors */
  --text-main: #f0f3fe;
  --text-muted: #8e95b3;
  --text-dim: #5c6280;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-neon-cyan: rgba(0, 243, 255, 0.4);
  --border-neon-magenta: rgba(255, 0, 127, 0.4);
  
  /* Fonts */
  --font-brand-title: 'Bangers', 'Luckiest Guy', cursive, sans-serif;
  --font-retro: 'Press Start 2P', monospace;
  --font-mono: 'Share Tech Mono', monospace;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows & Glows */
  --glow-cyan: 0 0 15px rgba(0, 243, 255, 0.5), 0 0 30px rgba(0, 243, 255, 0.2);
  --glow-magenta: 0 0 15px rgba(255, 0, 127, 0.5), 0 0 30px rgba(255, 0, 127, 0.2);
  --glow-amber: 0 0 15px rgba(255, 183, 0, 0.5);
  --glass-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.6);
  
  /* Transitions */
  --tr-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --tr-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-void);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(255, 0, 127, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(0, 243, 255, 0.08) 0%, transparent 45%),
    linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 100%);
  background-attachment: fixed;
}

/* CRT Scanlines Overlay Toggle */
body.crt-mode::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.35) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
  z-index: 999;
  background-size: 100% 4px, 6px 100%;
  pointer-events: none;
  opacity: 0.85;
}

body.crt-mode::after {
  content: " ";
  display: block;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(18, 16, 16, 0.08);
  opacity: 0;
  z-index: 998;
  pointer-events: none;
  animation: flicker 0.15s infinite;
}

@keyframes flicker {
  0% { opacity: 0.1; }
  50% { opacity: 0.02; }
  100% { opacity: 0.09; }
}

/* Typography Utilities */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Custom Signature Brand Title Font (From User Image) */
.genx-brand-title {
  font-family: var(--font-brand-title);
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff6b38 0%, #ff8a00 25%, #ffea00 50%, #b5f500 75%, #76ff03 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transform: rotate(-1deg);
  filter: 
    drop-shadow( 3px  0px 0px #000)
    drop-shadow(-3px  0px 0px #000)
    drop-shadow( 0px  3px 0px #000)
    drop-shadow( 0px -3px 0px #000)
    drop-shadow( 2px  2px 0px #000)
    drop-shadow(-2px -2px 0px #000)
    drop-shadow( 2px -2px 0px #000)
    drop-shadow(-2px  2px 0px #000)
    drop-shadow( 4px  5px 0px #000);
}

.text-gradient {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-amber {
  color: var(--amber-gold);
}

.text-neon-cyan {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.4);
}

.font-retro {
  font-family: var(--font-retro);
  font-size: 0.85rem;
}

.font-mono {
  font-family: var(--font-mono);
}

/* Container & Layout */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(11, 11, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--tr-smooth);
}

.navbar .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.25rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--tr-fast);
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--neon-cyan);
  background: rgba(0, 243, 255, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--tr-fast);
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--neon-cyan);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--neon-cyan);
  transition: var(--tr-fast);
  box-shadow: var(--glow-cyan);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Control Toggles (CRT / Audio) */
.toggle-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--tr-fast);
}

.toggle-btn:hover, .toggle-btn.active {
  background: rgba(0, 243, 255, 0.15);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-magenta) 0%, #b8005d 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--glow-magenta);
  transition: var(--tr-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 0, 127, 0.7);
}

/* YouTube Subscribe TV Button (Directly Above VHF Tuner) */
.subscribe-tv-btn {
  width: 100%;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  border: 2px solid #ff4d4d;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
  transition: var(--tr-fast);
  letter-spacing: 0.02em;
}

.subscribe-tv-btn:hover {
  background: linear-gradient(135deg, #ff2626 0%, #e60000 100%);
  box-shadow: 0 8px 28px rgba(255, 0, 0, 0.75);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Gold Become a Channel Member Button */
.gold-member-btn {
  width: 100%;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #ffd700 0%, #ff9900 100%);
  border: 2px solid #fff59d;
  color: #0b0b14;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.45);
  transition: var(--tr-fast);
  letter-spacing: 0.02em;
}

.gold-member-btn:hover {
  background: linear-gradient(135deg, #ffea00 0%, #ffaa00 100%);
  box-shadow: 0 8px 28px rgba(255, 215, 0, 0.75);
  transform: translateY(-2px);
  color: #0b0b14;
}

/* Official Gen-X Channel Badge Icon (Doubled Size & Vertically Centered) */
.hero-channel-badge-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto 4.4rem;
  padding: 0.5rem 0;
}

.hero-channel-badge-icon {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  box-shadow: 0 0 45px rgba(255, 215, 0, 0.75), 0 16px 40px rgba(0, 0, 0, 0.9);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  display: block;
  object-fit: contain;
}

.hero-channel-badge-icon:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 0 60px rgba(255, 215, 0, 0.95), 0 20px 50px rgba(0, 0, 0, 0.95);
  filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.9));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border: 1px solid var(--border-neon-cyan);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--tr-fast);
}

.btn-secondary:hover {
  background: rgba(0, 243, 255, 0.15);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

/* HERO SECTION */
.hero-section {
  padding: 160px 0 90px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 183, 0, 0.1);
  border: 1px solid rgba(255, 183, 0, 0.4);
  border-radius: 30px;
  color: var(--amber-gold);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-item {
  position: relative;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--neon-cyan);
  transition: color 0.3s ease;
}

.stat-item .stat-number.stat-pulse {
  color: var(--crt-green);
  text-shadow: 0 0 12px var(--crt-green);
}

.stat-increment-badge {
  position: absolute;
  top: -12px;
  right: -8px;
  background: rgba(57, 255, 20, 0.2);
  border: 1px solid var(--crt-green);
  color: var(--crt-green);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 10px;
  pointer-events: none;
  animation: floatUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes floatUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-18px);
  }
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  text-transform: uppercase;
}

/* TV Frame & Video Player Container */
.tv-wrapper {
  position: relative;
  background: var(--bg-card);
  border: 2px solid var(--border-neon-cyan);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: var(--glass-shadow), var(--glow-cyan);
  backdrop-filter: blur(20px);
}

.tv-screen-box {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tv-screen-box iframe, .tv-screen-box img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.tv-channel-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid var(--crt-green);
  color: var(--crt-green);
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-retro);
  font-size: 0.65rem;
  z-index: 10;
  pointer-events: none;
}

.tv-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
}

.tv-tuner {
  display: flex;
  gap: 8px;
}

.tv-knob {
  background: #1a1a2b;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  transition: var(--tr-fast);
}

.tv-knob:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  transform: rotate(30deg);
}

/* SECTION TITLES */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  font-family: var(--font-mono);
  color: var(--neon-cyan);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* GEN-X SOUNDBOARD SECTION */
.soundboard-section {
  padding: 80px 0;
  position: relative;
}

.soundboard-deck {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--glass-shadow);
}

.soundboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.sound-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--tr-fast);
  position: relative;
  overflow: hidden;
}

.sound-btn:hover {
  background: rgba(0, 243, 255, 0.08);
  border-color: var(--neon-cyan);
  transform: translateY(-4px);
  box-shadow: var(--glow-cyan);
}

.sound-btn:active, .sound-btn.playing {
  background: rgba(255, 0, 127, 0.2);
  border-color: var(--neon-magenta);
  box-shadow: var(--glow-magenta);
  transform: scale(0.97);
}

.sound-btn .sound-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.sound-btn .sound-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  display: block;
  color: var(--text-main);
}

.sound-btn .sound-desc {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-top: 4px;
  display: block;
}

/* DAILY POLL / REALITY CHECK */
.poll-section {
  padding: 80px 0;
}

.poll-card {
  background: linear-gradient(135deg, rgba(20, 20, 36, 0.9), rgba(12, 12, 22, 0.95));
  border: 1px solid var(--border-neon-magenta);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--glass-shadow), var(--glow-magenta);
  max-width: 840px;
  margin: 0 auto;
  position: relative;
}

.poll-badge {
  display: inline-block;
  background: rgba(255, 0, 127, 0.15);
  color: var(--neon-magenta);
  border: 1px solid var(--neon-magenta);
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.poll-question {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.poll-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.poll-option-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--tr-fast);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
}

.poll-option-btn:hover {
  background: rgba(0, 243, 255, 0.1);
  border-color: var(--neon-cyan);
}

.poll-option-btn .vote-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, rgba(0, 243, 255, 0.25), rgba(255, 0, 127, 0.25));
  z-index: 1;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.poll-option-btn .opt-text {
  position: relative;
  z-index: 2;
}

.poll-option-btn .opt-percent {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--neon-cyan);
}

/* VIDEO VAULT */
.video-vault-section {
  padding: 80px 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--tr-smooth);
  box-shadow: var(--glass-shadow);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-neon-cyan);
  box-shadow: var(--glow-cyan);
}

.video-thumb-box {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #111;
  overflow: hidden;
}

.video-thumb-box img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--tr-smooth);
}

.video-card:hover .video-thumb-box img {
  transform: scale(1.05);
}

.video-play-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  background: rgba(255, 0, 127, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-magenta);
  color: #fff;
  font-size: 1.2rem;
  transition: var(--tr-fast);
}

.video-card:hover .video-play-overlay {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--neon-magenta);
}

.video-details {
  padding: 1.5rem;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.video-title {
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.video-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* MERCH STORE & GEAR SHOWCASE */
.merch-section {
  padding: 80px 0;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.merch-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.5rem;
  transition: var(--tr-smooth);
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
}

.merch-card:hover {
  border-color: var(--amber-gold);
  transform: translateY(-4px);
  box-shadow: var(--glow-amber);
}

.merch-img-box {
  width: 100%;
  height: 240px;
  background: #0f0f1a;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.merch-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--tr-smooth);
}

.merch-card:hover .merch-img-box img {
  transform: scale(1.04);
}

.merch-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.merch-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.merch-name {
  font-size: 1.2rem;
  font-weight: 700;
}

.merch-price {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--amber-gold);
}

.merch-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* MONETIZATION / TRIBE MEMBERSHIP */
.tribe-section {
  padding: 80px 0;
}

.tribe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.25rem;
  position: relative;
  transition: var(--tr-smooth);
  display: flex;
  flex-direction: column;
}

.tier-card.featured {
  border-color: var(--neon-magenta);
  background: linear-gradient(180deg, rgba(30, 20, 45, 0.9) 0%, rgba(15, 12, 28, 0.95) 100%);
  box-shadow: var(--glow-magenta);
}

.tier-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--neon-magenta);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 3px 12px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.tier-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.tier-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--neon-cyan);
  margin-bottom: 1.25rem;
}

.tier-price span {
  font-size: 0.9rem;
  color: var(--text-dim);
  font-family: var(--font-body);
}

.tier-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.tier-features li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tier-features li::before {
  content: '⚡';
  color: var(--amber-gold);
}

/* FAN ANSWERING MACHINE / COMMENT FEED */
.answering-machine-section {
  padding: 80px 0;
}

.machine-console {
  background: var(--bg-card);
  border: 1px solid var(--border-neon-cyan);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--glass-shadow), var(--glow-cyan);
}

.cassette-visualizer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: #090912;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tape-reel {
  width: 60px;
  height: 60px;
  border: 4px dashed var(--neon-cyan);
  border-radius: 50%;
  animation: tape-spin 6s linear infinite paused;
}

.tape-reel.spinning {
  animation-play-state: running;
}

@keyframes tape-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.tape-label {
  font-family: var(--font-mono);
  color: var(--amber-gold);
  font-size: 1.1rem;
  text-align: center;
}

.comments-feed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.comment-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.25rem;
}

.comment-author {
  font-family: var(--font-mono);
  color: var(--neon-cyan);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.comment-time {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.comment-body {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* MIXTAPE NEWSLETTER & FOOTER */
.newsletter-card {
  background: linear-gradient(135deg, rgba(255, 0, 127, 0.15), rgba(0, 243, 255, 0.15));
  border: 1px solid var(--border-neon-cyan);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 1.5rem auto 0;
}

.newsletter-input {
  flex-grow: 1;
  background: rgba(10, 10, 20, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 12px 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 50px 0;
  background: rgba(6, 6, 10, 0.95);
  text-align: center;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--neon-cyan);
}

/* MODAL & OVERLAYS */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--tr-fast);
}

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

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--neon-cyan);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 640px;
  width: 100%;
  position: relative;
  box-shadow: var(--glass-shadow), var(--glow-cyan);
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

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

/* RESPONSIVE DESIGN BREAKPOINTS */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  
  .nav-links {
    display: none;
  }
}

/* Hero Body Quick Nav Bar */
.hero-body-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1.25rem 0 1.5rem;
  flex-wrap: wrap;
}

.hero-body-nav-btn {
  background: rgba(18, 18, 30, 0.9);
  border: 1.5px solid var(--neon-cyan);
  border-radius: 10px;
  padding: 8px 14px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--tr-fast);
  box-shadow: 0 4px 12px rgba(0, 243, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-body-nav-btn:hover {
  background: linear-gradient(135deg, var(--neon-magenta), var(--neon-purple));
  border-color: var(--neon-magenta);
  box-shadow: 0 6px 18px rgba(255, 0, 127, 0.4);
  transform: translateY(-2px);
  color: #fff;
}

/* ==========================================================================
   COMMUNITY CHAT PAGE (AUTHENTIC DISCORD 4-COLUMN DESKTOP UI)
   ========================================================================== */

:root {
  /* Official Discord Theme Colors blended with Gen-X Neon Branding */
  --discord-bg-server: #1e1f22;
  --discord-bg-sidebar: #2b2d31;
  --discord-bg-chat: #313338;
  --discord-bg-input: #383a40;
  --discord-bg-card: #232428;
  --discord-text-main: #f2f3f5;
  --discord-text-body: #dbdee1;
  --discord-text-muted: #949ba4;
  --discord-text-hash: #80848e;
  --discord-hover: rgba(255, 255, 255, 0.06);
  --discord-active: rgba(255, 255, 255, 0.12);
}

.chat-page-section {
  padding-top: 76px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-app-wrapper {
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  height: calc(100vh - 76px);
  background: var(--discord-bg-chat);
  position: relative;
}

/* 1. Left Channels Sidebar */
.chat-channels-sidebar {
  background: var(--discord-bg-sidebar);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.server-header {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  cursor: pointer;
}

.server-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.channels-category {
  padding: 1rem 0.85rem 0.35rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--discord-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.channels-list {
  list-style: none;
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
  overflow-y: auto;
}

.channel-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  border-radius: 4px;
  color: var(--discord-text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--tr-fast);
  text-decoration: none;
}

.channel-item:hover {
  background: var(--discord-hover);
  color: var(--discord-text-main);
}

.channel-item.active {
  background: var(--discord-active);
  color: #ffffff;
  font-weight: 700;
}

.channel-item .channel-hash {
  color: var(--discord-text-hash);
  margin-right: 6px;
  font-weight: 800;
  font-size: 1.1rem;
}

.channel-item.active .channel-hash {
  color: var(--neon-cyan);
}

.unread-badge {
  background: var(--neon-magenta);
  color: #fff;
  font-size: 0.68rem;
  font-family: var(--font-mono);
  padding: 1px 6px;
  border-radius: 10px;
  font-weight: 800;
}

/* User Account Drawer Card at Bottom Left */
.user-account-bar {
  padding: 0.65rem 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  background: var(--discord-bg-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-account-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-avatar-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--neon-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  border: 1.5px solid var(--neon-cyan);
  flex-shrink: 0;
}

.user-account-details .name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--discord-text-main);
  line-height: 1.1;
}

.user-account-details .status-tag {
  font-size: 0.68rem;
  color: var(--crt-green);
  font-family: var(--font-mono);
}

/* 3. Main Chat Feed Area */
.chat-main-area {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--discord-bg-chat);
  position: relative;
}

.chat-header {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  background: var(--discord-bg-chat);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  z-index: 5;
}

.chat-header-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-header-title h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-body);
}

.chat-header-title .topic-desc {
  font-size: 0.85rem;
  color: var(--discord-text-muted);
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.1);
  font-weight: 400;
}

/* Date Divider */
.date-divider {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  color: var(--discord-text-muted);
  font-size: 0.72rem;
  font-family: var(--font-mono);
  font-weight: 700;
}

.date-divider::before, .date-divider::after {
  content: "";
  flex: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.date-divider span {
  padding: 0 12px;
}

/* Chat Messages Feed */
.chat-messages-container {
  flex-grow: 1;
  padding: 1.25rem 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.chat-msg-row {
  display: flex;
  gap: 0.85rem;
  position: relative;
  padding: 4px 8px;
  border-radius: 4px;
  transition: var(--tr-fast);
}

.chat-msg-row:hover {
  background: rgba(0, 0, 0, 0.16);
}

.chat-msg-row .user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2b2d31;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--neon-cyan);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.chat-msg-content {
  flex-grow: 1;
}

.reply-quote {
  font-size: 0.78rem;
  color: var(--discord-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.reply-quote::before {
  content: "┌";
  color: var(--discord-text-hash);
  font-weight: bold;
}

.msg-header-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}

.msg-author {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}

.user-badge-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 1px 7px;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 800;
}

.badge-host {
  background: rgba(255, 0, 127, 0.25);
  color: var(--neon-magenta);
  border: 1px solid var(--neon-magenta);
}

.badge-pioneer {
  background: rgba(255, 183, 0, 0.25);
  color: var(--amber-gold);
  border: 1px solid var(--amber-gold);
}

.badge-member {
  background: rgba(0, 243, 255, 0.2);
  color: var(--neon-cyan);
  border: 1px solid var(--border-neon-cyan);
}

.msg-time {
  font-size: 0.72rem;
  color: var(--discord-text-muted);
  font-family: var(--font-mono);
}

.msg-text-body {
  color: var(--discord-text-body);
  font-size: 0.95rem;
  line-height: 1.45;
  font-family: var(--font-body);
}

.reactions-list {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.reaction-btn {
  background: #2b2d31;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.8rem;
  color: var(--discord-text-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--tr-fast);
  font-weight: 600;
}

.reaction-btn:hover {
  background: #383a40;
  border-color: var(--neon-cyan);
  color: #fff;
}

/* Chat Input Bar at Bottom */
.chat-input-bar {
  padding: 0.75rem 1.25rem 1.25rem;
  background: var(--discord-bg-chat);
}

.chat-input-wrapper {
  background: var(--discord-bg-input);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 4px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-input-wrapper:focus-within {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.chat-text-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 8px 0;
}

.chat-text-input::placeholder {
  color: var(--discord-text-muted);
}

.chat-text-input:focus {
  outline: none;
}

.guest-post-banner {
  background: rgba(255, 183, 0, 0.12);
  border: 1px dashed var(--amber-gold);
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--amber-gold);
  font-family: var(--font-body);
  font-weight: 600;
}

/* 4. Right Online Members Roster Sidebar */
.chat-members-sidebar {
  background: var(--discord-bg-sidebar);
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1rem 0.85rem;
  overflow-y: auto;
}

.member-group-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--discord-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.member-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 1.25rem;
}

.member-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border-radius: 4px;
  color: var(--discord-text-body);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--tr-fast);
  cursor: pointer;
}

.member-item:hover {
  background: var(--discord-hover);
  color: #fff;
}

.member-item .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crt-green);
  box-shadow: 0 0 6px var(--crt-green);
  flex-shrink: 0;
}

.member-subtitle {
  font-size: 0.72rem;
  color: var(--discord-text-muted);
  font-weight: 400;
  display: block;
}

/* AUTHENTICATION MODAL */
.google-login-btn {
  background: #ffffff;
  color: #1f1f1f;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--tr-fast);
  margin-bottom: 1rem;
}

.google-login-btn:hover {
  background: #e6e6e6;
  transform: translateY(-1px);
}

/* ==========================================================================
   PAGE 4: AUTHENTIC 80S SILVER METALLIC BOOMBOX PLAYER STYLES
   ========================================================================== */

/* YouTube Click-Out Shield (Prevents leaving website via embedded player title or logo) */
.yt-click-shield-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 25;
  background: transparent;
  pointer-events: auto;
  cursor: default;
}

.yt-click-shield-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140px;
  height: 50px;
  z-index: 25;
  background: transparent;
  pointer-events: auto;
  cursor: default;
}

.boombox-section {
  padding: 7.5rem 0 3rem;
  background: radial-gradient(circle at 50% 30%, rgba(255, 183, 0, 0.1), transparent 75%), var(--bg-void);
  border-bottom: 1px solid var(--border-subtle);
}

/* Outer Boombox Unit Container */
.silver-boombox-unit {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(180deg, #dedede 0%, #c2c2c2 25%, #a8a8a8 70%, #d0d0d0 100%);
  border: 4px solid #5a5a60;
  border-radius: 12px;
  padding: 18px 24px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85), inset 0 2px 3px #ffffff, inset 0 -2px 3px #444;
  color: #1a1a1a;
  font-family: var(--font-body);
}

/* Top Carrying Handle */
.boombox-handle-bar {
  width: 90%;
  height: 28px;
  margin: -42px auto 14px;
  background: linear-gradient(180deg, #1f1f1f 0%, #3a3a3a 50%, #111111 100%);
  border: 3px solid #888890;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.6);
  position: relative;
}

/* Top Silver Rotary Knobs & Push Buttons */
.boombox-top-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 10px;
  border-bottom: 2px solid #888;
  margin-bottom: 12px;
}

.knob-group {
  display: flex;
  gap: 14px;
}

.silver-knob {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 20%, #999999 80%);
  border: 2px solid #444;
  box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.push-buttons-row {
  display: flex;
  gap: 6px;
}

.chrome-btn {
  background: linear-gradient(180deg, #ffffff, #aaaaaa);
  border: 1px solid #444;
  border-radius: 3px 3px 0 0;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  color: #222;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Analog Radio Tuner Window Bar */
.radio-tuner-window {
  background: linear-gradient(180deg, #3d3126 0%, #201810 100%);
  border: 3px solid #b8860b;
  border-radius: 6px;
  padding: 8px 16px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 10px #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tuner-scale-text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #ffea00;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-shadow: 0 0 4px rgba(255, 234, 0, 0.6);
}

.tuner-needle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 55%;
  width: 3px;
  background: #ff0033;
  box-shadow: 0 0 8px #ff0033;
}

/* Main 3-Column Boombox Body Layout */
.boombox-body-grid {
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  gap: 20px;
  align-items: center;
}

/* Speaker Woofers */
.boombox-speaker-unit {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, #1a1a1a 40%, #080808 85%);
  border: 7px solid #c59b27; /* Gold Metallic Ring */
  box-shadow: inset 0 0 24px #000, 0 6px 16px rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}

.speaker-mesh-pattern {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background-image: radial-gradient(#333 15%, transparent 16%);
  background-size: 8px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.speaker-center-cap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, #444, #111);
  border: 2px solid #666;
  box-shadow: 0 0 10px #000;
}

/* Center Cassette Deck & Screen */
.boombox-center-deck {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cassette-screen-frame {
  background: #000;
  border: 4px solid #b8860b; /* Metallic Bronze Border */
  border-radius: 10px;
  padding: 6px;
  box-shadow: inset 0 0 16px #000, 0 4px 12px rgba(0,0,0,0.5);
  position: relative;
}

.boombox-screen-box {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
}

/* Analog Dual Yellow VU Meters */
.vu-meters-panel {
  background: #e8e6d1;
  border: 3px solid #888;
  border-radius: 6px;
  padding: 8px 16px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.3);
}

.vu-meter-box {
  width: 95px;
  height: 48px;
  background: #ffea75;
  border: 2px solid #333;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  padding: 4px;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
}

.vu-title {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 800;
  color: #333;
  text-align: center;
}

.vu-needle-left, .vu-needle-right {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 38px;
  background: #c00;
  transform-origin: bottom center;
  animation: vuSwing 1.8s ease-in-out infinite alternate;
}

.vu-needle-right {
  animation-delay: 0.4s;
}

@keyframes vuSwing {
  0% { transform: rotate(-25deg); }
  50% { transform: rotate(10deg); }
  100% { transform: rotate(20deg); }
}

/* Bottom Controls Bar */
.boombox-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  background: #1e1f26;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #444;
  color: #fff;
}

/* ==========================================================================
   PAGE 5: "THE GEN-X MINDSET" NEWSLETTER & LEAD MAGNET STYLES
   ========================================================================== */

.newsletter-hero {
  padding: 8rem 0 4rem;
  background: radial-gradient(circle at 50% 25%, rgba(255, 183, 0, 0.12), transparent 75%), var(--bg-void);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.lead-magnet-wrapper {
  background: var(--bg-card);
  border: 2px solid var(--amber-gold);
  border-radius: 24px;
  padding: 3rem;
  max-width: 860px;
  margin: 2rem auto 0;
  box-shadow: 0 16px 48px rgba(255, 183, 0, 0.18);
  position: relative;
  overflow: hidden;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.perk-card {
  background: rgba(14, 14, 24, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.75rem;
  transition: var(--tr-fast);
  display: flex;
  flex-direction: column;
}

.perk-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber-gold);
  box-shadow: 0 8px 24px rgba(255, 183, 0, 0.15);
}

.perk-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 183, 0, 0.15);
  border: 1px solid var(--amber-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.perk-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.perk-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Past Issue Archive Grid */
.issue-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.issue-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.5rem;
  transition: var(--tr-fast);
  cursor: pointer;
}

.issue-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 243, 255, 0.15);
}

/* ==========================================================================
   PAGE 6: GEN-X RULES OF THE HOUSE STYLES
   ========================================================================== */

.rules-hero {
  padding: 8rem 0 3.5rem;
  background: radial-gradient(circle at 50% 25%, rgba(0, 243, 255, 0.12), transparent 75%), var(--bg-void);
  border-bottom: 1px solid var(--border-subtle);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.rule-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 18px;
  padding: 1.75rem;
  transition: var(--tr-fast);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.rule-card:hover {
  border-color: var(--amber-gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(255, 183, 0, 0.18);
}

.rule-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.rule-number-badge {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--amber-gold);
  background: rgba(255, 183, 0, 0.12);
  border: 1px solid var(--amber-gold);
  padding: 3px 10px;
  border-radius: 12px;
}

.rule-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.rule-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.rule-detail-expand {
  display: none;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  padding: 1rem;
  border-left: 3px solid var(--neon-cyan);
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.6;
}

.rule-card.active .rule-detail-expand {
  display: block;
}

.boombox-track-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cassette-spool-anim {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px dashed var(--neon-cyan);
  animation: spinSpool 4s linear infinite;
}

@keyframes spinSpool {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Cassettes Grid */
.cassettes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.cassette-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--tr-fast);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.cassette-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-cyan);
  box-shadow: 0 8px 24px rgba(0, 243, 255, 0.2);
}

.cassette-card-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  overflow: hidden;
}

.cassette-card-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cassette-card:hover .cassette-card-thumb img {
  transform: scale(1.05);
}

.cassette-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 10, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--neon-cyan);
  opacity: 0;
  transition: var(--tr-fast);
}

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

.cassette-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cassette-track-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.cassette-artist-name {
  font-size: 0.85rem;
  color: var(--amber-gold);
  font-family: var(--font-mono);
  margin-bottom: 0.75rem;
}

@media (max-width: 900px) {
  .boombox-wrapper {
    grid-template-columns: 1fr;
  }
  .boombox-speaker {
    display: none;
  }
}

.vault-hero {
  padding: 8rem 0 3rem;
  background: radial-gradient(circle at 50% 20%, rgba(255, 0, 127, 0.12), transparent 70%), var(--bg-void);
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

.vault-nav-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* Decade & Category Filter Bar */
.filter-bar-wrapper {
  background: rgba(14, 14, 24, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 100px;
}

.filter-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 6px 14px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--tr-fast);
}

.filter-chip:hover {
  border-color: var(--neon-cyan);
  color: #fff;
}

.filter-chip.active {
  background: linear-gradient(135deg, var(--neon-magenta), var(--neon-purple));
  border-color: var(--neon-magenta);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 0, 127, 0.3);
}

/* Milestones Grid */
.milestones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.milestone-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: var(--tr-fast);
  cursor: pointer;
}

.milestone-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-cyan);
  box-shadow: 0 8px 24px rgba(0, 243, 255, 0.15);
}

.milestone-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.milestone-decade-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
}

.badge-70s {
  background: rgba(255, 183, 0, 0.2);
  color: var(--amber-gold);
  border: 1px solid var(--amber-gold);
}

.badge-80s {
  background: rgba(0, 243, 255, 0.2);
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
}

.badge-90s {
  background: rgba(255, 0, 127, 0.2);
  color: var(--neon-magenta);
  border: 1px solid var(--neon-magenta);
}

.milestone-icon {
  font-size: 2rem;
}

.milestone-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.milestone-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Quiz Section Styling */
.quiz-section {
  padding: 5rem 0;
  background: rgba(10, 10, 18, 0.6);
  border-top: 1px solid var(--border-subtle);
}

.quiz-card-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-neon-cyan);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  position: relative;
}

.quiz-progress-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  width: 10%;
  transition: width 0.3s ease;
}

.quiz-options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 1.75rem 0;
}

.quiz-option-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--tr-fast);
  display: flex;
  align-items: center;
  gap: 12px;
}

.quiz-option-btn:hover {
  background: rgba(0, 243, 255, 0.1);
  border-color: var(--neon-cyan);
  color: #fff;
  transform: translateX(4px);
}

.quiz-option-btn.selected {
  background: rgba(255, 0, 127, 0.2);
  border-color: var(--neon-magenta);
  color: #fff;
}

.quiz-result-box {
  text-align: center;
  padding: 2rem 1rem;
}

.quiz-score-badge {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
  text-shadow: var(--glow-cyan);
}

/* ==========================================================================
   MASTER RESPONSIVE OPTIMIZATION SYSTEM (DESKTOP, TABLET & MOBILE PHONES)
   ========================================================================== */

/* 1. TABLET BREAKPOINT (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-description {
    margin: 0 auto 1.5rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-body-nav {
    justify-content: center;
  }

  .hero-channel-badge-icon {
    width: 220px;
    height: 220px;
  }

  .hero-channel-badge-container {
    margin: 1.2rem auto 2.5rem;
  }

  /* Community Chat Tablet Layout */
  .chat-app-container {
    grid-template-columns: 240px 1fr;
  }
  
  .chat-members-sidebar {
    display: none;
  }

  /* Music Hub Jukebox Tablet Layout */
  .boombox-top-panel {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  /* Rules Grid Layout */
  .rules-cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

/* 2. SMALL TABLET & PHONES BREAKPOINT (max-width: 768px) */
@media (max-width: 768px) {
  /* Navigation Bar Adjustments */
  .navbar-container {
    padding: 0.75rem 1rem;
  }

  .nav-links {
    gap: 0.5rem;
    font-size: 0.8rem;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  /* Hero Section */
  .hero-section {
    padding: 130px 0 60px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-channel-badge-icon {
    width: 180px;
    height: 180px;
  }

  .hero-channel-badge-container {
    margin: 1rem auto 2rem;
  }

  /* Buttons Stacking & Touch Targets */
  .subscribe-tv-btn,
  .gold-member-btn {
    font-size: 0.95rem;
    padding: 12px 14px;
    min-height: 48px;
  }

  /* Community Chat Mobile View */
  .chat-app-container {
    grid-template-columns: 1fr;
    height: calc(100vh - 120px);
  }

  .chat-channels-sidebar {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    width: 100%;
    padding: 10px;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  /* Silver Boombox Unit Mobile Scaling */
  .silver-boombox-unit {
    padding: 12px 14px 18px;
    border-width: 3px;
  }

  .boombox-woofers-row {
    flex-direction: column;
    gap: 1rem;
  }

  /* Merch Store Grid */
  .merch-grid {
    grid-template-columns: 1fr;
  }

  /* Newsletter Box */
  .newsletter-card {
    padding: 1.75rem 1.25rem;
  }

  .newsletter-form-row {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form-row input,
  .newsletter-form-row button {
    width: 100%;
  }
}

/* 3. EXTRA SMALL MOBILE PHONES BREAKPOINT (max-width: 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.95rem;
  }

  .hero-channel-badge-icon {
    width: 150px;
    height: 150px;
  }

  .hero-channel-badge-container {
    margin: 0.8rem auto 1.5rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-item .stat-number {
    font-size: 1.45rem;
  }

  .tv-wrapper {
    border-width: 2px;
  }

  .vault-hero-title {
    font-size: 2rem;
  }
}
