/* =============================================
   SKY BETS — LIVE PAGE
   Black · White · Blue
   ============================================= */

.live-header-strip {
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 16px; background:var(--surface-1);
  border-bottom:1px solid var(--border); gap:12px;
}
.live-header-strip__left { display:flex; align-items:center; gap:10px; flex-shrink:0; }
.live-badge-big {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(239,68,68,0.1); border:1.5px solid rgba(239,68,68,0.3);
  border-radius:var(--r-pill); padding:4px 10px;
  font-size:0.68rem; font-weight:900; color:var(--live); letter-spacing:0.08em;
}
.live-count { font-size:0.72rem; font-weight:700; color:var(--t3); }

.live-sport-pills { display:flex; gap:6px; overflow-x:auto; scrollbar-width:none; }
.live-sport-pills::-webkit-scrollbar { display:none; }
.live-sport-pill {
  display:inline-flex; align-items:center; gap:5px;
  padding:5px 12px; border-radius:var(--r-pill);
  font-size:0.7rem; font-weight:700; color:var(--t3);
  background:var(--surface-2); border:1px solid var(--border);
  white-space:nowrap; flex-shrink:0; transition:all var(--t); cursor:pointer;
}
.live-sport-pill:hover { color:var(--t2); border-color:var(--border-md); }
.live-sport-pill--active { background:rgba(239,68,68,0.15); border-color:rgba(239,68,68,0.45); backdrop-filter:var(--glass-blur-sm); -webkit-backdrop-filter:var(--glass-blur-sm); color:#fff; box-shadow:0 2px 10px rgba(239,68,68,0.3); }
.pill-count { font-size:0.6rem; font-weight:900; background:rgba(255,255,255,0.15); border-radius:var(--r-pill); padding:1px 5px; }

/* Featured live card — Scores-app style match center */
.featured-live {
  margin:14px 16px 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(59,130,246,0.16) 0%, transparent 55%),
    linear-gradient(180deg, #14181f 0%, #0a0d12 100%);
  border:1px solid var(--glass-border);
  border-radius:var(--r-xl); padding:16px 18px 18px;
  position:relative; overflow:hidden; cursor:pointer;
  box-shadow:0 10px 32px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.04);
  transition:opacity var(--t);
}
.featured-live:hover { opacity:0.96; }
.featured-live::before {
  content:''; position:absolute; top:-60px; right:-40px;
  width:200px; height:200px;
  background:radial-gradient(circle,rgba(59,130,246,0.10) 0%,transparent 70%);
  border-radius:50%; pointer-events:none;
}

.featured-live__top {
  display:flex; align-items:flex-start; justify-content:space-between;
  margin-bottom:18px; position:relative; z-index:1;
}
.fl-venue-block { display:flex; flex-direction:column; gap:3px; }
.fl-venue { font-size:0.92rem; font-weight:900; color:var(--t1); letter-spacing:0.01em; }
.fl-week { font-size:0.62rem; font-weight:700; color:var(--t3); text-transform:uppercase; letter-spacing:0.05em; }
.live-chip--tag { flex-shrink:0; margin-top:1px; }

