:root{
  --blue:#2f2f86;
  --bg:#f3f4f8;
  --card:#fff;
  --line:#e6e8f0;
  --text:#0f172a;
  --muted:#64748b;
  --pill:#eef2ff;
  --pillbd:#e5e7ff;
  --shadow:0 10px 24px rgba(17,24,39,.10);
  --shadow2:0 6px 18px rgba(17,24,39,.08);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,-apple-system,"PingFang SC","Microsoft YaHei",Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.wrap{width:min(1180px,92vw);margin:0 auto}

/* 顶部导航 */
.topnav{background:var(--blue);color:#fff}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding:12px 0}
.logo{display:flex;align-items:center;gap:10px;font-weight:900}
.logo-ico{width:14px;height:14px;border-radius:50%;background:#ffd166;display:inline-block}
.menu{display:flex;gap:22px;font-size:14px}
.menu a{opacity:.9}
.menu a.on{opacity:1;font-weight:900;border-bottom:2px solid #fff;padding-bottom:6px}

/* 面包屑 */
.crumb{
  margin:12px 0 10px;
  font-size:12px;
  color:var(--muted);
}
.crumb a{color:var(--muted)}
.crumb a:hover{color:var(--blue)}
.crumb .sep{margin:0 6px}
.crumb .cur{color:var(--text);font-weight:800}

/* 布局 */
.page-grid{
  display:grid;
  grid-template-columns: 1fr 360px;
  gap:18px;
  align-items:start;
}

/* 左侧主列 */
.maincol{min-width:0}

/* 对阵大卡 */
.match-card{
  background:linear-gradient(135deg,#0b1020 0%, #0f1a44 35%, #0a2a6c 100%);
  border-radius:12px;
  box-shadow:var(--shadow);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
}

.mc-head{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 12px;
  color:#e5e7eb;
  font-size:12px;
}
.badge{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  padding:4px 10px;
  border-radius:999px;
  font-weight:900;
}
.mc-time{opacity:.95;font-weight:800}

.mc-body{
  display:grid;
  grid-template-columns: 1fr 140px 1fr;
  align-items:center;
  padding:22px 18px;
  gap:10px;
}

.side{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  min-width:0;
}

.team-logo{
  width:74px;height:74px;
  border-radius:999px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 28px rgba(0,0,0,.35);
  overflow:hidden;
}
.team-logo img{width:74px;height:74px;object-fit:cover}

.team-name{
  color:#fff;
  font-weight:900;
  font-size:14px;
  max-width:100%;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.center{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}

.dots{
  color:#ffffff;
  font-weight:900;
  font-size:26px;
  opacity:.9;
}

.live-btn{
  display:inline-block;
  min-width:94px;
  text-align:center;
  padding:10px 14px;
  border-radius:12px;
  background:#fff;
  color:#ef4444;
  font-weight:900;
  box-shadow:0 10px 22px rgba(0,0,0,.25);
}

/* 面板 */
.panel{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:var(--shadow2);
  margin-top:12px;
  overflow:hidden;
}
.ph{
  display:flex;
  align-items:center;
  gap:8px;
  padding:12px 14px;
  border-bottom:1px solid #edf0f6;
  font-size:13px;
}
.ph-ico{width:18px;text-align:center}
.pb{padding:12px 14px}

/* 线路 pills */
.lines{display:flex;flex-wrap:wrap;gap:10px}
.pill{
  display:inline-block;
  padding:7px 12px;
  border-radius:10px;
  background:var(--pill);
  border:1px solid var(--pillbd);
  color:var(--blue);
  font-weight:900;
  font-size:12px;
}
.pill.on{background:var(--blue);border-color:var(--blue);color:#fff}

/* 详情 */
.detail .kv{display:flex;gap:10px;align-items:center;margin-bottom:10px}
.detail .k{color:var(--muted);font-weight:900}
.detail .v{font-weight:900}
.desc p{margin:8px 0;font-size:13px;line-height:1.75}
.desc .muted{color:var(--muted)}
.article{margin-top:10px;font-size:13px;line-height:1.8;color:#111827}
.article .more{color:var(--muted)}

/* 标签 */
.tags{margin-top:12px;border-top:1px dashed #eef2f7;padding-top:12px}
.t-bd{display:flex;gap:10px;flex-wrap:wrap;margin-top:8px}
.tag{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  background:#f1f5f9;
  border:1px solid #e5e7eb;
  font-size:12px;
  font-weight:900;
  color:#334155;
}

/* 右侧栏 */
.sidecol{position:sticky;top:12px}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:var(--shadow2);
  overflow:hidden;
  margin-bottom:12px;
}
.card-h{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-bottom:1px solid #edf0f6;
  font-weight:900;
}
.hot-ico, .rec-ico{
  width:18px;height:18px;border-radius:50%;
  background:#ff3b30;
  display:inline-block;
  position:relative;
}
.hot-ico::after, .rec-ico::after{
  content:"";
  position:absolute;left:5px;top:5px;
  width:8px;height:8px;border-radius:50%;
  background:#fff;opacity:.25;
}
.card-b{padding:10px 12px}

/* 热门赛事列表 */
.hot-row{
  display:grid;
  grid-template-columns: 48px 1fr 56px;
  align-items:center;
  gap:10px;
  padding:10px 0;
  border-top:1px dashed #eef2f7;
}
.hot-row:first-child{border-top:none}
.hot-row .lg{font-size:12px;color:var(--muted);font-weight:900}
.hot-row .dt{font-size:12px;color:var(--muted);text-align:right;font-weight:800}
.hot-row .vs{
  display:flex;align-items:center;justify-content:center;gap:8px;
}
.hot-row img{
  width:18px;height:18px;border-radius:50%;
  object-fit:cover;background:#fff;border:1px solid #eef2f7;
}
.hot-row em{font-style:normal;color:var(--muted);font-weight:900}

/* 录像列表 */
.rec-list{margin:0;padding-left:0;list-style:none}
.rec-list li{
  display:flex;gap:8px;align-items:flex-start;
  padding:8px 0;border-top:1px dashed #eef2f7;
}
.rec-list li:first-child{border-top:none}
.rec-list .arrow{color:#22c55e;font-weight:900}
.rec-list a{
  font-size:12px;line-height:1.55;
  color:#0f172a;font-weight:800;
}
.rec-list a:hover{color:var(--blue)}

/* 回到顶部 */
.to-top{
  position:fixed;
  right:18px;
  bottom:20px;
  width:38px;
  height:38px;
  border-radius:999px;
  background:#9ca3af;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  box-shadow:0 10px 22px rgba(0,0,0,.18);
  opacity:.85;
}
.to-top:hover{opacity:1}

/* 页脚 */
.footer{margin-top:18px;background:var(--blue);color:#c7d2fe}
.footer .wrap{padding:16px 0}
.f-links{display:flex;gap:18px;flex-wrap:wrap}
.f-links a{color:#fff;opacity:.9;font-size:13px;font-weight:700}
.f-meta{margin-top:10px;font-size:12px;line-height:1.7}
.f-meta p{margin:6px 0}

/* 响应式 */
@media (max-width: 980px){
  .page-grid{grid-template-columns:1fr}
  .sidecol{position:static}
}
@media (max-width: 520px){
  .menu{gap:12px}
  .mc-body{grid-template-columns:1fr;gap:18px}
}
