/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --purple:        #9147ff;
  --purple-light:  #b880ff;
  --purple-dark:   #6b22d6;
  --pink:          #ff4dc4;
  --pink-light:    #ff80d5;
  --bg:            #0d0d12;
  --bg-2:          #13131c;
  --bg-3:          #1a1a28;
  --surface:       rgba(255,255,255,0.05);
  --surface-hover: rgba(255,255,255,0.09);
  --border:        rgba(255,255,255,0.08);
  --border-hover:  rgba(145,71,255,0.4);
  --text:          #f0f0f8;
  --text-muted:    #8888a8;
  --text-dim:      #555570;
  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --shadow:        0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow:   0 0 40px rgba(145,71,255,0.25);
  --transition:    0.25s ease;
  --font-head:     'Rajdhani', sans-serif;
  --font-body:     'Inter', sans-serif;
  --max-w:         1200px;
  --header-h:      72px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =============================================
   PARTICLES CANVAS
   ============================================= */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  display: block;
  border: none;
  outline: none;
}

/* =============================================
   SKIP LINK
   ============================================= */
.skip-link {
  position: absolute;
  top: -200px;
  left: 16px;
  background: var(--purple);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { top: 8px; }

/* =============================================
   CONTAINER
   ============================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* =============================================
   GLASS CARD
   ============================================= */
.glass {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  outline-offset: 3px;
}
.btn:focus-visible { outline: 2px solid var(--purple-light); }

.btn--primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(145,71,255,0.4);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  box-shadow: 0 6px 28px rgba(145,71,255,0.6);
  transform: translateY(-2px);
}

.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--purple-light);
  border: 1px solid var(--purple);
}
.btn--outline:hover {
  background: rgba(145,71,255,0.12);
  border-color: var(--purple-light);
  transform: translateY(-2px);
}

.btn--live {
  background: linear-gradient(135deg, #e91916, #c4140e);
  color: #fff;
  padding: 10px 20px;
  font-size: 0.875rem;
  box-shadow: 0 4px 16px rgba(233,25,22,0.4);
}
.btn--live:hover {
  box-shadow: 0 6px 24px rgba(233,25,22,0.6);
  transform: translateY(-1px);
}

.btn--lg  { padding: 14px 32px; font-size: 1rem; }
.btn--xl  { padding: 18px 40px; font-size: 1.1rem; border-radius: var(--radius-lg); }

/* =============================================
   LIVE DOT
   ============================================= */
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulse-dot 1.4s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,68,68,0.7); }
  50%       { box-shadow: 0 0 0 6px rgba(255,68,68,0); }
}

/* =============================================
   HEADER / NAV
   ============================================= */
.header {
  position: sticky;
  top: 12px;
  left: 16px;
  right: 16px;
  margin: 12px 16px 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(13,13,18,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.header.scrolled {
  background: rgba(13,13,18,0.95);
  border-color: rgba(145,71,255,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(145,71,255,0.1);
}

.nav {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: color var(--transition);
  flex-shrink: 0;
}
.nav__logo:hover { color: var(--purple-light); }

.nav__logo-hex {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav__link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.nav__link:hover, .nav__link.active {
  color: var(--text);
  background: var(--surface);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  top: calc(var(--header-h) + 12px + 8px);
  left: 16px;
  right: 16px;
  background: rgba(13,13,18,0.97);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 16px;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 99;
}
.nav__mobile[aria-hidden="false"] { transform: translateY(0); opacity: 1; pointer-events: auto; }

.nav__mobile ul { display: flex; flex-direction: column; gap: 4px; }
.nav__mobile a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.nav__mobile a:hover { color: var(--text); background: var(--surface); }
.mobile-cta {
  color: var(--purple-light) !important;
  border: 1px solid var(--purple) !important;
  margin-top: 8px;
  text-align: center;
}
.mobile-cta:hover { background: rgba(145,71,255,0.15) !important; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  clip-path: inset(0);
  isolation: isolate;
}

.hero__orbs { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float-orb 8s ease-in-out infinite;
}
.orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(145,71,255,0.25), transparent 70%);
  top: -200px; left: -200px;
  animation-delay: 0s;
}
.orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,77,196,0.2), transparent 70%);
  bottom: -150px; right: -150px;
  animation-delay: -3s;
}
.orb--3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(145,71,255,0.15), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation-delay: -5s;
}
@keyframes float-orb {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(30px, -20px); }
  66%       { transform: translate(-20px, 30px); }
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 80px;
}

