*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #030303;
  --bg-elevated: #0c0c0c;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.14);
  --text: #f5f5f5;
  --text-muted: #7a7a7a;
  --text-dim: #444444;
  --accent: #9146ff;
  --accent-hover: #a970ff;
  --accent-soft: #b07cff;
  --accent-glow: rgba(145, 70, 255, 0.22);
  --accent-glow-strong: rgba(145, 70, 255, 0.45);
  --blue-glow: rgba(59, 130, 246, 0.35);
  --live: #00f593;
  --live-glow: rgba(0, 245, 147, 0.2);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --font: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-display: 'Syne', 'Space Grotesk', sans-serif;
  --header-h: 72px;
  --shadow-sm: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 80px rgba(145, 70, 255, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Background */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 15% 0%, rgba(145, 70, 255, 0.08), transparent 60%),
    radial-gradient(ellipse 40% 30% at 85% 5%, rgba(145, 70, 255, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(145, 70, 255, 0.04), transparent 70%);
}

.grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, black 10%, transparent 75%);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 1.5rem;
  margin: 0.75rem 1.5rem 0;
  max-width: calc(1200px + 3rem);
  margin-left: auto;
  margin-right: auto;
  height: auto;
  min-height: var(--header-h);
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.brand:hover {
  opacity: 0.85;
}

.brand-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(145, 70, 255, 0.4);
  box-shadow: 0 0 16px rgba(145, 70, 255, 0.2);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.brand-text small {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  gap: 0.5rem;
  margin-left: 1.5rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #9146ff 0%, #7c3aed 50%, #6d28d9 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 24px rgba(145, 70, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #a970ff 0%, #8b5cf6 50%, #7c3aed 100%);
  box-shadow: 0 8px 32px rgba(145, 70, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--border-light);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  margin-top: 1.25rem;
}

/* Main */
main {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 2rem;
}

