:root{
  --bg:#f4f6f9;
  --surface:#ffffff;
  --surface-soft:#f8fafc;
  --text:#172033;
  --text-strong:#0f172a;
  --muted:#667085;
  --muted-2:#98a2b3;
  --line:#e4e8ef;
  --line-soft:#edf0f4;
  --brand:#17233d;
  --brand-soft:#eef2f8;
  --green:#087a4f;
  --green-soft:#ebf8f1;
  --blue:#245fd6;
  --blue-soft:#edf4ff;
  --red:#d92d20;
  --red-soft:#fff1f0;
  --radius:16px;
  --shadow:0 10px 34px rgba(15,23,42,.055);
  --shadow-sm:0 3px 14px rgba(15,23,42,.045);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;background:var(--bg);color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",Arial,sans-serif;
  font-size:15px;line-height:1.55;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
}
button,input{font:inherit}
a{color:inherit}
.wrap{width:min(1160px,calc(100% - 36px));margin:0 auto}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.hero-kicker,.section-kicker,.section-note,.top-badge{display:none!important}

/* Header */
.site-header{
  position:sticky;top:0;z-index:40;background:rgba(255,255,255,.96);
  -webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);border-bottom:1px solid rgba(228,232,239,.96)
}
.header-inner{height:68px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.brand{display:flex;align-items:center;gap:11px;text-decoration:none;min-width:0}
.brand-mark{
  display:grid;place-items:center;height:36px;min-width:56px;padding:0 10px;border-radius:10px;
  background:var(--brand);color:#fff;font-size:11px;font-weight:900;letter-spacing:.12em
}
.brand-copy{display:flex;flex-direction:column;line-height:1.15;min-width:0}
.brand-copy strong{font-size:18px;letter-spacing:-.02em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.brand-copy small{margin-top:4px;color:var(--muted);font-size:12px}
.main-nav{display:flex;align-items:center;gap:4px}
.main-nav a{
  text-decoration:none;color:#475467;font-size:15px;font-weight:750;padding:9px 14px;border-radius:10px;transition:.16s ease
}
.main-nav a:hover{color:var(--text-strong);background:#f2f4f7}
body[data-page="home"] .main-nav [data-nav="home"],
body[data-page="category"][data-sport="football"] .main-nav [data-nav="football"],
body[data-page="detail"][data-sport="football"] .main-nav [data-nav="football"],
body[data-page="category"][data-sport="basketball"] .main-nav [data-nav="basketball"],
body[data-page="detail"][data-sport="basketball"] .main-nav [data-nav="basketball"],
.main-nav [data-nav][aria-current="page"]{
  background:var(--brand);color:#fff
}
.main-nav [data-nav][aria-current="page"]:hover{background:var(--brand);color:#fff}

/* Page intro */
.hero{padding:20px 0 15px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.hero-copybox{min-width:0}
.hero h1,.category-title-row h1{
  margin:0;color:var(--text-strong);font-size:clamp(31px,3.1vw,39px);line-height:1.12;letter-spacing:-.035em
}
.hero p{margin:7px 0 0;color:var(--muted);font-size:15px}
.hero-overview{
  min-width:154px;height:56px;padding:0 17px;display:flex;align-items:baseline;justify-content:center;gap:6px;
  border:1px solid var(--line);border-radius:13px;background:#fff;box-shadow:var(--shadow-sm)
}
.hero-overview span,.hero-overview em{font-size:13px;color:var(--muted);font-style:normal}
.hero-overview strong{font-size:27px;color:var(--text-strong);letter-spacing:-.04em}
.category-hero{padding-top:16px}
.crumb{font-size:13px;color:var(--muted)}
.crumb a{text-decoration:none}.crumb a:hover{color:var(--text-strong)}
.category-title-row{padding:10px 0 15px;display:flex;align-items:center;justify-content:space-between;gap:22px}
.category-title-row h1{font-size:clamp(29px,3vw,37px)}

/* Toolbar */
.toolbar-wrap{position:relative;z-index:10}
.toolbar{
  min-height:58px;padding:7px;display:flex;align-items:center;justify-content:space-between;gap:16px;
  background:#fff;border:1px solid var(--line);border-radius:14px;box-shadow:var(--shadow-sm)
}
.toolbar-single{padding-left:17px}
.toolbar-label{font-size:14px;color:#344054;font-weight:800;white-space:nowrap}
.sport-tabs{display:flex;align-items:center;gap:5px}
.filter-btn{
  appearance:none;border:0;background:transparent;color:var(--muted);font-size:14px;font-weight:800;
  padding:9px 18px;border-radius:9px;cursor:pointer;transition:.16s ease
}
.filter-btn:hover{background:#f4f6f9;color:var(--text-strong)}
.filter-btn.active{background:var(--brand);color:#fff}
.search-box{position:relative;display:block;width:min(360px,42vw)}
.search-box input{
  width:100%;height:42px;border:1px solid #e4e7ec;background:#f8fafc;border-radius:10px;
  padding:0 14px 0 40px;color:var(--text-strong);font-size:16px;outline:none;transition:.16s ease;
  -webkit-appearance:none;appearance:none
}
.search-box input::-webkit-search-decoration,
.search-box input::-webkit-search-cancel-button,
.search-box input::-webkit-search-results-button,
.search-box input::-webkit-search-results-decoration{
  -webkit-appearance:none;appearance:none;display:none
}
.search-box input:focus{background:#fff;border-color:#b9c0ca;box-shadow:0 0 0 3px rgba(23,35,61,.05)}
.search-box input::placeholder{color:var(--muted-2)}
.search-icon{position:absolute;left:15px;top:50%;width:14px;height:14px;border:1.8px solid var(--muted-2);border-radius:50%;transform:translateY(-56%);pointer-events:none}
.search-icon:after{content:"";position:absolute;width:6px;height:1.8px;background:var(--muted-2);right:-5px;bottom:-3px;transform:rotate(45deg);border-radius:2px}

/* Schedule */
.schedule-section{padding:20px 0 50px}
.section-head{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:11px}
.section-head h2{margin:0;font-size:20px;line-height:1.25;letter-spacing:-.02em;color:var(--text-strong)}
.match-list{display:grid;gap:17px}
.date-group{
  overflow:hidden;background:#fff;border:1px solid var(--line);border-radius:16px;box-shadow:var(--shadow-sm)
}
.date-group[hidden]{display:none!important}
.date-group-head{
  min-height:50px;padding:0 17px;display:flex;align-items:center;justify-content:space-between;gap:14px;
  background:#fafbfc;border-bottom:1px solid var(--line)
}
.date-group.is-today .date-group-head{background:linear-gradient(90deg,#f2f6ff 0,#fafbfc 45%)}
.date-group-head h3{margin:0;font-size:16px;line-height:1.3;font-weight:850;letter-spacing:-.012em;color:#344054}
.date-group.is-today .date-group-head h3{color:var(--text-strong)}
.date-group-count{
  display:inline-flex;align-items:center;justify-content:center;height:27px;min-width:46px;padding:0 10px;
  border:1px solid #dde2e9;border-radius:999px;background:#fff;color:#667085;font-size:12px;font-weight:800
}
.date-group-list{display:block}
.match-card{position:relative;background:#fff;border:0;box-shadow:none;transition:background .15s ease}
.match-card+.match-card{border-top:1px solid var(--line-soft)}
.match-card[hidden]{display:none}
.match-card:hover{background:#f8fafc}
.match-card.is-live{background:linear-gradient(90deg,rgba(217,45,32,.055),rgba(255,255,255,0) 36%)}
.match-card.is-live:before{content:"";position:absolute;left:0;top:10px;bottom:10px;width:3px;border-radius:0 3px 3px 0;background:var(--red)}
.match-card-link{display:block;padding:0 16px;text-decoration:none;color:inherit}
.match-row-single{
  display:grid;grid-template-columns:minmax(150px,190px) 72px minmax(145px,1fr) 36px minmax(145px,1fr) 120px 18px;
  align-items:center;gap:12px;min-height:62px
}
.match-meta{display:flex;align-items:center;gap:8px;min-width:0;overflow:hidden}
.sport-badge{
  display:inline-flex;align-items:center;justify-content:center;flex:0 0 auto;min-height:24px;padding:3px 8px;border-radius:7px;
  font-size:12px;line-height:1.2;font-weight:850;white-space:nowrap
}
.sport-football{background:var(--green-soft);color:#067647}
.sport-basketball{background:var(--blue-soft);color:#175cd3}
.sport-other{background:#f2f4f7;color:#475467}
.league{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px;font-weight:800;color:#344054}
.round{display:none;font-size:12px;color:var(--muted);white-space:nowrap}
.time-block{display:flex;align-items:center;justify-content:center;min-width:0}
.time-block .day{display:none}
.time-block strong{font-size:18px;line-height:1;font-weight:850;color:var(--text-strong);letter-spacing:-.02em;font-variant-numeric:tabular-nums}
.team{display:flex;align-items:center;gap:9px;min-width:0;text-align:left}
.team-home{justify-content:flex-end}.team-away{justify-content:flex-start}
.team-name{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:16px;line-height:1.25;font-weight:760;color:#1d2939}
.team-home .team-name{order:1;text-align:right}.team-home .team-logo{order:2}
.team-logo{
  width:34px;height:34px;flex:0 0 34px;display:grid;place-items:center;border:1px solid #e7eaf0;border-radius:50%;background:#fff;overflow:hidden
}
.team-logo img{display:block;width:28px;height:28px;object-fit:contain}
.team-logo-fallback{background:#f5f7fa;color:#667085;font-size:13px;font-weight:900}
.versus{display:block;text-align:center;color:#98a2b3;font-size:12px;line-height:1;font-weight:850;letter-spacing:.02em}
.status-block{text-align:right;min-width:0}
.match-status{
  display:inline-flex;align-items:center;justify-content:center;min-height:30px;padding:4px 10px;border-radius:8px;
  background:#f2f4f7;color:#475467;font-size:12px;font-weight:850;white-space:nowrap
}
.match-status.is-live{background:var(--red-soft);color:var(--red)}
.match-status.is-live:before{content:"";width:6px;height:6px;border-radius:50%;background:currentColor;margin-right:6px}
.status-block small{display:block;min-height:16px;margin-top:3px;color:#7d899a;font-size:11.5px;line-height:1.15;white-space:nowrap}
.card-arrow{color:#b6bec9;font-size:22px;line-height:1;font-weight:300;text-align:right}
.empty-state{padding:38px 20px;text-align:center;background:#fff;border:1px dashed #cfd5df;border-radius:14px;color:var(--muted);font-size:15px}
.empty-state strong,.empty-state span{display:block}.empty-state strong{color:#344054;font-size:15px}.empty-state span{margin-top:5px;font-size:13px}
.empty-state button{margin-top:13px;min-height:38px;padding:7px 14px;border:1px solid var(--line);border-radius:9px;background:#fff;color:#344054;font-size:13px;font-weight:800;cursor:pointer}
.empty-state button:hover{border-color:#cbd2dc;background:#f8fafc}

/* Match detail */
.detail-top{padding-top:18px}
.detail-card{margin-top:11px;padding:21px 24px 22px;border:1px solid var(--line);border-radius:17px;background:#fff;box-shadow:var(--shadow)}
.detail-heading{display:flex;align-items:center;justify-content:space-between;gap:18px;padding-bottom:14px;border-bottom:1px solid var(--line-soft)}
.detail-tags{display:flex;align-items:center;gap:9px;color:var(--muted);font-size:13px;min-width:0}
.detail-tags strong{color:#344054;font-size:14px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.detail-title{margin:18px 0 0;text-align:center;font-size:19px;line-height:1.35;color:#475467;letter-spacing:-.015em}
.detail-matchup{display:grid;grid-template-columns:1fr 145px 1fr;align-items:center;gap:20px;padding:28px 18px 25px}
.detail-team{text-align:center;min-width:0}
.detail-logo{width:82px;height:82px;margin:0 auto 12px;display:grid;place-items:center;border:1px solid #e5e9ef;border-radius:50%;background:#fff;overflow:hidden;box-shadow:0 5px 20px rgba(15,23,42,.065)}
.detail-logo img{width:64px;height:64px;object-fit:contain}
.detail-logo-fallback{background:#f6f8fa;color:#667085;font-size:27px;font-weight:900}
.detail-team h2{margin:0;font-size:clamp(21px,2.2vw,27px);line-height:1.22;letter-spacing:-.025em;overflow-wrap:anywhere}
.detail-team small{display:block;margin-top:6px;color:var(--muted);font-size:12px}
.detail-center{text-align:center;display:flex;flex-direction:column;align-items:center}
.detail-date{font-size:13px;color:var(--muted)}
.detail-center>strong{font-size:31px;line-height:1.05;margin:4px 0 9px;color:var(--text-strong);letter-spacing:-.04em}
.detail-center em{display:grid;place-items:center;width:44px;height:29px;border-radius:8px;background:var(--brand);color:#fff;font-size:10px;font-style:normal;font-weight:900;letter-spacing:.08em}
.detail-center small{min-height:18px;margin-top:8px;color:var(--muted);font-size:12px}
.detail-facts{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--line-soft)}
.detail-facts>div{padding:15px 15px 1px;text-align:center;min-width:0}
.detail-facts>div+div{border-left:1px solid var(--line-soft)}
.detail-facts span{display:block;color:var(--muted);font-size:12px;margin-bottom:4px}
.detail-facts strong{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px;color:#344054}

/* Signals / content */
.signal-section,.content-card{margin-top:16px;margin-bottom:16px;padding:20px 21px;border:1px solid var(--line);border-radius:16px;background:#fff;box-shadow:var(--shadow-sm)}
.signal-head{margin-bottom:12px}.signal-head[hidden]{display:none!important}
.signal-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}.signal-grid[hidden]{display:none!important}
.signal-btn{
  appearance:none;min-height:72px;padding:11px 13px;display:grid;grid-template-columns:32px 1fr auto;grid-template-rows:1fr 1fr;
  align-items:center;column-gap:10px;border:1px solid var(--line);border-radius:11px;background:#fafbfc;text-align:left;cursor:pointer;transition:.16s ease
}
.signal-btn:hover{border-color:#cbd2dc;background:#fff;box-shadow:var(--shadow-sm);transform:translateY(-1px)}
.signal-btn>span{grid-row:1/3;display:grid;place-items:center;width:32px;height:32px;border-radius:8px;background:var(--brand);color:#fff;font-size:11px;font-weight:900}
.signal-btn strong{align-self:end;font-size:14px;color:#344054;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.signal-btn em{grid-column:2;align-self:start;color:var(--muted);font-size:12px;font-style:normal}
.signal-btn:after{content:"›";grid-column:3;grid-row:1/3;color:#98a2b3;font-size:21px}
.signal-btn:disabled{opacity:.55;cursor:wait;transform:none}
.signal-message{min-height:20px;margin:9px 0 0;color:var(--muted);font-size:13px}
.content-card .section-head{margin-bottom:14px}
.article-content{color:#475467;font-size:16px;line-height:1.8}
.article-content>:first-child{margin-top:0}.article-content>:last-child{margin-bottom:0}
.article-content img{max-width:100%;height:auto;border-radius:11px}

/* Footer */
.site-footer{margin-top:38px;border-top:1px solid var(--line);background:#fff}
.footer-inner{padding:25px 0;color:var(--muted);font-size:12px}
.footer-inner p{margin:4px 0}



/* V8 date shortcuts / SEO content */
.section-head-tools{align-items:center}
.date-filters{display:flex;align-items:center;gap:6px;min-width:0}
.date-filter{
  appearance:none;border:1px solid var(--line);background:#fff;color:#667085;min-height:34px;padding:6px 11px;
  border-radius:9px;font-size:12.5px;font-weight:800;cursor:pointer;white-space:nowrap;transition:.16s ease
}
.date-filter:hover{border-color:#cbd2dc;color:var(--text-strong);background:#fafbfc}
.date-filter.active{border-color:var(--brand);background:var(--brand);color:#fff}
.seo-guide,.match-faq{
  margin-top:0;margin-bottom:24px;padding:24px;border:1px solid var(--line);border-radius:17px;background:#fff;box-shadow:var(--shadow-sm)
}
.seo-guide-head{max-width:790px}.seo-eyebrow{display:block;margin-bottom:5px;color:#667085;font-size:12px;font-weight:850;letter-spacing:.08em}
.seo-guide h2,.match-faq h2{margin:0;color:var(--text-strong);font-size:21px;line-height:1.3;letter-spacing:-.02em}
.seo-guide-head>p{margin:9px 0 0;color:#667085;font-size:14px;line-height:1.75}
.seo-guide-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:18px}
.seo-guide-grid article{padding:15px 16px;border:1px solid var(--line-soft);border-radius:12px;background:#fafbfc}
.seo-guide-grid strong{display:block;color:#344054;font-size:14px}.seo-guide-grid p{margin:6px 0 0;color:#667085;font-size:13px;line-height:1.65}
.match-faq{margin-top:16px}.match-faq .section-head{margin-bottom:12px}
.faq-list{border-top:1px solid var(--line-soft)}
.faq-list details{border-bottom:1px solid var(--line-soft)}
.faq-list summary{position:relative;cursor:pointer;list-style:none;padding:14px 32px 14px 0;color:#344054;font-size:14px;font-weight:820}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary:after{content:"+";position:absolute;right:3px;top:50%;transform:translateY(-50%);color:#98a2b3;font-size:21px;font-weight:400}
.faq-list details[open] summary:after{content:"−"}
.faq-list p{margin:-2px 0 14px;color:#667085;font-size:14px;line-height:1.75}
.faq-list p strong{color:#344054}

@media(max-width:920px){
  .match-row-single{grid-template-columns:118px 62px minmax(120px,1fr) 30px minmax(120px,1fr) 92px;gap:9px}
  .match-meta .sport-badge{display:none}.league{font-size:13px}
  .card-arrow{display:none}
  .status-block small{display:none}
  .signal-grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:720px){
  body{font-size:15px}
  .wrap{width:min(100% - 18px,1160px)}
  .header-inner{height:60px;gap:12px}
  .brand{gap:8px}.brand-mark{height:32px;min-width:48px;font-size:10px}.brand-copy strong{font-size:16px}.brand-copy small{display:none}
  .main-nav{gap:2px}.main-nav a{min-height:42px;display:flex;align-items:center;padding:8px 9px;font-size:13px;border-radius:8px}

  .hero{padding:16px 0 12px;align-items:stretch;flex-direction:column;gap:11px}
  .hero h1{font-size:29px;line-height:1.16}.hero p{margin-top:6px;font-size:14px;line-height:1.55}
  .hero-overview{height:48px;min-width:0;width:100%;justify-content:flex-start;padding:0 14px}
  .hero-overview span,.hero-overview em{font-size:13px}.hero-overview strong{font-size:24px}
  .category-hero{padding-top:11px}.crumb{font-size:12px}
  .category-title-row{padding:9px 0 12px;align-items:stretch;flex-direction:column;gap:11px}
  .category-title-row h1{font-size:28px}

  .toolbar{align-items:stretch;flex-direction:column;padding:7px;gap:7px}
  .toolbar-single{padding:10px}.toolbar-label{padding:1px 4px;font-size:14px}
  .sport-tabs{display:grid;grid-template-columns:repeat(3,1fr);gap:5px}.filter-btn{padding:9px 10px;font-size:14px}
  .search-box{width:100%}.search-box input{height:42px;font-size:16px}

  .schedule-section{padding-top:15px;padding-bottom:38px}.section-head{margin-bottom:9px}.section-head h2{font-size:19px}
  .section-head-tools{align-items:flex-start;flex-direction:column;gap:9px}
  .date-filters{width:100%;overflow-x:auto;padding-bottom:2px;scrollbar-width:none;-webkit-overflow-scrolling:touch}.date-filters::-webkit-scrollbar{display:none}
  .date-filter{min-height:36px;padding:7px 12px;flex:0 0 auto}
  .seo-guide,.match-faq{padding:18px 15px;border-radius:14px}.seo-guide h2,.match-faq h2{font-size:19px}
  .seo-guide-grid{grid-template-columns:1fr;gap:8px;margin-top:14px}.seo-guide-grid article{padding:13px 14px}
  .faq-list summary{padding:13px 30px 13px 0}.faq-list p{font-size:13.5px}
  .match-list{gap:13px}.date-group{border-radius:14px}.date-group-head{min-height:46px;padding:0 12px}
  .date-group-head h3{font-size:15px}.date-group-count{height:25px;min-width:43px;font-size:12px}
  .match-card-link{padding:0 10px}
  .match-row-single{grid-template-columns:48px minmax(0,1fr) 22px minmax(0,1fr) 58px;gap:7px;min-height:58px}
  .match-meta{display:none}
  .time-block{justify-content:flex-start}.time-block strong{font-size:15.5px}
  .team{gap:6px}.team-home{justify-content:flex-end}.team-away{justify-content:flex-start}
  .team-name{font-size:14.5px;line-height:1.2}
  .team-logo{width:29px;height:29px;flex-basis:29px}.team-logo img{width:23px;height:23px}.team-logo-fallback{font-size:12px}
  .versus{font-size:10px}
  .match-status{min-height:28px;padding:3px 6px;font-size:12px;border-radius:7px}
  .status-block small{display:none}

  .detail-card{padding:17px 14px 18px}.detail-heading{padding-bottom:12px;align-items:flex-start}.detail-tags{font-size:12px;gap:7px}.detail-tags strong{font-size:13px}
  .detail-title{margin-top:15px;font-size:17px}.detail-matchup{grid-template-columns:1fr 82px 1fr;gap:8px;padding:23px 2px 21px}
  .detail-logo{width:64px;height:64px;margin-bottom:9px}.detail-logo img{width:49px;height:49px}.detail-logo-fallback{font-size:21px}
  .detail-team h2{font-size:17px}.detail-team small{font-size:12px}.detail-date{font-size:12px}.detail-center>strong{font-size:25px}
  .detail-center em{width:38px;height:25px;font-size:10px}.detail-center small{font-size:12px}
  .detail-facts{grid-template-columns:1fr}.detail-facts>div{padding:11px 3px;text-align:left;display:flex;align-items:center;justify-content:space-between;gap:14px}
  .detail-facts>div+div{border-left:0;border-top:1px solid var(--line-soft)}.detail-facts span{margin:0;font-size:13px}.detail-facts strong{font-size:13px;text-align:right}

  .signal-section,.content-card{padding:17px 14px}.signal-grid{grid-template-columns:1fr 1fr;gap:9px}
  .signal-btn{min-height:68px;padding:10px}.signal-btn strong{font-size:13px}.signal-btn em{font-size:12px}.signal-message{font-size:13px}
  .article-content{font-size:15px}

  /* 移动端赛事卡片改为上下两层，首页与栏目页统一提升可读性。 */
  .match-card-link{padding:11px 12px}
  .match-row-single{
    grid-template-columns:50px minmax(0,1fr) 24px minmax(0,1fr) auto;
    grid-template-areas:
      "time meta meta meta status"
      "home home versus away away";
    column-gap:8px;row-gap:10px;min-height:0
  }
  .match-meta{grid-area:meta;display:flex;gap:6px;overflow:hidden}
  .match-meta .sport-badge{display:inline-flex;min-height:22px;padding:2px 7px;font-size:11px;border-radius:6px}
  .match-meta .league{font-size:12.5px;color:#667085}
  .time-block{grid-area:time;justify-content:flex-start;align-self:center}
  .time-block strong{font-size:16px}
  .team-home{grid-area:home}
  .versus{grid-area:versus;align-self:center}
  .team-away{grid-area:away}
  .status-block{grid-area:status;align-self:center}
  .team{gap:7px}
  .team-name{font-size:15px}
  .team-logo{width:31px;height:31px;flex-basis:31px}
  .team-logo img{width:24px;height:24px}
  .match-status{min-height:26px;padding:3px 7px;font-size:11.5px}
  .match-card+.match-card{border-top-color:#e8ebf0}
}

@media(max-width:480px){
  .brand-mark{display:none}.brand-copy strong{font-size:16px}
  .main-nav a{padding:8px 7px;font-size:13px}
  .hero h1,.category-title-row h1{font-size:27px}
  .match-card-link{padding:10px}
  .match-row-single{
    grid-template-columns:45px minmax(0,1fr) 20px minmax(0,1fr) auto;
    column-gap:6px;row-gap:9px
  }
  .match-meta .sport-badge{padding:2px 6px;font-size:10.5px}
  .match-meta .league{font-size:12px}
  .time-block strong{font-size:15px}
  .team{gap:6px}
  .team-name{font-size:14.5px}
  .team-logo{width:29px;height:29px;flex-basis:29px}
  .team-logo img{width:23px;height:23px}
  .match-status{padding:3px 6px;font-size:11px}

  .signal-grid{grid-template-columns:1fr}
  .detail-matchup{grid-template-columns:1fr 72px 1fr}.detail-logo{width:60px;height:60px}.detail-logo img{width:46px;height:46px}.detail-team h2{font-size:16px}
}

@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*:before,*:after{transition:none!important;animation:none!important}}
a:focus-visible,button:focus-visible,input:focus-visible{outline:2px solid #667085;outline-offset:2px}.match-card-link:focus-visible{outline-offset:-2px}


/* V8.0.3 interaction compatibility */
.main-nav a:focus-visible,
.filter-btn:focus-visible,
.date-filter:focus-visible,
.empty-state button:focus-visible,
.signal-btn:focus-visible,
.match-card-link:focus-visible,
.faq-list summary:focus-visible{
  outline:2px solid #7c8aa5;outline-offset:2px
}

/* Touch browsers can keep :hover stuck after a tap; only use motion hover on real hover devices. */
@media (hover:none){
  .match-card:hover{background:#fff}
  .match-card.is-live:hover{background:linear-gradient(90deg,rgba(217,45,32,.055),rgba(255,255,255,0) 36%)}
  .signal-btn:hover{transform:none;box-shadow:none}
}