/* Avatar */
.hero__avatar-wrap { position: relative; width: 160px; height: 160px; }

.avatar__ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--purple), var(--pink)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: spin-ring 6s linear infinite;
}
.avatar__ring--2 {
  inset: -16px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--pink), var(--purple)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: spin-ring 10s linear infinite reverse;
  opacity: 0.5;
}
@keyframes spin-ring { to { transform: rotate(360deg); } }

.avatar {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-dark), #1a0040);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 700;
  color: var(--purple-light);
  text-shadow: 0 0 30px rgba(145,71,255,0.8);
  box-shadow: 0 0 40px rgba(145,71,255,0.4), inset 0 0 40px rgba(145,71,255,0.1);
}

.live-badge {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #e91916, #c4140e);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(233,25,22,0.5);
  white-space: nowrap;
}

/* Copy */
.hero__eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--purple-light);
}
.hero__name {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, #fff 0%, var(--purple-light) 50%, var(--pink-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(145,71,255,0.4));
}
.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.7;
}

/* CTAs */
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Stats */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 40px;
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
  justify-content: center;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat__value {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--purple-light);
  line-height: 1;
}
.stat__label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.stat__sep { width: 1px; height: 40px; background: var(--border); }

/* Scroll down */
.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-dim);
  animation: bob 2s ease-in-out infinite;
  transition: color var(--transition);
  display: flex;
}
.scroll-down:hover { color: var(--purple-light); }
@keyframes bob { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* =============================================
   SECTIONS (shared)
   ============================================= */
.section { padding: 100px 0; position: relative; }

.section-head { text-align: center; margin-bottom: 64px; }

.tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(145,71,255,0.15);
  border: 1px solid rgba(145,71,255,0.3);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-light);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

/* =============================================
   ABOUT
   ============================================= */
.about__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

.about__visual { position: relative; }

.about__glow {
  position: absolute;
  top: -40px; left: -40px; right: -40px; bottom: -40px;
  background: radial-gradient(circle at center, rgba(145,71,255,0.2), transparent 70%);
  pointer-events: none;
}

.about__card {
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.about__card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.about__avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-dark), #1a0040);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--purple-light);
  box-shadow: 0 0 24px rgba(145,71,255,0.4);
}

.about__name { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; }
.about__role { font-size: 0.85rem; color: var(--purple-light); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }

.about__chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.chip {
  padding: 4px 12px;
  background: rgba(145,71,255,0.15);
  border: 1px solid rgba(145,71,255,0.25);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--purple-light);
}

.about__socials { display: flex; gap: 8px; }