/* Hero */
.hero {
  padding: 1rem 0 3rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(-2deg); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-panel {
  position: relative;
  background: linear-gradient(155deg, #1a1525 0%, #0e0c14 40%, #0a0a0a 100%);
  border: 1px solid rgba(145, 70, 255, 0.2);
  border-radius: calc(var(--radius) + 8px);
  padding: 2rem 2.5rem 2.5rem;
  overflow: visible;
  box-shadow:
    var(--shadow-md),
    0 0 100px rgba(145, 70, 255, 0.12),
    0 0 60px rgba(59, 130, 246, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(145, 70, 255, 0.8), rgba(59, 130, 246, 0.5), transparent);
}

.hero-panel::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -40px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(145, 70, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-title {
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.85;
  background: linear-gradient(180deg, rgba(145, 70, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  background: rgba(145, 70, 255, 0.12);
  border: 1px solid rgba(145, 70, 255, 0.25);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--text);
  line-height: 1.15;
}

.hero-name {
  background: linear-gradient(135deg, #fff 0%, var(--accent-soft) 60%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.status-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.status-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.35rem;
  transition: border-color 0.2s, background 0.2s;
}

.status-card:hover {
  border-color: var(--border-light);
  background: rgba(255, 255, 255, 0.04);
}

.status-card-accent {
  border-color: rgba(145, 70, 255, 0.35);
  background: linear-gradient(135deg, rgba(145, 70, 255, 0.12) 0%, rgba(59, 130, 246, 0.04) 100%);
  box-shadow: 0 0 30px rgba(145, 70, 255, 0.08);
}

.status-card-accent:hover {
  border-color: rgba(145, 70, 255, 0.5);
  box-shadow: 0 0 40px rgba(145, 70, 255, 0.12);
}

.status-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.status-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.status-label svg {
  opacity: 0.6;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
  transition: all 0.3s;
  flex-shrink: 0;
}

.status-dot.live {
  background: var(--live);
  box-shadow: 0 0 10px var(--live), 0 0 20px var(--live-glow);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

.status-value {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

.status-value-lg {
  font-family: var(--font-display);
  font-size: 3rem;
  background: linear-gradient(135deg, #fff 0%, var(--accent-soft) 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(145, 70, 255, 0.3));
}

.status-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.pill {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.pill-live {
  background: var(--live-glow);
  color: var(--live);
  border-color: rgba(0, 245, 147, 0.3);
}

.pill-live.is-live {
  animation: pulse 2s infinite;
}

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  z-index: 2;
  align-self: center;
  width: 100%;
}

.profile-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

.profile-glow-1 {
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 380px;
  background: radial-gradient(circle, var(--accent-glow-strong) 0%, transparent 70%);
  animation: pulseGlow 4s ease-in-out infinite;
}

.profile-glow-2 {
  top: 45%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
  animation: pulseGlow 4s ease-in-out infinite 2s;
}

.profile-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  flex-shrink: 0;
  padding: 3px;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, #9146ff, #60a5fa, #9146ff, #c084fc);
  background-size: 300% 300%;
  animation: gradientShift 6s ease infinite;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(145, 70, 255, 0.25),
    0 0 100px rgba(59, 130, 246, 0.15);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.profile-frame:hover {
  transform: scale(1.01);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(145, 70, 255, 0.35),
    0 0 120px rgba(59, 130, 246, 0.2);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.profile-ring {
  display: none;
}

.profile-inner {
  position: absolute;
  inset: 3px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0a0a0a;
}

.profile-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 0.35rem 0.8rem;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(145, 70, 255, 0.4);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(145, 70, 255, 0.2);
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: var(--radius);
  display: block;
}

.hero-quote {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  text-align: center;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(145, 70, 255, 0.08), rgba(59, 130, 246, 0.04));
  border: 1px solid rgba(145, 70, 255, 0.2);
  border-radius: var(--radius-sm);
  line-height: 1.5;
  flex-shrink: 0;
}

/* Sections */
.section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.7s ease both;
}

.section:nth-child(3) { animation-delay: 0.1s; }
.section:nth-child(4) { animation-delay: 0.15s; }
.section:nth-child(5) { animation-delay: 0.2s; }
.section:nth-child(6) { animation-delay: 0.25s; }

.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  background: rgba(145, 70, 255, 0.1);
  border: 1px solid rgba(145, 70, 255, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Live board */
.live-board {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 1rem;
  align-items: start;
}

.live-main {
  background: var(--bg-card);
  border: 1px solid rgba(145, 70, 255, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.live-player-header {
  margin-bottom: 1rem;
}

.live-player-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.live-player-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.live-player-title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.live-player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.live-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.live-player-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #0a0a0a, #141414);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: opacity 0.3s;
}

.live-player-placeholder.hidden {
  opacity: 0;
  pointer-events: none;
}

.live-player-actions {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* Top clips */
.section-clips {
  padding-top: 3rem;
}

.clips-panel {
  background: linear-gradient(180deg, rgba(18, 21, 28, 0.95) 0%, rgba(11, 14, 20, 0.98) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem 1.35rem;
  box-shadow: var(--shadow-sm);
}

.clips-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.35rem;
}

.clips-header-copy {
  min-width: 0;
}

.clips-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0.15rem 0 0.45rem;
}

.clips-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 34rem;
}

.clips-all-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, background 0.2s;
}

.clips-all-btn:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.clips-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.clips-state {
  grid-column: 1 / -1;
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.clip-card {
  display: flex;
  flex-direction: column;
  background: #12151c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.clip-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
}

.clip-thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
  overflow: hidden;
}

.clip-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.clip-card:hover .clip-thumb-wrap img {
  transform: scale(1.03);
}

.clip-views-badge {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  padding: 0.22rem 0.45rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.78);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.clip-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.clip-play-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}

.clip-play-icon svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  margin-left: 2px;
}

.clip-body {
  padding: 0.75rem 0.85rem 0.85rem;
}

.clip-body h3 {
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.28rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clip-date {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.clip-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.clip-modal[hidden] {
  display: none;
}

.clip-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}

.clip-modal-dialog {
  position: relative;
  width: min(920px, 100%);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1rem 1rem 1.15rem;
  box-shadow: var(--shadow-lg);
}

.clip-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.clip-modal-close:hover {
  background: rgba(255, 255, 255, 0.16);
}

.clip-modal-title {
  font-size: 0.95rem;
  font-weight: 700;
  padding-right: 2.5rem;
  margin-bottom: 0.75rem;
}

.clip-modal-player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
}

.clip-modal-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.clip-modal-link {
  display: inline-flex;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-soft);
}

.clip-modal-link:hover {
  color: var(--accent-hover);
}

@media (max-width: 1100px) {
  .social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .clips-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .clips-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .clips-grid {
    grid-template-columns: 1fr;
  }

  .clips-panel {
    padding: 1.15rem 1rem 1rem;
  }

  .social-panel {
    padding: 1.15rem 1rem 1rem;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }
}

.live-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.live-link-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.live-link-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}

.live-link-card strong {
  font-size: 0.92rem;
  font-weight: 700;
}

.live-link-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.live-link-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.pill-vod {
  background: rgba(96, 165, 250, 0.12);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.25);
}

/* Board grid (legacy) */
.board-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.board-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.25s ease;
}

