/* ==========================================
   SongVisualizer Landing Page
   Warm cinematic game aesthetic
   ========================================== */

:root {
  --bg-0: #0d1117;
  --bg-1: #161b22;
  --bg-2: #1c2333;
  --bg-3: #242d3d;
  --border: rgba(255,255,255,0.08);
  --border-b: rgba(255,255,255,0.15);
  --accent: #66c0f4;
  --accent-dim: rgba(102,192,244,0.15);
  --accent-glow: rgba(102,192,244,0.35);
  --warm: #d4a574;
  --warm-dim: rgba(212,165,116,0.15);
  --green: #4caf50;
  --red: #e53935;
  --orange: #ff9800;
  --gold: #ffd700;
  --text: #e6edf3;
  --text-m: rgba(255,255,255,0.6);
  --text-d: rgba(255,255,255,0.35);
  --font-d: 'Playfair Display', Georgia, serif;
  --font-b: 'Outfit', system-ui, -apple-system, sans-serif;
  --max-w: 1100px;
  --pad: 80px 24px;
  --rad: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-b);
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Utility ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-d);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-sub {
  color: var(--text-m);
  font-size: 16px;
  max-width: 600px;
  margin-bottom: 40px;
}

/* ---- Scroll Progress ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--warm));
  z-index: 10001;
  transition: width 0.1s ease-out;
}

/* ---- Back to Top ---- */
.back-to-top {
  position: fixed;
  bottom: 72px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--bg-2);
  border: 1px solid var(--border-b);
  border-radius: 50%;
  color: var(--accent);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 998;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover {
  background: var(--accent-dim);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px var(--accent-glow);
}

/* ---- Discord Float ---- */
.discord-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: #5865F2;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(88,101,242,0.4);
  text-decoration: none;
}
.discord-float:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 25px rgba(88,101,242,0.6);
  color: white;
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90%; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 20px; right: 30px;
  color: white; font-size: 36px; cursor: pointer;
  transition: transform 0.2s;
}
.lightbox-close:hover { transform: scale(1.2); }

/* ---- Navigation ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,17,23,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  transition: transform 0.3s;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}
.nav-brand {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.nav-brand:hover { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-link {
  color: var(--text-m);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--accent); background: var(--accent-dim); }
.nav-link--cta {
  color: var(--accent);
  border: 1px solid rgba(102,192,244,0.3);
  margin-left: 8px;
}
.nav-link--cta:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}
.nav-link--warm { color: var(--warm); }
.nav-link--warm:hover { color: var(--warm); background: var(--warm-dim); }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(102,192,244,0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s forwards;
}
.hero-title {
  font-family: var(--font-d);
  font-size: 64px;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-m);
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s forwards;
}
.hero-subtitle strong { color: var(--text); font-weight: 600; }
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: #0d1117;
}
.btn-primary:hover {
  background: #7accff;
  color: #0d1117;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--accent-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-b);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--text-m);
  color: var(--text);
  transform: translateY(-2px);
}
.hero-proof {
  margin-top: 48px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}
.hero-proof-item {
  text-align: center;
}
.hero-proof-value {
  display: block;
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 700;
  color: var(--warm);
}
.hero-proof-label {
  font-size: 12px;
  color: var(--text-d);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ---- Live Stats Section ---- */
.stats-section {
  padding: var(--pad);
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76,175,80,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(76,175,80,0); }
}

/* Profile Header */
.profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.profile-name {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 700;
}
.profile-level {
  background: var(--accent-dim);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.profile-xp-wrap {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.profile-xp-bar {
  flex: 1;
  height: 6px;
  background: var(--bg-3);
  border-radius: 3px;
  overflow: hidden;
}
.profile-xp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--warm));
  border-radius: 3px;
  transition: width 1s ease;
}
.profile-xp-text {
  font-size: 12px;
  color: var(--text-d);
  white-space: nowrap;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.25s;
}
.stat-card:hover {
  border-color: var(--border-b);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.stat-value {
  font-family: var(--font-d);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-d);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Career Progress */
.career-bar {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.career-items {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.career-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.career-icon { font-size: 18px; }
.career-value { font-weight: 700; color: var(--text); }
.career-label { color: var(--text-d); font-size: 13px; }
.career-progress-wrap {
  flex: 1;
  min-width: 200px;
}
.career-progress-track {
  height: 8px;
  background: var(--bg-3);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 4px;
}
.career-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--green));
  border-radius: 4px;
  transition: width 1.5s ease;
}
.career-progress-text {
  font-size: 12px;
  color: var(--text-d);
  text-align: right;
}

