/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ═══════════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════════ */
:root {
  --bg:            #07070f;
  --bg-alt:        #0c0c1a;
  --surface:       #0f0f20;
  --surface-2:     #161630;
  --border:        rgba(255, 255, 255, 0.06);
  --border-purple: rgba(145, 71, 255, 0.3);
  --border-gold:   rgba(240, 192, 64, 0.3);

  --purple:        #9147ff;
  --purple-light:  #b07fff;
  --purple-dark:   #6b2fd4;
  --purple-glow:   rgba(145, 71, 255, 0.2);

  --gold:          #f0c040;
  --gold-light:    #f7da6e;
  --gold-dark:     #c49a2a;
  --gold-glow:     rgba(240, 192, 64, 0.18);

  --text:          #eeeeff;
  --text-muted:    #6a6a9a;
  --text-dim:      #3a3a66;

  --radius:        16px;
  --radius-sm:     10px;
  --radius-lg:     24px;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

.gradient-text {
  background: linear-gradient(125deg, var(--purple-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 110px 0; }
.section-alt { background: var(--bg-alt); }

.section-label {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(240, 192, 64, 0.08);
  border: 1px solid rgba(240, 192, 64, 0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 52px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
  box-shadow: 0 0 28px var(--purple-glow);
}
.btn-primary:hover {
  background: var(--purple-light);
  border-color: var(--purple-light);
  box-shadow: 0 0 50px var(--purple-glow), 0 8px 30px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 24px var(--gold-glow);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 0;
  transition: padding 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(7, 7, 15, 0.88);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
  padding: 12px 0;
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav-logo span { color: var(--purple-light); }
.nav-logo:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  flex: 1;
}
.nav-links a {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.nav-cta { margin-left: auto; flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: auto;
  padding: 4px 8px;
}

.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: rgba(7,7,15,0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 16px 28px 24px;
  gap: 4px;
}
.nav-links.open a { font-size: 1rem; padding: 10px 14px; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 88px;
}

/* animated gradient blobs */
.hero-bg { position: absolute; inset: 0; overflow: hidden; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.blob-1 {
  width: 700px; height: 700px;
  background: var(--purple);
  opacity: 0.28;
  top: -200px; left: -120px;
  animation: blobFloat1 14s ease-in-out infinite;
}
.blob-2 {
  width: 450px; height: 450px;
  background: var(--gold);
  opacity: 0.1;
  bottom: -80px; right: -80px;
  animation: blobFloat2 18s ease-in-out infinite;
}
.blob-3 {
  width: 320px; height: 320px;
  background: var(--purple-dark);
  opacity: 0.22;
  bottom: 160px; left: 35%;
  animation: blobFloat3 11s ease-in-out infinite;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  40%       { transform: translate(70px,-50px) scale(1.08); }
  70%       { transform: translate(-40px,70px) scale(0.96); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(-90px,-70px) scale(1.12); }
}
@keyframes blobFloat3 {
  0%, 100% { transform: translate(0,0); }
  50%       { transform: translate(50px,-90px); }
}

/* subtle dot grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 0;
  pointer-events: none;
}
/* bottom fade into next section */
.hero-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 28px;
}

/* live badge */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 28px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.3s, background 0.3s;
}
.live-badge.is-live {
  border-color: rgba(255,60,60,0.4);
  background: rgba(255,60,60,0.08);
  color: #ff6666;
}
.live-badge.is-offline {
  border-color: rgba(90,90,140,0.3);
  color: var(--text-muted);
}

.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
  flex-shrink: 0;
}
.live-badge.is-live .live-dot {
  background: #ff4444;
  box-shadow: 0 0 8px #ff4444;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:0.4; transform:scale(0.75); }
}

.hero-title {
  font-size: clamp(4.5rem, 13vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 18px;
}

.hero-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 44px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* hero donut character image */
.hero-donut {
  position: absolute;
  z-index: 1;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(300px, 36vw, 580px);
  pointer-events: none;
  user-select: none;
  animation: heroFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 0 60px rgba(145,71,255,0.5)) drop-shadow(0 0 120px rgba(145,71,255,0.2));
}
.hero-donut img {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(-50%) rotate(-2deg); }
  50%       { transform: translateY(calc(-50% - 20px)) rotate(2deg); }
}

/* scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 44px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 0.7rem;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:1; transform:scaleY(1); }
  50%     { opacity:0.2; transform:scaleY(0.4); }
}

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}

.about-avatar { display: flex; justify-content: center; }

.avatar-frame {
  position: relative;
  width: 300px; height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-donut {
  width: 260px;
  height: auto;
  position: relative;
  z-index: 2;
  animation: avatarFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 0 50px rgba(145,71,255,0.5)) drop-shadow(0 0 20px rgba(240,192,64,0.15));
}
@keyframes avatarFloat {
  0%,100% { transform: translateY(0) rotate(-6deg); }
  50%     { transform: translateY(-22px) rotate(6deg); }
}

.avatar-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(145,71,255,0.18);
  animation: ringBreath 5s ease-in-out infinite;
}
.ring-2 {
  inset: -36px;
  border-color: rgba(240,192,64,0.1);
  animation-delay: -2.5s;
}
@keyframes ringBreath {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:0.25; transform:scale(1.06); }
}

.about-content h2 { font-size: clamp(1.8rem,3vw,2.6rem); margin-bottom: 22px; }

.about-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.about-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.about-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════
   SCHEDULE
═══════════════════════════════════════════════ */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.schedule-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 12px;
  text-align: center;
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.schedule-card.inactive { opacity: 0.35; }
.schedule-card.active {
  background: rgba(145,71,255,0.07);
  border-color: var(--border-purple);
  box-shadow: 0 0 30px rgba(145,71,255,0.1);
}
.schedule-card.active:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 50px rgba(145,71,255,0.2), 0 16px 40px rgba(0,0,0,0.2);
}

.day-badge {
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--purple), var(--purple-dark));
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 100px;
}