.board-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.board-card-featured {
  grid-row: span 2;
  border-color: rgba(145, 70, 255, 0.2);
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(145, 70, 255, 0.05) 100%);
}

.board-card-featured:hover {
  border-color: rgba(145, 70, 255, 0.35);
  box-shadow: var(--shadow-sm), 0 0 30px rgba(145, 70, 255, 0.08);
}

.board-card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.board-card-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.board-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.board-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.board-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-soft);
  transition: color 0.2s, gap 0.2s;
}

.board-link:hover {
  color: var(--accent-hover);
  gap: 0.5rem;
}

/* Social hub */
.section-socials {
  padding-top: 3rem;
}

.social-panel {
  background: linear-gradient(180deg, rgba(18, 21, 28, 0.95) 0%, rgba(11, 14, 20, 0.98) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem 1.35rem;
  box-shadow: var(--shadow-sm);
}

.social-header {
  margin-bottom: 1.35rem;
}

.social-label {
  color: #071018;
  background: #55ccff;
  border-color: rgba(85, 204, 255, 0.35);
}

.social-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0.15rem 0 0.45rem;
}

.social-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 34rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.social-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 148px;
  background: #12151c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 0.95rem 0.9rem 0.9rem;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--platform-accent, rgba(255, 255, 255, 0.2));
  box-shadow: 0 0 14px var(--platform-glow, transparent);
}

.social-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
}

.social-card[data-platform="twitch"] {
  --platform-accent: #9146ff;
  --platform-glow: rgba(145, 70, 255, 0.45);
}

.social-card[data-platform="discord"] {
  --platform-accent: #5865f2;
  --platform-glow: rgba(88, 101, 242, 0.45);
}

.social-card[data-platform="twitter"] {
  --platform-accent: rgba(255, 255, 255, 0.75);
  --platform-glow: rgba(255, 255, 255, 0.18);
}

.social-card[data-platform="tiktok"] {
  --platform-accent: #25f4ee;
  --platform-glow: rgba(37, 244, 238, 0.35);
}

.social-card[data-platform="instagram"] {
  --platform-accent: #f77737;
  --platform-glow: rgba(247, 119, 55, 0.35);
}

.social-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.social-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--platform-accent, rgba(255, 255, 255, 0.12));
  background: #0a0a0a;
}

.social-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.social-card-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.12rem;
  min-width: 0;
}

.social-card-count {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  color: #55ccff;
}

.social-card-stat-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.social-card-bottom h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.18rem;
}