/* ---- How It Works ---- */
.how-section { padding: var(--pad); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.how-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.how-step {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 20px;
  color: var(--accent);
  font-weight: 700;
}
.how-card h3 {
  font-family: var(--font-d);
  font-size: 20px;
  margin-bottom: 10px;
}
.how-card p {
  color: var(--text-m);
  font-size: 14px;
  line-height: 1.6;
}

/* ---- Proof / Improvement ---- */
.proof-section {
  padding: var(--pad);
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-chart {
  max-width: 650px;
  margin: 0 auto 40px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 24px;
}
.proof-chart canvas { width: 100% !important; }
.proof-years {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.proof-year-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
  min-width: 90px;
  transition: all 0.25s;
}
.proof-year-card:hover { border-color: var(--border-b); }
.proof-year-card.first { border-color: rgba(233,30,99,0.3); }
.proof-year-card.last { border-color: rgba(76,175,80,0.3); }
.proof-year-label {
  font-size: 12px;
  color: var(--text-d);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.proof-year-value {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 700;
}
.proof-year-card.first .proof-year-value { color: var(--orange); }
.proof-year-card.last .proof-year-value { color: var(--green); }
.proof-year-plays {
  font-size: 12px;
  color: var(--text-d);
}
.proof-arrow {
  display: flex;
  align-items: center;
  color: var(--text-d);
  font-size: 20px;
}
.proof-note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-d);
  font-style: italic;
}

/* Milestones */
.milestones {
  max-width: 500px;
  margin: 32px auto 0;
}
.milestones-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-m);
}
.milestone-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.milestone-range {
  width: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-m);
  text-align: right;
}
.milestone-track {
  flex: 1;
  height: 8px;
  background: var(--bg-3);
  border-radius: 4px;
  overflow: hidden;
}
.milestone-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}
.milestone-fill.elite { background: var(--gold); }
.milestone-fill.master { background: var(--green); }
.milestone-fill.skilled { background: var(--accent); }
.milestone-fill.learning { background: var(--orange); }
.milestone-count {
  width: 70px;
  font-size: 12px;
  color: var(--text-d);
}

/* ---- Monthly Activity ---- */
.activity-section { padding: var(--pad); }
.activity-year {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.year-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-m);
  width: 45px;
  flex-shrink: 0;
}
.months-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
  flex: 1;
}
.month-cell {
  aspect-ratio: 1;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  background: var(--bg-2);
  border: 1px solid var(--border);
  transition: all 0.2s;
  cursor: default;
  position: relative;
}
.month-cell.inactive { color: var(--text-d); }
.month-cell.active.low {
  background: rgba(102,192,244,0.12);
  border-color: rgba(102,192,244,0.2);
  color: var(--accent);
}
.month-cell.active.medium {
  background: rgba(76,175,80,0.15);
  border-color: rgba(76,175,80,0.25);
  color: var(--green);
}
.month-cell.active.high {
  background: rgba(255,215,0,0.15);
  border-color: rgba(255,215,0,0.25);
  color: var(--gold);
}
.month-plays {
  font-size: 9px;
  font-weight: 400;
  opacity: 0.7;
}
.activity-legend {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-d);
}
.legend-box {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  margin-right: 4px;
  vertical-align: middle;
}
.legend-box.high { background: rgba(255,215,0,0.3); border: 1px solid rgba(255,215,0,0.4); }
.legend-box.medium { background: rgba(76,175,80,0.25); border: 1px solid rgba(76,175,80,0.35); }
.legend-box.low { background: rgba(102,192,244,0.2); border: 1px solid rgba(102,192,244,0.3); }

