/* ============================================================
   MDJAY Community — Neon Green / Dark Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Exo+2:wght@300;400;500;600;700;800&family=Share+Tech+Mono&display=swap');

/* ── Variables ────────────────────────────────────────────── */
:root {
  --green:       #00ff88;
  --green-dim:   #00cc6a;
  --green-glow:  #00ff8844;
  --green-dark:  #003322;
  --bg:          #080c0a;
  --bg-2:        #0d1410;
  --bg-3:        #111a14;
  --bg-card:     #0f1712;
  --surface:     #1a2a1e;
  --border:      #1e3024;
  --border-lit:  #00ff8840;
  --text:        #e4f2e8;
  --text-muted:  #5a7a62;
  --text-dim:    #8aaa92;
  --purple:      #9b59ff;
  --purple-dim:  #7b3fe0;
  --twitch:      #9146ff;
  --red:         #ff4455;
  --gold:        #ffcc44;
  --font-head:   'Rajdhani', sans-serif;
  --font-body:   'Exo 2', sans-serif;
  --font-mono:   'Share Tech Mono', monospace;
  --radius:      6px;
  --radius-lg:   12px;
  --transition:  0.18s ease;
  --shadow-glow: 0 0 20px #00ff8830, 0 0 60px #00ff8810;
  --shadow-card: 0 4px 24px #00000060;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 40% at 50% -10%, #003322 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 39px, #00ff880a 39px, #00ff880a 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, #00ff880a 39px, #00ff880a 40px);
}

a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }

img { max-width: 100%; display: block; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }

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

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 760px; }

.page-wrap { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; padding: 40px 0 80px; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: #0a0f0c;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav__inner {
  display: flex; align-items: center; gap: 24px;
  height: 64px; padding: 0 24px; max-width: 1200px; margin: 0 auto;
}
.nav__logo {
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 700;
  color: var(--green);
  text-shadow: 0 0 20px var(--green-glow), 0 0 40px #00ff8822;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.nav__logo span { color: #fff; }
.nav__links { display: flex; gap: 6px; flex: 1; }
.nav__link {
  color: var(--text-dim); font-size: 0.9rem; font-weight: 500;
  padding: 6px 14px; border-radius: var(--radius);
  transition: all var(--transition); letter-spacing: 0.04em;
  text-transform: uppercase; font-family: var(--font-head);
}
.nav__link:hover, .nav__link.active {
  color: var(--green); background: var(--green-glow);
}
.nav__right { display: flex; align-items: center; gap: 12px; margin-left: auto; }

.nav__user {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 40px; padding: 4px 14px 4px 4px;
  font-size: 0.85rem;
}
.nav__credits {
  font-family: var(--font-mono); color: var(--green);
  font-size: 0.8rem; background: var(--green-dark);
  padding: 2px 8px; border-radius: 3px;
}

/* Mobile nav toggle */
.nav__hamburger {
  display: none; background: none; border: none; color: var(--text);
  font-size: 1.5rem; cursor: pointer; padding: 4px;
}

/* ── Nav Dropdowns ───────────────────────────────────────── */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--text-dim); font-size: 0.9rem; font-weight: 500;
  padding: 6px 14px; border-radius: var(--radius);
  transition: all var(--transition); letter-spacing: 0.04em;
  text-transform: uppercase; font-family: var(--font-head);
  background: none; border: none; cursor: pointer;
}
.nav__dropdown-toggle:hover, .nav__dropdown-toggle.active {
  color: var(--green); background: var(--green-glow);
}
.nav__dropdown-toggle svg { transition: transform var(--transition); width: 11px; height: 11px; }
.nav__dropdown.open .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 220px; background: #0d1410;
  border: 1px solid var(--border-lit); border-radius: var(--radius-lg);
  padding: 8px; box-shadow: var(--shadow-card), 0 0 30px #00ff8810;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 200;
}
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--radius);
  color: var(--text-dim); font-size: 0.88rem; font-weight: 500;
  transition: all var(--transition); text-transform: none; letter-spacing: normal;
  font-family: var(--font-body);
}
.nav__dropdown-item:hover, .nav__dropdown-item.active {
  color: #fff; background: var(--green-glow);
}
.nav__dropdown-item .icon { font-size: 1rem; width: 18px; text-align: center; flex-shrink: 0; }

/* ── Notification Bell ──────────────────────────────────────── */
.nav__bell {
  position: relative; display: flex; align-items: center;
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); padding: 6px; border-radius: 50%;
  transition: color var(--transition), background var(--transition);
}
.nav__bell:hover { color: var(--green); background: var(--green-glow); }
.nav__bell-dot {
  position: absolute; top: 2px; right: 2px;
  min-width: 16px; height: 16px; padding: 0 3px;
  background: var(--red); color: #fff;
  border-radius: 100px; font-size: 0.62rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #0a0f0c; line-height: 1;
}
.nav__bell-panel {
  position: absolute; top: calc(100% + 10px); right: 0;
  width: 340px; max-height: 420px; overflow-y: auto;
  background: #0d1410; border: 1px solid var(--border-lit);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card), 0 0 30px #00ff8810;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 200;
}
.nav__bell-wrap.open .nav__bell-panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__bell-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  font-family: var(--font-head); font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted);
}
.nav__bell-header button {
  background: none; border: none; color: var(--green);
  font-size: 0.72rem; cursor: pointer; text-transform: none; letter-spacing: normal;
  font-family: var(--font-body);
}
.nav__bell-item {
  display: flex; gap: 10px; padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  text-decoration: none; color: inherit;
}
.nav__bell-item:last-child { border-bottom: none; }
.nav__bell-item:hover { background: var(--bg-3); }
.nav__bell-item--unread { background: #00ff8808; }
.nav__bell-item__icon {
  font-size: 1.1rem; flex-shrink: 0; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: 50%;
}
.nav__bell-item__title { font-size: 0.85rem; font-weight: 600; color: var(--text); line-height: 1.4; }
.nav__bell-item__body { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; line-height: 1.4; }
.nav__bell-item__time { font-size: 0.7rem; color: var(--text-muted); margin-top: 4px; }
.nav__bell-empty { padding: 32px 16px; text-align: center; color: var(--text-muted); font-size: 0.85rem; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--radius);
  font-family: var(--font-head); font-size: 1rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer; border: 1px solid transparent;
  transition: all var(--transition); white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--green); color: #000;
  border-color: var(--green);
  box-shadow: 0 0 16px #00ff8840;
}
.btn--primary:hover {
  background: #fff; color: #000; border-color: #fff;
  box-shadow: 0 0 30px #ffffff40; transform: translateY(-1px);
}
.btn--ghost {
  background: transparent; color: var(--green);
  border-color: var(--green);
}
.btn--ghost:hover {
  background: var(--green-glow); color: #fff;
}
.btn--twitch {
  background: var(--twitch); color: #fff;
  border-color: var(--twitch);
  box-shadow: 0 0 16px #9146ff40;
  font-size: 1.05rem; padding: 13px 28px;
}
.btn--twitch:hover {
  background: #a970ff; border-color: #a970ff;
  box-shadow: 0 0 30px #9146ff60; transform: translateY(-2px);
}
.btn--sm { padding: 6px 14px; font-size: 0.8rem; }
.btn--danger { background: var(--red); color: #fff; border-color: var(--red); }
.btn--danger:hover { background: #ff2233; box-shadow: 0 0 20px #ff445540; }
.btn[disabled] { opacity: 0.4; pointer-events: none; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.card--glow {
  border-color: var(--border-lit);
  box-shadow: var(--shadow-card), 0 0 40px #00ff8808;
}
.card__title {
  font-family: var(--font-head); font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 16px;
}

/* ── Avatar ──────────────────────────────────────────────── */
.avatar {
  border-radius: 50%; object-fit: cover;
  border: 2px solid var(--border-lit);
}
.avatar-placeholder {
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border-lit);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700;
  color: var(--green); font-size: 0.9rem;
}

/* ── Forms ───────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted); margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 10px 14px;
  background: var(--bg-3); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
}
.form-textarea { resize: vertical; min-height: 100px; }

/* ── Stats / Counters ────────────────────────────────────── */
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  text-align: center;
}
.stat-card__value {
  font-family: var(--font-head); font-size: 2.2rem; font-weight: 700;
  color: var(--green);
  text-shadow: 0 0 20px var(--green-glow);
}
.stat-card__label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-top: 4px;
}

