/* ============================================================
   GrischaBock Twitch Streamer Deluxe
   Font: Space Grotesk · Dark / Purple / Glow
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0d0d0f;
  --bg2:      #111114;
  --bg3:      #18181b;
  --bg4:      #1f1f23;
  --purple:   #9146ff;
  --purple-l: #bf94ff;
  --purple-d: #6b2fcc;
  --green:    #00e98c;
  --red:      #f04040;
  --text:     #efeff1;
  --muted:    #adadb8;
  --border:   rgba(255,255,255,0.08);
  --glass-bg: rgba(255,255,255,0.04);
  --glow:     rgba(145,70,255,0.25);
  --radius:   14px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Containers ──────────────────────────────────────────── */
.section-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 36px;
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes blobFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(60px,-40px) scale(1.08); }
  66%     { transform: translate(-30px,30px) scale(0.96); }
}
@keyframes blobFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(-70px,50px) scale(1.12); }
  66%     { transform: translate(40px,-60px) scale(0.92); }
}
@keyframes blobFloat3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(50px,-80px) scale(1.05); }
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,233,140,0.7); }
  50%     { box-shadow: 0 0 0 7px rgba(0,233,140,0); }
}
@keyframes pulseDotRed {
  0%,100% { box-shadow: 0 0 0 0 rgba(240,64,64,0.6); }
  50%     { box-shadow: 0 0 0 6px rgba(240,64,64,0); }
}
@keyframes scrollLine {
  0%   { height: 0; opacity: 1; }
  80%  { height: 48px; opacity: 1; }
  100% { height: 48px; opacity: 0; }
}
@keyframes avatarGlow {
  0%,100% { box-shadow: 0 0 0 3px var(--purple), 0 0 40px rgba(145,70,255,0.3); }
  50%     { box-shadow: 0 0 0 4px var(--purple-l), 0 0 60px rgba(145,70,255,0.5); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fadeInUp {
  to { opacity: 1; transform: none; }
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease calc(var(--d,0s)), transform 0.65s ease calc(var(--d,0s));
}
.reveal-up.visible { opacity: 1; transform: none; }

/* ── Shared Components ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: inherit;
  font-size: 0.93rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
  text-decoration: none;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-purple {
  background: var(--purple);
  color: #fff;
}
.btn-purple:hover { background: var(--purple-l); transform: translateY(-2px); box-shadow: 0 8px 28px var(--glow); }
.btn-discord {
  background: #5865f2;
  color: #fff;
}
.btn-discord:hover { background: #7289da; transform: translateY(-2px); }
.btn-ghost {
  background: var(--glass-bg);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--purple); color: var(--purple-l); }

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
}

.text-purple { color: var(--purple-l); }

.section { padding: 96px 0; }
.section-alt { background: var(--bg2); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-header p { color: var(--muted); font-size: 0.97rem; }

.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-l);
  margin-bottom: 10px;
  justify-content: center;
}
.label-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-live    { background: var(--green); animation: pulseDot 2s infinite; }
.dot-offline { background: var(--muted); }
.dot-purple  { background: var(--purple); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 0 36px;
  height: 68px;
  display: flex; align-items: center;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease;
}
#navbar.scrolled {
  background: rgba(13,13,15,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}
.nav-emblem {
  width: 36px; height: 36px;
  background: var(--purple);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  display: block;
  padding: 7px 13px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 7px;
  transition: all 0.18s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,0.06); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--purple-l); transform: translateY(-1px); }
.cta-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.cta-dot.dot-live { animation: pulseDot 2s infinite; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.28s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 600;
  backdrop-filter: blur(4px);
}
.mobile-overlay.active { display: block; }
.mobile-menu {
  position: fixed;
  top: 0; right: -300px;
  width: 280px; height: 100vh;
  background: var(--bg3);
  z-index: 700;
  padding: 72px 24px 36px;
  display: flex; flex-direction: column; gap: 6px;
  transition: right 0.32s ease;
  border-left: 1px solid var(--border);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-close {
  position: absolute; top: 18px; right: 18px;
  background: var(--bg4); border: none;
  width: 34px; height: 34px; border-radius: 8px;
  font-size: 0.95rem; cursor: pointer; color: var(--text);
}
.mm-avatar {
  width: 56px; height: 56px;
  background: var(--purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 6px;
}
.mm-name {
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 18px;
  color: var(--text);
}
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.mobile-menu ul a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.18s ease;
}
.mobile-menu ul a:hover { background: var(--bg4); color: var(--text); }
.mm-twitch-btn {
  display: block;
  text-align: center;
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px;
  border-radius: 8px;
  margin-top: auto;
  transition: background 0.2s ease;
}
.mm-twitch-btn:hover { background: var(--purple-l); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

/* Animated gradient blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-blob-1 {
  width: 700px; height: 700px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(145,70,255,0.22) 0%, transparent 70%);
  animation: blobFloat1 18s ease-in-out infinite;
}
.hero-blob-2 {
  width: 600px; height: 600px;
  bottom: -150px; right: -100px;
  background: radial-gradient(circle, rgba(91,33,182,0.18) 0%, transparent 70%);
  animation: blobFloat2 22s ease-in-out infinite;
}
.hero-blob-3 {
  width: 400px; height: 400px;
  top: 40%; left: 55%;
  background: radial-gradient(circle, rgba(0,233,140,0.08) 0%, transparent 70%);
  animation: blobFloat3 16s ease-in-out infinite;
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 32px 80px;
  max-width: 760px;
  margin: 0 auto;
}

/* Avatar */
.hero-avatar-wrap {
  position: relative;
  margin-bottom: 28px;
}
.hero-avatar {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--purple-d), var(--purple));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  animation: avatarGlow 4s ease-in-out infinite;
}
.hero-avatar-ring {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(145,70,255,0.3);
  pointer-events: none;
}
.status-pill {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.pill-live    { background: var(--green); color: #0d2e1a; }
.pill-offline { background: var(--bg4); color: var(--muted); border: 1px solid var(--border); }
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.pill-live .status-dot { animation: pulseDot 2s infinite; background: rgba(13,46,26,0.8); }

/* Hero Text */
.hero-name {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 12px;
}
.hero-tagline {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 400;
}
.hero-location {
  font-size: 0.85rem;
  color: var(--purple-l);
  font-weight: 600;
  margin-bottom: 36px;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 28px;
  margin-bottom: 32px;
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}
.hero-stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat span {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 3px;
}
.hero-stat-div {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* CTA buttons */
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

/* Social icons */
.hero-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.social-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.2s ease;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover {
  background: rgba(145,70,255,0.15);
  border-color: var(--purple);
  color: var(--purple-l);
  transform: translateY(-2px);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.35;
  z-index: 2;
}
.hero-scroll-hint span { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.scroll-line {
  width: 1px;
  height: 0;
  background: var(--muted);
  animation: scrollLine 2.5s ease infinite;
}

/* ============================================================
   STREAM
   ============================================================ */
.stream-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 16px;
  align-items: start;
}
.stream-player {
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 60px rgba(145,70,255,0.15);
}
.player-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.player-wrapper iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.stream-chat {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg3);
  display: flex;
  flex-direction: column;
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  background: var(--bg4);
  color: var(--muted);
}
.chat-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.chat-wrapper {
  height: 480px;
}
.chat-wrapper iframe {
  width: 100%; height: 100%;
  border: none;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}
.about-card-big {
  background: linear-gradient(135deg, var(--purple-d), var(--bg4));
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(145,70,255,0.2);
  box-shadow: 0 0 40px rgba(145,70,255,0.1);
}
.about-avatar-large {
  width: 90px; height: 90px;
  background: var(--purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 0 32px rgba(145,70,255,0.4);
}
.about-card-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-card-info strong { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.about-card-info span  { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

.about-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
  width: 100%;
}
.mini-stat {
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mini-stat strong { font-size: 1.3rem; font-weight: 800; color: var(--purple-l); }
.mini-stat span   { font-size: 0.73rem; color: var(--muted); }

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 18px;
}
.about-bio {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 22px;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.tag {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(145,70,255,0.12);
  border: 1px solid rgba(145,70,255,0.25);
  color: var(--purple-l);
}

/* ============================================================
   SCHEDULE
   ============================================================ */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.schedule-day {
  border-radius: var(--radius);
  padding: 22px 14px 18px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.day-active {
  background: rgba(145,70,255,0.08);
  border-color: rgba(145,70,255,0.3);
}
.day-off {
  background: var(--glass-bg);
  opacity: 0.55;
}
.day-today {
  border-color: var(--purple) !important;
  background: rgba(145,70,255,0.14) !important;
  opacity: 1 !important;
  box-shadow: 0 0 0 1px var(--purple), 0 4px 24px rgba(145,70,255,0.2);
}
.today-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.day-abbr  { font-size: 1.2rem; font-weight: 800; color: var(--text); }
.day-label { font-size: 0.65rem; color: var(--muted); font-weight: 500; }
.day-time  { font-size: 0.88rem; font-weight: 700; color: var(--purple-l); margin-top: 4px; }
.day-game  { font-size: 0.72rem; color: var(--muted); }
.day-indicator {
  width: 28px; height: 3px;
  background: var(--purple);
  border-radius: 100px;
  margin-top: 4px;
}
.day-off-text { font-size: 0.73rem; color: var(--muted); margin-top: 8px; }
.schedule-note {
  text-align: center;
  font-size: 0.87rem;
  color: var(--muted);
}
.schedule-note a { color: var(--purple-l); font-weight: 600; }
.schedule-note a:hover { color: var(--text); }

/* ============================================================
   CLIPS
   ============================================================ */
.clips-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.clip-filter-btn {
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: none;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}
.clip-filter-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}
.clip-filter-btn:not(.active):hover { border-color: var(--purple); color: var(--purple-l); }

.clips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.clip-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg3);
  transition: all 0.3s ease;
}
.clip-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(145,70,255,0.3); }
.clip-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.clip-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.clip-card:hover .clip-thumb img { transform: scale(1.05); }
.clip-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.clip-card:hover .clip-overlay { opacity: 1; }
.clip-play {
  width: 54px; height: 54px;
  background: var(--purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 28px rgba(145,70,255,0.5);
  transform: scale(0.8);
  transition: transform 0.2s ease;
}
.clip-card:hover .clip-play { transform: scale(1); }
.clip-play svg { width: 24px; height: 24px; color: #fff; margin-left: 3px; }
.clip-duration {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.clip-game-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--purple);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}
.clip-info {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.clip-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.clip-views { font-size: 0.75rem; color: var(--muted); }

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

/* ============================================================
   EQUIPMENT
   ============================================================ */
.equip-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.equip-tab {
  font-family: inherit;
  font-size: 0.87rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: none;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}
.equip-tab.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  box-shadow: 0 4px 18px rgba(145,70,255,0.3);
}
.equip-tab:not(.active):hover { border-color: var(--purple); color: var(--purple-l); }

.equip-panel { display: none; }
.equip-panel.active { display: block; }

.equip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
}
.equip-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  transition: all 0.22s ease;
}
.equip-card:hover {
  background: rgba(145,70,255,0.08);
  border-color: rgba(145,70,255,0.3);
  transform: translateX(4px);
}
.equip-icon { font-size: 1.7rem; flex-shrink: 0; line-height: 1; }
.equip-info { display: flex; flex-direction: column; gap: 3px; }
.equip-info strong { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.equip-info span   { font-size: 0.78rem; color: var(--muted); line-height: 1.4; }

/* ============================================================
   LINKS
   ============================================================ */
.links-container { max-width: 640px; }
.links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.link-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--glass-bg);
  transition: all 0.22s ease;
  cursor: pointer;
}
.link-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--lc, var(--purple));
  transform: translateX(6px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.link-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.link-text { flex: 1; }
.link-text strong { display: block; font-size: 1rem; font-weight: 700; color: var(--text); }
.link-text span   { font-size: 0.8rem; color: var(--muted); }
.link-arrow { font-size: 1.2rem; color: var(--muted); transition: transform 0.2s ease; }
.link-item:hover .link-arrow { transform: translateX(4px); color: var(--text); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  padding: 40px 36px;
}
.footer-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo strong { font-size: 1rem; font-weight: 700; display: block; }
.footer-logo span   { font-size: 0.75rem; color: var(--muted); }

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg4);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--muted);
  transition: all 0.2s ease;
}
.footer-social-link:hover {
  background: var(--lc, var(--purple));
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-credit { font-size: 0.78rem; color: var(--muted); }
.footer-credit a { color: var(--purple-l); font-weight: 600; }
.footer-credit a:hover { color: var(--text); }

/* ── Back to Top ─────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  background: var(--purple);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700;
  z-index: 400;
  opacity: 0; transform: translateY(10px);
  pointer-events: none;
  transition: all 0.28s ease;
  box-shadow: 0 4px 18px rgba(145,70,255,0.4);
}
.back-to-top.visible { opacity: 1; transform: none; pointer-events: auto; }
.back-to-top:hover   { background: var(--purple-l); transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .stream-layout { grid-template-columns: 1fr; }
  .chat-wrapper  { height: 420px; }
  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .schedule-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .clips-grid    { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-phone { display: none; }
  .hamburger     { display: flex; }
  .nav-cta       { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .section-container { padding: 0 20px; }
  .section-header h2 { font-size: 1.8rem; }
  .hero-name     { font-size: 3rem; }
  .hero-stats    { padding: 14px 16px; }
  .hero-stat     { padding: 0 14px; }
  .hero-stat strong { font-size: 1.2rem; }
  .schedule-grid { grid-template-columns: repeat(4, 1fr); }
  .clips-grid    { grid-template-columns: 1fr; }
  .about-grid    { grid-template-columns: 1fr; }
  .navbar { padding: 0 20px; }
  #navbar { padding: 0 20px; }
  .hero-btns     { flex-direction: column; align-items: center; }
  .hero-inner    { padding: 88px 20px 70px; }
}

@media (max-width: 480px) {
  .schedule-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-stat-div { display: none; }
  .hero-stats    { gap: 14px; }
}
