/* ══════════════════════════════════════════════════════════
   SPORTS PAGE — ultra-modern redesign
   ══════════════════════════════════════════════════════════ */

:root {
  --sp-bg: #0A0D17;
  --sp-surface: #121623;
  --sp-surface-2: #171B2B;
  --sp-border: rgba(255,255,255,0.07);
  --sp-border-strong: rgba(255,255,255,0.12);
  --sp-text: #E6E9F2;
  --sp-muted: #8B92A8;
  --sp-gold: #F5C518;
  --sp-gold-warm: #FF8A00;
  --sp-violet: #6C63FF;
  --sp-violet-light: #B794FF;
  --sp-teal: #26D9A8;
  --sp-red: #FF4D6A;
}

body.page-template-page-sports,
body.page-template-page-sports-php { background: var(--sp-bg); }

/* Ensure our section padding doesn't collide with legacy rules */
.sp-section { padding: clamp(56px, 7vw, 96px) 0; position: relative; }
.sp-section + .sp-section { padding-top: 0; }

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.sp-hero {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0 clamp(48px, 6vw, 80px);
  overflow: hidden;
  background: var(--sp-bg);
}
.sp-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.sp-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(108,99,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,99,255,0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.sp-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.sp-hero__glow--violet { top: -10%; left: -10%; width: 520px; height: 520px; background: var(--sp-violet); }
.sp-hero__glow--gold   { bottom: -15%; right: -5%; width: 420px; height: 420px; background: var(--sp-gold); opacity: 0.3; }
.sp-hero__glow--teal   { top: 30%; right: 25%; width: 320px; height: 320px; background: var(--sp-teal); opacity: 0.22; }

.sp-hero__inner { position: relative; z-index: 1; text-align: center; }

.sp-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 10px;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sp-gold);
  margin-bottom: 24px;
}
.sp-hero__pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sp-gold); box-shadow: 0 0 10px var(--sp-gold); animation: sp-pulse 1.8s infinite; }
.sp-hero__pill-live {
  padding-left: 10px; margin-left: 4px;
  border-left: 1px solid rgba(245,197,24,0.3);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.72rem;
}
@keyframes sp-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.sp-hero__title {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 20px;
}
.sp-hero__title--accent {
  background: linear-gradient(135deg, var(--sp-gold) 0%, var(--sp-gold-warm) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.sp-hero__desc {
  max-width: 680px;
  margin: 0 auto 32px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.6;
  color: var(--sp-muted);
}
.sp-hero__desc strong { color: #fff; font-weight: 700; }

.sp-hero__cta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
}

.sp-hero__stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 22px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--sp-border);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  list-style: none;
}
.sp-hero__stats li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  text-align: center;
}
/* Subtle dividers between stats (desktop) */
.sp-hero__stats li + li::before {
  content: '';
  position: absolute;
  top: 15%; bottom: 15%; left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.1), transparent);
}
.sp-hero__stat-num {
  font-family: var(--font-display, sans-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
.sp-hero__stat-label {
  font-size: 0.7rem;
  color: var(--sp-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  line-height: 1.3;
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */
.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-display, sans-serif);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer;
  border: none;
}
.sp-btn--primary {
  background: linear-gradient(180deg, #FFD24A 0%, #F5A300 100%);
  color: #0B0F18;
  box-shadow:
    0 8px 24px rgba(245,163,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.5);
}
.sp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 30px rgba(245,163,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.6);
  filter: brightness(1.05);
}
.sp-btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--sp-text);
  border: 1px solid var(--sp-border-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.sp-btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.sp-btn--full { display: flex; width: 100%; }

/* ══════════════════════════════════════════════════════════
   SECTION HEADS
   ══════════════════════════════════════════════════════════ */
.sp-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.sp-section__head--center {
  justify-content: center;
  text-align: center;
  margin-bottom: 48px;
}
.sp-section__head--center > div { max-width: 680px; margin: 0 auto; }

.sp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.3);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sp-violet-light);
  margin-bottom: 16px;
}
.sp-eyebrow--red {
  color: var(--sp-red);
  background: rgba(255,77,106,0.1);
  border-color: rgba(255,77,106,0.3);
}
.sp-eyebrow__pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sp-red);
  box-shadow: 0 0 10px var(--sp-red);
  animation: sp-pulse 1.2s infinite;
}