/* ---- Album Banner ---- */
.album-banner {
  padding: 60px 24px;
  text-align: center;
  background: linear-gradient(135deg, rgba(45,28,12,0.6), rgba(30,18,8,0.6));
  border-top: 1px solid rgba(212,165,116,0.15);
  border-bottom: 1px solid rgba(212,165,116,0.15);
  position: relative;
  overflow: hidden;
}
.album-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,165,116,0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.album-banner-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 12px;
}
.album-banner h2 {
  font-family: var(--font-d);
  font-size: 32px;
  margin-bottom: 8px;
  color: #e8c9a8;
}
.album-banner p {
  color: var(--text-m);
  margin-bottom: 24px;
  font-size: 15px;
}
.btn-warm {
  background: var(--warm);
  color: #1a0f05;
}
.btn-warm:hover {
  background: #e8c9a8;
  color: #1a0f05;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,165,116,0.35);
}

/* ---- What Makes It Different ---- */
.diff-section { padding: var(--pad); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 28px 24px;
  transition: all 0.3s;
}
.diff-card:hover {
  border-color: var(--border-b);
  transform: translateY(-3px);
}
.diff-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
.diff-card h3 {
  font-family: var(--font-d);
  font-size: 18px;
  margin-bottom: 8px;
}
.diff-card p {
  color: var(--text-m);
  font-size: 14px;
  line-height: 1.6;
}

/* ---- Media Section ---- */
.media-section {
  padding: var(--pad);
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.media-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  background: var(--bg-2);
  padding: 4px;
  border-radius: 10px;
  width: fit-content;
}
.media-tab {
  padding: 8px 20px;
  border: none;
  background: transparent;
  color: var(--text-m);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
}
.media-tab:hover { color: var(--text); }
.media-tab.active {
  background: var(--accent-dim);
  color: var(--accent);
}
.media-panel { display: none; }
.media-panel.active { display: block; }
.media-description {
  color: var(--text-m);
  margin-bottom: 20px;
  font-size: 14px;
}
.media-description a { color: var(--accent); }
.media-feed a {
  color: var(--text-m);
  display: block;
  padding: 6px 0;
  transition: color 0.2s;
}
.media-feed a:hover { color: var(--accent); }
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.album-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 20px;
}
.album-card h4 {
  font-family: var(--font-d);
  font-size: 18px;
  margin-bottom: 4px;
}
.album-card .album-subtitle {
  color: var(--text-d);
  font-size: 13px;
  margin-bottom: 16px;
}
.album-card img {
  border-radius: 8px;
  margin-bottom: 12px;
}
.album-card p a {
  color: var(--text-m);
  font-size: 13px;
}
.album-card p a:hover { color: var(--accent); }

.youtube-video {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 16px;
}
.youtube-video a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-m);
  text-decoration: none;
}
.youtube-video a:hover { color: var(--accent); }
.youtube-video .thumbnail {
  width: 160px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.youtube-video p {
  font-size: 14px;
  line-height: 1.4;
}

/* ---- Deep Dive Accordion ---- */
.deep-dive-section { padding: var(--pad); }
.deep-dive-toggle {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  font-family: var(--font-b);
  color: var(--text);
  font-size: 16px;
}
.deep-dive-toggle:hover { border-color: var(--border-b); background: var(--bg-2); }
.deep-dive-toggle h3 {
  font-family: var(--font-d);
  font-size: 22px;
  margin: 0;
}
.deep-dive-arrow {
  font-size: 20px;
  color: var(--text-d);
  transition: transform 0.3s;
}
.deep-dive-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.deep-dive-content.open { max-height: none; }
.deep-dive-inner {
  padding: 24px 0;
}

/* Deep Dive Sub-sections */
.dd-block {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 24px;
  margin-bottom: 20px;
}
.dd-block h3 {
  font-family: var(--font-d);
  font-size: 18px;
  margin-bottom: 16px;
}
.dd-block h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-m);
  margin: 20px 0 12px;
}

/* Journey Metrics */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.metric-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.metric-card .metric-icon { font-size: 24px; margin-bottom: 8px; display: block; }
.metric-card .stat-value { font-size: 24px; }
.metric-card .stat-label { font-size: 11px; }
.metric-sublabel {
  font-size: 11px;
  color: var(--text-d);
}