.social-card-bottom .handle {
  font-size: 0.72rem;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

.join-label {
  color: var(--accent-soft);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Reach board */
.reach-board {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.reach-total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2rem 1.75rem;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 80% 120% at 100% 0%, rgba(145, 70, 255, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}

.reach-total-copy {
  flex: 1;
  min-width: 0;
}

.reach-total-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.reach-total-sub {
  font-size: 0.84rem;
  color: var(--text-dim);
  line-height: 1.5;
  max-width: 28rem;
}

.reach-stack {
  display: flex;
  height: 6px;
  margin-top: 1.25rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.reach-stack-segment {
  height: 100%;
  min-width: 2px;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reach-stack-segment[data-platform="twitch"] { background: #9146ff; }
.reach-stack-segment[data-platform="discord"] { background: #5865f2; }
.reach-stack-segment[data-platform="instagram"] { background: #e1306c; }
.reach-stack-segment[data-platform="tiktok"] { background: #25f4ee; }
.reach-stack-segment[data-platform="twitter"] { background: rgba(255, 255, 255, 0.55); }

.reach-total-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  flex-shrink: 0;
}

.reach-total-value {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 20%, var(--accent-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reach-total-meta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.reach-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem 1.25rem 1.25rem;
}

.reach-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.95rem 1rem;
  border: 1px solid transparent;
  border-radius: calc(var(--radius) - 4px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.reach-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border);
  transform: translateX(2px);
}

.reach-item-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: #0a0a0a;
}

.reach-item[data-platform="twitch"] .reach-item-avatar {
  border-color: rgba(145, 70, 255, 0.45);
  box-shadow: 0 0 14px rgba(145, 70, 255, 0.18);
}

.reach-item[data-platform="twitter"] .reach-item-avatar {
  border-color: rgba(255, 255, 255, 0.22);
}

.reach-item[data-platform="tiktok"] .reach-item-avatar {
  border-color: rgba(37, 244, 238, 0.35);
}

.reach-item[data-platform="instagram"] .reach-item-avatar {
  border-color: rgba(225, 48, 108, 0.4);
}

.reach-item[data-platform="discord"] .reach-item-avatar {
  border-color: rgba(88, 101, 242, 0.45);
  box-shadow: 0 0 14px rgba(88, 101, 242, 0.15);
}

.reach-item-main {
  flex: 1;
  min-width: 0;
}

.reach-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.55rem;
}

.reach-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.reach-item-platform {
  font-size: 0.88rem;
  font-weight: 700;
}

.reach-item-type {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.reach-item-handle {
  font-size: 0.72rem;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reach-item-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  flex-shrink: 0;
}

.reach-item-count {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.1;
}

.reach-item-share {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}

.reach-item-bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.reach-item-bar-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reach-item[data-platform="twitch"] .reach-item-bar-fill { background: linear-gradient(90deg, #9146ff, #b07cff); }
.reach-item[data-platform="discord"] .reach-item-bar-fill { background: linear-gradient(90deg, #5865f2, #7289da); }
.reach-item[data-platform="instagram"] .reach-item-bar-fill { background: linear-gradient(90deg, #f77737, #e1306c); }
.reach-item[data-platform="tiktok"] .reach-item-bar-fill { background: linear-gradient(90deg, #25f4ee, #ff0050); }
.reach-item[data-platform="twitter"] .reach-item-bar-fill { background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.75)); }

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.footer-brand strong {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.footer-brand span {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-left: auto;
}

.footer-links a {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
  width: 100%;
  font-size: 0.68rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }

  .hero-visual {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
    height: auto;
  }

  .profile-frame {
    flex: none;
    aspect-ratio: 3 / 4;
  }

  .hero-title {
    font-size: clamp(3.5rem, 18vw, 6rem);
    top: 1rem;
    left: 1.5rem;
  }

  .hero-panel {
    padding: 1.75rem;
  }

  .board-grid { grid-template-columns: 1fr; }
  .board-card-featured { grid-row: span 1; }
  .status-row { grid-template-columns: 1fr; }

  .live-board { grid-template-columns: 1fr; }
  .live-sidebar { flex-direction: row; flex-wrap: wrap; }
  .live-link-card { flex: 1 1 200px; }
}

@media (max-width: 700px) {
  .site-header {
    margin: 0.5rem 1rem 0;
    padding: 0.75rem 1rem;
  }

  .nav-links,
  .header-actions { display: none; }

  .menu-toggle { display: flex; }

  .site-header.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    gap: 1rem;
  }

  .site-header.menu-open .header-actions {
    display: flex;
    position: absolute;
    top: calc(100% + 180px);
    left: 0;
    right: 0;
    padding: 0 1rem;
  }

  main { padding: 1rem; }

  .hero { padding: 0.5rem 0 2rem; }

  .reach-total {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 1.25rem;
  }

  .reach-total-stat {
    align-items: flex-start;
  }

  .reach-list {
    padding: 0.75rem 0.65rem 1rem;
  }

  .reach-item {
    padding: 0.85rem 0.75rem;
  }

  .footer-links { margin-left: 0; }
}