.sp-section__title {
  font-family: var(--font-display, sans-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 12px;
}
.sp-section__title span {
  background: linear-gradient(135deg, var(--sp-gold), var(--sp-gold-warm));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.sp-section__sub {
  color: var(--sp-muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 560px;
  margin: 0;
}
.sp-section__head--center .sp-section__sub { margin-left: auto; margin-right: auto; }

.sp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sp-gold);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap .2s ease, color .2s ease;
}
.sp-link:hover { gap: 10px; color: #FFE082; }

/* ══════════════════════════════════════════════════════════
   CATEGORY GRID
   ══════════════════════════════════════════════════════════ */
.sp-cat-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1100px) { .sp-cat-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px)  { .sp-cat-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; } }
@media (max-width: 420px)  { .sp-cat-grid { grid-template-columns: repeat(2, 1fr); } }

.sp-cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 18px 16px 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 60%),
    var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: 16px;
  text-decoration: none;
  color: var(--sp-text);
  overflow: hidden;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), border-color .2s ease, box-shadow .25s ease;
  isolation: isolate;
}
.sp-cat-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -40%;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,0.25), transparent 65%);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: -1;
}
.sp-cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108,99,255,0.4);
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}
.sp-cat-card:hover::before { opacity: 1; }

.sp-cat-card__live {
  position: absolute;
  top: 10px; right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  background: rgba(255,77,106,0.12);
  border: 1px solid rgba(255,77,106,0.3);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--sp-red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sp-cat-card__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sp-red); box-shadow: 0 0 6px var(--sp-red); animation: sp-pulse 1.4s infinite; }

.sp-cat-card__icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 6px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
.sp-cat-card__name {
  font-family: var(--font-display, sans-serif);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.sp-cat-card__leagues {
  font-size: 0.72rem;
  color: var(--sp-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sp-cat-card__arrow {
  position: absolute;
  bottom: 12px; right: 14px;
  font-size: 1rem;
  color: var(--sp-muted);
  transition: color .2s ease, transform .2s ease;
}
.sp-cat-card:hover .sp-cat-card__arrow { color: var(--sp-gold); transform: translateX(4px); }

/* ══════════════════════════════════════════════════════════
   LIVE MATCHES
   ══════════════════════════════════════════════════════════ */
.sp-match-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1100px) { .sp-match-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .sp-match-grid { grid-template-columns: 1fr; } }

.sp-match {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 50%),
    var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: 18px;
  text-decoration: none;
  color: var(--sp-text);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), border-color .2s ease, box-shadow .25s ease;
  overflow: hidden;
}
.sp-match::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,77,106,0.7), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.sp-match:hover {
  transform: translateY(-5px);
  border-color: rgba(255,77,106,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.sp-match:hover::before { opacity: 1; }

.sp-match__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.76rem;
}
.sp-match__league { color: var(--sp-muted); font-weight: 700; letter-spacing: 0.02em; }
.sp-match__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  background: rgba(255,77,106,0.12);
  border: 1px solid rgba(255,77,106,0.3);
  border-radius: 999px;
  color: var(--sp-red);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.66rem;
}
.sp-match__status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sp-red); box-shadow: 0 0 8px var(--sp-red); animation: sp-pulse 1.2s infinite; }