/* Mastery & Venues */
.mastery-venues-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mastery-panel, .venues-panel {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}
.mastery-panel h3, .venues-panel h3 {
  font-size: 16px;
  margin-bottom: 16px;
}
.pyramid-tier {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.pyramid-count {
  font-family: var(--font-d);
  font-size: 24px;
  font-weight: 700;
  width: 50px;
  text-align: right;
}
.pyramid-label { font-size: 14px; font-weight: 600; }
.pyramid-detail { font-size: 12px; color: var(--text-d); }
.pyramid-tier.pyramid-mastered .pyramid-count { color: var(--gold); }
.pyramid-tier.pyramid-learning .pyramid-count { color: var(--accent); }
.pyramid-tier.pyramid-challenging .pyramid-count { color: var(--orange); }

/* Venues Leaderboard */
.venue-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.venue-item:last-child { border-bottom: none; }
.venue-rank {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 700;
  width: 24px;
  text-align: center;
  color: var(--text-d);
}
.venue-rank-1 .venue-rank { color: var(--gold); }
.venue-rank-2 .venue-rank { color: #c0c0c0; }
.venue-rank-3 .venue-rank { color: #cd7f32; }
.venue-info { flex: 1; }
.venue-name { font-size: 14px; font-weight: 500; display: block; }
.venue-plays { font-size: 12px; color: var(--text-d); }
.venue-xp-container { text-align: right; }
.venue-xp-bar {
  width: 80px;
  height: 4px;
  background: var(--bg-3);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 2px;
}
.venue-xp-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}
.venue-xp-value { font-size: 11px; color: var(--text-d); }

/* Recent Activity */
.recent-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.recent-item:last-child { border-bottom: none; }
.recent-song { font-size: 14px; font-weight: 500; }
.recent-artist { font-size: 12px; color: var(--text-d); display: block; }
.recent-stats { display: flex; align-items: center; gap: 10px; }
.recent-accuracy { font-size: 14px; color: var(--text-m); }

/* Grade badges */
.grade {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}
.grade-s { background: rgba(255,215,0,0.15); color: var(--gold); }
.grade-a { background: rgba(76,175,80,0.15); color: var(--green); }
.grade-b { background: rgba(102,192,244,0.15); color: var(--accent); }
.grade-c { background: rgba(255,152,0,0.15); color: var(--orange); }
.grade-d { background: rgba(229,57,53,0.15); color: var(--red); }
.grade-f { background: rgba(158,158,158,0.15); color: #9e9e9e; }

/* Tunings */
.tuning-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.tuning-item:last-child { border-bottom: none; }
.tuning-name { font-weight: 500; font-size: 14px; }
.tuning-stats { display: flex; gap: 16px; font-size: 13px; color: var(--text-d); }

/* Countries */
.country-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.country-item:last-child { border-bottom: none; }
.country-name { font-weight: 500; font-size: 14px; width: 120px; }
.country-progress { flex: 1; display: flex; align-items: center; gap: 8px; }
.country-bar {
  flex: 1;
  height: 6px;
  background: var(--bg-3);
  border-radius: 3px;
  overflow: hidden;
}
.country-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
}
.country-pct { font-size: 12px; color: var(--text-d); width: 35px; text-align: right; }
.country-cities { font-size: 12px; color: var(--text-d); width: 80px; text-align: right; }

/* Cities grid */
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.city-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
}
.city-name { font-weight: 500; }
.city-venues { font-size: 11px; color: var(--text-d); display: block; }

/* Grade Distribution */
.grade-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.grade-bar-label {
  width: 24px;
  font-weight: 700;
  text-align: center;
}
.grade-bar-track {
  flex: 1;
  height: 8px;
  background: var(--bg-3);
  border-radius: 4px;
  overflow: hidden;
}
.grade-bar-fill {
  height: 100%;
  border-radius: 4px;
}
.grade-bar-fill.g-s { background: var(--gold); }
.grade-bar-fill.g-a { background: var(--green); }
.grade-bar-fill.g-b { background: var(--accent); }
.grade-bar-fill.g-c { background: var(--orange); }
.grade-bar-fill.g-d { background: var(--red); }
.grade-bar-fill.g-f { background: #9e9e9e; }
.grade-bar-count { width: 40px; font-size: 12px; color: var(--text-d); text-align: right; }

/* Best Scores */
.best-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.best-item:last-child { border-bottom: none; }
.best-rank { font-family: var(--font-d); font-weight: 700; color: var(--text-d); width: 30px; }
.best-info { flex: 1; }
.best-song { font-size: 14px; font-weight: 500; display: block; }
.best-artist { font-size: 12px; color: var(--text-d); }
.best-accuracy { font-size: 14px; font-weight: 600; }

/* Streaks */
.streak-cards {
  display: flex;
  gap: 16px;
}
.streak-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 24px;
  text-align: center;
  flex: 1;
}
.streak-value { font-family: var(--font-d); font-size: 28px; font-weight: 700; display: block; }
.streak-label { font-size: 12px; color: var(--text-d); text-transform: uppercase; letter-spacing: 1px; }

/* Hit/Miss */
.hitmiss-bar {
  height: 16px;
  background: var(--bg-3);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}
.hit-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--accent));
  border-radius: 8px;
}
.hitmiss-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.hit-label { color: var(--green); }
.miss-label { color: var(--text-d); }

