@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700;800&display=swap');

/* ============================================================
   THEME VARIABLES — BUFFSTREAMS ROSE (ROSE + VIOLET)
   ============================================================ */
:root {
  --bg: #0d0511;
  --bg2: #170a1c;
  --panel: rgba(40, 15, 45, 0.55);
  --panel2: #1e0e28;
  --panel3: #2d1640;
  --text: #fdeef7;
  --muted: #b18fc2;
  --line: rgba(177, 143, 194, 0.15);

  --rose: #f43f5e;
  --rose2: #fb7185;
  --rose3: #fda4af;
  --violet: #8b5cf6;
  --violet2: #a78bfa;
  --violet3: #c4b5fd;
  --pink: #ec4899;
  --pink2: #f472b6;
  --live: #ef4444;
  --live2: #f87171;

  --grad-primary: linear-gradient(135deg, #f43f5e 0%, #8b5cf6 100%);
  --grad-rose: linear-gradient(135deg, #f43f5e 0%, #fb7185 100%);
  --grad-violet: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
  --grad-live: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
  --grad-neon: linear-gradient(135deg, #f43f5e 0%, #ec4899 50%, #8b5cf6 100%);
  --grad-rose-violet: linear-gradient(135deg, #f43f5e 0%, #8b5cf6 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(ellipse at 20% -10%, rgba(244, 63, 94, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 5%, rgba(139, 92, 246, 0.16) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #0d0511 0%, #170a1c 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
.container { width: min(1280px, 94%); margin: auto; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 5, 17, 0.8);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo {
  position: relative;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--rose);
  border-radius: 50%;
  border-top-color: transparent;
  animation: ringSpin 3s linear infinite;
  box-shadow: 0 0 14px rgba(244, 63, 94, 0.7);
}
@keyframes ringSpin {
  to { transform: rotate(360deg); }
}

.brand-core {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grad-neon);
  box-shadow: 0 0 18px rgba(236, 72, 153, 0.9);
  animation: corePulse 1.8s ease-in-out infinite;
}
@keyframes corePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.2); opacity: 0.85; }
}

.brand-text {
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 10px;
  transition: all .25s cubic-bezier(.2, .8, .2, 1);
  white-space: nowrap;
  border: 1px solid transparent;
}
.nav-link:hover {
  color: var(--text);
  background: rgba(244, 63, 94, 0.12);
  border-color: rgba(244, 63, 94, 0.3);
}
.nav-link.active {
  color: var(--rose3);
  background: rgba(244, 63, 94, 0.15);
  border-color: rgba(244, 63, 94, 0.4);
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.2);
}

.live-link {
  color: #fff;
  background: var(--grad-live);
  padding: 9px 16px;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
  border: none;
}
.live-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(239, 68, 68, 0.6);
  background: var(--grad-live);
  border-color: transparent;
}
.live-link.active {
  background: var(--grad-live);
  color: #fff;
}

.live-dot-small {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: livePulseSmall 1.2s infinite;
  box-shadow: 0 0 10px #fff;
}
@keyframes livePulseSmall {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.6); }
}

.menu-toggle {
  display: none;
  background: var(--panel2);
  border: 1px solid var(--line);
  color: white;
  font-size: 22px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .2s;
}
.menu-toggle:hover { background: var(--panel3); border-color: var(--rose); }

/* ============================================================
   PAGE TITLE / HERO — SPLIT LAYOUT
   ============================================================ */
.page-title {
  position: relative;
  overflow: hidden;
  padding: 70px 0 60px;
  border-bottom: 1px solid var(--line);
}

.title-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(244, 63, 94, 0.28) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 80%, rgba(139, 92, 246, 0.22) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(236, 72, 153, 0.14) 0%, transparent 50%);
  pointer-events: none;
  animation: glowShift 8s ease-in-out infinite;
}
@keyframes glowShift {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.7; }
}

.title-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-left { text-align: left; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--rose3);
  padding: 7px 18px;
  border: 1px solid rgba(244, 63, 94, 0.4);
  border-radius: 100px;
  background: rgba(244, 63, 94, 0.08);
  margin-bottom: 22px;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 14px var(--rose);
  animation: heroDot 1.5s infinite;
}
@keyframes heroDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}

.page-title h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 6.5vw, 84px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 20px;
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 60px rgba(244, 63, 94, 0.5));
}