/* ── XP Bar ──────────────────────────────────────────────── */
.xp-bar { background: var(--surface); border-radius: 100px; height: 8px; overflow: hidden; }
.xp-bar__fill {
  height: 100%; background: linear-gradient(90deg, var(--green-dim), var(--green));
  border-radius: 100px; transition: width 0.8s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 8px var(--green);
}

/* ── Badge / Level ───────────────────────────────────────── */
.level-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--green-dark); border: 1px solid var(--border-lit);
  border-radius: 4px; padding: 2px 8px;
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--green);
}

/* ── Status badges ───────────────────────────────────────── */
.badge {
  display: inline-block; padding: 2px 8px; border-radius: 3px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge--pending  { background: #ff990020; color: #ff9900; border: 1px solid #ff990040; }
.badge--approved { background: #00ff8820; color: var(--green); border: 1px solid #00ff8840; }
.badge--rejected { background: #ff445520; color: var(--red); border: 1px solid #ff445540; }

/* ── Table ───────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
thead th {
  padding: 10px 14px; text-align: left;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); border-bottom: 1px solid var(--border);
}
tbody td { padding: 12px 14px; border-bottom: 1px solid #1a2a1e; vertical-align: middle; }
tbody tr:hover td { background: #0d1a10; }
tbody tr:last-child td { border-bottom: none; }

/* ── Flash messages ──────────────────────────────────────── */
.flash {
  padding: 12px 18px; border-radius: var(--radius);
  margin-bottom: 20px; font-weight: 500;
}
.flash--success { background: #00ff8815; border: 1px solid #00ff8840; color: var(--green); }
.flash--error   { background: #ff445515; border: 1px solid #ff445540; color: var(--red); }
.flash--info    { background: #9b59ff15; border: 1px solid #9b59ff40; color: var(--purple); }

/* ── Hero (homepage) ────────────────────────────────────── */
.hero {
  text-align: center; padding: 100px 20px 80px;
  position: relative; overflow: hidden;
}
.hero__eyebrow {
  font-family: var(--font-mono); color: var(--green);
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 16px;
}
.hero__title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 1; letter-spacing: -0.01em;
  background: linear-gradient(135deg, #fff 30%, var(--green) 70%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 20px;
}
.hero__title .accent {
  -webkit-text-fill-color: var(--green);
  text-shadow: 0 0 40px var(--green);
}
.hero__sub {
  font-size: 1.15rem; color: var(--text-dim); max-width: 540px; margin: 0 auto 40px;
}
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Features grid ───────────────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; margin: 60px 0; }
.feature {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.feature:hover { border-color: var(--border-lit); transform: translateY(-3px); }
.feature__icon { font-size: 2rem; margin-bottom: 12px; }
.feature__title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.feature__desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

/* ── Dashboard grid ──────────────────────────────────────── */
.dashboard-grid { display: grid; grid-template-columns: 300px 1fr; gap: 28px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 16px; margin-bottom: 28px; }

/* ── Clip card ───────────────────────────────────────────── */
.clip-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.clip-card:hover { border-color: var(--border-lit); transform: translateY(-2px); }
.clip-card__thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--bg-3); }
.clip-card__body { padding: 14px; }
.clip-card__title { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; margin-bottom: 6px; }
.clip-card__meta { font-size: 0.8rem; color: var(--text-muted); display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* ── Leaderboard ──────────────────────────────────────────── */
.lb-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; border-radius: var(--radius);
  transition: background var(--transition);
}
.lb-row:hover { background: var(--bg-3); }
.lb-row__rank {
  font-family: var(--font-mono); font-size: 0.85rem;
  color: var(--text-muted); width: 28px; text-align: right; flex-shrink: 0;
}
.lb-row--1 .lb-row__rank { color: var(--gold); font-weight: 700; }
.lb-row--2 .lb-row__rank { color: #aaa; }
.lb-row--3 .lb-row__rank { color: #cd7f32; }
.lb-row__name { flex: 1; font-weight: 600; }
.lb-row__value { font-family: var(--font-mono); color: var(--green); font-size: 0.9rem; }

/* ── Tabs ────────────────────────────────────────────────── */
.tabs { display: flex; gap: 2px; background: var(--bg-3); border-radius: var(--radius); padding: 4px; margin-bottom: 24px; }
.tab-btn {
  flex: 1; padding: 8px 16px; background: none; border: none; border-radius: 4px;
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--text-muted); cursor: pointer;
  transition: all var(--transition);
}
.tab-btn.active { background: var(--surface); color: var(--green); }
.tab-btn:hover:not(.active) { color: var(--text); }

/* ── Admin ───────────────────────────────────────────────── */
.admin-nav { display: flex; gap: 6px; margin-bottom: 28px; flex-wrap: wrap; }
.admin-badge {
  display: inline-block; background: #ff990020; border: 1px solid #ff990040;
  color: #ff9900; font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 2px 8px; border-radius: 3px;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border); padding: 24px 0;
  text-align: center; font-size: 0.8rem; color: var(--text-muted);
}
.footer a { color: var(--text-muted); }
.footer a:hover { color: var(--green); }

/* ── Utilities ───────────────────────────────────────────── */
.text-green  { color: var(--green); }
.text-muted  { color: var(--text-muted); }
.text-red    { color: var(--red); }
.text-gold   { color: var(--gold); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.glow-text { text-shadow: 0 0 20px var(--green), 0 0 40px #00ff8840; }

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 10px var(--green-glow); }
  50%       { box-shadow: 0 0 30px var(--green-glow), 0 0 60px #00ff8820; }
}
.anim-fade-up  { animation: fadeUp 0.5s ease both; }
.anim-fade-up--delay-1 { animation-delay: 0.1s; }
.anim-fade-up--delay-2 { animation-delay: 0.2s; }
.anim-fade-up--delay-3 { animation-delay: 0.3s; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .dashboard-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: #0a0f0c; border-bottom: 1px solid var(--border);
    padding: 12px 16px; max-height: calc(100vh - 64px); overflow-y: auto;
  }
  .nav__hamburger { display: block; }
  /* On mobile, dropdowns become static expanded sections, no hover/click toggle needed */
  .nav__dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: none;
    padding: 0 0 0 14px; display: none;
  }
  .nav__dropdown.open .nav__dropdown-menu { display: block; }
  .nav__dropdown-toggle { width: 100%; justify-content: space-between; }
  .nav__bell-panel { width: 290px; right: -10px; }
  main { padding: 24px 0 60px; }
  .hero { padding: 60px 20px 50px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .features { grid-template-columns: 1fr; }
}

/* ── Social Bar ──────────────────────────────────────────── */
.social-bar {
  background: #060a08;
  border-top: 1px solid var(--border);
  padding: 14px 0;
}
.social-bar__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
}
.social-link {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 40px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; font-family: var(--font-head);
  border: 1px solid transparent;
  transition: all var(--transition); white-space: nowrap;
  text-decoration: none;
}
.social-link svg { flex-shrink: 0; }
.social-link--twitch  { color: #9146ff; border-color: #9146ff30; background: #9146ff10; }
.social-link--twitch:hover  { background: #9146ff25; border-color: #9146ff; color: #fff; }
.social-link--youtube { color: #ff0000; border-color: #ff000030; background: #ff000010; }
.social-link--youtube:hover { background: #ff000025; border-color: #ff0000; color: #fff; }
.social-link--soundcloud { color: #ff5500; border-color: #ff550030; background: #ff550010; }
.social-link--soundcloud:hover { background: #ff550025; border-color: #ff5500; color: #fff; }
.social-link--x { color: #e7e7e7; border-color: #e7e7e730; background: #e7e7e710; }
.social-link--x:hover { background: #e7e7e725; border-color: #e7e7e7; color: #fff; }
.social-link--instagram { color: #e1306c; border-color: #e1306c30; background: #e1306c10; }
.social-link--instagram:hover { background: #e1306c25; border-color: #e1306c; color: #fff; }
.social-link--facebook { color: #1877f2; border-color: #1877f230; background: #1877f210; }
.social-link--facebook:hover { background: #1877f225; border-color: #1877f2; color: #fff; }

/* ── Footer full ─────────────────────────────────────────── */
.footer-main {
  background: #060a08;
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.footer-brand__logo {
  font-family: var(--font-head); font-size: 2rem; font-weight: 700;
  color: var(--green); text-shadow: 0 0 20px var(--green-glow);
  margin-bottom: 10px;
}
.footer-brand__logo span { color: #fff; }
.footer-brand__desc { font-size: .85rem; color: var(--text-muted); line-height: 1.6; max-width: 240px; }

/* Footer social icons — clean circular buttons, brand color only on hover */
.footer-social-row { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.footer-social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-3); border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social-icon:hover {
  color: var(--icon-color, var(--green));
  border-color: var(--icon-color, var(--green));
  background: color-mix(in srgb, var(--icon-color, var(--green)) 12%, transparent);
  transform: translateY(-2px);
}

.footer-col__title {
  font-family: var(--font-head); font-size: .75rem; text-transform: uppercase;
  letter-spacing: .12em; color: var(--text-muted); margin-bottom: 14px;
}
.footer-col a {
  display: block; color: var(--text-dim); font-size: .875rem;
  margin-bottom: 8px; transition: color var(--transition);
}
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  max-width: 1200px; margin: 32px auto 0; padding: 20px 24px 0;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: .75rem; color: var(--text-muted); flex-wrap: wrap; gap: 8px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Music page ──────────────────────────────────────────── */
.music-hero {
  background: linear-gradient(135deg, #0a1a10 0%, #060a08 60%);
  border-bottom: 1px solid var(--border);
  padding: 60px 0 40px; text-align: center;
}
.music-hero__title {
  font-family: var(--font-head); font-size: clamp(2rem,5vw,3.5rem);
  font-weight: 700; color: #fff; margin-bottom: 8px;
}
.music-hero__title span { color: var(--green); }

.track-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  display: flex; flex-direction: column;
}
.track-card:hover { border-color: var(--border-lit); transform: translateY(-3px); }
.track-card__art {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  background: var(--surface);
}
.track-card__art-placeholder {
  width: 100%; aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--surface) 0%, var(--green-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.track-card__body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.track-card__title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.track-card__meta { font-size: .8rem; color: var(--text-muted); margin-bottom: 12px; }
.track-card__badge {
  display: inline-block; padding: 2px 8px; border-radius: 3px;
  font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 10px; align-self: flex-start;
}
.track-card__badge--exclusive { background: #ffcc4420; color: var(--gold); border: 1px solid #ffcc4440; }
.track-card__badge--original  { background: #00ff8820; color: var(--green); border: 1px solid #00ff8840; }

.audio-player {
  width: 100%; height: 36px; margin-top: auto;
  accent-color: var(--green); background: transparent;
}
audio::-webkit-media-controls-panel { background: var(--bg-3); }

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.sc-embed { border-radius: var(--radius-lg); overflow: hidden; }

.yt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.yt-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.yt-card:hover { border-color: var(--border-lit); transform: translateY(-2px); }
.yt-card__thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--surface); }
.yt-card__body { padding: 14px; }
.yt-card__title { font-family: var(--font-head); font-weight: 600; font-size: .95rem; margin-bottom: 6px; line-height: 1.3; }
.yt-card__meta  { font-size: .78rem; color: var(--text-muted); }
.yt-card__thumb-wrap { position: relative; }
.yt-card__play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: #00000060; opacity: 0; transition: opacity var(--transition);
}
.yt-card:hover .yt-card__play { opacity: 1; }
.yt-play-btn {
  width: 48px; height: 48px; border-radius: 50%; background: #ff0000;
  display: flex; align-items: center; justify-content: center;
}

/* Admin music table */
.music-admin-upload { background: var(--bg-3); border: 2px dashed var(--border); border-radius: var(--radius-lg); padding: 32px; text-align: center; cursor: pointer; transition: border-color var(--transition); }
.music-admin-upload:hover { border-color: var(--green); }
.music-admin-upload input[type=file] { display: none; }

/* ── Live Widget ─────────────────────────────────────────── */
.live-widget {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 40px; padding: 8px 18px 8px 10px;
  font-size: .85rem; font-weight: 600;
  transition: all var(--transition); text-decoration: none; color: inherit;
}
.live-widget:hover { border-color: #9146ff; color: #fff; }
.live-widget__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #888; flex-shrink: 0;
}
.live-widget__dot--live {
  background: #ff4444;
  box-shadow: 0 0 0 0 #ff444460;
  animation: livePulse 1.4s infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 #ff444460; }
  70%  { box-shadow: 0 0 0 8px #ff444400; }
  100% { box-shadow: 0 0 0 0 #ff444400; }
}
.live-widget__badge {
  background: #ff4444; color: #fff;
  font-size: .65rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; padding: 2px 6px; border-radius: 3px;
}
.live-banner {
  background: linear-gradient(90deg, #1a0a2e 0%, #0d0d1a 50%, #1a0a2e 100%);
  border-bottom: 1px solid #9146ff40;
  padding: 10px 0; overflow: hidden;
}
.live-banner__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.live-banner__info { flex: 1; min-width: 0; }
.live-banner__title {
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff;
}
.live-banner__meta { font-size: .78rem; color: #a78bfa; margin-top: 2px; }

/* ── Announcements ───────────────────────────────────────── */
.announcement {
  border-radius: var(--radius); padding: 14px 18px;
  border-left: 3px solid; margin-bottom: 12px;
  display: flex; align-items: flex-start; gap: 12px;
}
.announcement--info    { background: #9b59ff15; border-color: var(--purple); }
.announcement--success { background: #00ff8815; border-color: var(--green); }
.announcement--warning { background: #ff990015; border-color: #ff9900; }
.announcement--stream  { background: #9146ff15; border-color: #9146ff; }
.announcement__icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.announcement__title { font-weight: 700; font-size: .95rem; margin-bottom: 3px; }
.announcement__body  { font-size: .85rem; color: var(--text-dim); line-height: 1.5; }
.announcement__time  { font-size: .72rem; color: var(--text-muted); margin-top: 5px; }

/* ── Shop ────────────────────────────────────────────────── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.shop-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  display: flex; flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}
.shop-card:hover { border-color: var(--border-lit); transform: translateY(-2px); }
.shop-card--locked { opacity: .55; }
.shop-card__icon { font-size: 2.5rem; margin-bottom: 12px; }
.shop-card__name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.shop-card__desc { font-size: .875rem; color: var(--text-dim); line-height: 1.55; flex: 1; margin-bottom: 16px; }
.shop-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.shop-card__cost {
  font-family: var(--font-mono); font-size: 1.1rem;
  color: var(--green); font-weight: 700;
}
.shop-card__stock { font-size: .75rem; color: var(--text-muted); }
.shop-card__level { font-size: .75rem; color: var(--gold); }

/* ── Activity feed ───────────────────────────────────────── */
.activity-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.activity-item:last-child { border-bottom: none; }
.activity-item__icon {
  font-size: 1.3rem; flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--surface); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.activity-item--unread .activity-item__icon { background: var(--green-dark); }
.activity-item__body { flex: 1; min-width: 0; }
.activity-item__title { font-size: .9rem; font-weight: 600; }
.activity-item__sub { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }
.activity-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex-shrink: 0; margin-top: 6px;
}

/* ── Hall of Fame ────────────────────────────────────────── */
.hof-card {
  background: var(--bg-card);
  border: 1px solid #ffcc4430;
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
  position: relative;
}
.hof-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.hof-badge {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  background: var(--gold); color: #000;
  font-size: .65rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; padding: 3px 8px; border-radius: 3px;
}
.hof-card__thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--surface); }
.hof-card__body { padding: 14px; }
.hof-card__title { font-family: var(--font-head); font-weight: 700; font-size: .95rem; margin-bottom: 6px; }
.hof-card__user { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--text-muted); }

/* ── Redemption history ──────────────────────────────────── */
.badge--pending   { background: #ff990020; color: #ff9900; border: 1px solid #ff990040; }
.badge--fulfilled { background: #00ff8820; color: var(--green); border: 1px solid #00ff8840; }
.badge--rejected  { background: #ff445520; color: var(--red); border: 1px solid #ff445540; }

/* ── Unread badge ────────────────────────────────────────── */
.unread-dot {
  display: inline-block; width: 8px; height: 8px;
  background: var(--green); border-radius: 50;
  margin-left: 6px; vertical-align: middle;
  box-shadow: 0 0 6px var(--green);
}

/* ── Streaks ─────────────────────────────────────────────── */
.streak-display {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #1a0f00, #0d0a00);
  border: 1px solid #ff660030; border-radius: var(--radius-lg);
  padding: 16px 20px;
}
.streak-flame {
  font-size: 2.2rem; line-height: 1;
  filter: drop-shadow(0 0 8px #ff6600);
}
.streak-count {
  font-family: var(--font-head); font-size: 2.8rem; font-weight: 700;
  color: #ff6600; line-height: 1;
  text-shadow: 0 0 20px #ff660060;
}
.streak-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); }
.streak-bonus {
  margin-left: auto; text-align: right;
  font-size: .8rem; color: #ff9900;
}

/* ── Badges ──────────────────────────────────────────────── */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
}
.badge-item {
  background: var(--bg-card); border-radius: var(--radius-lg);
  padding: 14px 10px; text-align: center;
  border: 1px solid var(--border);
  transition: transform var(--transition), border-color var(--transition);
  position: relative;
}
.badge-item:hover { transform: translateY(-2px); }
.badge-item--earned { border-color: var(--border-lit); }
.badge-item--locked { opacity: .35; filter: grayscale(1); }
.badge-item__icon { font-size: 2rem; margin-bottom: 6px; display: block; }
.badge-item__name { font-size: .72rem; font-weight: 700; line-height: 1.3; color: var(--text); }
.badge-item__desc { font-size: .65rem; color: var(--text-muted); margin-top: 3px; line-height: 1.3; }
.badge-rarity {
  position: absolute; top: 6px; right: 6px;
  width: 8px; height: 8px; border-radius: 50%;
}
.badge-rarity--common    { background: #888; }
.badge-rarity--rare      { background: #00aaff; box-shadow: 0 0 6px #00aaff80; }
.badge-rarity--epic      { background: #9b59ff; box-shadow: 0 0 6px #9b59ff80; }
.badge-rarity--legendary { background: var(--gold); box-shadow: 0 0 8px #ffcc4480; }

/* ── Challenges ──────────────────────────────────────────── */
.challenge-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px;
  transition: border-color var(--transition);
}
.challenge-card:hover { border-color: var(--border-lit); }
.challenge-card--complete { border-color: #00ff8840; background: #00ff8806; }
.challenge-card__header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.challenge-card__icon { font-size: 1.6rem; flex-shrink: 0; }
.challenge-card__name { font-family: var(--font-head); font-weight: 700; font-size: 1rem; }
.challenge-card__desc { font-size: .82rem; color: var(--text-muted); }
.challenge-card__progress { margin-top: 10px; }
.challenge-card__bar { background: var(--surface); border-radius: 100px; height: 6px; margin: 6px 0; }
.challenge-card__fill {
  height: 100%; border-radius: 100px;
  background: linear-gradient(90deg, var(--green-dim), var(--green));
  transition: width .6s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 6px var(--green);
}
.challenge-card__fill--complete { background: var(--gold); box-shadow: 0 0 6px var(--gold); }
.challenge-card__reward { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.challenge-reward-pill {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--bg-3); border-radius: 100px;
  padding: 3px 10px; font-size: .75rem; font-weight: 600;
}

/* ── Public Profile ──────────────────────────────────────── */
.profile-hero {
  background: linear-gradient(135deg, #0d1a10 0%, #060a08 100%);
  border-bottom: 1px solid var(--border); padding: 48px 0 32px;
}
.profile-avatar-wrap { position: relative; display: inline-block; }
.profile-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  border: 3px solid var(--border-lit);
  box-shadow: 0 0 24px #00ff8820;
}
.profile-level-badge {
  position: absolute; bottom: -4px; right: -4px;
  background: var(--green); color: #000;
  font-family: var(--font-mono); font-size: .7rem; font-weight: 700;
  padding: 2px 6px; border-radius: 4px;
  box-shadow: 0 0 8px var(--green);
}
.profile-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 20px; }
.profile-stat { text-align: center; }
.profile-stat__val {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 700;
  color: var(--green); line-height: 1;
}
.profile-stat__lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-top: 3px; }

/* ── Song queue ──────────────────────────────────────────── */
.queue-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px;
  display: flex; align-items: center; gap: 14px;
  transition: border-color var(--transition);
}
.queue-card:hover { border-color: var(--border-lit); }
.queue-card__pos {
  font-family: var(--font-mono); font-size: 1.3rem; font-weight: 700;
  color: var(--text-muted); width: 32px; text-align: center; flex-shrink: 0;
}
.queue-card--playing { border-color: var(--green); background: #00ff8806; }
.queue-card--playing .queue-card__pos { color: var(--green); }
.queue-card__note-eq {
  display: flex; gap: 3px; align-items: flex-end; height: 20px; flex-shrink: 0;
}
.queue-card__note-eq span {
  width: 3px; background: var(--green); border-radius: 2px;
  animation: eq 0.8s ease-in-out infinite alternate;
}
.queue-card__note-eq span:nth-child(2) { animation-delay: .2s; }
.queue-card__note-eq span:nth-child(3) { animation-delay: .4s; }
@keyframes eq {
  from { height: 4px; }
  to   { height: 18px; }
}

/* ── Clip voting ─────────────────────────────────────────── */
.vote-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 100px;
  background: var(--bg-3); border: 1px solid var(--border);
  color: var(--text-muted); font-size: .85rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
}
.vote-btn:hover, .vote-btn--voted {
  background: #00ff8815; border-color: var(--green);
  color: var(--green);
}

/* ── Analytics ───────────────────────────────────────────── */
.analytics-chart { width: 100%; height: 200px; }
.stat-delta { font-size: .75rem; margin-top: 4px; }
.stat-delta--up   { color: var(--green); }
.stat-delta--down { color: var(--red); }

/* ── Gift modal ──────────────────────────────────────────── */
.gift-form { background: var(--bg-3); border-radius: var(--radius); padding: 16px; }

/* ── Misc new ────────────────────────────────────────────── */
.challenges-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 16px; }
.period-badge {
  display: inline-block; padding: 2px 8px; border-radius: 3px;
  font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
}
.period-badge--weekly   { background: #9b59ff20; color: var(--purple); border: 1px solid #9b59ff40; }
.period-badge--monthly  { background: #ff990020; color: #ff9900; border: 1px solid #ff990040; }
.period-badge--permanent{ background: #00ff8820; color: var(--green); border: 1px solid #00ff8840; }

/* ── Predictions ─────────────────────────────────────────── */
.prediction-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.prediction-card:hover { border-color: var(--border-lit); }
.prediction-card--open     { border-top: 3px solid var(--green); }
.prediction-card--locked   { border-top: 3px solid #ff9900; }
.prediction-card--resolved { border-top: 3px solid var(--purple); }
.prediction-card--cancelled{ opacity: .5; }

.prediction-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; padding: 3px 10px; border-radius: 4px;
}
.prediction-status--open     { background:#00ff8815; color:var(--green); border:1px solid #00ff8830; }
.prediction-status--locked   { background:#ff990015; color:#ff9900; border:1px solid #ff990030; }
.prediction-status--resolved { background:#9b59ff15; color:var(--purple); border:1px solid #9b59ff30; }
.prediction-status--cancelled{ background:var(--surface); color:var(--text-muted); border:1px solid var(--border); }

.prediction-option {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 14px; cursor: pointer; margin-bottom: 8px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.prediction-option:hover   { border-color: var(--border-lit); }
.prediction-option--selected{ border-color: var(--green); background: #00ff8808; }
.prediction-option--winner  { border-color: var(--gold); background: #ffcc4408; }
.prediction-option__bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  opacity: .08; transition: width .8s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.prediction-option__label { font-weight: 600; font-size: .95rem; position: relative; }
.prediction-option__stats {
  display: flex; justify-content: space-between;
  font-size: .75rem; color: var(--text-muted);
  margin-top: 4px; position: relative;
}
.prediction-pot {
  font-family: var(--font-mono); font-size: 1.2rem; font-weight: 700;
  color: var(--gold); text-shadow: 0 0 12px #ffcc4440;
}
.bet-slider { width: 100%; accent-color: var(--green); margin: 8px 0; }

/* ── Clip of the Week ────────────────────────────────────── */
.cotw-hero {
  background: linear-gradient(135deg,#1a1400 0%,#0a0a08 100%);
  border: 1px solid #ffcc4420; border-radius: var(--radius-lg);
  padding: 32px; text-align: center; position: relative; overflow: hidden;
}
.cotw-hero::before {
  content: '🏆'; position: absolute; font-size: 8rem;
  opacity: .04; top: -20px; right: -20px; transform: rotate(15deg);
  pointer-events: none;
}
.cotw-countdown {
  font-family: var(--font-mono); font-size: 2rem; font-weight: 700;
  color: var(--gold); letter-spacing: .1em;
  text-shadow: 0 0 20px #ffcc4440;
}
.cotw-candidate {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition);
}
.cotw-candidate:hover { border-color: #ffcc4440; transform: translateY(-2px); }
.cotw-candidate--leading { border-color: var(--gold); box-shadow: 0 0 20px #ffcc4415; }

/* ── Schedule ────────────────────────────────────────────── */
.schedule-event {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px; border-radius: var(--radius-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.schedule-event:hover { border-color: var(--border-lit); }
.schedule-event--live { border-color: #ff444460; background: #ff44440a; }
.schedule-event--soon { border-color: #ff990040; background: #ff99000a; }
.schedule-date-col { text-align: center; flex-shrink: 0; min-width: 52px; }
.schedule-date-col__day   { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); }
.schedule-date-col__num   { font-family: var(--font-head); font-size: 2rem; font-weight: 700; line-height: 1; color: #fff; }
.schedule-date-col__month { font-size: .7rem; color: var(--text-muted); }
.schedule-event__type-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.schedule-event__body { flex: 1; min-width: 0; }
.schedule-event__title { font-family: var(--font-head); font-weight: 700; font-size: 1rem; margin-bottom: 3px; }
.schedule-event__desc  { font-size: .82rem; color: var(--text-muted); line-height: 1.5; }
.schedule-event__meta  { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 6px; font-size: .78rem; color: var(--text-muted); }
.event-type-badge {
  display: inline-block; padding: 2px 8px; border-radius: 3px;
  font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
}
.event-type-badge--stream    { background:#9146ff20; color:#9146ff; border:1px solid #9146ff40; }
.event-type-badge--youtube   { background:#ff000020; color:#ff0000; border:1px solid #ff000040; }
.event-type-badge--music_drop{ background:#ff550020; color:#ff5500; border:1px solid #ff550040; }
.event-type-badge--exclusive { background:#ffcc4420; color:var(--gold); border:1px solid #ffcc4440; }
.event-type-badge--community { background:#00ff8820; color:var(--green); border:1px solid #00ff8840; }
.event-type-badge--other     { background:var(--surface); color:var(--text-muted); border:1px solid var(--border); }

.remind-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 100px;
  background: var(--bg-3); border: 1px solid var(--border);
  font-size: .75rem; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: all var(--transition);
}
.remind-btn:hover, .remind-btn--active {
  background: #9b59ff15; border-color: var(--purple); color: var(--purple);
}

/* ── Content posts ───────────────────────────────────────── */
.post-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.post-card:hover { border-color: var(--border-lit); transform: translateY(-2px); color: inherit; }
.post-card__cover { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--surface); }
.post-card__cover-placeholder {
  width: 100%; aspect-ratio: 16/9; background: var(--surface);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.post-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.post-card__type { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 6px; }
.post-card__title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; line-height: 1.3; margin-bottom: 8px; }
.post-card__excerpt { font-size: .85rem; color: var(--text-muted); line-height: 1.55; flex: 1; }
.post-card__meta { margin-top: 12px; font-size: .75rem; color: var(--text-muted); }

/* ── Community Feed ──────────────────────────────────────── */
.feed-wrap {
  max-width: 680px; margin: 0 auto;
}
.feed-item {
  display: flex; gap: 12px; padding: 16px 0;
  border-bottom: 1px solid var(--border);
  animation: fadeUp 0.3s ease both;
}
.feed-item:last-child { border-bottom: none; }
.feed-item__avatar {
  flex-shrink: 0; width: 40px; height: 40px;
  border-radius: 50%; overflow: hidden;
  border: 2px solid var(--border-lit);
}
.feed-item__avatar img { width: 100%; height: 100%; object-fit: cover; }
.feed-item__avatar--system {
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.feed-item__body { flex: 1; min-width: 0; }
.feed-item__text { font-size: .9rem; line-height: 1.5; }
.feed-item__text strong { color: #fff; }
.feed-item__meta { font-size: .75rem; color: var(--text-muted); margin-top: 4px; }
.feed-item__link {
  display: inline-block; margin-top: 6px;
  font-size: .8rem; color: var(--green);
  background: #00ff8810; border: 1px solid #00ff8820;
  padding: 3px 10px; border-radius: 4px;
  transition: all var(--transition);
}
.feed-item__link:hover { background: #00ff8820; color: #fff; }

.feed-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; flex-wrap: wrap; gap: 10px;
}
.live-indicator {
  display: flex; align-items: center; gap: 6px;
  font-size: .75rem; color: var(--text-muted);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); animation: livePulse 2s infinite;
}

/* ── Blog ────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--border-lit); transform: translateY(-3px); color: inherit; }
.blog-card__cover {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  background: var(--surface);
}
.blog-card__cover-ph {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--surface) 0%, var(--green-dark) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.blog-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card__type {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--green); margin-bottom: 8px;
}
.blog-card__title {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 700;
  line-height: 1.3; margin-bottom: 10px;
}
.blog-card__excerpt { font-size: .875rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.blog-card__meta { margin-top: 14px; font-size: .75rem; color: var(--text-muted); display: flex; gap: 10px; }

.blog-post__body {
  font-size: 1rem; line-height: 1.8; color: var(--text);
  max-width: 720px;
}
.blog-post__body h2 { font-family: var(--font-head); font-size: 1.6rem; margin: 32px 0 12px; color: #fff; }
.blog-post__body h3 { font-family: var(--font-head); font-size: 1.2rem; margin: 24px 0 8px; color: #fff; }
.blog-post__body p  { margin-bottom: 16px; }
.blog-post__body a  { color: var(--green); text-decoration: underline; }
.blog-post__body img { max-width: 100%; border-radius: var(--radius); margin: 16px 0; }
.blog-post__body blockquote {
  border-left: 3px solid var(--green); padding: 12px 20px;
  background: #00ff8808; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0; color: var(--text-dim);
}
.blog-post__body ul, .blog-post__body ol { padding-left: 24px; margin-bottom: 16px; }
.blog-post__body li { margin-bottom: 6px; }
.blog-post__body code {
  background: var(--bg-3); padding: 2px 6px; border-radius: 3px;
  font-family: var(--font-mono); font-size: .85em;
}
.blog-post__body pre {
  background: var(--bg-3); padding: 16px; border-radius: var(--radius);
  overflow-x: auto; margin: 16px 0;
}

/* ── Mod panel ───────────────────────────────────────────── */
.mod-badge {
  display: inline-block; background: #00ccff20; border: 1px solid #00ccff40;
  color: #00ccff; font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; padding: 2px 8px; border-radius: 3px;
}

/* ── User search ─────────────────────────────────────────── */
.user-search-result {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: border-color var(--transition);
  text-decoration: none; color: inherit;
}
.user-search-result:hover { border-color: var(--border-lit); color: inherit; }
.user-search-result__info { flex: 1; min-width: 0; }
.user-search-result__name { font-weight: 700; font-size: .95rem; }
.user-search-result__meta { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }
.user-search-result__stats { text-align: right; flex-shrink: 0; }
.user-search-result__credits { font-family: var(--font-mono); font-size: .9rem; color: var(--green); font-weight: 700; }

/* ── Messages ────────────────────────────────────────────── */
.inbox-thread {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius);
  cursor: pointer; transition: background var(--transition);
  text-decoration: none; color: inherit;
}
.inbox-thread:hover { background: var(--bg-3); color: inherit; }
.inbox-thread--unread { background: #00ff8806; }
.inbox-thread--unread .inbox-thread__name { color: #fff; font-weight: 700; }
.inbox-unread-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px var(--green);
  flex-shrink: 0;
}
.message-bubble {
  max-width: 72%; padding: 10px 14px; border-radius: 12px;
  font-size: .9rem; line-height: 1.5; margin-bottom: 8px;
}
.message-bubble--sent {
  background: var(--green-dark); border: 1px solid #00ff8830;
  margin-left: auto; border-radius: 12px 12px 2px 12px;
}
.message-bubble--received {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px 12px 12px 2px;
}
.message-bubble__meta { font-size: .68rem; color: var(--text-muted); margin-top: 4px; }

/* ── OBS Overlays ────────────────────────────────────────── */
.overlay-page {
  background: transparent !important;
  font-family: var(--font-head);
}
.overlay-leaderboard {
  background: linear-gradient(135deg, rgba(8,12,10,.92), rgba(13,20,16,.95));
  border: 1px solid #00ff8840; border-radius: 12px;
  padding: 16px; min-width: 280px; backdrop-filter: blur(8px);
}
.overlay-lb-title {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .15em;
  color: var(--green); margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.overlay-lb-row {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; border-bottom: 1px solid #00ff8815;
}
.overlay-lb-row:last-child { border-bottom: none; }
.overlay-lb-rank { font-size: .8rem; color: var(--text-muted); width: 20px; text-align: right; }
.overlay-lb-name { flex: 1; font-size: .9rem; font-weight: 600; color: #fff; }
.overlay-lb-val  { font-family: var(--font-mono); font-size: .8rem; color: var(--green); }

.overlay-queue {
  background: linear-gradient(135deg, rgba(8,12,10,.92), rgba(13,20,16,.95));
  border: 1px solid #9146ff40; border-radius: 12px;
  padding: 16px; min-width: 300px; backdrop-filter: blur(8px);
}
.overlay-queue-title {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .15em;
  color: #9146ff; margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.overlay-queue-item {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; border-bottom: 1px solid #9146ff15;
}
.overlay-queue-item:last-child { border-bottom: none; }
.overlay-queue-pos { font-size: .75rem; color: var(--text-muted); width: 20px; }
.overlay-queue-info { flex: 1; min-width: 0; }
.overlay-queue-song { font-size: .88rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.overlay-queue-user { font-size: .7rem; color: var(--text-muted); }

.overlay-alert {
  background: linear-gradient(135deg, rgba(8,12,10,.95), rgba(0,30,15,.97));
  border: 1px solid var(--green); border-radius: 12px;
  padding: 14px 20px; display: flex; align-items: center; gap: 14px;
  backdrop-filter: blur(8px); min-width: 320px; max-width: 480px;
  animation: slideInRight 0.4s cubic-bezier(.175,.885,.32,1.275) both;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}
.overlay-alert__icon { font-size: 2rem; flex-shrink: 0; }
.overlay-alert__title { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--green); }
.overlay-alert__body  { font-size: 1rem; font-weight: 700; color: #fff; }

/* ── Shoutout Wall ────────────────────────────────────────── */
.shoutout-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px;
  display: flex; gap: 12px; margin-bottom: 12px;
}
.shoutout-item__avatar { flex-shrink: 0; }
.shoutout-item__body { flex: 1; min-width: 0; }
.shoutout-item__text { font-size: .9rem; line-height: 1.5; }
.shoutout-item__from { color: var(--green); font-weight: 700; }
.shoutout-item__meta { font-size: .75rem; color: var(--text-muted); margin-top: 6px; display: flex; gap: 10px; align-items: center; }
.shoutout-report-btn {
  font-size: .7rem; color: var(--text-muted); background: none; border: none;
  cursor: pointer; text-decoration: underline; padding: 0;
}
.shoutout-report-btn:hover { color: var(--red); }
.shoutout-form textarea { resize: none; }
.shoutout-char-count { font-size: .72rem; color: var(--text-muted); text-align: right; margin-top: 4px; }

/* ── Referral ────────────────────────────────────────────── */
.referral-card {
  background: linear-gradient(135deg, #0d1a10, #060a08);
  border: 1px solid var(--border-lit); border-radius: var(--radius-lg);
  padding: 28px; text-align: center;
}
.referral-link-box {
  display: flex; gap: 8px; background: var(--bg-3);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 10px 14px; margin: 16px 0; align-items: center;
}
.referral-link-box code { flex: 1; font-family: var(--font-mono); font-size: .85rem; color: var(--green); overflow-x: auto; white-space: nowrap; }
.referral-stats-row { display: flex; gap: 20px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.referral-stat { text-align: center; }
.referral-stat__val { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--green); }
.referral-stat__lbl { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }

/* ── EPK Page ────────────────────────────────────────────── */
.epk-hero {
  position: relative; min-height: 60vh; display: flex; align-items: center;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 90%), var(--bg-2);
  overflow: hidden;
}
.epk-hero__bg {
  position: absolute; inset: 0; object-fit: cover; opacity: .25;
  filter: grayscale(.3) contrast(1.1);
}
.epk-hero__content { position: relative; z-index: 2; padding: 80px 0; width: 100%; }
.epk-hero__name {
  font-family: var(--font-head); font-size: clamp(3rem,9vw,7rem); font-weight: 700;
  line-height: .95; color: #fff; text-shadow: 0 0 60px #00ff8830;
}
.epk-hero__tagline { font-size: 1.2rem; color: var(--green); margin-top: 12px; letter-spacing: .05em; }
.epk-section { padding: 64px 0; border-top: 1px solid var(--border); }
.epk-stat-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 20px; }
.epk-highlight {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.epk-highlight__year { font-family: var(--font-mono); color: var(--green); font-weight: 700; min-width: 60px; }
.epk-quote {
  border-left: 3px solid var(--green); padding: 16px 24px;
  background: #00ff8808; border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; font-size: 1.1rem; margin-bottom: 16px; color: var(--text-dim);
}
.epk-quote__source { font-style: normal; font-size: .8rem; color: var(--text-muted); margin-top: 8px; }
.epk-contact-card {
  background: var(--bg-card); border: 1px solid var(--border-lit);
  border-radius: var(--radius-lg); padding: 28px; text-align: center;
}

/* ── Admin: mass drop ────────────────────────────────────── */
.mass-drop-warning {
  background: #ff990010; border: 1px solid #ff990040; border-radius: var(--radius);
  padding: 14px; font-size: .85rem; color: #ffaa44;
}

/* ── Bulk actions ────────────────────────────────────────── */
.bulk-actions-bar {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-3); border: 1px solid var(--border-lit);
  border-radius: var(--radius); padding: 12px 16px;
  margin-bottom: 16px; position: sticky; top: 76px; z-index: 50;
}
.clip-select-checkbox { width: 18px; height: 18px; accent-color: var(--green); cursor: pointer; }

/* ── Daily reward celebration modal ──────────────────────── */
.reward-modal {
  position: fixed; inset: 0; z-index: 400;
  display: flex; align-items: center; justify-content: center;
  background: #000c; backdrop-filter: blur(4px);
  animation: fadeIn .2s ease;
}
.reward-modal__card {
  background: var(--bg-card); border: 1px solid var(--border-lit);
  border-radius: 20px; padding: 40px 32px; text-align: center;
  max-width: 380px; width: 90%;
  box-shadow: 0 0 80px #00ff8820, var(--shadow-card);
  animation: scaleIn .3s cubic-bezier(.175,.885,.32,1.275);
}
@keyframes scaleIn { from { opacity:0; transform:scale(.85); } to { opacity:1; transform:scale(1); } }
.reward-modal__icon { font-size: 3.5rem; line-height: 1; margin-bottom: 12px; }
.reward-modal__title { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; margin-bottom: 4px; }
.reward-modal__amount { font-size: 2.5rem; font-weight: 900; font-family: var(--font-head); color: var(--green); text-shadow: 0 0 20px var(--green); margin: 8px 0; }
.reward-modal__sub { font-size: .9rem; color: var(--text-muted); margin-bottom: 20px; }
.reward-particles { position: fixed; inset: 0; pointer-events: none; z-index: 401; }
.particle {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  animation: particleFly 1.2s ease-out forwards;
}
@keyframes particleFly {
  0%   { opacity:1; transform:translateY(0) scale(1); }
  100% { opacity:0; transform:translateY(-200px) scale(0); }
}

/* ── Streak / XP progress bars ───────────────────────────── */
.progress-bar { background: var(--bg-3); border-radius: 100px; height: 8px; overflow: hidden; }
.progress-bar__fill { height: 100%; border-radius: 100px; transition: width .6s ease; background: linear-gradient(90deg, var(--green), #00ccaa); }
.progress-bar--xp .progress-bar__fill { background: linear-gradient(90deg, var(--purple), #9b59ff); }
.progress-bar--streak .progress-bar__fill { background: linear-gradient(90deg, #ff6600, #ffcc00); }
.streak-milestones { display: flex; justify-content: space-between; margin-top: 4px; }
.streak-milestone { font-size: .65rem; color: var(--text-muted); }
.streak-milestone--reached { color: var(--gold); font-weight: 700; }

/* ── Homepage redesign ────────────────────────────────────── */
.home-hero {
  min-height: 70vh; display: flex; align-items: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #00ff8812, transparent),
              radial-gradient(ellipse 60% 40% at 80% 100%, #9b59ff08, transparent);
  padding: 80px 0 60px;
}
.home-hero__tag {
  display: inline-block; background: #00ff8815; border: 1px solid #00ff8835;
  color: var(--green); font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .15em; padding: 5px 14px; border-radius: 100px; margin-bottom: 18px;
}
.home-hero__title {
  font-family: var(--font-head); font-size: clamp(2.6rem,6vw,5rem);
  font-weight: 700; line-height: 1.05; margin-bottom: 18px;
  background: linear-gradient(135deg, #fff 40%, var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.home-latest-release {
  background: var(--bg-card); border: 1px solid var(--border-lit);
  border-radius: var(--radius-lg); padding: 20px;
  display: flex; gap: 16px; align-items: center;
  margin-top: 28px; max-width: 440px;
}
.home-latest-release__art {
  width: 64px; height: 64px; border-radius: 8px;
  object-fit: cover; flex-shrink: 0; background: var(--surface);
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.home-section-title {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.home-section-title a { font-size: .82rem; font-weight: 400; color: var(--green); margin-left: auto; }

/* ── Blog reactions ───────────────────────────────────────── */
.reaction-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.reaction-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 14px;
  font-size: .88rem; cursor: pointer; transition: all var(--transition);
  color: var(--text-dim);
}
.reaction-btn:hover { border-color: var(--border-lit); color: #fff; }
.reaction-btn--active { background: #00ff8815; border-color: #00ff8840; color: var(--green); }
.reaction-btn__count { font-family: var(--font-mono); font-size: .8rem; }

/* ── Stream section ───────────────────────────────────────── */
.stream-live-banner {
  background: linear-gradient(135deg, #9146ff15, #00ff8808);
  border: 1px solid #9146ff40; border-radius: var(--radius-lg);
  padding: 28px; display: flex; align-items: center; gap: 20px;
  margin-bottom: 32px; flex-wrap: wrap;
}
.stream-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.stream-card:hover { border-color: var(--border-lit); transform: translateY(-2px); }
.stream-card__thumb {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--surface);
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
}
.stream-card__body { padding: 16px; }
.stream-card__title { font-weight: 700; margin-bottom: 4px; font-size: .95rem; }
.stream-card__meta { font-size: .78rem; color: var(--text-muted); }

/* ── Season leaderboard ───────────────────────────────────── */
.season-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #ffcc4420, #ff990010);
  border: 1px solid #ffcc4440; border-radius: 100px;
  padding: 4px 14px; font-size: .75rem; color: var(--gold); font-weight: 700;
}
.season-archive-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  display: flex; gap: 14px; align-items: flex-start;
}

/* ── Profile page improvements ────────────────────────────── */
.profile-bio { font-size: .92rem; color: var(--text-dim); line-height: 1.65; margin-top: 8px; }
.profile-stat-row { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 16px; }
.profile-stat { text-align: center; }
.profile-stat__val { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--green); }
.profile-stat__lbl { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
.clip-status-badge {
  display: inline-block; padding: 2px 8px; border-radius: 3px;
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
}
.clip-status-badge--approved { background: #00ff8820; color: var(--green); }
.clip-status-badge--pending  { background: #ff990020; color: #ff9900; }
.clip-status-badge--rejected { background: #ff444420; color: var(--red); }