/* Favorites */
.favorite-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.favorite-item:last-child { border-bottom: none; }
.favorite-rank { font-family: var(--font-d); font-weight: 700; color: var(--text-d); width: 30px; }
.favorite-info { flex: 1; }
.favorite-song { font-size: 14px; font-weight: 500; display: block; }
.favorite-artist { font-size: 12px; color: var(--text-d); }
.favorite-stats { display: flex; gap: 12px; font-size: 13px; }
.favorite-plays { color: var(--accent); font-weight: 600; }
.favorite-acc { color: var(--text-d); }

/* Timing Stats */
.timing-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.timing-label { width: 55px; font-size: 13px; font-weight: 500; }
.timing-track {
  flex: 1;
  height: 8px;
  background: var(--bg-3);
  border-radius: 4px;
  overflow: hidden;
}
.timing-fill { height: 100%; border-radius: 4px; }
.timing-fill.perfect { background: var(--green); }
.timing-fill.early { background: var(--accent); }
.timing-fill.late { background: var(--orange); }
.timing-fill.miss { background: var(--red); }
.timing-pct { width: 45px; font-size: 12px; color: var(--text-d); text-align: right; }
.timing-explanation {
  font-size: 12px;
  color: var(--text-d);
  margin-top: 12px;
  line-height: 1.5;
}

/* Artists */
.artist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.artist-item:last-child { border-bottom: none; }
.artist-name { font-weight: 500; font-size: 14px; }
.artist-stats { display: flex; gap: 16px; font-size: 13px; color: var(--text-d); }

/* Measure Master */
.measure-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.measure-item:last-child { border-bottom: none; }
.measure-song { font-size: 14px; font-weight: 500; display: block; }
.measure-num { font-size: 12px; color: var(--text-d); }
.measure-stats { display: flex; gap: 12px; font-size: 13px; color: var(--text-d); }

/* Practice Queue */
.queue-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.queue-item:last-child { border-bottom: none; }
.queue-priority {
  font-weight: 700;
  color: var(--accent);
  width: 30px;
}
.queue-info { flex: 1; }
.queue-song { font-size: 14px; font-weight: 500; display: block; }
.queue-artist { font-size: 12px; color: var(--text-d); }
.queue-reason {
  font-size: 12px;
  color: var(--text-d);
  background: var(--bg-3);
  padding: 2px 8px;
  border-radius: 4px;
}

/* Setlists */
.setlist-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.setlist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.setlist-header:hover { background: var(--bg-3); }
.setlist-name { font-weight: 600; font-size: 14px; }
.setlist-count { font-size: 12px; color: var(--text-d); }
.setlist-toggle { font-size: 12px; color: var(--text-d); }
.setlist-tracks {
  padding: 0 16px 12px;
  display: none;
}
.setlist-track {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  flex-wrap: wrap;
}
.setlist-track:last-child { border-bottom: none; }
.track-name { font-weight: 500; flex: 1; min-width: 120px; }
.track-artist { color: var(--text-d); width: 100px; }
.track-tuning { color: var(--text-d); font-size: 12px; }
.track-arrangement { color: var(--text-d); font-size: 12px; }

