/* ============================================================
   OKTV — Modern Sports TV Guide
   ============================================================ */

:root {
  --bg: #0a0e1a;
  --bg-2: #0f1422;
  --surface: #131826;
  --surface-2: #1a1f31;
  --surface-3: #232940;
  --border: #232940;
  --border-2: #2d3450;
  --text: #f1f3f9;
  --text-2: #c2c8d6;
  --muted: #7a8195;
  --dim: #4a5068;
  --accent: #f59e0b;
  --accent-2: #fbbf24;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --live: #ef4444;
  --live-2: #f87171;
  --free: #22c55e;
  --sat: #3b82f6;
  --stream: #a855f7;
  --cable: #f97316;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
}

[data-theme="light"] {
  --bg: #f7f8fa;
  --bg-2: #ffffff;
  --surface: #ffffff;
  --surface-2: #f3f4f7;
  --surface-3: #e7e9ee;
  --border: #e1e4eb;
  --border-2: #cdd2dc;
  --text: #0a0e1a;
  --text-2: #2a2f3d;
  --muted: #6b7280;
  --dim: #9ca3af;
  --accent-dim: rgba(217, 119, 6, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 14px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'cv11', 'ss01';
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
select, input { font-family: inherit; outline: none; }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--dim); }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
[data-theme="light"] .topbar { background: rgba(247, 248, 250, 0.9); }

.topbar-inner {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark { width: 32px; height: 32px; }
.brand-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.topbar-center { flex: 1; display: flex; justify-content: center; }

.date-tabs {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 3px;
  gap: 2px;
}
.date-tab {
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 7px;
  transition: all 0.15s;
}
.date-tab:hover { color: var(--text); }
.date-tab.active {
  background: var(--accent);
  color: #0a0e1a;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.sel {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 4px 0 8px;
  height: 32px;
  gap: 4px;
}
.sel-icon { width: 12px; height: 12px; color: var(--muted); }
.sel select {
  background: transparent;
  border: none;
  color: var(--text-2);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 0;
  cursor: pointer;
}
.sel select option { background: var(--surface); color: var(--text); }

.iconbtn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-2);
  font-size: 14px;
  transition: all 0.15s;
}
.iconbtn:hover { background: var(--surface-2); color: var(--text); }
.iconbtn svg { width: 14px; height: 14px; }
.iconbtn .ic-sun { display: none; }
[data-theme="light"] .iconbtn .ic-moon { display: none; }
[data-theme="light"] .iconbtn .ic-sun { display: block; }

#refreshBtn.spinning svg { animation: spin 0.8s linear infinite; }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* ============================================================
   SPORT BAR
   ============================================================ */
.sportbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.sportbar-outer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.sportbar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 50px;
}

.sport-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  flex: 1;
  scrollbar-width: none;
}
.sport-tabs::-webkit-scrollbar { display: none; }

.sport-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  transition: all 0.15s;
  flex-shrink: 0;
}
.sport-tab:hover { color: var(--text); background: var(--surface); }
.sport-tab.active { color: var(--accent); background: var(--accent-dim); }
.sport-tab svg { width: 14px; height: 14px; flex-shrink: 0; }
.sport-tab .badge {
  font-size: 10px;
  font-weight: 700;
  background: var(--surface-2);
  padding: 1px 6px;
  border-radius: 6px;
  color: var(--muted);
  margin-left: 2px;
}
.sport-tab.active .badge { background: var(--accent); color: #0a0e1a; }

.chtype-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 3px;
}
.chtype-tab {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 6px;
  transition: all 0.15s;
}
.chtype-tab:hover { color: var(--text); }
.chtype-tab.active { background: var(--surface-3); color: var(--text); }
.dot { width: 6px; height: 6px; border-radius: 50%; }
.dot-free { background: var(--free); }
.dot-sat { background: var(--sat); }
.dot-stream { background: var(--stream); }

/* ============================================================
   HERO (LIVE NOW)
   ============================================================ */
.hero {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 100%);
  padding: 32px 0 8px;
}
.hero-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--live);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--live);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--live);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
}
.hero-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--live);
}
.hero-card:hover { transform: translateY(-2px); border-color: var(--live); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(239, 68, 68, 0.15);
  color: var(--live);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  width: fit-content;
}
.hero-time {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}
.hero-teams { font-size: 15px; font-weight: 700; line-height: 1.3; margin-bottom: 3px; }
.hero-comp { font-size: 11px; color: var(--muted); font-weight: 500; margin-bottom: 10px; }
.hero-channels {
  display: flex; flex-wrap: wrap; gap: 4px;
  margin-top: auto;
}