.hero-tagline {
  font-size: 19px;
  color: var(--text);
  margin: 0 0 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.5;
}
.hero-tagline span {
  background: var(--grad-rose-violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero-sub {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}
.hero-sub #heroCount {
  color: var(--rose3);
  font-weight: 800;
  font-size: 17px;
}

/* HERO RIGHT — Stats Vertical Grid */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 20px 12px;
  background: rgba(30, 14, 40, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-rose-violet);
  opacity: 0;
  transition: opacity .3s;
}
.stat:hover {
  border-color: rgba(244, 63, 94, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(244, 63, 94, 0.25);
}
.stat:hover::before { opacity: 1; }
.stat strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 800;
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat span {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 50px 0; }

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.section-kicker {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--rose3);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-heading h2 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-heading h2::before {
  content: '';
  width: 4px;
  height: 26px;
  background: var(--grad-rose-violet);
  border-radius: 4px;
  box-shadow: 0 0 14px rgba(244, 63, 94, 0.7);
}

.section-hint {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  display: block;
  margin-top: 4px;
}

.tools { display: flex; gap: 10px; }

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}
.search-ico {
  position: absolute;
  left: 16px;
  font-size: 15px;
  pointer-events: none;
  color: var(--muted);
  font-weight: 700;
}
.search-box input {
  padding-left: 42px !important;
  border-radius: 100px !important;
}

.tools input, .tools select {
  background: var(--panel2);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 12px 20px;
  border-radius: 100px;
  min-width: 200px;
  font-size: 13px;
  outline: none;
  font-family: inherit;
  transition: all .25s;
}
.tools input:focus, .tools select:focus {
  border-color: var(--rose);
  background: var(--panel3);
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.2);
}
.tools input::placeholder { color: var(--muted); }

/* ============================================================
   LEAGUE FILTERS — NEW PILL STYLE WITH ICON BUBBLE
   ============================================================ */
.league-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 4px 2px 8px;
}

.league {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 8px 16px 8px 8px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--panel2) 0%, rgba(45, 22, 64, 0.5) 100%);
  color: var(--muted);
  cursor: pointer;
  transition: all .3s cubic-bezier(.2, .8, .2, 1);
  font-family: inherit;
  overflow: hidden;
}

/* The first emoji/icon inside the button becomes the bubble */
.league::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--grad-rose-violet);
  transition: width .35s cubic-bezier(.2, .8, .2, 1);
  z-index: 0;
}

.league:hover {
  border-color: rgba(244, 63, 94, 0.5);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244, 63, 94, 0.2);
}

.league.active {
  background: var(--grad-rose-violet);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 22px rgba(244, 63, 94, 0.5);
  font-weight: 700;
  padding-right: 20px;
}

.league.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(244, 63, 94, 0.65);
}

/* ============================================================
   EVENT GRID — NEW MASONRY / 2-COLUMN CARD LAYOUT
   ============================================================ */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
  width: 100%;
}

.event-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(150deg, rgba(30, 14, 40, 0.9) 0%, rgba(45, 22, 64, 0.6) 100%);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: all .35s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

/* Decorative corner gradient blob */
.event-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: var(--grad-rose-violet);
  border-radius: 50%;
  opacity: 0;
  filter: blur(40px);
  transition: opacity .4s;
  pointer-events: none;
}

.event-card:hover {
  border-color: rgba(244, 63, 94, 0.5);
  transform: translateY(-6px);
  background: linear-gradient(150deg, rgba(45, 22, 64, 0.95) 0%, rgba(60, 30, 88, 0.7) 100%);
  box-shadow:
    0 20px 45px -10px rgba(0, 0, 0, 0.75),
    0 0 40px rgba(244, 63, 94, 0.2);
}
.event-card:hover::after { opacity: 0.35; }

.event-card.is-live {
  border-color: rgba(239, 68, 68, 0.55);
  background: linear-gradient(150deg, #1f0a14 0%, #2a0e20 100%);
}
.event-card.is-live::after {
  background: var(--grad-live);
}
.event-card.is-live:hover {
  box-shadow:
    0 20px 45px -10px rgba(0, 0, 0, 0.75),
    0 0 40px rgba(239, 68, 68, 0.3);
}

/* ---------- EVENT HEAD ---------- */
.event-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.event-head > div {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--rose3);
  background: rgba(244, 63, 94, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.35);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.live-badge {
  color: #fff;
  background: var(--grad-live);
  font-weight: 800;
  font-size: 9px;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  animation: livePulse 1.2s infinite;
  display: inline-block;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.6);
  text-transform: uppercase;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.6; }
}

.ft-badge {
  color: var(--muted);
  background: rgba(177, 143, 194, 0.12);
  font-weight: 800;
  font-size: 9px;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid var(--line);
  display: inline-block;
  text-transform: uppercase;
}