/* Levels */
.level-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}
.level-badge {
  background: var(--accent-dim);
  color: var(--accent);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}
.level-xp { font-size: 13px; color: var(--text-m); }
.level-date { font-size: 12px; color: var(--text-d); }

/* Stars */
.stars-display {
  text-align: center;
  padding: 16px;
}
.stars-icon { font-size: 36px; margin-right: 8px; }
.stars-count { font-family: var(--font-d); font-size: 36px; font-weight: 700; }

/* Achievements */
.achieve-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.achieve-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
}
.achieve-icon { font-size: 24px; flex-shrink: 0; }
.achieve-name { font-size: 13px; font-weight: 600; display: block; }
.achieve-desc { font-size: 11px; color: var(--text-d); }

/* Improvement breakdowns */
.improve-breakdown {
  margin-bottom: 16px;
}
.improve-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.improve-row:last-child { border-bottom: none; }
.improve-row-label {
  width: 110px;
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
}
.improve-row-years {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.improve-cell {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  text-align: center;
  min-width: 70px;
}
.improve-cell-year { font-size: 10px; color: var(--text-d); display: block; }
.improve-cell-value { font-size: 14px; font-weight: 700; display: block; }
.improve-cell-plays { font-size: 10px; color: var(--text-d); }

/* Fretboard Heatmap */
.fretboard-interactive { margin-bottom: 20px; }
.fretboard-toggle {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  background: var(--bg-2);
  padding: 3px;
  border-radius: 8px;
  width: fit-content;
}
.fretboard-toggle-btn {
  padding: 6px 16px;
  border: none;
  background: transparent;
  color: var(--text-d);
  font-family: var(--font-b);
  font-size: 13px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
}
.fretboard-toggle-btn.active {
  background: var(--accent-dim);
  color: var(--accent);
}
.fretboard-table-wrap { overflow-x: auto; margin-bottom: 12px; }
.fretboard-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 600px;
}
.fretboard-fret-label,
.fretboard-string-label {
  font-size: 10px;
  color: var(--text-d);
  padding: 2px 4px;
  text-align: center;
}
.fretboard-cell {
  width: 28px;
  height: 24px;
  border: 1px solid var(--border);
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
}
.fretboard-cell:hover {
  border-color: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}