/* ============================================================
   MAIN
   ============================================================ */
.main { padding: 24px 0 60px; }
.main-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.main-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.section-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.updated {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500;
}
.up-dot { width: 6px; height: 6px; background: var(--free); border-radius: 50%; }
.up-dot.stale { background: var(--live); }

/* COMPETITION SECTIONS */
.comps { display: flex; flex-direction: column; gap: 28px; }

.comp-block {}
.comp-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}
.comp-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.comp-count {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.comp-flag { font-size: 16px; }

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 10px;
}

/* ============================================================
   EVENT CARD — Channel-First Design
   ============================================================ */
.evt {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.evt:hover {
  border-color: var(--border-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.3);
}
.evt.is-live {
  border-color: rgba(239, 68, 68, 0.4);
}

/* LIVE BAR at top */
.evt-live-bar {
  background: var(--live);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.live-dot-sm {
  width: 6px; height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

/* CARD BODY */
.evt-body {
  padding: 14px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

/* META ROW: time + comp pill + sport */
.evt-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.evt-time {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.evt.is-live .evt-time { color: var(--live); }
.evt-date {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}
.evt-comp-pill {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.evt-sport-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface-2);
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* EVENT NAME */
.evt-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

/* CHANNEL ROW — THE STAR OF THE CARD */
.evt-channel-row {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.evt-channel-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dim);
}
.evt-channel-label svg { color: var(--dim); }

.evt-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* CHANNEL PILLS — prominent, all visible */
.ch-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border: 1px solid transparent;
}
.ch-pill[data-type="FREE_TO_AIR"] { background: rgba(34, 197, 94, 0.15); color: var(--free); border-color: rgba(34, 197, 94, 0.3); }
.ch-pill[data-type="SATELLITE"]   { background: rgba(59, 130, 246, 0.15); color: var(--sat);   border-color: rgba(59, 130, 246, 0.3); }
.ch-pill[data-type="STREAMING"]    { background: rgba(168, 85, 247, 0.15); color: var(--stream); border-color: rgba(168, 85, 247, 0.3); }
.ch-pill[data-type="CABLE"]        { background: rgba(249, 115, 22, 0.15); color: var(--cable);  border-color: rgba(249, 115, 22, 0.3); }
.ch-pill[data-type="UNKNOWN"]      { background: var(--surface-3); color: var(--muted); }
.ch-pill-none { background: var(--surface-3); color: var(--muted); font-size: 12px; font-weight: 600; }

/* BACKWARDS COMPAT: chip still used in hero */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.chip[data-type="FREE_TO_AIR"] { background: rgba(34, 197, 94, 0.12); color: var(--free); }
.chip[data-type="SATELLITE"] { background: rgba(59, 130, 246, 0.12); color: var(--sat); }
.chip[data-type="STREAMING"] { background: rgba(168, 85, 247, 0.12); color: var(--stream); }
.chip[data-type="CABLE"] { background: rgba(249, 115, 22, 0.12); color: var(--cable); }
.chip[data-type="UNKNOWN"] { background: var(--surface-2); color: var(--muted); }

/* SCROLL-TO HIGHLIGHT */
.comp-block.highlight .comp-head {
  animation: flash-comp 1.5s ease;
}
@keyframes flash-comp {
  0%, 100% { opacity: 1; }
  30% { opacity: 0.4; }
}

/* ============================================================
   FEATURED TOURNAMENTS
   ============================================================ */
.feats { padding: 20px 0 4px; }
.feats-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.feats-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 10px;
}
.feats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}
.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.feat-card:hover { border-color: var(--accent); background: var(--accent-dim); }
.feat-card.selected { border-color: var(--accent); background: var(--accent-dim); }
.feat-comp {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.feat-count {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

/* ============================================================
   SKELETON
   ============================================================ */
.skeleton {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 10px;
}
.skel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 120px;
  position: relative;
  overflow: hidden;
}
.skel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, var(--surface-2) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   EMPTY
   ============================================================ */
.empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
  gap: 6px;
  color: var(--muted);
}
.empty svg { width: 56px; height: 56px; color: var(--dim); margin-bottom: 8px; }
.empty h3 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.empty p { font-size: 13px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  margin-top: 20px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo { font-weight: 800; color: var(--text); }
.footer-tag { color: var(--muted); }
.footer-meta { display: flex; align-items: center; gap: 8px; }
.footer-link { color: var(--muted); transition: color 0.15s; }
.footer-link:hover { color: var(--text); }
.footer-sep { color: var(--dim); }

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal.open { display: flex; }
.modal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.modal-head h3 { font-size: 15px; font-weight: 700; }
.modal-x {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
}
.modal-x:hover { background: var(--surface-2); color: var(--text); }
.modal-body { padding: 18px 22px; overflow-y: auto; }
.modal-search {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 13px;
  margin-bottom: 14px;
}
.modal-search:focus { border-color: var(--accent); }

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 4px;
}
.country-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 12.5px;
  cursor: pointer;
  transition: background 0.1s;
}
.country-item:hover { background: var(--surface-2); }
.country-item.selected { background: var(--accent-dim); color: var(--accent); font-weight: 600; }
.country-item .flag { font-size: 16px; }