.soc {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.soc:hover { transform: translateY(-2px); }
.soc--tw:hover { background: rgba(145,71,255,0.2); border-color: var(--purple); color: var(--purple-light); }
.soc--dc:hover { background: rgba(88,101,242,0.2); border-color: #5865f2; color: #7289da; }
.soc--tt:hover { background: rgba(255,0,80,0.15); border-color: #ff0050; color: #ff0050; }
.soc--yt:hover { background: rgba(255,0,0,0.15); border-color: #ff0000; color: #ff4444; }
.soc--ig:hover { background: rgba(228,64,95,0.15); border-color: #e4405f; color: #e4405f; }

/* Text column */
.about__p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.about__p strong { color: var(--purple-light); font-weight: 600; }

.about__features { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.feature-item:hover { border-color: var(--border-hover); }
.feature-item__icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.feature-item strong { display: block; font-weight: 600; margin-bottom: 2px; }
.feature-item p { font-size: 0.875rem; color: var(--text-muted); }
.feature-item--highlight {
  background: rgba(145,71,255,0.12);
  border-color: rgba(145,71,255,0.4);
  align-items: center;
}
.feature-item--highlight strong {
  color: var(--purple-light);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* =============================================
   SCHEDULE
   ============================================= */
/* =============================================
   SETUP
   ============================================= */
.setup__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.setup__card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.setup__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.setup__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: rgba(145,71,255,0.12);
  border: 1px solid rgba(145,71,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  flex-shrink: 0;
  transition: background var(--transition);
}
.setup__card:hover .setup__icon {
  background: rgba(145,71,255,0.22);
}

.setup__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.setup__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple-light);
}
.setup__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.schedule { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }

.schedule__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.schedule__day {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.schedule__day::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  opacity: 0;
  transition: opacity var(--transition);
}
.schedule__day:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.schedule__day:hover::before { opacity: 1; }

.schedule__day--off { opacity: 0.45; }
.schedule__day--off:hover { transform: none; box-shadow: none; }

.schedule__day--hot {
  border-color: rgba(255,77,196,0.3);
}
.schedule__day--hot::before { background: linear-gradient(90deg, var(--pink), var(--purple)); opacity: 0.5; }

.sday__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 10px;
}

.sday__name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}
.sday__time { font-size: 1rem; font-weight: 600; color: var(--purple-light); }
.sday__game { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

.sday__dot {
  position: absolute;
  bottom: 20px; right: 20px;
  width: 10px; height: 10px;
  border-radius: 50%;
}
.sday__dot--on  { background: #4cff91; box-shadow: 0 0 8px rgba(76,255,145,0.6); animation: pulse-dot-green 2s infinite; }
.sday__dot--off { background: var(--text-dim); }
.sday__dot--hot { background: var(--pink); box-shadow: 0 0 8px rgba(255,77,196,0.6); animation: pulse-dot-pink 2s infinite; }

@keyframes pulse-dot-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76,255,145,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(76,255,145,0); }
}
@keyframes pulse-dot-pink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,77,196,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(255,77,196,0); }
}

.schedule__note {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.8rem;
  margin-top: 32px;
}

/* =============================================
   HIGHLIGHTS / CLIPS
   ============================================= */
.clips__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.clip {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.clip:hover { transform: translateY(-4px); border-color: var(--border-hover); box-shadow: var(--shadow-glow); }

.clip__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.clip__thumb--1 { background: linear-gradient(135deg, #1a0030, #3d0066, #6b0000); }
.clip__thumb--2 { background: linear-gradient(135deg, #001a3d, #002b66, #0d4d99); }
.clip__thumb--3 { background: linear-gradient(135deg, #1a1a00, #3d3300, #664d00); }
.clip__thumb--4 { background: linear-gradient(135deg, #001a1a, #003333, #005544); }
.clip__thumb--5 { background: linear-gradient(135deg, #0d001a, #220033, #4d0066); }
.clip__thumb--6 { background: linear-gradient(135deg, #1a000d, #33001a, #660033); }

.clip__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.04), transparent 70%);
}

.clip__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(145,71,255,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all var(--transition);
  z-index: 1;
}
.clip__play:hover { background: var(--purple); transform: translate(-50%,-50%) scale(1.1); box-shadow: 0 0 24px rgba(145,71,255,0.6); }
.clip__play:focus-visible { outline: 2px solid var(--purple-light); outline-offset: 3px; }

.clip__dur {
  position: absolute;
  bottom: 8px; right: 10px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  z-index: 1;
}

.clip__info { padding: 16px 20px 20px; }
.clip__title { font-weight: 600; font-size: 0.95rem; margin-bottom: 8px; line-height: 1.4; }
.clip__meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.clip__meta span:first-child { color: var(--purple-light); }

.highlights__more { display: flex; justify-content: center; margin-top: 48px; }

/* =============================================
   COMMUNITY / PLATFORMS
   ============================================= */
.community { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }

.platforms {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.platform {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.platform::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
}
.platform:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.platform:hover::before { opacity: 1; }
.platform:focus-visible { outline: 2px solid var(--purple-light); outline-offset: 3px; }

.platform--twitch:hover   { border-color: rgba(145,71,255,0.5); }
.platform--twitch::before { background: linear-gradient(135deg, rgba(145,71,255,0.08), transparent); }

.platform--discord:hover   { border-color: rgba(88,101,242,0.5); }
.platform--discord::before { background: linear-gradient(135deg, rgba(88,101,242,0.08), transparent); }

.platform--tiktok:hover   { border-color: rgba(255,0,80,0.4); }
.platform--tiktok::before { background: linear-gradient(135deg, rgba(255,0,80,0.06), transparent); }

.platform--youtube:hover   { border-color: rgba(255,0,0,0.4); }
.platform--youtube::before { background: linear-gradient(135deg, rgba(255,0,0,0.06), transparent); }

.platform--instagram:hover   { border-color: rgba(228,64,95,0.4); }
.platform--instagram::before { background: linear-gradient(135deg, rgba(228,64,95,0.06), transparent); }

.platform--twitter:hover   { border-color: rgba(255,255,255,0.2); }
.platform--twitter::before { background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent); }

.platform__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative; z-index: 1;
}

.platform--twitch   .platform__icon { color: #9147ff; }
.platform--discord  .platform__icon { color: #5865f2; }
.platform--tiktok   .platform__icon { color: #ff0050; }
.platform--youtube  .platform__icon { color: #ff0000; }
.platform--instagram .platform__icon { color: #e4405f; }
.platform--twitter  .platform__icon { color: #fff; }

.platform__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative; z-index: 1;
  flex: 1;
}
.platform__text strong { font-size: 1rem; font-weight: 600; }
.platform__text span { font-size: 0.825rem; color: var(--text-muted); }

.platform__arr {
  font-size: 1.2rem;
  color: var(--text-dim);
  transition: all var(--transition);
  position: relative; z-index: 1;
}
.platform:hover .platform__arr { color: var(--text); transform: translateX(4px); }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section__orbs { position: absolute; inset: 0; pointer-events: none; }
.orb--cta1 {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(145,71,255,0.3), transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  filter: blur(60px);
  border-radius: 50%;
}
.orb--cta2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,77,196,0.2), transparent 70%);
  bottom: -150px; left: 50%;
  transform: translateX(-50%);
  filter: blur(60px);
  border-radius: 50%;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-section__title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-section__sub { font-size: 1.1rem; color: var(--text-muted); max-width: 480px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.footer__logo:hover { color: var(--purple-light); }

.footer__nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.footer__nav a {
  padding: 6px 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.footer__nav a:hover { color: var(--text); background: var(--surface); }

.footer__socials { display: flex; gap: 8px; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.footer__bottom p { font-size: 0.8rem; color: var(--text-dim); }

/* =============================================
   AOS — Animate on Scroll (custom, no lib)
   ============================================= */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1023px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 340px; margin: 0 auto; }
}

@media (max-width: 767px) {
  :root { --header-h: 64px; }
  .section { padding: 72px 0; }
  .nav__links, .btn--live { display: none; }
  .hamburger { display: flex; }
  .hero__stats { gap: 20px; padding: 16px 24px; }
  .stat__sep { height: 28px; }
  .schedule__grid { grid-template-columns: 1fr 1fr; }
  .footer__row { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer__nav { flex-direction: row; }
}

@media (max-width: 479px) {
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { justify-content: center; }
  .schedule__grid { grid-template-columns: 1fr; }
  .clips__grid { grid-template-columns: 1fr; }
  .platforms { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
}