.sp-match__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.sp-match__team { display: flex; align-items: center; gap: 10px; min-width: 0; }
.sp-match__team--away { justify-content: flex-end; text-align: right; }
.sp-match__badge {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(108,99,255,0.25), rgba(108,99,255,0.05));
  border: 1px solid rgba(108,99,255,0.3);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
}
.sp-match__team-name {
  font-family: var(--font-display, sans-serif);
  font-size: 0.98rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sp-match__vs { text-align: center; padding: 0 4px; }
.sp-match__score {
  font-family: var(--font-display, sans-serif);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
}
.sp-match__time {
  font-size: 0.68rem;
  color: var(--sp-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
  font-weight: 700;
}

.sp-match__odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.sp-odd {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--sp-border);
  border-radius: 12px;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.sp-match:hover .sp-odd { background: rgba(245,197,24,0.08); border-color: rgba(245,197,24,0.25); }
.sp-odd--muted { opacity: 0.5; }
.sp-odd__label { font-size: 0.62rem; font-weight: 700; color: var(--sp-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.sp-odd__val { font-family: var(--font-display, sans-serif); font-size: 1rem; font-weight: 800; color: #fff; }

.sp-match__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed var(--sp-border-strong);
  font-size: 0.78rem;
  color: var(--sp-muted);
}
.sp-match__cta { color: var(--sp-gold); font-weight: 800; transition: gap .2s ease; }
.sp-match:hover .sp-match__cta { color: #FFE082; }

/* ══════════════════════════════════════════════════════════
   BET TYPES
   ══════════════════════════════════════════════════════════ */
.sp-bettypes { background: linear-gradient(180deg, transparent, rgba(108,99,255,0.03), transparent); }
.sp-bettypes__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 1024px) { .sp-bettypes__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .sp-bettypes__grid { grid-template-columns: 1fr; } }

.sp-bettype {
  padding: 24px;
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: 16px;
  transition: transform .25s ease, border-color .2s ease, background .2s ease;
  position: relative;
  overflow: hidden;
}
.sp-bettype::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle at top right, rgba(245,197,24,0.12), transparent 70%);
  pointer-events: none;
}
.sp-bettype:hover {
  transform: translateY(-4px);
  border-color: rgba(245,197,24,0.35);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)), var(--sp-surface);
}
.sp-bettype__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,197,24,0.2), rgba(245,197,24,0.05));
  border: 1px solid rgba(245,197,24,0.3);
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.sp-bettype__title {
  font-family: var(--font-display, sans-serif);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.sp-bettype__desc { font-size: 0.88rem; line-height: 1.55; color: var(--sp-muted); margin: 0; }

/* ══════════════════════════════════════════════════════════
   WHY 4SIX
   ══════════════════════════════════════════════════════════ */
.sp-why__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1000px) { .sp-why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .sp-why__grid { grid-template-columns: 1fr; } }

.sp-why__card {
  padding: 28px 24px;
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: 18px;
  transition: transform .25s ease, border-color .2s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.sp-why__card::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c, var(--sp-gold)), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.sp-why__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
}
.sp-why__card:hover::before { opacity: 1; }
.sp-why__card h3 { font-family: var(--font-display, sans-serif); font-size: 1.05rem; font-weight: 800; color: #fff; margin: 0 0 8px; }
.sp-why__card p  { font-size: 0.88rem; line-height: 1.6; color: var(--sp-muted); margin: 0; }

.sp-why__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  background: color-mix(in srgb, var(--c, var(--sp-gold)) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--c, var(--sp-gold)) 35%, transparent);
  color: var(--c, var(--sp-gold));
  box-shadow: 0 8px 20px color-mix(in srgb, var(--c, var(--sp-gold)) 20%, transparent);
}
/* Fallback for browsers without color-mix */
@supports not (background: color-mix(in srgb, red, blue)) {
  .sp-why__icon {
    background: rgba(245,197,24,0.15);
    border-color: rgba(245,197,24,0.35);
    color: var(--sp-gold);
  }
}

/* ══════════════════════════════════════════════════════════
   SEO CONTENT
   ══════════════════════════════════════════════════════════ */
.sp-seo__container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
}
@media (max-width: 1024px) { .sp-seo__container { grid-template-columns: 1fr; } }