.src-list { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 8px; }
.src-list li { font-size: 13px; color: var(--text-2); padding: 8px 0; border-bottom: 1px solid var(--border); }
.src-list li:last-child { border-bottom: none; }
.src-list strong { color: var(--accent); font-weight: 700; }

/* ============================================================
   EVENT DETAIL MODAL
   ============================================================ */
#eventModal .modal-card { max-width: 560px; }
#eventModal .modal-card-wide { max-width: 640px; }

#eventModalTitle {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.modal-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.ch-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.ch-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.ch-list-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 16px;
  flex-shrink: 0;
}
.ch-list-badge[data-type="FREE_TO_AIR"] { background: rgba(34, 197, 94, 0.15); }
.ch-list-badge[data-type="SATELLITE"]   { background: rgba(59, 130, 246, 0.15); }
.ch-list-badge[data-type="STREAMING"]    { background: rgba(168, 85, 247, 0.15); }
.ch-list-badge[data-type="CABLE"]        { background: rgba(249, 115, 22, 0.15); }
.ch-list-badge[data-type="UNKNOWN"]      { background: var(--surface-3); }

.ch-list-info { flex: 1; min-width: 0; }
.ch-list-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.ch-list-type-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ch-list-type {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 4px;
}
.ch-list-type[data-type="FREE_TO_AIR"] { background: rgba(34, 197, 94, 0.15); color: var(--free); }
.ch-list-type[data-type="SATELLITE"]   { background: rgba(59, 130, 246, 0.15); color: var(--sat); }
.ch-list-type[data-type="STREAMING"]    { background: rgba(168, 85, 247, 0.15); color: var(--stream); }
.ch-list-type[data-type="CABLE"]        { background: rgba(249, 115, 22, 0.15); color: var(--cable); }
.ch-list-type[data-type="UNKNOWN"]      { background: var(--surface-3); color: var(--muted); }

.ch-list-region {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
.ch-list-region .lang {
  color: var(--text-2);
  font-weight: 600;
}
.ch-list-section-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
  margin-top: 16px;
}
.ch-list-section-label:first-child { margin-top: 0; }
.ch-no-channels {
  text-align: center;
  padding: 32px 16px;
  color: var(--muted);
  font-size: 13px;
}

/* ============================================================
   FOCUS
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 901px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .topbar-inner { padding: 0 16px; gap: 12px; }
  .sportbar-outer { padding: 0 16px; }
  .main-inner { padding: 0 16px; }
  .hero-inner { padding: 0 16px; }
  .feats-inner { padding: 0 16px; }
  .footer-inner { padding: 0 16px; }
  .events-grid { grid-template-columns: 1fr; }
  .skeleton { grid-template-columns: 1fr; }
  .brand-name { display: none; }
  .date-tab { padding: 5px 10px; font-size: 11.5px; }
  .sel { display: none; }
  .topbar-center { justify-content: flex-start; }
  .chtype-tab { padding: 4px 8px; font-size: 11px; }
}

@media (max-width: 480px) {
  .events-grid { grid-template-columns: 1fr; }
  .feats-grid { grid-template-columns: 1fr 1fr; }
  .evt { padding: 14px 16px; }
  .evt-time { font-size: 14px; }
  .evt-teams { font-size: 13.5px; }
}