.event-time {
  font-size: 10px;
  font-weight: 700;
  color: var(--rose3);
  background: rgba(244, 63, 94, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(244, 63, 94, 0.3);
  white-space: nowrap;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.event-card.is-live .event-time {
  color: var(--live2);
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.4);
}

/* ---------- TEAMS — VERTICAL WITH BIG ICONS ---------- */
.teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  min-width: 0;
}

/* Remove the previous reverse-direction hack */
.teams .team:last-child {
  flex-direction: column;
  text-align: center;
}

.team-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 9px;
  transition: all .3s;
  position: relative;
}

.team-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--grad-rose-violet);
  opacity: 0;
  filter: blur(8px);
  transition: opacity .3s;
  z-index: -1;
}

.event-card:hover .team-icon {
  border-color: var(--rose);
  transform: scale(1.08);
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.15);
}
.event-card:hover .team-icon::after { opacity: 0.5; }

.event-card.is-live:hover .team-icon {
  border-color: var(--live);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}
.event-card.is-live:hover .team-icon::after {
  background: var(--grad-live);
}

.team-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.team-icon span { font-size: 22px; }

.team-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
  letter-spacing: -0.01em;
  max-width: 100%;
}

.versus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.5px;
  flex-shrink: 0;
  transition: all .4s cubic-bezier(.2, .8, .2, 1);
  position: relative;
}
.versus::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--grad-rose-violet);
  opacity: 0;
  filter: blur(10px);
  transition: opacity .3s;
  z-index: -1;
}

.event-card:hover .versus {
  border-color: var(--rose);
  color: var(--rose3);
  transform: rotate(-12deg) scale(1.05);
}
.event-card:hover .versus::before { opacity: 0.7; }

.event-card.is-live .versus {
  color: var(--live);
  border-color: rgba(239, 68, 68, 0.5);
}

/* ---------- EVENT FOOTER — FULL WIDTH BUTTON ---------- */
.event-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.league-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  flex: 1;
}
.league-name::before {
  content: '🏆';
  font-size: 11px;
  opacity: 0.7;
  flex-shrink: 0;
}

.event-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 10px 18px;
  border-radius: 100px;
  background: var(--grad-rose-violet);
  border: 1px solid transparent;
  transition: all .25s cubic-bezier(.2, .8, .2, 1);
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(244, 63, 94, 0.35);
  flex-shrink: 0;
}
.event-link:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(244, 63, 94, 0.6);
}
.event-card.is-live .event-link {
  background: var(--grad-live);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
}
.event-card.is-live .event-link:hover {
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.6);
}

/* ---------- EMPTY ---------- */
.empty {
  text-align: center;
  padding: 70px 40px;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 20px;
  font-size: 14px;
  background: var(--panel2);
  grid-column: 1 / -1;
}
.empty strong { color: var(--rose3); font-weight: 800; }
.hidden { display: none; }

/* ============================================================
   ABOUT / FOOTER
   ============================================================ */
.about {
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.9;
  font-size: 15px;
  padding: 60px 0;
}
.about h2 {
  color: var(--text);
  margin-bottom: 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about h2::before {
  content: '';
  width: 4px;
  height: 26px;
  background: var(--grad-rose-violet);
  border-radius: 4px;
  box-shadow: 0 0 14px rgba(244, 63, 94, 0.6);
}

footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
  font-size: 12px;
  background: rgba(13, 5, 17, 0.6);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

/* ============================================================
   PLAYER PAGE
   ============================================================ */
.player-page { padding: 52px 0; }

.player-top h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4.5vw, 50px);
  margin: 18px 0 12px;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--text);
}
.player-top p { color: var(--muted); font-size: 15px; font-weight: 500; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--rose3);
  font-weight: 800;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--grad-rose-violet);
}

.player-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  margin-top: 36px;
}

.video-shell, .side-panel {
  background: linear-gradient(150deg, rgba(30, 14, 40, 0.9) 0%, rgba(45, 22, 64, 0.6) 100%);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: #05010a;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.video-placeholder iframe {
  width: 100%; height: 100%; border: 0;
}
.video-placeholder h2 { margin: 0; font-size: 20px; font-weight: 800; }
.video-placeholder p { color: var(--muted); font-size: 13px; margin-top: 8px; }

.play-symbol {
  font-size: 48px;
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  animation: pulsePlay 2s ease-in-out infinite;
}
@keyframes pulsePlay {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.1); opacity: 0.85; }
}

