/* ============================================================
   REGARDEFOOT.COM - Football Module CSS
   ============================================================ */

/* ── Variables ───────────────────────────────────────────── */
:root {
  --ft-green:    #00c853;
  --ft-dark:     #0d1117;
  --ft-card:     #161b22;
  --ft-border:   #30363d;
  --ft-live:     #ff3b30;
  --ft-gold:     #ffd700;
  --ft-blue:     #1a73e8;
  --ft-iptv:     #ff6b00;
  --ft-text:     #e6edf3;
  --ft-muted:    #8b949e;
  --ft-radius:   10px;
  --ft-shadow:   0 4px 20px rgba(0,0,0,0.4);
}

/* ── Base ────────────────────────────────────────────────── */
.football-page { font-family: 'Roboto', sans-serif; color: var(--ft-text); }
.football-page a { text-decoration: none; color: inherit; }
.football-grid { display: grid; grid-template-columns: 1fr 320px; gap: 20px; margin-top: 20px; }
@media (max-width: 900px) { .football-grid { grid-template-columns: 1fr; } }

/* ── Section Box ─────────────────────────────────────────── */
.section-box {
  background: var(--ft-card);
  border: 1px solid var(--ft-border);
  border-radius: var(--ft-radius);
  padding: 16px;
  margin-bottom: 16px;
}
.section-title {
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--ft-green);
  border-bottom: 1px solid var(--ft-border);
  padding-bottom: 10px; margin-bottom: 14px;
}
.mt-4 { margin-top: 16px; }
.text-center { text-align: center; }
.no-matches { color: var(--ft-muted); font-size: 14px; padding: 10px 0; }