.day-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.schedule-card.active .day-label { color: var(--purple-light); }

.day-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.day-time {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
}
.schedule-card.inactive .day-time { color: var(--text-dim); font-size: 1.1rem; }

.schedule-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.schedule-note a { color: var(--purple-light); text-decoration: underline; text-underline-offset: 3px; }
.schedule-note a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   LIVE STATS
═══════════════════════════════════════════════ */
.stats-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.status-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.live {
  background: #ff4444;
  box-shadow: 0 0 8px #ff4444;
  animation: livePulse 1.5s ease-in-out infinite;
}
.status-dot.offline { background: #333355; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
/* top shimmer line */
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(145,71,255,0.5), transparent);
}
.stat-card.gold::before {
  background: linear-gradient(90deg, transparent, rgba(240,192,64,0.6), transparent);
}
.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-purple);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px var(--purple-glow);
}
.stat-card.gold:hover {
  border-color: var(--border-gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px var(--gold-glow);
}

.stat-icon { font-size: 2rem; margin-bottom: 14px; }

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.stat-card.gold .stat-value { color: var(--gold); }

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════
   CLIPS
═══════════════════════════════════════════════ */
.clips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.clip-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  cursor: pointer;
}
.clip-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-purple);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.clip-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
}

.clip-info { padding: 16px 18px; }
.clip-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 5px;
}
.clip-meta { font-size: 0.8rem; color: var(--text-muted); }

.clips-cta { text-align: center; }

/* ═══════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 20px var(--gold-glow);
}

.blog-card-header {
  padding: 24px 24px 0;
}

.blog-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(240,192,64,0.08);
  border: 1px solid rgba(240,192,64,0.18);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.blog-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--text);
}

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  padding: 0 24px;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  margin-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'Space Grotesk', sans-serif;
}

.blog-read-more {
  color: var(--purple-light);
  font-weight: 600;
  transition: color 0.2s;
}
.blog-card:hover .blog-read-more { color: var(--gold); }

.blog-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}
.blog-empty-icon { font-size: 3.5rem; margin-bottom: 16px; }

.blog-cta { text-align: center; }

/* ═══════════════════════════════════════════════
   BLOG PAGE (blog.html)
═══════════════════════════════════════════════ */
.blog-page-header {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}
.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-bottom: 120px;
}
.blog-featured { grid-column: 1 / -1; }
.blog-featured .blog-card-title { font-size: 1.6rem; }