.server-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.server {
  background: var(--panel2);
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  font-family: inherit;
}
.server:hover {
  border-color: var(--rose);
  color: var(--text);
  background: var(--panel3);
}
.server.active {
  border-color: transparent;
  color: #fff;
  background: var(--grad-rose-violet);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(244, 63, 94, 0.4);
}

.side-panel h3 {
  margin-top: 0;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
}
.side-panel h3::before {
  content: '';
  width: 3px;
  height: 18px;
  background: var(--grad-rose-violet);
  border-radius: 3px;
}
.side-panel p {
  font-size: 13px;
  color: var(--muted);
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.side-panel p strong {
  color: var(--text);
  font-weight: 700;
  min-width: 70px;
}
.side-panel p:last-of-type { border-bottom: none; }

.full { width: 100%; text-align: center; margin-top: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: all .3s cubic-bezier(.2, .8, .2, 1);
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  background: var(--grad-rose-violet);
  color: #fff;
  box-shadow: 0 4px 20px rgba(244, 63, 94, 0.45);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244, 63, 94, 0.65);
}

/* ============================================================
   ARTICLE SECTION
   ============================================================ */
.article-section {
  border-top: 1px solid var(--line);
  padding-top: 60px;
  margin-top: 20px;
}

.article-header {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.article-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 18px auto 24px;
  max-width: 900px;
  color: var(--text);
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 12px;
}
.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--panel2);
  border: 1px solid var(--line);
  border-radius: 100px;
}

.article-body {
  max-width: 820px;
  margin: 0 auto;
  color: #e0c8e8;
  font-size: 16px;
  line-height: 1.85;
}
.article-body .lead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  padding: 22px 24px;
  background: var(--panel2);
  border-left: 3px solid var(--rose);
  border-radius: 12px;
  margin-bottom: 36px;
  box-shadow: -4px 0 20px rgba(244, 63, 94, 0.15);
}
.article-body p { margin-bottom: 22px; }
.article-body h2 {
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin: 50px 0 20px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.article-body h2::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--grad-rose-violet);
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(244, 63, 94, 0.6);
}
.article-body h3 {
  color: var(--rose3);
  font-size: 19px;
  font-weight: 700;
  margin: 32px 0 14px;
  letter-spacing: -0.01em;
}
.article-body ul,
.article-body ol {
  margin: 0 0 26px 24px;
  color: #e0c8e8;
}
.article-body li {
  margin-bottom: 12px;
  line-height: 1.75;
  padding-left: 6px;
}
.article-body li::marker {
  color: var(--rose3);
  font-weight: 800;
}
.article-body strong { color: #ffffff; font-weight: 700; }

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--panel2);
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all .25s;
}
.tag-pill:hover {
  background: var(--grad-rose-violet);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-link { padding: 8px 11px; font-size: 12px; }
  .title-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-left { text-align: center; }
  .page-title h1 { margin-inline: auto; }
}

@media (max-width: 900px) {
  .player-layout { grid-template-columns: 1fr; }
  .event-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .main-nav {
    display: none;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: #170a1c;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.7);
  }
  .main-nav.open { display: flex; }
  .nav-link { justify-content: flex-start; padding: 13px 16px; font-size: 14px; }
  .live-link { justify-content: center; }
}

@media (max-width: 700px) {
  .page-title { padding: 55px 0 40px; }
  .page-title h1 { font-size: 52px; }
  .hero-tagline { font-size: 17px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stat { padding: 16px 8px; }
  .stat strong { font-size: 20px; }

  .event-grid { grid-template-columns: 1fr; }

  .article-section { padding-top: 40px; }
  .article-header h1 { font-size: 26px; }
  .article-body { font-size: 15px; }
  .article-body .lead { font-size: 16px; padding: 18px; }
  .article-body h2 { font-size: 22px; margin-top: 40px; }
  .article-body h3 { font-size: 17px; }
  .article-meta { gap: 8px; font-size: 12px; }
  .article-meta span { padding: 5px 10px; }
}

@media (max-width: 600px) {
  .page-title { padding: 45px 0 34px; }
  .page-title h1 { font-size: 44px; }
  .hero-tagline { font-size: 15px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .section-heading { align-items: stretch; flex-direction: column; }
  .tools { flex-direction: column; }
  .tools input, .tools select { width: 100%; min-width: unset; }
  .search-box { width: 100%; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .player-top h1 { font-size: 28px; }
  .video-shell, .side-panel { padding: 16px; }
  .event-bottom { flex-direction: column; align-items: stretch; }
  .event-link { width: 100%; }
}