:root {
  --bg: #080b10;
  --surface: #10151d;
  --surface-2: #151c26;
  --surface-3: #1b2530;
  --line: rgba(215, 228, 238, .10);
  --line-strong: rgba(215, 228, 238, .18);
  --text: #f1f5f8;
  --muted: #94a2b0;
  --muted-2: #71808d;
  --accent: #79d65c;
  --accent-strong: #a2ec85;
  --danger: #ff666d;
  --warning: #e8b95a;
  --shadow: 0 20px 50px rgba(0, 0, 0, .22);
  --radius: 16px;
  --radius-sm: 11px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--bg); scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--bg); color: var(--text); }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

.app-shell { min-height: 100vh; display: flex; flex-direction: column; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.main { flex: 1; padding: 32px 0 72px; }
.stack { display: grid; gap: 24px; }
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) 300px; align-items: start; gap: 24px; }
.section { margin-top: 34px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 15px; }
.eyebrow { margin: 0 0 8px; color: var(--accent); font-size: 11px; letter-spacing: .14em; font-weight: 800; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 10px; font-size: clamp(30px, 4vw, 54px); line-height: 1.04; letter-spacing: -.045em; }
h2 { margin-bottom: 6px; font-size: clamp(23px, 3vw, 31px); line-height: 1.1; letter-spacing: -.03em; }
h3 { margin-bottom: 5px; font-size: 17px; }
.lede { max-width: 630px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.muted { color: var(--muted); }
.tiny { color: var(--muted-2); font-size: 12px; }

.site-header { position: sticky; top: 0; z-index: 30; border-bottom: 1px solid var(--line); background: rgba(8, 11, 16, .94); backdrop-filter: blur(16px); }
.header-inner { min-height: 70px; display: flex; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; font-size: 17px; font-weight: 850; letter-spacing: -.025em; }
.brand-mark { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 10px; color: #09100a; background: var(--accent); font-size: 15px; font-weight: 950; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a, .mobile-menu a { padding: 9px 11px; border-radius: 9px; color: var(--muted); font-size: 13px; font-weight: 720; }
.nav a:hover, .nav a.active, .mobile-menu a:hover, .mobile-menu a.active { color: var(--text); background: var(--surface-2); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-search { width: 195px; height: 38px; display: flex; align-items: center; gap: 8px; padding: 0 11px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); }
.header-search:focus-within { border-color: rgba(121, 214, 92, .65); }
.header-search svg { flex: 0 0 auto; width: 15px; color: var(--muted-2); }
.header-search input { width: 100%; min-width: 0; border: 0; outline: 0; color: var(--text); background: transparent; font-size: 12px; }
.header-search input::placeholder { color: var(--muted-2); }
.menu-button { display: none; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); }
.menu-button span, .menu-button span::before, .menu-button span::after { width: 16px; height: 2px; display: block; margin-inline: auto; border-radius: 2px; background: var(--muted); content: ""; }
.menu-button span::before { transform: translateY(-5px); }
.menu-button span::after { transform: translateY(3px); }
.mobile-menu { display: none; padding: 12px 20px 20px; border-top: 1px solid var(--line); background: var(--bg); }
.mobile-menu .mobile-links { display: grid; gap: 3px; }
.mobile-menu .header-search { width: 100%; margin-bottom: 10px; }

.hero { padding: 20px 0 4px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 32px; align-items: end; }
.hero-copy { padding: 18px 0; }
.hero-stat { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.stat-card { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.stat-value { display: block; margin-bottom: 4px; color: var(--accent-strong); font-size: 28px; font-weight: 840; letter-spacing: -.05em; }
.stat-label { color: var(--muted); font-size: 12px; }
.notice { display: flex; align-items: center; gap: 9px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 10px; color: var(--muted); background: rgba(16, 21, 29, .72); font-size: 12px; }
.notice::before { width: 7px; height: 7px; display: inline-block; border-radius: 50%; background: var(--accent); content: ""; }

.date-nav { display: flex; align-items: stretch; gap: 8px; overflow-x: auto; padding-bottom: 3px; }
.date-tab { min-width: 105px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); text-align: left; }
.date-tab:hover, .date-tab.active { border-color: rgba(121, 214, 92, .55); background: rgba(121, 214, 92, .11); }
.date-tab strong { display: block; margin-bottom: 3px; font-size: 13px; }
.date-tab span { color: var(--muted); font-size: 11px; }
.date-tab.active strong { color: var(--accent-strong); }
.date-picker { width: 48px; min-width: 48px; padding: 0; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); }
.date-picker input { width: 1px; height: 1px; position: absolute; opacity: 0; }
.date-picker svg { width: 17px; color: var(--muted); }

.toolbar { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; padding: 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.search-box { min-width: 220px; flex: 1; display: flex; align-items: center; gap: 9px; padding: 0 11px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg); }
.search-box svg { width: 17px; color: var(--muted-2); }
.search-box input { width: 100%; min-width: 0; height: 40px; border: 0; outline: 0; color: var(--text); background: transparent; font-size: 13px; }
.search-box input::placeholder { color: var(--muted-2); }
.select { height: 40px; padding: 0 34px 0 11px; border: 1px solid var(--line); border-radius: 10px; outline: 0; color: var(--text); background: var(--bg); font-size: 12px; }
.filter-row { display: flex; gap: 7px; overflow-x: auto; width: 100%; padding-top: 1px; }
.pill { flex: 0 0 auto; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: transparent; font-size: 12px; font-weight: 750; }
.pill:hover, .pill.active { border-color: rgba(121, 214, 92, .55); color: var(--accent-strong); background: rgba(121, 214, 92, .10); }

.match-list { display: grid; gap: 10px; }
.time-group { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 12px; align-items: start; }
.time-label { padding-top: 17px; color: var(--muted-2); font-size: 12px; font-weight: 800; letter-spacing: .04em; }
.match-card { position: relative; display: block; padding: 17px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: border-color .18s ease, transform .18s ease; }
.match-card-top { display: grid; grid-template-columns: 82px minmax(0, 1fr) auto; gap: 18px; align-items: center; }
.match-card:hover { border-color: var(--line-strong); transform: translateY(-1px); }
.match-card.live { border-color: rgba(255, 102, 109, .34); }
.match-meta { align-self: stretch; display: flex; flex-direction: column; justify-content: space-between; gap: 11px; }
.match-time { font-size: 19px; font-weight: 850; letter-spacing: -.04em; }
.match-status { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.status-live { color: var(--danger); }
.status-live::before { width: 6px; height: 6px; display: inline-block; margin-right: 5px; border-radius: 50%; background: currentColor; content: ""; vertical-align: 1px; }
.match-main { min-width: 0; }
.match-context { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; margin-bottom: 11px; color: var(--muted); font-size: 11px; }
.context-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted-2); }
.match-teams { display: grid; grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr); gap: 8px; align-items: center; }
.team { display: flex; align-items: center; gap: 9px; min-width: 0; font-size: 14px; font-weight: 800; }
.team.away { justify-content: flex-end; text-align: right; }
.team-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.team-badge { width: 28px; height: 28px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 9px; color: #0b1013; background: var(--team-color); font-size: 8px; font-weight: 950; }
.match-versus { color: var(--muted-2); font-size: 11px; text-align: center; }
.match-extra { display: flex; align-items: flex-end; flex-direction: column; gap: 10px; text-align: right; }
.score { font-size: 16px; font-weight: 850; }
.source-count { color: var(--muted); font-size: 11px; }
.match-broadcasts { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--line); }
.match-card[data-match-toggle] { cursor: pointer; }
.match-card:not(.is-expanded) .match-broadcasts { display: none; }
.match-card.is-expanded .match-broadcasts { display: flex; }
.match-card.is-expanded .match-arrow svg { transform: rotate(90deg); }
.broadcast-label { color: var(--muted-2); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.broadcast-chip { padding: 5px 8px; border: 1px solid rgba(121, 214, 92, .22); border-radius: 999px; color: var(--accent-strong); background: rgba(121, 214, 92, .08); font-size: 10px; font-weight: 750; }
.broadcast-chip:hover { border-color: rgba(121, 214, 92, .6); background: rgba(121, 214, 92, .15); }
.broadcast-chip.muted { border-color: var(--line); color: var(--muted); background: transparent; }
.broadcast-more { color: var(--muted-2); font-size: 10px; font-weight: 750; }
.broadcast-panel { margin-bottom: 18px; padding: 16px 18px; border: 1px solid rgba(121, 214, 92, .2); border-radius: var(--radius); background: linear-gradient(135deg, rgba(121, 214, 92, .09), rgba(16, 21, 29, .72)); }
.broadcast-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 11px; }
.broadcast-panel-head .eyebrow { margin-bottom: 4px; }
.broadcast-panel-head strong { font-size: 14px; }
.broadcast-panel-list { display: flex; flex-wrap: wrap; gap: 7px; }
.broadcast-panel .broadcast-chip { display: inline-flex; align-items: center; gap: 5px; }
.broadcast-panel .broadcast-chip svg { width: 12px; height: 12px; }
.match-actions { display: flex; align-items: center; gap: 8px; margin-top: 13px; }
.button { min-height: 38px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 14px; border: 1px solid transparent; border-radius: 10px; font-size: 12px; font-weight: 800; }
.button-primary { color: #0a110b; background: var(--accent); }
.button-primary:hover { background: var(--accent-strong); }
.button-ghost { border-color: var(--line); color: var(--muted); background: transparent; }
.button-ghost:hover { border-color: var(--line-strong); color: var(--text); background: var(--surface-2); }
.match-action { min-width: 111px; }
.empty-state { padding: 40px 20px; border: 1px dashed var(--line-strong); border-radius: var(--radius); color: var(--muted); text-align: center; }

.card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.channel-card, .competition-card { padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.channel-card:hover, .competition-card:hover { border-color: var(--line-strong); }
.channel-card { min-height: 154px; display: flex; flex-direction: column; }
.channel-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 18px; }
.channel-logo, .competition-logo { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 12px; color: #08100c; font-size: 10px; font-weight: 950; }
.channel-logo { position: relative; overflow: hidden; background: var(--channel-color); }
.channel-logo.has-image { background: #fff; }
.channel-logo img { width: 100%; height: 100%; padding: 7px; object-fit: contain; }
.channel-logo-fallback { display: block; }
.channel-logo.has-image .channel-logo-fallback { display: none; }
.competition-logo { color: var(--accent-strong); border: 1px solid rgba(121,214,92,.25); background: rgba(121,214,92,.10); }
.channel-card h3 { margin-bottom: 3px; font-size: 15px; }
.channel-card p { min-height: 34px; margin-bottom: 12px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.channel-card .button { width: 100%; margin-top: auto; }
.competition-card { min-height: 120px; }
.competition-card h3 { margin-top: 14px; font-size: 14px; }
.competition-card p { margin-bottom: 0; color: var(--muted); font-size: 11px; }
.link-arrow { display: inline-flex; align-items: center; gap: 5px; color: var(--accent-strong); font-size: 12px; font-weight: 800; }

.ad-slot { min-height: 76px; display: grid; place-items: center; border: 1px dashed rgba(148,162,176,.22); border-radius: var(--radius-sm); color: var(--muted-2); background: rgba(16,21,29,.45); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.ad-slot.compact { min-height: 120px; }
.sidebar { display: grid; gap: 14px; }
.side-card { padding: 17px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.side-card h3 { margin-bottom: 13px; font-size: 14px; }
.side-list { display: grid; gap: 9px; }
.side-list a { display: flex; align-items: center; justify-content: space-between; gap: 8px; color: var(--muted); font-size: 12px; }
.side-list a:hover { color: var(--accent-strong); }

.page-header { margin-bottom: 25px; }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; color: var(--muted-2); font-size: 11px; }
.breadcrumbs a:hover { color: var(--accent-strong); }
.breadcrumbs span { color: var(--muted-2); }
.back-link { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 18px; color: var(--muted); font-size: 12px; font-weight: 750; }
.back-link:hover { color: var(--accent-strong); }
.entity-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.entity-mark { width: 64px; height: 64px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(121,214,92,.25); border-radius: 18px; color: var(--accent-strong); background: rgba(121,214,92,.10); font-size: 20px; font-weight: 900; }
.entity-header-copy { display: flex; align-items: center; gap: 15px; min-width: 0; }
.entity-header-copy h1 { margin-bottom: 7px; font-size: clamp(27px, 4vw, 44px); }
.entity-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: 12px; }
.tag { padding: 5px 8px; border: 1px solid var(--line); border-radius: 6px; color: var(--muted); background: var(--surface); }

.player-shell { overflow: hidden; border: 1px solid var(--line-strong); border-radius: var(--radius); background: #050607; box-shadow: var(--shadow); }
.player-frame { position: relative; aspect-ratio: 16 / 9; display: grid; place-items: center; overflow: hidden; background: #07090c; }
.player-frame iframe { width: 100%; height: 100%; display: block; border: 0; }
.player-placeholder { max-width: 310px; padding: 20px; color: var(--muted); text-align: center; }
.player-placeholder strong { display: block; margin-bottom: 6px; color: var(--text); font-size: 17px; }
.player-placeholder p { margin-bottom: 0; font-size: 12px; line-height: 1.55; }
.player-loader { width: 24px; height: 24px; margin: 0 auto 11px; border: 2px solid var(--line-strong); border-top-color: var(--accent); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.source-panel { padding: 15px; border-top: 1px solid var(--line); background: var(--surface); }
.source-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.source-panel-head strong { font-size: 12px; }
.source-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.source-button { padding: 8px 11px; border: 1px solid var(--line); border-radius: 8px; color: var(--muted); background: var(--bg); font-size: 11px; font-weight: 750; }
.source-button:hover, .source-button.active { border-color: rgba(121,214,92,.55); color: var(--accent-strong); background: rgba(121,214,92,.08); }
.source-button.unconfigured { color: var(--muted-2); }
.info-card { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.info-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.info-item { padding: 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg); }
.info-item span { display: block; margin-bottom: 5px; color: var(--muted-2); font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.info-item strong { font-size: 13px; }

.search-results { display: grid; gap: 9px; }
.result-item { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.result-item:hover { border-color: var(--line-strong); }
.result-copy { min-width: 0; }
.result-copy strong { display: block; margin-bottom: 4px; font-size: 13px; }
.result-copy span { color: var(--muted); font-size: 11px; }
.result-type { color: var(--accent-strong); font-size: 10px; font-weight: 850; text-transform: uppercase; }

.seo-copy { max-width: 780px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.footer { padding: 30px 0; border-top: 1px solid var(--line); background: #06080c; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 32px; }
.footer-brand { max-width: 280px; }
.footer-brand p { margin: 13px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.footer h3 { margin-bottom: 11px; color: var(--text); font-size: 12px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: var(--muted); font-size: 12px; }
.footer-links a:hover { color: var(--accent-strong); }
.copyright { margin-top: 28px; padding-top: 17px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 11px; }
.error-page { min-height: 420px; display: grid; place-items: center; text-align: center; }
.error-page .button { margin-top: 10px; }

@media (max-width: 980px) {
  .nav { display: none; }
  .header-actions .header-search { display: none; }
  .menu-button { display: grid; place-items: center; }
  .mobile-menu.is-open { display: block; }
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 24px, var(--max)); }
  .main { padding-top: 20px; }
  .header-inner { min-height: 62px; gap: 10px; }
  .brand { font-size: 15px; }
  .brand-mark { width: 29px; height: 29px; }
  h1 { font-size: 34px; }
  .hero { padding-top: 8px; }
  .hero-stat { grid-template-columns: repeat(2, 1fr); }
  .stat-card { padding: 14px; }
  .stat-value { font-size: 24px; }
  .time-group { grid-template-columns: 42px minmax(0, 1fr); gap: 7px; }
  .time-label { font-size: 11px; }
  .match-card { grid-template-columns: 52px minmax(0, 1fr); gap: 10px; padding: 13px 12px; }
  .match-time { font-size: 16px; }
  .match-status { font-size: 9px; }
  .match-context { margin-bottom: 9px; font-size: 10px; }
  .match-teams { grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr); gap: 5px; }
  .team { gap: 6px; font-size: 12px; }
  .team-badge { width: 25px; height: 25px; border-radius: 8px; font-size: 7px; }
  .match-extra { display: none; }
  .match-actions { margin-top: 10px; }
  .match-action { width: 100%; min-height: 35px; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .channel-card { min-height: 145px; padding: 13px; }
  .channel-card p { font-size: 10px; }
  .competition-card { padding: 13px; }
  .sidebar { grid-template-columns: 1fr; }
  .toolbar { padding: 10px; }
  .search-box { min-width: 100%; }
  .select { flex: 1; min-width: 130px; }
  .entity-header { align-items: flex-start; }
  .entity-header-copy { align-items: flex-start; }
  .entity-mark { width: 48px; height: 48px; border-radius: 14px; font-size: 15px; }
  .entity-header-copy h1 { font-size: 28px; }
  .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .result-item { align-items: flex-start; padding: 13px; }
  .result-type { white-space: nowrap; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 18px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 390px) {
  .brand { font-size: 14px; }
  .hero-stat { gap: 7px; }
  .stat-card { padding: 12px 10px; }
  .stat-value { font-size: 21px; }
  .date-tab { min-width: 90px; padding-inline: 11px; }
}

/* Reference-inspired agenda treatment: compact header, green field grid, flat schedule rows. */
:root { --bg: #06120c; --surface: #0f1712; --surface-2: #142018; --line: rgba(142, 194, 157, .13); --line-strong: rgba(142, 194, 157, .24); --accent: #00e868; --accent-strong: #63f19a; --max: 990px; }
body { background-color: var(--bg); background-image: linear-gradient(rgba(56, 111, 72, .13) 1px, transparent 1px), linear-gradient(90deg, rgba(56, 111, 72, .13) 1px, transparent 1px); background-size: 40px 40px; }
.site-header { background: #040b07; border-bottom-color: #164529; }
.header-inner { min-height: 52px; }
.brand-mark { width: auto; height: auto; border-radius: 0; color: var(--text); background: transparent; font-size: 0; }
.brand-mark { display: none; }
.brand { gap: 4px; font-size: 17px; }
.brand span:last-child { color: transparent; font-size: 0; }
.brand span:last-child::before { content: "Fútbol "; color: var(--text); font-size: 17px; }
.brand span:last-child::after { content: "Libre TV"; color: var(--accent); font-size: 17px; }
.nav a { padding: 7px 9px; color: #8fa398; font-size: 12px; text-transform: uppercase; }
.nav a:hover, .nav a.active { color: var(--accent); background: transparent; }
.main { padding-top: 25px; }
.hero { padding-top: 0; }
.reference-hero .hero-grid { display: block; }
.reference-hero .hero-copy { padding: 26px 30px 25px; border: 1px solid rgba(0, 232, 104, .20); border-radius: 10px; background: #08391e; text-align: center; }
.reference-hero .hero-copy .eyebrow, .reference-hero .notice, .reference-hero .hero-stat { display: none; }
.reference-hero h1 { margin-bottom: 11px; color: var(--accent); font-size: clamp(26px, 4vw, 32px); line-height: 1.15; letter-spacing: -.02em; text-transform: uppercase; }
.reference-hero h1 span { color: inherit; }
.compact-home-hero h1 { font-weight: 950; letter-spacing: -.055em; line-height: 1.02; background: linear-gradient(105deg, #00e868 0%, #7dffb0 52%, #00d95f 100%); -webkit-background-clip: text; background-clip: text; color: transparent; text-wrap: balance; }
.reference-hero .lede { max-width: 100%; margin-bottom: 0; color: #c5d1c9; font-size: 15px; line-height: 1.62; text-align: left; }
.reference-hero .lede strong { color: #fff; }
.modern-home-hero .hero-copy { padding: 30px 34px; border-color: rgba(121, 214, 92, .3); border-radius: 20px; background: radial-gradient(circle at 100% 0%, rgba(121, 214, 92, .2), transparent 40%), linear-gradient(135deg, #0b4828, #062618 70%); text-align: left; box-shadow: 0 25px 70px rgba(0, 0, 0, .2); }
.modern-home-hero .lede { max-width: 600px; }
.modern-home-hero h1 { max-width: 700px; margin-bottom: 14px; color: #f3fff5; font-size: clamp(38px, 6vw, 66px); letter-spacing: -.06em; text-transform: none; }
.modern-home-hero h1 span { color: var(--accent); }
.home-kicker { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; color: #b9e6c2; font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.live-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(121, 214, 92, .12); }
.home-kicker-source { padding-left: 10px; border-left: 1px solid rgba(185, 230, 194, .28); color: #8db99a; font-size: 10px; font-weight: 650; letter-spacing: 0; text-transform: none; }
.modern-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 260px; align-items: end; gap: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.hero-actions .button-ghost { border-color: rgba(185, 230, 194, .25); color: #d5efda; background: rgba(3, 18, 10, .22); }
.hero-dashboard { padding: 16px; border: 1px solid rgba(185, 230, 194, .22); border-radius: 16px; background: rgba(1, 15, 8, .34); }
.hero-dashboard-top { display: flex; justify-content: space-between; gap: 8px; color: #91bd9d; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-dashboard > strong { display: block; margin-top: 18px; color: #fff; font-size: 48px; line-height: 1; letter-spacing: -.07em; }
.hero-dashboard > span { display: block; margin-top: 5px; color: #b9e6c2; font-size: 12px; }
.hero-featured { display: grid; gap: 5px; margin-top: 20px; padding-top: 14px; border-top: 1px solid rgba(185, 230, 194, .18); }
.hero-featured small { color: var(--accent); font-size: 9px; font-weight: 850; letter-spacing: .1em; }
.hero-featured b { color: #fff; font-size: 12px; }
.hero-featured span { overflow: hidden; color: #9fc2a8; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.home-channel-section .channel-card { border-color: rgba(121, 214, 92, .16); background: linear-gradient(145deg, #101b14, #0c130f); }
.home-channel-section .channel-logo { width: 46px; height: 46px; border-radius: 14px; }
.home-tools { margin-top: 20px; }
.reference-toolbar { display: grid; grid-template-columns: 1.25fr 1fr; gap: 12px; padding: 0; border: 0; background: transparent; }
.reference-toolbar .search-box, .reference-toolbar .select { height: 42px; border-color: #1d2d22; border-radius: 7px; background: #0d1510; }
.home-tools > .date-nav { margin-top: 14px; }
.home-tools .date-tab { min-width: 92px; padding: 9px 12px; border-color: #1d2d22; border-radius: 7px; background: #0d1510; }
.home-tools .date-tab.active { border-color: rgba(0, 232, 104, .55); background: rgba(0, 232, 104, .08); }
.agenda-panel { overflow: hidden; margin-top: 20px; border: 1px solid rgba(69, 190, 111, .22); border-radius: 14px; background: linear-gradient(180deg, #0d1711, #0a100c); box-shadow: 0 22px 55px rgba(0, 0, 0, .18); }
.agenda-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 18px; border-bottom: 1px solid rgba(0, 232, 104, .32); color: var(--accent); font-size: 15px; font-weight: 850; letter-spacing: .03em; }
.agenda-source { flex: 0 0 auto; padding: 5px 9px; border: 1px solid rgba(134, 239, 172, .22); border-radius: 999px; color: #a9c5b1; background: rgba(134, 239, 172, .07); font-size: 10px; font-weight: 650; letter-spacing: 0; text-transform: none; }
.agenda-panel .match-list, .agenda-panel .time-group, .agenda-panel .time-group > .stack { gap: 0; }
.agenda-panel .time-group { grid-template-columns: 1fr; }
.agenda-panel .time-label { display: none; }
.agenda-panel .match-card { padding: 14px 16px; border: 0; border-bottom: 1px solid rgba(104, 143, 115, .16); border-radius: 0; background: transparent; transition: background .18s ease, padding .18s ease; }
.agenda-panel .match-card-top { grid-template-columns: 58px 40px minmax(0, 1fr) auto; gap: 0; }
.agenda-panel .match-card:last-child { border-bottom: 0; }
.agenda-panel .match-card:hover { border-color: rgba(104, 143, 115, .16); background: rgba(134, 239, 172, .06); transform: none; }
.agenda-panel .match-meta { display: block; }
.agenda-panel .match-time { font-size: 15px; }
.agenda-panel .match-status { margin-top: 4px; font-size: 9px; }
.match-flag { width: 29px; height: 21px; display: grid; place-items: center; align-self: start; overflow: hidden; border: 1px solid rgba(255, 255, 255, .18); border-radius: 5px; color: #12241a; background: #d6e3d8; font-size: 8px; font-weight: 850; box-shadow: 0 3px 9px rgba(0, 0, 0, .18); }
.match-flag img { width: 100%; height: 100%; object-fit: cover; }
.agenda-panel .match-main { padding-right: 10px; }
.match-line { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; }
.match-league { color: var(--accent); font-size: 12px; font-weight: 800; }
.match-line strong { color: #f4f7f5; font-size: 14px; }
.match-vs { color: #90a197; font-weight: 500; }
.agenda-panel .match-context { margin: 3px 0 0; font-size: 10px; }
.agenda-panel .match-extra { flex-direction: row; align-items: center; gap: 10px; }
.agenda-panel .match-broadcasts { margin-top: 9px; padding-top: 8px; }
.agenda-panel .match-extra .tiny { display: none; }
.match-arrow { color: var(--accent); }
.match-arrow svg { width: 16px; height: 16px; }
.agenda-panel .score, .agenda-panel .source-count { color: #a8b5ac; font-size: 10px; white-space: nowrap; }
.agenda-panel .status-live { color: #ff626a; }
.two-col { grid-template-columns: 1fr; }
.sidebar { display: none; }
.section-head { align-items: center; }
.section-head h2 { color: #f4f7f5; }
.card-grid { gap: 10px; }
.channel-card, .competition-card { border-color: #1a2b20; background: #0e1711; }
.channel-card:hover, .competition-card:hover { border-color: rgba(0, 232, 104, .35); }
.footer { background: #040b07; border-top-color: #164529; }

@media (max-width: 680px) {
  .reference-hero .hero-copy { padding: 22px 17px; }
  .modern-home-hero .hero-copy { padding: 22px 17px; }
  .reference-hero h1 { font-size: 24px; }
  .modern-home-hero h1 { font-size: 42px; }
  .reference-hero .lede { font-size: 13px; }
  .modern-hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .home-kicker-source { width: 100%; padding: 5px 0 0; border: 0; }
  .hero-dashboard { max-width: none; }
  .reference-toolbar { grid-template-columns: 1fr; }
   .agenda-panel .match-card { padding: 12px 10px; }
   .agenda-panel .match-card-top { grid-template-columns: 51px 32px minmax(0, 1fr) auto; }
  .agenda-panel .match-main { padding-right: 5px; }
  .match-league, .match-line strong { font-size: 12px; }
  .agenda-panel .match-context { font-size: 9px; }
  .agenda-panel .match-status { font-size: 8px; }
  .agenda-panel .match-extra .score, .agenda-panel .match-extra .source-count { display: none; }
  .agenda-panel .match-arrow svg { width: 14px; }
  .agenda-source { display: block; float: none; margin-top: 4px; }
}