/* ═══════════════════════════════════════════════
   POST PAGE (posts/*.html)
═══════════════════════════════════════════════ */
.post-header {
  padding: 160px 0 60px;
  max-width: 780px;
  margin: 0 auto;
}
.post-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 28px 120px;
}
.post-body h2 { font-size: 1.6rem; margin: 40px 0 16px; color: var(--text); }
.post-body h3 { font-size: 1.25rem; margin: 32px 0 12px; color: var(--text); }
.post-body p  { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 20px; }
.post-body a  { color: var(--purple-light); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { color: var(--gold); }
.post-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 12px 20px;
  margin: 24px 0;
  background: rgba(240,192,64,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-muted);
  font-style: italic;
}
.post-body code {
  font-family: 'Courier New', monospace;
  background: var(--surface-2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--purple-light);
}
.post-meta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════
   SOCIALS
═══════════════════════════════════════════════ */
.socials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.social-card:hover { transform: translateY(-5px); }

.social-card.kick:hover {
  border-color: rgba(83,252,26,0.35);
  box-shadow: 0 0 40px rgba(83,252,26,0.1);
}
.social-card.discord:hover {
  border-color: rgba(88,101,242,0.45);
  box-shadow: 0 0 40px rgba(88,101,242,0.15);
}
.social-card.tiktok:hover {
  border-color: rgba(255,0,80,0.35);
  box-shadow: 0 0 40px rgba(255,0,80,0.1);
}

.social-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  font-style: normal;
}
.kick-icon    { background: rgba(83,252,26,0.1);  color: #53fc1a; }
.discord-icon { background: rgba(88,101,242,0.1); color: #7289da; }
.tiktok-icon  { background: rgba(255,0,80,0.1);   color: #ff0050; }

.social-info { flex: 1; }
.social-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 3px;
}
.social-handle { font-size: 0.83rem; color: var(--text-muted); }

.social-arrow {
  color: var(--text-dim);
  font-size: 1.3rem;
  transition: transform 0.2s var(--ease), color 0.2s;
}
.social-card:hover .social-arrow {
  color: var(--text-muted);
  transform: translateX(5px);
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  padding: 44px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.82rem; color: var(--text-dim); }

/* ═══════════════════════════════════════════════
   CAFÉ BACKGROUND SECTION
═══════════════════════════════════════════════ */
.section-cafe {
  position: relative;
  isolation: isolate;
}
.section-cafe::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('assets/cafe-bg.png') center center / cover no-repeat;
  opacity: 0.07;
  z-index: -1;
}
.section-cafe::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--bg) 0%, transparent 15%, transparent 85%, var(--bg) 100%);
  z-index: -1;
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1060px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .about-avatar { order: -1; }
  .about-stats { justify-content: center; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-toggle { display: block; }

  .section { padding: 80px 0; }

  .hero-donut { display: none; }
  .hero-content { max-width: 100%; }

  .schedule-grid { grid-template-columns: repeat(4, 1fr); }
  .schedule-card:nth-child(5) { grid-column: 2; }
  .schedule-card:nth-child(6),
  .schedule-card:nth-child(7) { grid-column: span 2; }

  .clips-grid    { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .socials-grid  { grid-template-columns: 1fr; }
  .blog-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero-ctas     { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .stats-grid    { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-card:nth-child(5)  { grid-column: auto; }
  .schedule-card:nth-child(6)  { grid-column: auto; }
  .schedule-card:nth-child(7)  { grid-column: 1 / -1; }
  .footer-inner  { flex-direction: column; text-align: center; }
  .footer-links  { justify-content: center; flex-wrap: wrap; gap: 16px; }
}