.sp-seo__col h2 {
  font-family: var(--font-display, sans-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  line-height: 1.2;
}
.sp-seo__col h3 {
  font-family: var(--font-display, sans-serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--sp-gold);
  margin: 28px 0 10px;
  letter-spacing: -0.01em;
}
.sp-seo__col p {
  color: var(--sp-muted);
  line-height: 1.75;
  font-size: 0.96rem;
  margin: 0 0 12px;
}
.sp-seo__col p strong { color: #fff; font-weight: 700; }
.sp-seo__lead { font-size: 1.05rem !important; color: var(--sp-text) !important; }

.sp-seo__aside { display: flex; flex-direction: column; gap: 16px; }
.sp-seo__card {
  padding: 24px;
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: 18px;
  position: sticky;
  top: 120px;
}
.sp-seo__aside .sp-seo__card + .sp-seo__card { position: static; }
.sp-seo__card h4 {
  font-family: var(--font-display, sans-serif);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--sp-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.sp-seo__card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.sp-seo__card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--sp-border);
  font-size: 0.88rem;
}
.sp-seo__card li:last-child { border-bottom: none; padding-bottom: 0; }
.sp-seo__card li span { color: var(--sp-muted); }
.sp-seo__card li strong { color: #fff; font-weight: 700; }

.sp-seo__card--cta { background: linear-gradient(180deg, rgba(245,197,24,0.08), rgba(245,197,24,0.02)); border-color: rgba(245,197,24,0.3); }
.sp-seo__card--cta h4 { color: #fff; text-transform: none; letter-spacing: -0.01em; font-size: 1.15rem; }
.sp-seo__card--cta p { font-size: 0.88rem; color: var(--sp-muted); line-height: 1.55; margin: 0 0 16px; }
.sp-seo__card--cta p strong { color: var(--sp-gold); }

/* ══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */
.sp-faq__list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.sp-faq__item {
  background: var(--sp-surface);
  border: 1px solid var(--sp-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s ease, background .2s ease;
}
.sp-faq__item[open] { border-color: rgba(245,197,24,0.3); background: linear-gradient(180deg, rgba(245,197,24,0.04), transparent); }

.sp-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display, sans-serif);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.sp-faq__q::-webkit-details-marker { display: none; }

.sp-faq__chev {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sp-muted);
  transition: transform .3s ease, background .2s ease, color .2s ease;
}
.sp-faq__item[open] .sp-faq__chev { transform: rotate(45deg); background: rgba(245,197,24,0.15); color: var(--sp-gold); }

.sp-faq__a { padding: 0 22px 20px; animation: sp-fade .3s ease both; }
.sp-faq__a p { color: var(--sp-muted); line-height: 1.7; font-size: 0.95rem; margin: 0; }
@keyframes sp-fade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE POLISH
   ══════════════════════════════════════════════════════════ */
/* Tablet: 3 cols × 2 rows. Items 4 and 5 reflow into a balanced second row */
@media (max-width: 900px) {
  .sp-hero__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 8px;
    padding: 22px 16px;
  }
  .sp-hero__stats li + li::before { display: none; }
  .sp-hero__stats li:not(:nth-child(3n + 1))::before {
    content: '';
    display: block;
    position: absolute;
    top: 15%; bottom: 15%; left: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.1), transparent);
  }
  /* Second row: item 4 spans 2 cols, item 5 takes the last col */
  .sp-hero__stats li:nth-child(4) { grid-column: 1 / 3; }
  .sp-hero__stats li:nth-child(5) { grid-column: 3 / 4; }
}

/* Mobile: 2 cols × 3 rows (5th centered on its own row) */
@media (max-width: 600px) {
  .sp-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 8px;
    padding: 20px 16px;
    background:
      linear-gradient(180deg, rgba(22,27,43,0.82) 0%, rgba(14,18,30,0.92) 100%),
      var(--sp-surface);
    border-color: rgba(255,255,255,0.1);
    box-shadow:
      0 12px 30px rgba(0,0,0,0.5),
      inset 0 1px 0 rgba(255,255,255,0.06);
  }
  .sp-hero__stats li:nth-child(4) { grid-column: auto; }
  .sp-hero__stats li:nth-child(5) { grid-column: 1 / -1; }
  .sp-hero__stats li:not(:nth-child(3n + 1))::before { display: none; }
  .sp-hero__stats li:nth-child(even)::before {
    content: '';
    display: block;
    position: absolute;
    top: 15%; bottom: 15%; left: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.1), transparent);
  }
  .sp-hero__stats li:nth-child(5)::before { display: none; }
  .sp-hero__stat-num { font-size: 1.45rem; }
  .sp-hero__stat-label { font-size: 0.62rem; letter-spacing: 0.06em; }
  .sp-section__head { flex-direction: column; align-items: flex-start; }
  .sp-match__team-name { font-size: 0.88rem; }
  .sp-match__badge { width: 34px; height: 34px; font-size: 0.65rem; }
}

/* Very narrow: single column stack */
@media (max-width: 380px) {
  .sp-hero__stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .sp-hero__stats li:nth-child(5) { grid-column: auto; }
  .sp-hero__stats li::before,
  .sp-hero__stats li:nth-child(even)::before { display: none !important; }
  .sp-hero__stats li:not(:first-child) {
    padding-top: 14px;
    border-top: 1px dashed rgba(255,255,255,0.08);
  }
  .sp-hero__cta { flex-direction: column; width: 100%; }
  .sp-hero__cta .sp-btn { width: 100%; }
}
