*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --pitch:    #0b1f10;   /* deep forest green — the bg */
      --pitch2:   #112616;   /* slightly lighter surface */
      --pitch3:   #183020;   /* card hover */
      --line:     #1e3a28;   /* borders — like pitch lines */
      --cream:    #f2ead8;   /* warm cream — primary text & cards */
      --cream2:   #e2d9c4;   /* slightly darker cream */
      --yellow:   #ffe000;   /* electric yellow — primary accent */
      --yellow2:  #f0d000;
      --red:      #e8392a;   /* live red */
      --red-bg:   rgba(232,57,42,.12);
      --muted:    #6b8f72;   /* muted green-grey */
      --sub:      #a0b8a4;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--pitch);
      color: var(--cream);
      min-height: 100vh;
    }

    /* ══ NAV ══ */
    nav {
      position: sticky; top: 0; z-index: 300;
      min-height: 58px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 28px; gap: 12px;
      background: var(--pitch);
      border-bottom: 1px solid var(--line);
    }
    .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .logo-mark {
      width: 52px; height: 52px;
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      border-radius: 4px;
      overflow: hidden;
    }
    .logo-mark img {
      width: 100%; height: 100%;
      object-fit: contain;
      object-position: center;
    }
    .logo-wordmark {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900; font-size: 1.35rem;
      letter-spacing: .04em; text-transform: uppercase;
      color: var(--cream); line-height: 1;
    }
    .logo-wordmark em { color: var(--yellow); font-style: normal; }
    .logo-sub {
      font-family: 'DM Sans', sans-serif;
      font-size: .6rem; font-weight: 600;
      letter-spacing: .14em; text-transform: uppercase;
      color: var(--muted); display: block; margin-top: 1px;
    }
    .nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

    .site-nav {
      display: flex; align-items: center; justify-content: center;
      gap: 4px; flex: 1; min-width: 0;
    }
    .site-nav-link {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .82rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; text-decoration: none; white-space: nowrap;
      color: var(--muted); padding: 6px 12px; border-radius: 4px;
      transition: color .15s, background .15s;
    }
    .site-nav-link:hover { color: var(--cream); }
    .site-nav-link.on { color: var(--yellow); background: rgba(255,224,0,.08); }

    .live-chip {
      display: flex; align-items: center; gap: 5px;
      background: var(--red-bg); border: 1px solid rgba(232,57,42,.35);
      color: var(--red); font-family: 'Barlow Condensed', sans-serif;
      font-size: .8rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; padding: 4px 11px; border-radius: 4px;
    }
    .live-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--red); animation: blink 1.4s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

    /* ══ AD ══ */
    .ad-wrap { max-width: 970px; margin: 16px auto; padding: 0 20px; text-align: center; }
    .ad-label { display: none; }

    /* ══ LAYOUT ══ */
    .pg { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

    /* ══ MASTHEAD ══ */
    .masthead {
      padding: 36px 0 0;
      border-bottom: 1px solid var(--line);
      margin-bottom: 32px;
      display: flex; align-items: flex-end; justify-content: space-between; gap: 20px;
      flex-wrap: wrap; padding-bottom: 20px;
    }
    .masthead-left {}
    .masthead-eyebrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .78rem; font-weight: 700; letter-spacing: .2em;
      text-transform: uppercase; color: var(--yellow);
      display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
    }
    .masthead-eyebrow::before {
      content: ''; display: block;
      width: 24px; height: 2px; background: var(--yellow);
    }
    .masthead h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      font-weight: 900; line-height: .95; letter-spacing: -.01em;
      text-transform: uppercase; color: var(--cream);
    }
    .masthead h1 i { font-style: italic; color: var(--yellow); }
    .masthead-right {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem; font-weight: 600; color: var(--sub);
      letter-spacing: .04em; text-align: right; line-height: 1.6;
      text-transform: uppercase;
    }

    /* ══ SECTION LABEL ══ */
    .sec-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .7rem; font-weight: 700; letter-spacing: .22em;
      text-transform: uppercase; color: var(--muted);
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 14px;
    }
    .sec-label::after { content: ''; flex: 1; height: 1px; background: var(--line); }
    .sec-count {
      font-size: .65rem; font-weight: 700; padding: 2px 8px;
      border-radius: 3px; background: var(--line); color: var(--sub);
      letter-spacing: .06em;
    }
    .sec-live-count {
      font-size: .65rem; font-weight: 700; padding: 2px 8px;
      border-radius: 3px; background: var(--red-bg); color: var(--red);
      border: 1px solid rgba(232,57,42,.3); letter-spacing: .06em;
    }

    /* ══ API INDICATOR ══ */
    .api-ind {
      display: flex; align-items: center; gap: 5px;
      font-size: .65rem; color: var(--muted);
    }
    .api-ind-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--muted); }
    .api-ind.ok .api-ind-dot { background: #4ade80; }
    .api-ind.err .api-ind-dot { background: var(--red); }

    /* ══ MATCH CARDS ══ */
    .matches-row {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 14px;
      margin-bottom: 36px;
    }

    .mcard {
      background: var(--cream);
      border-radius: 6px;
      overflow: hidden;
      transition: transform .15s, box-shadow .15s, opacity .15s;
      border: 2px solid transparent;
    }
    .mcard.live { cursor: pointer; }
    .mcard.live:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.4); }
    .mcard.soon { cursor: pointer; }
    .mcard.soon:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.4); }
    .mcard.inactive { cursor: default; opacity: .72; }
    .mcard.sel { border-color: var(--yellow); opacity: 1; }

    /* thumb */
    .mcard-thumb {
      position: relative; width: 100%; padding-top: 52%;
      background: var(--pitch2); pointer-events: none; overflow: hidden;
    }
    .mcard-thumb-inner {
      position: absolute; inset: 0;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center; justify-items: center;
      gap: 4px;
      padding: 0 10px;
      background-color: var(--pitch2);
      background-image:
        linear-gradient(160deg, rgba(11, 31, 16, .78) 0%, rgba(8, 26, 13, .88) 100%),
        url('../assets/images/wp13161162.webp');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }
    .mcard-thumb-inner::before {
      content: ''; position: absolute; inset: 0; z-index: 0; opacity: .06; pointer-events: none;
      background: repeating-linear-gradient(
        0deg, transparent, transparent 23px,
        rgba(242,234,216,.5) 23px, rgba(242,234,216,.5) 24px
      );
    }
    .thumb-crest-wrap {
      position: relative; z-index: 1;
      width: 64px; height: 64px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .mcard-thumb-crest {
      display: block;
      width: 64px; height: 64px;
      object-fit: contain;
      object-position: center;
      filter: drop-shadow(0 3px 10px rgba(0,0,0,.45));
    }
    .thumb-fallback {
      display: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem; font-weight: 900; letter-spacing: .08em;
      color: var(--sub); text-transform: uppercase;
    }
    .thumb-crest-wrap.no-img .mcard-thumb-crest { display: none; }
    .thumb-crest-wrap.no-img .thumb-fallback { display: block; }
    .mcard-thumb-vs {
      position: relative; z-index: 1; flex-shrink: 0;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .78rem; font-weight: 800; letter-spacing: .14em;
      color: #fff; text-transform: uppercase;
      text-shadow: 0 1px 8px rgba(0, 0, 0, .75);
    }
    .mcard-thumb-live {
      position: absolute; top: 8px; left: 8px; z-index: 3;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .62rem; font-weight: 800; letter-spacing: .14em;
      text-transform: uppercase; color: #fff;
      background: var(--red); padding: 2px 7px; border-radius: 3px;
      box-shadow: 0 2px 8px rgba(232,57,42,.45);
    }
    .mcard-thumb-live.ht {
      color: #111;
      background: var(--yellow);
      box-shadow: 0 2px 8px rgba(255,224,0,.35);
    }
    .mcard-thumb-soon {
      position: absolute; top: 8px; left: 8px; z-index: 3;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .62rem; font-weight: 800; letter-spacing: .14em;
      text-transform: uppercase; color: #111;
      background: var(--yellow); padding: 2px 7px; border-radius: 3px;
      box-shadow: 0 2px 8px rgba(255,224,0,.35);
    }
    .mcard.live .mcard-thumb {
      box-shadow: inset 0 0 0 2px rgba(232,57,42,.5);
    }
    .mcard.soon .mcard-thumb {
      box-shadow: inset 0 0 0 2px rgba(255,224,0,.45);
    }

    /* card body — cream background */
    .mcard-body { padding: 11px 14px 13px; color: #1a1a1a; }
    .mcard-status { display: flex; align-items: center; gap: 7px; margin-bottom: 7px; }
    .st-live {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .7rem; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: var(--red);
      display: flex; align-items: center; gap: 4px;
    }
    .st-live::before {
      content: ''; display: inline-block; width: 5px; height: 5px;
      border-radius: 50%; background: var(--red); animation: blink 1.4s infinite;
    }
    .st-sched {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .7rem; font-weight: 700; letter-spacing: .1em;
      color: #7a6600; text-transform: uppercase;
    }
    .st-soon {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .7rem; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: #7a6600;
      display: flex; align-items: center; gap: 4px;
    }
    .st-soon::before {
      content: ''; display: inline-block; width: 5px; height: 5px;
      border-radius: 50%; background: var(--yellow); animation: blink 1.4s infinite;
    }
    .st-ft,
    .st-ht {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .7rem; font-weight: 700; letter-spacing: .1em;
      color: #666; text-transform: uppercase;
    }
    .st-min {
      font-size: .72rem; font-weight: 600; color: #444;
    }

    .mcard-matchup {
      display: grid; grid-template-columns: 1fr auto 1fr;
      align-items: center; gap: 6px;
    }
    .m-team { display: flex; flex-direction: column; align-items: center; gap: 3px; text-align: center; }
    .m-crest {
      width: 28px; height: 28px;
      object-fit: contain; object-position: center;
    }
    .m-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .85rem; font-weight: 700; letter-spacing: .04em;
      color: #1a1a1a; text-transform: uppercase; line-height: 1.1;
    }
    .m-score {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.7rem; font-weight: 900; color: #111;
      letter-spacing: .04em; text-align: center; min-width: 54px;
    }
    .m-score.vs {
      font-size: .9rem; font-weight: 600; color: #888;
    }

    .mcard-foot {
      display: flex; align-items: center; justify-content: space-between;
      margin-top: 8px;
    }
    .mcard-stage { font-size: .62rem; color: #888; font-weight: 500; }
    .mcard-cta {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .72rem; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; color: var(--pitch);
      background: var(--yellow); padding: 2px 8px; border-radius: 3px;
      opacity: 0; transition: opacity .15s;
    }
    .mcard:hover .mcard-cta, .mcard.sel .mcard-cta { opacity: 1; }
    .mcard.inactive .mcard-cta { display: none; }

    /* ══ PLAYER ══ */
    .player-shell {
      position: relative; width: 100%; padding-top: 56.25%;
      border-radius: 6px; overflow: hidden;
      background: #000; border: 1px solid var(--line);
      margin-bottom: 10px;
    }
    .player-shell iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; z-index: 1; }
    .stream-fallback-link {
      display: block; text-align: center; margin: -4px 0 12px;
      font-size: .82rem; font-weight: 600; color: var(--yellow);
    }
    .stream-fallback-link[hidden] { display: none; }
    .player-empty {
      position: absolute; inset: 0; z-index: 0;
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
      color: var(--muted);
    }
    .player-empty p { font-size: .85rem; font-weight: 500; }
    .player-empty.is-clickable { cursor: pointer; }
    .player-empty.is-clickable:hover { color: var(--text); }

    .player-gate {
      position: absolute; inset: 0; z-index: 2;
      display: flex; align-items: center; justify-content: center;
      background: rgba(0,0,0,.92); padding: 16px;
    }
    .player-gate-inner {
      width: 100%; max-width: 640px; text-align: center;
    }
    .player-gate-ad-wrap { margin-bottom: 14px; min-height: 90px; }
    .player-gate-ad { min-height: 90px; }
    .player-gate-ch {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem; font-weight: 700; letter-spacing: .06em;
      text-transform: uppercase; color: var(--yellow); margin-bottom: 12px;
    }
    .player-gate-btn {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .95rem; font-weight: 800; letter-spacing: .12em;
      text-transform: uppercase; cursor: pointer;
      background: var(--yellow); color: var(--pitch);
      border: none; border-radius: 4px; padding: 12px 28px;
    }
    .player-gate-btn:hover { filter: brightness(1.05); }
    .player-gate-timer { font-size: .72rem; color: var(--muted); margin-top: 10px; }

    /* now playing */
    .now-bar {
      display: none;
      background: var(--pitch2); border: 1px solid var(--line); border-radius: 6px;
      padding: 12px 16px; margin-bottom: 28px;
      align-items: center; gap: 16px; flex-wrap: wrap;
    }
    .now-bar.on { display: flex; }
    .now-status {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .72rem; font-weight: 800; letter-spacing: .16em;
      text-transform: uppercase; padding: 3px 9px; border-radius: 3px;
      white-space: nowrap;
    }
    .now-status.live { background: var(--red-bg); color: var(--red); border: 1px solid rgba(232,57,42,.3); }
    .now-status.ht { background: rgba(255,224,0,.12); color: var(--yellow); border: 1px solid rgba(255,224,0,.3); }
    .now-status.sched { background: rgba(255,224,0,.1); color: var(--yellow); border: 1px solid rgba(255,224,0,.25); }
    .now-status.ft { background: var(--line); color: var(--sub); }
    .now-teams {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.25rem; font-weight: 800; letter-spacing: .03em;
      text-transform: uppercase; color: var(--cream); flex: 1;
    }
    .now-score {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.4rem; font-weight: 900; color: var(--yellow);
      letter-spacing: .06em;
    }
    .now-meta { font-size: .7rem; color: var(--muted); font-weight: 500; }

    /* ══ CHANNEL SELECTOR ══ */
    .region-strip { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
    .rtab {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .82rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase;
      padding: 5px 14px; border-radius: 3px;
      border: 1px solid var(--line); background: transparent;
      color: var(--muted); cursor: pointer; transition: all .15s;
    }
    .rtab:hover { color: var(--cream); border-color: var(--sub); }
    .rtab.on { background: var(--yellow); border-color: var(--yellow); color: #111; }

    .ch-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
    .ch-btn {
      display: flex; flex-direction: column; gap: 2px;
      padding: 9px 14px; border-radius: 5px;
      border: 1px solid var(--line); background: var(--pitch2);
      cursor: pointer; text-align: left; min-width: 96px;
      transition: border-color .15s, background .15s, opacity .2s;
    }
    .ch-btn:hover { border-color: var(--sub); background: var(--pitch3); }
    .ch-btn.on { border-color: var(--yellow); background: rgba(255,224,0,.06); }
    .ch-btn.hl { border-color: var(--yellow); background: rgba(255,224,0,.1); }
    .ch-btn.dim { opacity: .28; }
    .ch-q {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .58rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; padding: 1px 5px; border-radius: 2px;
      background: var(--pitch); color: var(--muted); display: inline-block; width: fit-content;
    }
    .ch-btn.on .ch-q { background: rgba(255,224,0,.15); color: var(--yellow); }
    .ch-btn.hl .ch-q { background: rgba(255,224,0,.15); color: var(--yellow); }
    .ch-n {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .95rem; font-weight: 800; letter-spacing: .04em;
      text-transform: uppercase; color: var(--cream); line-height: 1;
    }
    .ch-btn.on .ch-n { color: var(--yellow); }
    .ch-btn.hl .ch-n { color: var(--yellow); }
    .ch-m { font-size: .63rem; color: var(--muted); font-weight: 500; }
    .ch-bcast { font-size: .6rem; font-weight: 700; color: var(--yellow); letter-spacing: .04em; }

    /* ══ HL HINT ══ */
    .hl-hint {
      font-size: .7rem; color: var(--muted); font-weight: 500;
      margin-bottom: 10px; min-height: 1.2em;
    }

    /* ══ FOOTER ══ */
    footer {
      border-top: 1px solid var(--line);
      padding: 28px 20px; text-align: center;
      color: var(--muted); font-size: .72rem; line-height: 1.9;
    }
    .footer-logo {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.05rem; font-weight: 900; letter-spacing: .1em;
      text-transform: uppercase; color: var(--sub); display: block; margin-bottom: 4px;
    }
    .footer-logo em { color: var(--yellow); font-style: normal; }
    footer a { color: var(--sub); text-decoration: none; }
    footer a:hover { color: var(--yellow); }

    /* ══ LEGAL ══ */
    .legal-page { padding-top: 28px; padding-bottom: 48px; max-width: 720px; }
    .legal-page h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2rem; font-weight: 900; text-transform: uppercase;
      letter-spacing: .04em; margin-bottom: 8px;
    }
    .legal-updated { font-size: .75rem; color: var(--muted); margin-bottom: 28px; }
    .legal-page section { margin-bottom: 24px; }
    .legal-page h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem; font-weight: 800; letter-spacing: .08em;
      text-transform: uppercase; color: var(--yellow); margin-bottom: 8px;
    }
    .legal-page p, .legal-page li {
      font-size: .85rem; line-height: 1.65; color: var(--sub); margin-bottom: 8px;
    }
    .legal-page a { color: var(--yellow); }
    .legal-page code {
      font-size: .78rem; background: var(--pitch2); padding: 1px 5px; border-radius: 3px;
    }

    /* ══ WATCH EXTRAS ══ */
    .watch-top-bar {
      display: flex; align-items: center; justify-content: space-between;
      gap: 12px; flex-wrap: wrap; margin-bottom: 20px;
    }
    .watch-top-bar .back-link { margin-bottom: 0; }
    .share-btn {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .78rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; cursor: pointer;
      background: var(--pitch2); color: var(--cream);
      border: 1px solid var(--line); border-radius: 4px;
      padding: 8px 14px; transition: border-color .15s, color .15s;
    }
    .share-btn:hover { border-color: var(--yellow); color: var(--yellow); }
    .mcard.done { opacity: .72; }
    .player-spinner {
      width: 28px; height: 28px; border-radius: 50%;
      border: 2px solid var(--line); border-top-color: var(--yellow);
      animation: spin .8s linear infinite;
    }
    .player-empty:not(.loading) .player-spinner { display: none; }
    @keyframes spin { to { transform: rotate(360deg); } }
    .ch-btn:disabled { opacity: .45; cursor: not-allowed; }

    /* ══ TOURNAMENT TABS ══ */
    .tournament-section {
      margin-top: 36px; padding-top: 28px;
      border-top: 1px solid var(--line);
    }
    .content-tabs {
      display: flex; gap: 8px; margin-bottom: 20px;
    }
    .content-tab {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .88rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; cursor: pointer;
      background: var(--pitch2); color: var(--muted);
      border: 1px solid var(--line); border-radius: 4px;
      padding: 10px 20px; transition: color .15s, border-color .15s, background .15s;
    }
    .content-tab:hover { color: var(--cream); border-color: var(--sub); }
    .content-tab.on {
      color: var(--yellow); border-color: rgba(255,224,0,.4);
      background: rgba(255,224,0,.08);
    }
    .content-panel { padding-bottom: 24px; }
    .panel-hint { padding: 24px 0; }
    .panel-source {
      font-size: .68rem; color: var(--muted); font-weight: 500;
      margin-bottom: 12px;
    }

    /* ══ TOURNAMENT HUB (legacy) ══ */
    .tournament-hub {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
      margin-bottom: 32px;
    }
    .hub-card {
      display: flex; flex-direction: column; gap: 4px;
      padding: 16px 18px; border-radius: 6px; text-decoration: none;
      background: var(--pitch2); border: 1px solid var(--line);
      transition: border-color .15s, transform .15s;
    }
    .hub-card:hover {
      border-color: rgba(255,224,0,.35); transform: translateY(-2px);
    }
    .hub-card-kicker {
      font-size: .58rem; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: var(--muted);
    }
    .hub-card-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.15rem; font-weight: 800; letter-spacing: .04em;
      text-transform: uppercase; color: var(--cream);
    }
    .hub-card-desc { font-size: .75rem; color: var(--sub); line-height: 1.4; }

    /* ══ SUBPAGES ══ */
    .page-head { padding: 28px 0 24px; }
    .page-head h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2.4rem; font-weight: 900; text-transform: uppercase;
      letter-spacing: .02em; line-height: 1; margin-bottom: 8px;
    }
    .page-head h1 i { color: var(--yellow); font-style: normal; }
    .page-sub { font-size: .85rem; color: var(--sub); }

    .results-day { margin-bottom: 28px; }
    .results-day-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .9rem; font-weight: 800; letter-spacing: .08em;
      text-transform: uppercase; color: var(--yellow);
      margin-bottom: 10px; padding-bottom: 8px;
      border-bottom: 1px solid var(--line);
    }
    .results-list {
      display: flex; flex-direction: column; gap: 8px;
    }
    .result-row {
      background: var(--pitch2); border: 1px solid var(--line);
      border-radius: 6px; padding: 12px 14px;
    }
    .result-row-live {
      border-color: rgba(34, 197, 94, 0.35);
      background: rgba(34, 197, 94, 0.08);
    }
    .result-live-pill {
      display: inline-block;
      margin-right: 8px;
      padding: 1px 7px;
      border-radius: 999px;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
      color: #86efac;
      background: rgba(34, 197, 94, 0.2);
    }
    .result-live-pill.ht {
      color: #fde68a;
      background: rgba(255, 224, 0, 0.18);
    }
    .result-teams {
      display: grid; grid-template-columns: 1fr auto 1fr;
      align-items: center; gap: 10px; margin-bottom: 4px;
    }
    .result-team {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem; font-weight: 700; letter-spacing: .04em;
      text-transform: uppercase;
    }
    .result-team:first-child { text-align: right; }
    .result-score {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem; font-weight: 900; color: var(--yellow);
      letter-spacing: .06em;
    }
    .result-meta {
      font-size: .68rem; color: var(--muted); text-align: center;
    }
    .result-watch {
      margin-left: 8px; color: var(--yellow); text-decoration: none; font-weight: 600;
    }

    .standings-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 16px; padding-bottom: 32px;
    }
    .stand-group {
      background: var(--pitch2); border: 1px solid var(--line);
      border-radius: 6px; overflow: hidden;
    }
    .stand-group-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .82rem; font-weight: 800; letter-spacing: .1em;
      text-transform: uppercase; color: var(--yellow);
      padding: 10px 12px; border-bottom: 1px solid var(--line);
    }
    .stand-table-wrap { overflow-x: auto; }
    .stand-table {
      width: 100%; border-collapse: collapse; font-size: .72rem;
    }
    .stand-table th {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      color: var(--muted); padding: 8px 6px; text-align: center;
      border-bottom: 1px solid var(--line);
    }
    .stand-table th:nth-child(2) { text-align: left; }
    .stand-table td {
      padding: 8px 6px; text-align: center; color: var(--cream);
      border-bottom: 1px solid rgba(30,58,40,.6);
    }
    .stand-table tr:last-child td { border-bottom: none; }
    .stand-table .team-cell {
      display: flex; align-items: center; gap: 8px;
      text-align: left; font-weight: 600; min-width: 120px;
    }
    .stand-crest { width: 18px; height: 18px; object-fit: contain; }
    .stand-table .pos { color: var(--muted); font-weight: 700; }
    .stand-table .gd { color: var(--sub); }
    .stand-table .pts { font-weight: 800; color: var(--yellow); }

    /* ══ SKELETON ══ */
    .skel { border-radius: 6px; background: var(--pitch2); animation: sk 1.5s ease-in-out infinite; }
    @keyframes sk { 0%,100%{opacity:.4} 50%{opacity:.8} }

    /* ══ EMPTY ══ */
    .empty-msg {
      grid-column: 1/-1; padding: 40px 20px; text-align: center;
      color: var(--muted); font-size: .85rem;
    }

    /* ══ RESPONSIVE ══ */
    .section-head-bar {
      display: flex; align-items: center; justify-content: space-between;
      gap: 12px; flex-wrap: wrap; margin-bottom: 14px;
    }
    .section-head-label { margin-bottom: 0; flex: 1; min-width: 0; }

    @media (max-width: 768px) {
      nav { padding: 8px 12px; min-height: 50px; }
      .logo-mark { width: 40px; height: 40px; }
      .logo-wordmark { font-size: 1.05rem; }
      .logo-sub { font-size: .52rem; letter-spacing: .1em; }
      .live-chip { font-size: .68rem; padding: 3px 8px; }

      .pg { padding: 0 12px; }
      .ad-wrap { padding: 0 12px; margin: 12px auto; }

      .masthead {
        padding: 16px 0 12px; margin-bottom: 18px;
        flex-direction: column; align-items: flex-start; gap: 10px;
      }
      .masthead-eyebrow { font-size: .68rem; margin-bottom: 4px; }
      .masthead-eyebrow::before { width: 16px; }
      .masthead h1 { font-size: 1.75rem; line-height: .92; }
      .masthead-right {
        font-size: .68rem; text-align: left; line-height: 1.5;
        display: flex; flex-wrap: wrap; gap: 6px 14px;
      }

      .sec-label { font-size: .65rem; margin-bottom: 10px; }
      .live-pick-hint { font-size: .75rem; margin: -4px 0 12px; }

      /* Live row: horizontal snap scroll */
      .matches-row--live {
        display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
        gap: 10px; margin-bottom: 22px; padding-bottom: 2px;
        -webkit-overflow-scrolling: touch;
        grid-template-columns: unset;
      }
      .matches-row--live .mcard {
        flex: 0 0 min(76vw, 260px); scroll-snap-align: start;
      }
      .also-live-section .matches-row {
        display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
        gap: 10px; padding-bottom: 2px; -webkit-overflow-scrolling: touch;
        grid-template-columns: unset;
      }
      .also-live-section .matches-row .mcard {
        flex: 0 0 min(76vw, 260px); scroll-snap-align: start;
      }

      .mcard.live:hover,
      .mcard.soon:hover { transform: none; box-shadow: none; }

      /* Today's schedule: 2 compact columns */
      .matches-row--schedule {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px; margin-bottom: 24px;
      }

      .mcard-thumb { padding-top: 38%; }
      .thumb-crest-wrap { width: 44px; height: 44px; }
      .mcard-thumb-crest { width: 44px; height: 44px; }
      .mcard-thumb-vs { font-size: .65rem; }
      .mcard-body { padding: 8px 10px 10px; }
      .mcard-status { margin-bottom: 4px; gap: 5px; }
      .st-live, .st-soon, .st-sched, .st-ft, .st-ht { font-size: .62rem; }
      .st-min { font-size: .65rem; }
      .m-crest { width: 22px; height: 22px; }
      .m-name { font-size: .72rem; }
      .m-score { font-size: 1.25rem; min-width: 40px; }
      .m-score.vs { font-size: .75rem; }
      .mcard-foot { margin-top: 5px; }
      .mcard-stage { font-size: .55rem; }
      .mcard.live .mcard-cta,
      .mcard.soon .mcard-cta { opacity: 1; font-size: .62rem; padding: 2px 6px; }

      .tournament-section { margin-top: 24px; padding-top: 18px; }
      .content-tabs { gap: 6px; margin-bottom: 14px; }
      .content-tab { flex: 1; font-size: .78rem; padding: 9px 12px; text-align: center; }

      .result-row { padding: 10px 12px; }
      .result-team { font-size: .82rem; }
      .result-score { font-size: .95rem; }
      .standings-grid { grid-template-columns: 1fr; gap: 12px; }
      .stand-table { font-size: .68rem; }

      .now-bar { padding: 10px 12px; gap: 8px; margin-bottom: 18px; }
      .now-teams { font-size: 1rem; flex: 1 1 100%; order: 2; }
      .now-score { font-size: 1.15rem; }
      .now-meta { font-size: .65rem; flex: 1 1 100%; order: 3; }

      .region-strip { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
      .rtab { flex-shrink: 0; font-size: .75rem; padding: 5px 12px; }
      .ch-row {
        flex-wrap: nowrap; overflow-x: auto; gap: 8px; padding-bottom: 4px;
        margin-bottom: 20px; -webkit-overflow-scrolling: touch;
      }
      .ch-btn { flex: 0 0 auto; min-width: 88px; padding: 8px 12px; }
      .ch-n { font-size: .85rem; }

      .empty-msg { padding: 28px 12px; font-size: .8rem; }
      footer { padding: 20px 12px; font-size: .68rem; }
    }

    @media (max-width: 400px) {
      .masthead h1 { font-size: 1.55rem; }
      .matches-row--schedule { grid-template-columns: 1fr; }
      .matches-row--live .mcard { flex: 0 0 min(88vw, 300px); }
      .logo-sub { display: none; }
    }
/* link cards */
a.mcard { text-decoration: none; color: inherit; display: block; }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 600; color: var(--muted); text-decoration: none; margin-bottom: 20px; transition: color .15s; }
.back-link:hover { color: var(--cream); }
.watch-header { margin-bottom: 24px; }
.watch-header .now-bar { display: flex; margin-bottom: 0; }
.also-live-section { display: none; margin-bottom: 28px; }
.also-live-section.on { display: block; }
.also-live-section .matches-row { margin-bottom: 0; }
.live-section { margin-bottom: 8px; }
.finished-section { margin-bottom: 8px; }
.sec-label.finished-section .sec-count { color: var(--muted); }
.live-pick-hint { font-size: .8rem; color: var(--sub); margin: -8px 0 20px; line-height: 1.5; }
.watch-error { padding: 48px 20px; text-align: center; color: var(--muted); }
.watch-error a { color: var(--yellow); text-decoration: none; font-weight: 600; }