.featured-live__score-row {
  display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:18px; position:relative; z-index:1;
}
.fl-team { display:flex; flex-direction:column; align-items:center; gap:8px; flex:1; }
.fl-team--right { align-items:center; }
.fl-crest {
  width:52px; height:52px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:0.72rem; font-weight:900; color:#fff;
  box-shadow:0 4px 14px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.25);
  border:1.5px solid rgba(255,255,255,0.18);
}
.fl-crest--home { background:linear-gradient(135deg,#6dd5fa,#1d4ed8); }
.fl-crest--away { background:linear-gradient(135deg,#f8fafc,#312e81); color:#0f172a; }
.fl-name { font-size:0.74rem; font-weight:800; color:var(--t1); letter-spacing:0.01em; text-align:center; }
.fl-tag {
  font-size:0.56rem; font-weight:800; color:var(--t3);
  text-transform:uppercase; letter-spacing:0.08em;
  background:var(--surface-2); border:1px solid var(--border);
  border-radius:var(--r-pill); padding:2px 8px;
}
.fl-score-center { display:flex; flex-direction:column; align-items:center; gap:5px; padding-top:6px; }
.fl-score { font-size:2.1rem; font-weight:900; color:#fff; display:flex; align-items:center; gap:8px; line-height:1; }
.fl-score span { color:var(--t3); font-size:1.4rem; }
.fl-added-time {
  font-size:0.6rem; font-weight:800; color:#052e16;
  background:var(--green); border-radius:var(--r-pill);
  padding:2px 9px; letter-spacing:0.02em;
}
.fl-period { font-size:0.62rem; font-weight:600; color:var(--t3); }

.featured-live__odds { display:flex; gap:8px; margin-bottom:16px; position:relative; z-index:1; }
.featured-live__bar { position:relative; z-index:1; }
.possession-bar { display:flex; height:4px; border-radius:var(--r-pill); overflow:hidden; margin-bottom:4px; background:var(--surface-2); }
.possession-bar__home { background:linear-gradient(90deg,#3b82f6,#6dd5fa); border-radius:var(--r-pill) 0 0 var(--r-pill); }
.possession-bar__away { background:var(--surface-3); border-radius:0 var(--r-pill) var(--r-pill) 0; }
.possession-label { font-size:0.6rem; font-weight:600; color:var(--t3); text-transform:uppercase; letter-spacing:0.05em; }

.live-matches-section { padding:16px 0 0; }

/* ── Fixture score cards (League list, Scores-app style) ── */
.fx-card {
  margin:0 16px 14px; background:var(--surface-1);
  border:1px solid var(--border); border-radius:var(--r-lg);
  overflow:hidden; box-shadow:0 4px 18px rgba(0,0,0,0.35);
}
.fx-card .league-header { background:var(--surface-2); border:none; padding:12px 14px; }
.fx-card .league-matches { display:flex; flex-direction:column; }

.match-row--fx {
  display:flex; align-items:center; gap:10px;
  padding:12px 14px 6px; background:transparent; border-bottom:none;
}
.match-row--fx:hover { background:rgba(255,255,255,0.02); }

.fx-status {
  min-width:40px; flex-shrink:0;
  font-size:0.64rem; font-weight:800; color:var(--live);
  display:flex; align-items:center; gap:4px;
}
.match-row--fx:not([data-live]) .fx-status,
.match-row--fx[data-live="false"] .fx-status { color:var(--t3); }

.fx-teams { flex:1; display:flex; flex-direction:column; gap:9px; min-width:0; }
.fx-team-line { display:flex; align-items:center; gap:8px; }
.fx-crest {
  width:24px; height:24px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-size:0.52rem; font-weight:900; color:#fff;
  border:1px solid rgba(255,255,255,0.15);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.2);
}
.fx-crest--round i { font-size:0.6rem; opacity:0.9; }
.fx-team-name {
  flex:1; min-width:0; font-size:0.8rem; font-weight:700; color:var(--t1);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.fx-team-score {
  font-size:0.85rem; font-weight:900; color:var(--t1);
  min-width:22px; text-align:right; flex-shrink:0;
}

.fx-star {
  flex-shrink:0; color:var(--t3); font-size:0.85rem; padding:6px;
  transition:color var(--t);
}
.fx-star:hover, .fx-star.active { color:var(--gold); }
.fx-star.active i { font-weight:900; }

.fx-odds-row {
  padding:8px 14px 12px; border-bottom:1px solid var(--border);
  display:flex; gap:6px;
}
.fx-odds-row:last-child { border-bottom:none; }
.fx-odds-row .odd-sm { flex:1; }

/* ── PROMOTIONS PAGE ── */
.promos-main { padding:0; }
.promos-list { padding:14px 16px 0; display:flex; flex-direction:column; gap:14px; }

.promo-full-card {
  background:var(--surface-1); border:1px solid var(--border);
  border-radius:var(--r-xl); overflow:hidden; box-shadow:0 4px 24px rgba(0,0,0,0.5);
}
.promo-full-card__header {
  padding:24px 20px; display:flex; flex-direction:column;
  align-items:center; gap:8px; position:relative; text-align:center;
}
.promo-full-card__header--blue   { background:linear-gradient(135deg,#0f172a,var(--accent)); }
.promo-full-card__header--gold   { background:linear-gradient(135deg,#1c1400,#92400e); }
.promo-full-card__header--green  { background:linear-gradient(135deg,#052e16,#166534); }
.promo-full-card__header--purple { background:linear-gradient(135deg,#2e1065,#4c1d95); }

.pfc-tag {
  position:absolute; top:12px; right:12px;
  background:rgba(255,255,255,0.12); color:#fff;
  font-size:0.55rem; font-weight:900; padding:3px 9px;
  border-radius:var(--r-pill); letter-spacing:0.08em; text-transform:uppercase;
}
.pfc-tag--hot   { background:var(--live); }
.pfc-tag--green { background:var(--green); color:#000; }

.pfc-icon {
  width:52px; height:52px; border-radius:50%;
  background:rgba(255,255,255,0.12); border:2px solid rgba(255,255,255,0.2);
  display:flex; align-items:center; justify-content:center; font-size:1.3rem; color:#fff;
}
.pfc-title { font-size:1rem; font-weight:900; color:#fff; }
.pfc-value { font-size:1.3rem; font-weight:900; color:#fff; opacity:0.9; }
.promo-full-card__body { padding:18px; }
.pfc-desc  { font-size:0.8rem; color:var(--t2); line-height:1.6; margin-bottom:14px; }
.pfc-terms { display:flex; flex-direction:column; gap:8px; }
.pfc-term-row { display:flex; align-items:center; gap:8px; font-size:0.75rem; font-weight:600; color:var(--t2); }
.pfc-term-row i { color:var(--green); font-size:0.68rem; width:14px; flex-shrink:0; }

.pfc-boost-table { border:1px solid var(--border); border-radius:var(--r-md); overflow:hidden; margin-bottom:4px; }
.pfc-boost-row {
  display:flex; align-items:center; justify-content:space-between;
  padding:9px 14px; border-bottom:1px solid var(--border);
  font-size:0.78rem; font-weight:700; color:var(--t2);
}
.pfc-boost-row:last-child  { border-bottom:none; }
.pfc-boost-row--header { background:var(--surface-2); font-size:0.65rem; font-weight:700; color:var(--t3); text-transform:uppercase; letter-spacing:0.05em; }
.boost-val       { color:var(--accent-light); font-weight:900; }
.boost-val--top  { color:var(--green); font-size:0.88rem; }