/* ── Live Badges ─────────────────────────────────────────── */
.live-badge {
  background: var(--ft-live); color: #fff; font-size: 11px;
  font-weight: 700; padding: 2px 8px; border-radius: 20px;
  animation: pulse-live 1.5s ease-in-out infinite;
}
.live-badge-xs {
  background: var(--ft-live); color: #fff; font-size: 10px;
  font-weight: 700; padding: 1px 6px; border-radius: 10px;
  display: inline-block;
}
.ht-badge { background: #ff9800; color:#fff; font-size:11px; font-weight:700; padding:2px 8px; border-radius:20px; }
.ft-badge { background: var(--ft-muted); color:#fff; font-size:11px; font-weight:700; padding:2px 8px; border-radius:20px; }
.ns-badge { background: var(--ft-border); color:var(--ft-text); font-size:11px; font-weight:700; padding:2px 8px; border-radius:20px; }
.pst-badge { background:#9c27b0; color:#fff; font-size:11px; font-weight:700; padding:2px 8px; border-radius:20px; }

.live-dot-sm {
  display: inline-block; width: 8px; height: 8px;
  background: var(--ft-live); border-radius: 50%;
  animation: pulse-live 1.5s ease-in-out infinite;
  margin-right: 6px; vertical-align: middle;
}
.live-pulse-dot {
  display: inline-block; width: 14px; height: 14px;
  background: var(--ft-live); border-radius: 50%;
  animation: pulse-live 1.5s ease-in-out infinite;
  margin-right: 8px; vertical-align: middle;
}
@keyframes pulse-live {
  0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(255,59,48,.4); }
  50% { opacity:.8; box-shadow: 0 0 0 6px rgba(255,59,48,0); }
}

/* ── Hero - Direct Page ──────────────────────────────────── */
.direct-hero {
  background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
  border: 1px solid var(--ft-green);
  border-radius: var(--ft-radius);
  padding: 28px 24px; text-align: center; margin-bottom: 20px;
  position: relative; overflow: hidden;
}
.direct-hero::before {
  content:''; position:absolute; top:0;left:0;right:0;bottom:0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,200,83,.12) 0%, transparent 70%);
}
.direct-hero-inner { position: relative; z-index: 1; }
.direct-hero h1 { font-size: 28px; font-weight: 800; margin: 8px 0; color: #fff; }
.direct-hero p { font-size: 14px; color: var(--ft-muted); margin: 0; }
.live-text { color: var(--ft-live); }

/* ── Player Box ──────────────────────────────────────────── */
.player-box {
  background: var(--ft-card); border: 1px solid var(--ft-border);
  border-radius: var(--ft-radius); overflow: hidden;
}
.player-header {
  background: var(--ft-dark); padding: 10px 14px;
  font-size: 13px; font-weight: 600; display: flex; align-items: center;
}
.player-wrapper {
  width: 100%; aspect-ratio: 16/9; position: relative; background: #000;
}
.player-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.player-actions { padding: 12px; background: var(--ft-dark); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-watch-iptv, .btn-iptv-full, .btn-watch-match, .btn-league-link, .btn-back-direct {
  display: block; width: 100%; text-align: center;
  padding: 12px 20px; border-radius: 8px; font-weight: 700;
  font-size: 14px; cursor: pointer; border: none; transition: all .2s;
}
.btn-watch-iptv, .btn-iptv-full {
  background: linear-gradient(135deg, var(--ft-iptv), #e65c00);
  color: #fff !important;
}
.btn-watch-iptv:hover, .btn-iptv-full:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,0,.4); }
.btn-watch-match {
  background: linear-gradient(135deg, var(--ft-live), #cc2200);
  color: #fff !important;
}
.btn-watch-match:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,59,48,.4); }
.btn-league-link, .btn-back-direct {
  background: var(--ft-border); color: var(--ft-text) !important;
}
.btn-league-link:hover, .btn-back-direct:hover { background: #404650; }

/* ── Match Rows ──────────────────────────────────────────── */
.matches-list { display: flex; flex-direction: column; gap: 8px; }
.match-row {
  display: flex; flex-direction: column; gap: 6px;
  background: var(--ft-dark); border: 1px solid var(--ft-border);
  border-radius: 8px; padding: 12px 14px;
  transition: border-color .2s, background .2s;
}
.match-row:hover { border-color: var(--ft-green); background: #1c2128; }
.live-row { border-color: var(--ft-live) !important; }
.match-teams { display: flex; align-items: center; gap: 8px; justify-content: space-between; }
.team-home { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; flex: 1; }
.team-away { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; flex: 1; justify-content: flex-end; }
.match-score-center { display: flex; flex-direction: column; align-items: center; min-width: 60px; }
.score-live { font-size: 22px; font-weight: 800; color: var(--ft-green); }
.score-minute { font-size: 11px; color: var(--ft-live); font-weight: 600; }
.match-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ft-muted); }
.watch-btn { margin-left: auto; background: var(--ft-live); color: #fff; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }

/* Small match rows (sidebar / today) */
.match-row-sm {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 6px;
  border-left: 3px solid transparent;
  transition: all .2s; font-size: 13px;
}
.match-row-sm:hover { background: #1c2128; border-left-color: var(--ft-green); }
.match-row-sm.is-live { border-left-color: var(--ft-live) !important; }
.match-time-sm { min-width: 45px; font-size: 12px; color: var(--ft-muted); }
.teams-sm { flex: 1; }
.score-sm { font-weight: 700; color: var(--ft-green); }

/* ── Teams Logos ─────────────────────────────────────────── */
.team-logo-xs { width: 18px; height: 18px; object-fit: contain; vertical-align: middle; }
.team-logo-sm { width: 24px; height: 24px; object-fit: contain; vertical-align: middle; }
.team-logo-md { width: 36px; height: 36px; object-fit: contain; }
.team-logo-lg { width: 72px; height: 72px; object-fit: contain; }
.league-logo-sm { width: 20px; height: 20px; object-fit: contain; vertical-align: middle; }
.league-logo-md { width: 32px; height: 32px; object-fit: contain; }

/* ── Leagues Nav ─────────────────────────────────────────── */
.leagues-nav { display: flex; flex-direction: column; gap: 4px; }
.league-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 6px;
  transition: background .2s; font-size: 13px;
}
.league-nav-item:hover { background: #1c2128; }
.league-flag { font-size: 18px; }
.league-nav-name { flex: 1; font-weight: 600; }
.league-country { font-size: 11px; color: var(--ft-muted); }
.league-group { margin-bottom: 12px; }
.league-group-header {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--ft-muted);
  padding: 6px 0; border-bottom: 1px solid var(--ft-border); margin-bottom: 4px;
}

/* ── IPTV Sidebar Box ────────────────────────────────────── */
.iptv-sidebar-box {
  background: linear-gradient(135deg, #1a0a00, #2d1500);
  border: 1px solid var(--ft-iptv);
  border-radius: var(--ft-radius); padding: 18px;
  margin-bottom: 16px; text-align: center;
}
.iptv-sb-badge {
  display: inline-block; background: var(--ft-iptv);
  color: #fff; font-size: 10px; font-weight: 800;
  letter-spacing: 1px; padding: 3px 10px;
  border-radius: 20px; margin-bottom: 10px; text-transform: uppercase;
}
.iptv-sidebar-box h3 { font-size: 16px; font-weight: 800; color: #fff; margin: 0 0 10px; }
.iptv-sidebar-box ul { list-style: none; margin: 0 0 14px; padding: 0; text-align: left; }
.iptv-sidebar-box ul li { font-size: 13px; padding: 3px 0; color: var(--ft-text); }
.iptv-price { font-size: 18px; color: var(--ft-gold); margin-bottom: 12px; }
.iptv-price strong { font-size: 24px; }
.iptv-match-promo { background: linear-gradient(135deg, #0a001a, #15002d); border-color: #9c27b0; }
.iptv-match-promo p { font-size: 13px; color: var(--ft-muted); margin-bottom: 10px; }

/* ── IPTV Top Banner ─────────────────────────────────────── */
.iptv-top-banner {
  background: linear-gradient(90deg, #1a0500, #2d1000, #1a0500);
  border: 1px solid var(--ft-iptv); border-radius: var(--ft-radius);
  padding: 14px 18px; margin-bottom: 20px;
}
.iptv-banner-content { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.iptv-banner-icon { font-size: 28px; }
.iptv-banner-text { flex: 1; font-size: 13px; color: var(--ft-text); }
.iptv-banner-text strong { display: block; font-size: 15px; color: #fff; margin-bottom: 2px; }
.btn-iptv-banner {
  background: var(--ft-iptv); color: #fff !important;
  padding: 10px 18px; border-radius: 8px; font-weight: 700; font-size: 13px;
  white-space: nowrap; transition: all .2s;
}
.btn-iptv-banner:hover { background: #e65c00; transform: translateY(-1px); }

/* ── Match Hero ──────────────────────────────────────────── */
.match-hero {
  background: linear-gradient(135deg, #0d1117, #161b22);
  border: 1px solid var(--ft-border);
  border-radius: var(--ft-radius); padding: 24px; margin-bottom: 20px;
}
.match-hero-live { border-color: var(--ft-live); }
.match-hero-league {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ft-muted); margin-bottom: 20px;
}
.match-scoreboard {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.team-block { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; }
.team-name-lg { font-size: 16px; font-weight: 700; text-align: center; }
.scoreboard-center { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 120px; }
.score-big { font-size: 42px; font-weight: 900; color: #fff; letter-spacing: 2px; }
.score-sep { color: var(--ft-muted); margin: 0 4px; }
.match-status-badge { margin-top: 4px; }
.kickoff-time { font-size: 13px; color: var(--ft-muted); }
.match-watch-bar { margin-top: 20px; }

/* ── Events Timeline ─────────────────────────────────────── */
.events-timeline { display: flex; flex-direction: column; gap: 4px; }
.event-row { display: grid; grid-template-columns: 1fr 44px 1fr; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px solid var(--ft-border); font-size: 13px; }
.event-home-side { text-align: right; }
.event-away-side { text-align: left; }
.event-minute { text-align: center; font-size: 11px; font-weight: 700; color: var(--ft-muted); background: var(--ft-border); border-radius: 20px; padding: 2px 4px; }

/* ── Lineups ─────────────────────────────────────────────── */
.lineups-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lineup-col { }
.lineup-team-header { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.formation-badge { background: var(--ft-border); padding: 2px 8px; border-radius: 20px; font-size: 11px; color: var(--ft-muted); margin-left: auto; }
.lineup-list { display: flex; flex-direction: column; gap: 4px; }
.lineup-player { display: flex; align-items: center; gap: 8px; padding: 5px 8px; border-radius: 6px; font-size: 13px; }
.lineup-player:hover { background: #1c2128; }
.player-num { min-width: 22px; font-size: 12px; font-weight: 700; color: var(--ft-green); }
.player-name { flex: 1; }
.player-pos { font-size: 10px; color: var(--ft-muted); background: var(--ft-border); padding: 1px 5px; border-radius: 4px; }

/* ── League Hero ─────────────────────────────────────────── */
.league-hero {
  background: linear-gradient(135deg, #0d1117, #161b22);
  border: 1px solid var(--ft-green); border-radius: var(--ft-radius);
  padding: 24px; margin-bottom: 20px;
}
.league-hero-inner { display: flex; align-items: center; gap: 16px; }
.league-hero-flag { font-size: 52px; }
.league-hero h1 { font-size: 26px; font-weight: 800; color: #fff; margin: 0 0 4px; }
.league-hero p { font-size: 14px; color: var(--ft-muted); margin: 0; }

/* ── Tabs ────────────────────────────────────────────────── */
.league-tabs { display: flex; gap: 4px; margin-bottom: 16px; }
.tab-btn {
  padding: 9px 18px; background: var(--ft-card); border: 1px solid var(--ft-border);
  border-radius: 8px; color: var(--ft-muted); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.tab-btn.active { background: var(--ft-green); border-color: var(--ft-green); color: #000; }
.tab-btn:hover:not(.active) { border-color: var(--ft-green); color: var(--ft-text); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* League nav card (no-matches fallback) */
.league-nav-card {
  background: var(--ft-dark); border: 1px solid var(--ft-border);
  border-radius: 8px; padding: 10px; transition: all .2s;
  display: block; color: var(--ft-text) !important;
}
.league-nav-card:hover { border-color: var(--ft-green); background: #1c2128; }

/* ── Standings Table ─────────────────────────────────────── */
.standings-table-wrap { overflow-x: auto; }
.standings-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.standings-table th {
  background: var(--ft-dark); padding: 8px 10px;
  text-align: center; font-size: 11px; font-weight: 700;
  text-transform: uppercase; color: var(--ft-muted); white-space: nowrap;
}
.standings-table th:nth-child(2) { text-align: left; }
.standings-table td { padding: 8px 10px; text-align: center; border-bottom: 1px solid var(--ft-border); }
.standings-table td:nth-child(2) { text-align: left; }
.standings-table tr:hover td { background: #1c2128; }
.rank-cell { font-weight: 700; color: var(--ft-muted); }
.team-cell { display: flex; align-items: center; gap: 8px; font-weight: 600; white-space: nowrap; }
.pts-cell { font-weight: 800; font-size: 15px; color: #fff; }
.form-cell { display: flex; gap: 3px; justify-content: center; }
.form-w, .form-d, .form-l { width: 18px; height: 18px; border-radius: 3px; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.form-w { background: var(--ft-green); color: #000; }
.form-d { background: var(--ft-muted); color: #000; }
.form-l { background: var(--ft-live); color: #fff; }
.zone-ucl td:first-child { border-left: 3px solid var(--ft-blue); }
.zone-uel td:first-child { border-left: 3px solid var(--ft-gold); }
.zone-rel td:first-child { border-left: 3px solid var(--ft-live); }
.standings-legend { display: flex; gap: 16px; flex-wrap: wrap; font-size: 11px; color: var(--ft-muted); margin-top: 10px; }
.legend-ucl { color: var(--ft-blue); }
.legend-uel { color: var(--ft-gold); }
.legend-rel { color: var(--ft-live); }

/* ── Fixtures ────────────────────────────────────────────── */
.fixture-date-group { margin-bottom: 12px; }
.fixture-date-header { font-size: 12px; font-weight: 700; text-transform: uppercase; color: var(--ft-muted); padding: 6px 0; border-bottom: 1px solid var(--ft-border); margin-bottom: 6px; }
.match-row-fixture {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 6px; font-size: 13px;
  transition: background .2s; border-left: 3px solid transparent;
}
.match-row-fixture:hover { background: #1c2128; border-left-color: var(--ft-green); }
.match-row-fixture.is-live { border-left-color: var(--ft-live); }
.fixture-time { min-width: 50px; font-size: 12px; color: var(--ft-muted); }
.fixture-teams { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.fixture-vs { font-weight: 800; color: var(--ft-green); min-width: 30px; text-align: center; }
.fixture-watch { color: var(--ft-live); font-size: 12px; font-weight: 700; white-space: nowrap; }

/* ── Top Scorers ─────────────────────────────────────────── */
.scorers-list { display: flex; flex-direction: column; gap: 8px; }
.scorer-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px; border-radius: 8px; background: var(--ft-dark); border: 1px solid var(--ft-border);
}
.scorer-rank { min-width: 24px; font-size: 16px; font-weight: 800; color: var(--ft-gold); }
.player-photo { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; background: var(--ft-border); }
.scorer-info { flex: 1; }
.scorer-name { font-size: 14px; font-weight: 700; color: #fff; }
.scorer-team { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--ft-muted); margin-top: 2px; }
.scorer-goals { display: flex; flex-direction: column; align-items: center; }
.goals-num { font-size: 22px; font-weight: 900; color: var(--ft-green); line-height: 1; }
.goals-label { font-size: 10px; color: var(--ft-muted); }

/* ── Homepage Live Widget ────────────────────────────────── */
.football-home-widget { margin-bottom: 24px; }

/* Ticker */
.live-ticker-bar {
  background: var(--ft-dark); border: 1px solid var(--ft-live);
  border-radius: 8px; display: flex; align-items: center; overflow: hidden;
  margin-bottom: 16px; height: 44px;
}
.ticker-label {
  background: var(--ft-live); color: #fff; font-size: 11px; font-weight: 800;
  padding: 0 14px; white-space: nowrap; height: 100%;
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}
.ticker-track { flex: 1; overflow: hidden; position: relative; }
.ticker-inner {
  display: flex; gap: 24px; padding: 0 12px;
  animation: ticker-scroll 30s linear infinite; white-space: nowrap;
}
.ticker-inner:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--ft-text); white-space: nowrap; flex-shrink: 0;
}
.ticker-item:hover { color: var(--ft-green); }
.ticker-logo { width: 16px; height: 16px; object-fit: contain; }
.ticker-score { color: var(--ft-green); font-weight: 800; font-size: 15px; margin: 0 4px; }
.ticker-min { color: var(--ft-live); font-size: 11px; font-weight: 600; }
.ticker-watch-all {
  background: var(--ft-green); color: #000 !important; font-size: 11px; font-weight: 800;
  padding: 0 14px; white-space: nowrap; height: 100%;
  display: flex; align-items: center; flex-shrink: 0;
}
.ticker-watch-all:hover { background: #00e564; }

/* Today Matches Section */
.today-widget-section {
  background: var(--ft-card); border: 1px solid var(--ft-border);
  border-radius: var(--ft-radius); padding: 16px; margin-bottom: 16px;
}
.today-widget-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; font-size: 15px; font-weight: 700; }
.today-see-all { font-size: 13px; color: var(--ft-green); font-weight: 600; }
.today-see-all:hover { text-decoration: underline; }
.today-leagues-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 700px) { .today-leagues-grid { grid-template-columns: 1fr; } }
.today-league-col { }
.today-league-title { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; text-transform: uppercase; color: var(--ft-muted); margin-bottom: 6px; padding-bottom: 6px; border-bottom: 1px solid var(--ft-border); }
.today-match-row { display: flex; align-items: center; gap: 8px; padding: 7px 6px; border-radius: 6px; font-size: 12px; transition: background .2s; border-left: 2px solid transparent; }
.today-match-row:hover { background: #1c2128; border-left-color: var(--ft-green); }
.today-match-row.is-live { border-left-color: var(--ft-live); }
.today-time { min-width: 40px; color: var(--ft-muted); font-size: 11px; flex-shrink: 0; }
.today-teams { flex: 1; display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.today-vs { font-weight: 800; color: var(--ft-green); margin: 0 3px; }
.watch-live-xs { color: var(--ft-live); font-size: 11px; font-weight: 700; flex-shrink: 0; }

/* IPTV Home Strip */
.iptv-home-strip {
  background: linear-gradient(90deg, #1a0500, #2d0a00);
  border: 1px solid var(--ft-iptv); border-radius: var(--ft-radius);
  padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.iptv-strip-left { display: flex; align-items: center; gap: 14px; }
.iptv-strip-icon { font-size: 32px; }
.iptv-strip-left div { display: flex; flex-direction: column; gap: 2px; }
.iptv-strip-left strong { font-size: 15px; color: #fff; }
.iptv-strip-left span { font-size: 12px; color: var(--ft-muted); }
.btn-iptv-strip {
  background: var(--ft-iptv); color: #fff !important;
  padding: 11px 20px; border-radius: 8px; font-weight: 800; font-size: 14px;
  white-space: nowrap; transition: all .2s; flex-shrink: 0;
}
.btn-iptv-strip:hover { background: #e65c00; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,0,.4); }

/* ── Channel Tabs (GDPlayer) ─────────────────────────────── */
.channel-tabs {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 10px 12px; background: #0d1117;
  border-bottom: 1px solid var(--ft-border);
}
.ch-tab {
  background: #21262d; color: var(--ft-text);
  border: 1px solid var(--ft-border); border-radius: 6px;
  padding: 6px 14px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.ch-tab:hover { background: #30363d; border-color: var(--ft-blue); }
.ch-tab.active {
  background: var(--ft-blue); color: #fff;
  border-color: var(--ft-blue);
}
.player-section { padding: 0; overflow: hidden; }
.player-section .player-header {
  padding: 10px 14px; background: #0d1117;
  border-bottom: 1px solid var(--ft-border);
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--ft-text);
}
.live-now-badge {
  display: inline-block; background: var(--ft-live);
  color: #fff; font-size: 12px; font-weight: 800;
  padding: 3px 10px; border-radius: 20px;
  margin-right: 8px; animation: pulse-live 1.5s infinite;
}