.fretboard-cell.fretboard-nut {
  border-left: 3px solid var(--text-d);
}
.fretboard-cell.fretboard-dot::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fretboard-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin: 8px 0;
}
.fretboard-legend-label { font-size: 11px; color: var(--text-d); }
.fretboard-legend-bar {
  width: 120px;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--bg-3), var(--accent), var(--gold));
}
.fretboard-tooltip {
  display: none;
  position: absolute;
  background: var(--bg-2);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.fretboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.fretboard-panel h4 {
  font-size: 14px;
  margin-bottom: 12px;
}
.fretboard-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.fretboard-item:last-child { border-bottom: none; }
.fretboard-rank {
  font-weight: 700;
  color: var(--text-d);
  width: 20px;
  text-align: center;
  font-size: 12px;
}
.mini-fretboard {
  width: 36px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 3px;
  position: relative;
  background: var(--bg-3);
  flex-shrink: 0;
}
.fret-marker {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  top: calc((var(--string) - 1) * 20% + 10% - 2.5px);
  left: calc(var(--fret) * 20% + 10% - 2.5px);
}
.fretboard-info { flex: 1; }
.fretboard-label { font-size: 12px; font-weight: 500; display: block; }
.fretboard-plays { font-size: 11px; color: var(--text-d); }
.fretboard-rate {
  font-size: 12px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}
.fretboard-rate.high { background: rgba(76,175,80,0.15); color: var(--green); }
.fretboard-rate.mid { background: rgba(255,152,0,0.15); color: var(--orange); }
.fretboard-rate.low { background: rgba(229,57,53,0.15); color: var(--red); }
.fretboard-footer { font-size: 12px; color: var(--text-d); margin-top: 12px; text-align: center; }
.fretboard-subtitle {
  font-size: 13px;
  color: var(--text-d);
  margin-bottom: 16px;
}
.fretboard-summary {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.summary-badge {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
}
.summary-badge.notes { background: var(--accent-dim); color: var(--accent); }
.summary-badge.chords2 { background: rgba(76,175,80,0.12); color: var(--green); }
.summary-badge.chords3 { background: rgba(255,152,0,0.12); color: var(--orange); }
.shape-count { font-weight: 700; color: var(--accent); }

/* ---- FAQ ---- */
.faq-section {
  padding: var(--pad);
}
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-question span:first-child {
  font-size: 15px;
  font-weight: 500;
}
.faq-toggle {
  font-size: 20px;
  color: var(--text-d);
  width: 24px;
  text-align: center;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 0 0 18px;
  color: var(--text-m);
  font-size: 14px;
  line-height: 1.7;
}

/* ---- Final CTA ---- */
.final-cta {
  padding: 80px 24px;
  text-align: center;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}
.final-cta h2 {
  font-family: var(--font-d);
  font-size: 36px;
  margin-bottom: 12px;
}
.final-cta p {
  color: var(--text-m);
  margin-bottom: 28px;
  font-size: 16px;
}
.final-cta-note {
  font-size: 13px;
  color: var(--text-d);
  margin-top: 16px;
}

/* ---- Footer ---- */
.site-footer {
  padding: 40px 24px 80px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-link {
  color: var(--text-d);
  font-size: 13px;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-link:hover { color: var(--accent); }
.footer-copy {
  font-size: 12px;
  color: var(--text-d);
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: skeletonLoad 1.5s infinite;
  border-radius: 4px;
}
.skeleton-line { height: 14px; margin: 8px 0; width: 80%; }
.skeleton-thumb { height: 90px; width: 160px; margin: 8px 0; }
@keyframes skeletonLoad {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
  .mastery-venues-grid { grid-template-columns: 1fr; }
  .fretboard-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 44px; }
  .section-title { font-size: 28px; }
}

@media (max-width: 600px) {
  :root { --pad: 48px 16px; }
  .hero { padding: 100px 16px 60px; min-height: auto; }
  .hero-title { font-size: 34px; }
  .hero-subtitle { font-size: 15px; }
  .hero-proof { gap: 20px; }
  .hero-proof-value { font-size: 22px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .career-bar { flex-direction: column; }
  .career-items { justify-content: center; }
  .proof-years { flex-direction: column; align-items: center; }
  .proof-arrow { transform: rotate(90deg); }
  .activity-year { flex-direction: column; align-items: flex-start; }
  .months-grid { grid-template-columns: repeat(6, 1fr); }
  .streak-cards { flex-direction: column; }
  .album-banner h2 { font-size: 24px; }
  .improve-row { flex-direction: column; align-items: flex-start; }
  .improve-row-label { width: auto; }
}

/* Login Modal overrides (compatibility with loginModalStyle.css) */
.login-modal { z-index: 10000; }

/* ---- User Content Footer ---- */
.user-content-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(28,35,51,0.97), rgba(36,45,61,0.97));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 24px;
  z-index: 999;
  border-top: 1px solid var(--border);
}
.user-content-footer .footer-content {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.user-content-footer .toggle-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  flex-shrink: 0;
}
.user-content-footer .toggle-container input[type="checkbox"] { display: none; }
.user-content-footer .toggle-slider {
  width: 44px;
  height: 24px;
  background: var(--bg-3);
  border-radius: 12px;
  position: relative;
  transition: background 0.3s;
  flex-shrink: 0;
}
.user-content-footer .toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s;
}
.user-content-footer .toggle-container input:checked + .toggle-slider {
  background: var(--accent);
}
.user-content-footer .toggle-container input:checked + .toggle-slider::before {
  transform: translateX(20px);
}
.user-content-footer .toggle-label {
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}
.user-content-footer .footer-disclaimer {
  color: var(--text-d);
  font-size: 11px;
  margin: 0;
  line-height: 1.4;
}
.user-content-footer.minimized { padding: 10px 24px; }
.user-content-footer.minimized .footer-disclaimer { display: none; }
.user-content-footer.minimized .toggle-label::after {
  content: ' (User Content Visible)';
  font-weight: 400;
  opacity: 0.7;
}

/* Hidden utility */
.hidden { display: none !important; }
