/* ============================================================
   体育直播网 · 深色分层玻璃主题
   断点：1200 / 992 / 768 / 576
   ============================================================ */
:root {
  color-scheme: dark; /* 原生表单控件/滚动条随深色渲染 */
  --bg: #06080d;
  --bg-2: #0b111c;
  --card: #111a28;
  --glass: rgba(18, 26, 40, .66);
  --glass-2: rgba(26, 36, 54, .55);
  --stroke: rgba(255, 255, 255, .08);
  --stroke-2: rgba(255, 255, 255, .16);
  --primary: #19c2d8;
  --primary-2: #5b8cff;
  --primary-dark: #0e8ca1;
  --primary-soft: rgba(25, 194, 216, .14);
  --text: #e9eff6;
  --muted: #8a97a8;
  --line: rgba(255, 255, 255, .07);
  --hot: #ff4d5f;
  --warn: #faa616;
  --radius: 16px;
  --radius-sm: 11px;
  --shadow: 0 12px 34px rgba(0, 0, 0, .5), 0 3px 10px rgba(0, 0, 0, .4);
  --glow: 0 10px 30px rgba(25, 194, 216, .22);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(1100px 560px at 85% -8%, rgba(25, 194, 216, .16), transparent 60%),
    radial-gradient(880px 520px at -5% 5%, rgba(91, 140, 255, .14), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg-2) 55%, var(--bg));
  background-attachment: fixed;
  font: 14px/1.7 "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { border: 0; vertical-align: middle; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; font-weight: 700; }
time { color: var(--muted); font-variant-numeric: tabular-nums; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 18px; }
.narrow { max-width: 920px; }
.main { min-height: 60vh; padding: 22px 0 48px; }

/* ---------- 页头（玻璃吸顶） ---------- */
.hd {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 12, 20, .72);
  -webkit-backdrop-filter: blur(16px) saturate(140%); backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--stroke);
}
.hd::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2) 45%, transparent);
}
.hd__in { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 70px; }
.brand { justify-self: center; display: block; }
.brand__logo { display: inline-block; vertical-align: middle; margin-right: 10px; width: 36px; height: 36px; object-fit: contain; }
.brand__name {
  display: inline-block; vertical-align: middle;
  font-size: 21px; font-weight: 800; letter-spacing: 1px;
  background: linear-gradient(90deg, #5fe0f0, var(--primary), var(--primary-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav { display: flex; gap: 6px; align-items: center; }
.nav--left { justify-self: start; }
.nav--right { justify-self: end; }
.nav__item {
  padding: 8px 16px; border-radius: 999px; color: var(--text); font-weight: 500; transition: .2s;
}
.nav__item:hover { background: var(--primary-soft); color: var(--primary); }
.nav__item.is-on { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; box-shadow: var(--glow); }

/* ---------- 双栏骨架（内容/详情页沿用） ---------- */
.layout-2col { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 22px; align-items: start; }
.main-col { min-width: 0; }
.side-col { display: flex; flex-direction: column; gap: 16px; min-width: 0; }

/* ---------- 控制台（日期时间轴 + 分段筛选） ---------- */
.bar-sticky { position: sticky; top: 70px; z-index: 40; margin: 0 0 20px; }
.console {
  display: flex; flex-direction: column; gap: 12px;
  padding: 12px 18px 14px; border-radius: var(--radius);
  background: var(--glass); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--stroke); box-shadow: var(--shadow);
}
.rail { position: relative; display: flex; justify-content: space-between; padding: 0 6px; }
.rail__line {
  position: absolute; left: 26px; right: 26px; top: 6px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--stroke-2) 12%, var(--stroke-2) 88%, transparent);
}
.rail__node { position: relative; display: flex; flex-direction: column; align-items: center; gap: 3px; flex: 1 1 0; }
.rail__dot {
  width: 12px; height: 12px; border-radius: 50%; background: var(--bg-2);
  border: 2px solid var(--stroke-2); transition: .22s; position: relative; z-index: 1;
}
.rail__node:hover .rail__dot { border-color: var(--primary); }
.rail__label { font-size: 14px; font-weight: 700; color: var(--text); transition: .2s; }
.rail__date { font-size: 11px; color: var(--muted); font-variant-numeric: tabular-nums; }
.rail__node.is-on .rail__dot {
  background: var(--primary); border-color: var(--primary); transform: scale(1.18);
  box-shadow: 0 0 0 4px var(--primary-soft), 0 0 14px rgba(25, 194, 216, .6);
}
.rail__node.is-on .rail__label { color: var(--primary); }
.rail__node.is-on .rail__date { color: var(--text); }

.segs { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; justify-content: space-between; }
.seg { display: inline-flex; padding: 3px; border-radius: 999px; background: var(--glass-2); border: 1px solid var(--stroke); }
.seg__item { padding: 4px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--muted); transition: .2s; white-space: nowrap; }
.seg__item:hover { color: var(--text); }
.seg--sport .seg__item.is-on { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; box-shadow: var(--glow); }
.seg--state { background: transparent; }
.seg--state .seg__item { border: 1px solid transparent; padding: 3px 15px; }
.seg--state .seg__item.is-on { color: var(--primary); border-color: var(--primary); background: var(--primary-soft); }

/* ---------- 焦点横幅 ---------- */
.feat { margin: 2px 0 22px; }
.feat__hd { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.feat__live { width: 10px; height: 10px; border-radius: 50%; background: var(--muted); }
.feat__live.is-on { background: var(--hot); animation: livePulse 1.4s infinite; }
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 77, 95, .55); }
  70% { box-shadow: 0 0 0 8px rgba(255, 77, 95, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 95, 0); }
}
.feat__scroll {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 2px 10px; scrollbar-width: thin;
}
.fc {
  position: relative; flex: 0 0 288px; scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 14px; padding: 16px 18px;
  border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, var(--glass-2), var(--glass));
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid var(--stroke); box-shadow: var(--shadow); transition: .22s;
}
.fc::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--primary-2)); opacity: .7; }
.fc:hover { transform: translateY(-3px); border-color: var(--stroke-2); box-shadow: var(--shadow), var(--glow); }
.fc--live { border-color: rgba(255, 77, 95, .4); }
.fc__top { display: flex; align-items: center; gap: 8px; }
.fc__hot { width: 16px; height: 16px; }
.fc__top .badge { margin-left: auto; }
.fc__teams { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px; }
.fc__team { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 0; text-align: center; }
.fc__logo { width: 46px; height: 46px; object-fit: contain; background: #fff; border-radius: 50%; padding: 4px; }
.fc__tname { font-weight: 600; font-size: 13px; line-height: 1.35; max-height: 2.7em; overflow: hidden; }
.fc__mid { text-align: center; }
.fc__score { font-size: 24px; font-weight: 800; color: var(--primary); font-variant-numeric: tabular-nums; }
.fc__vs { font-size: 15px; font-weight: 700; color: var(--muted); }
.fc__time { color: var(--muted); font-size: 12px; text-align: center; }

/* ---------- 联赛分组 + 赛程横条 ---------- */
.sched { display: flex; flex-direction: column; gap: 20px; }
.grp__hd { display: flex; align-items: center; gap: 10px; padding: 0 4px 10px; }
.grp__bar { width: 4px; height: 16px; border-radius: 2px; background: linear-gradient(var(--primary), var(--primary-2)); }
.grp__name { font-size: 15px; font-weight: 700; }
.grp__count { font-size: 12px; color: var(--muted); padding: 1px 8px; border-radius: 999px; background: var(--glass-2); border: 1px solid var(--stroke); }
.grp__list { display: flex; flex-direction: column; gap: 10px; }

.mc {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 78px minmax(0, 1fr) 96px minmax(0, 1fr) 132px;
  align-items: center; gap: 12px; padding: 14px 18px;
  border-radius: var(--radius);
  background: var(--glass); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--stroke); box-shadow: var(--shadow); transition: .2s;
  cursor: pointer;
}
.mc::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(var(--primary), var(--primary-2)); opacity: 0; transition: .2s; }
.mc:hover { transform: translateX(2px); border-color: var(--stroke-2); }
.mc:hover::before { opacity: 1; }
.mc--live { border-color: rgba(25, 194, 216, .35); }
.mc--live::before { opacity: 1; }
.mc__time { display: flex; flex-direction: column; align-items: center; line-height: 1.2; }
.mc__time strong { font-size: 17px; font-weight: 800; font-variant-numeric: tabular-nums; }
.mc__time span { font-size: 11px; color: var(--muted); }
.mc__team { display: flex; align-items: center; gap: 10px; min-width: 0; }
.mc__team--home { justify-content: flex-end; }
.mc__team--away { justify-content: flex-start; }
.mc__tname { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 600; }
.mc__team--home .mc__tname { text-align: right; }
.mc__logo { width: 32px; height: 32px; flex: 0 0 auto; object-fit: contain; background: #fff; border-radius: 50%; padding: 2px; }
.mc__mid { display: flex; flex-direction: column; align-items: center; gap: 3px; text-align: center; }
.mc__score { font-size: 22px; font-weight: 800; color: var(--primary); font-variant-numeric: tabular-nums; }
.mc__vs { font-size: 14px; font-weight: 700; color: var(--muted); }
.mc__hot { width: 15px; height: 15px; }
.mc__side { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.mc__go { font-style: normal; font-size: 20px; color: var(--muted); transition: .2s; }
.mc:hover .mc__go { color: var(--primary); transform: translateX(2px); }

/* ---------- 状态徽章 ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 14px; border-radius: 999px; font-size: 12px; font-weight: 600; white-space: nowrap;
  border: 1px solid var(--stroke-2); color: var(--muted); background: var(--glass-2);
}
.badge--upcoming { border-color: rgba(25, 194, 216, .5); color: var(--primary); }
.badge--live { background: linear-gradient(135deg, var(--hot), #e0324a); border-color: transparent; color: #fff; }
.badge--finished { color: var(--muted); }
.badge--postponed { border-color: rgba(250, 166, 22, .6); color: var(--warn); }
.badge--cancelled { color: var(--muted); opacity: .7; }
.badge--sm { padding: 2px 10px; font-size: 11px; }
.badge__dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse 1.2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* ---------- 底部横向资讯带 ---------- */
.band { margin-top: 30px; }
.band__hd { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 800; margin-bottom: 14px; }
.band__mark { width: 4px; height: 16px; border-radius: 2px; background: linear-gradient(var(--primary), var(--primary-2)); }
.band__more { margin-left: auto; font-size: 13px; font-weight: 500; color: var(--muted); }
.band__more:hover { color: var(--primary); }
.band__scroll {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(0, 224px);
  gap: 14px; overflow-x: auto; padding: 4px 2px 12px; scrollbar-width: thin;
}
.bcard {
  display: flex; flex-direction: column; gap: 8px; padding: 10px;
  border-radius: var(--radius);
  background: var(--glass); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--stroke); box-shadow: var(--shadow); transition: .2s;
}
.bcard:hover { transform: translateY(-3px); border-color: var(--stroke-2); }
.bcard__thumb { position: relative; display: block; aspect-ratio: 16 / 9; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-2); }
.bcard__thumb img { width: 100%; height: 100%; object-fit: cover; transition: .3s; }
.bcard:hover .bcard__thumb img { transform: scale(1.06); }
.bcard__play {
  position: absolute; inset: 0; margin: auto; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(25, 194, 216, .9); color: #fff; font-style: normal; font-size: 13px;
  display: flex; align-items: center; justify-content: center; padding-left: 3px;
}
.bcard__title { font-size: 14px; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bcard:hover .bcard__title { color: var(--primary); }
.bcard__date { font-size: 12px; color: var(--muted); margin-top: auto; }

/* ---------- 侧栏面板（内容/详情页） ---------- */
.panel { background: var(--glass); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid var(--stroke); border-radius: var(--radius); overflow: hidden; }
.panel__hd { display: flex; align-items: center; gap: 8px; padding: 13px 16px; font-size: 15px; border-bottom: 1px solid var(--line); }
.panel__hd::before { content: ""; width: 4px; height: 15px; border-radius: 2px; background: linear-gradient(var(--primary), var(--primary-2)); }
.panel__list { padding: 6px 16px 12px; }
.panel__item { display: flex; flex-direction: column; gap: 2px; padding: 9px 0; border-bottom: 1px dashed var(--line); }
.panel__item:last-child { border-bottom: 0; }
.panel__item a { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.panel__item a:hover { color: var(--primary); }
.panel__item time { font-size: 12px; }
.panel__empty { color: var(--muted); padding: 12px 0; }

/* ---------- 空态 / 分页 ---------- */
.empty {
  padding: 60px 20px; text-align: center; color: var(--muted);
  background: var(--glass); border: 1px dashed var(--stroke-2); border-radius: var(--radius);
}
.empty__sub { font-size: 12px; margin-top: 4px; }
.pager { display: flex; justify-content: center; gap: 6px; margin: 26px 0 4px; flex-wrap: wrap; }
.pager__item {
  min-width: 36px; padding: 6px 12px; text-align: center; border-radius: 10px;
  background: var(--glass); border: 1px solid var(--stroke); color: var(--text); transition: .18s;
}
.pager__item:hover { border-color: var(--primary); color: var(--primary); }
.pager__item.is-on { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-color: transparent; color: #fff; }

/* ---------- 通用卡片 / 详情页 ---------- */
.card {
  background: var(--glass); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--stroke); border-radius: var(--radius); box-shadow: var(--shadow);
}
.card__hd { display: flex; align-items: center; gap: 8px; padding: 12px 18px; font-size: 15px; border-bottom: 1px solid var(--line); }
.card__hd::before { content: ""; width: 4px; height: 15px; border-radius: 2px; background: linear-gradient(var(--primary), var(--primary-2)); }
.hero {
  padding: 24px 22px 26px; margin-bottom: 16px;
  background: linear-gradient(160deg, rgba(25, 194, 216, .14), transparent 60%), var(--glass);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(25, 194, 216, .28); border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero__meta { display: flex; align-items: center; gap: 10px; justify-content: center; margin-bottom: 16px; }
.hero__teams { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; }
.hero__team { display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 16px; font-weight: 700; }
.hero__team img { width: 66px; height: 66px; object-fit: contain; background: #fff; border-radius: 50%; padding: 7px; }
.hero__mid { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero__score { font-size: 36px; font-weight: 800; color: var(--primary); }
.hero__vs { font-size: 22px; color: var(--muted); }
.sig-card, .intro-card, .more-card { margin-bottom: 16px; padding-bottom: 14px; }
.sig-row { display: flex; flex-wrap: wrap; gap: 12px; padding: 16px 18px; }
.sig {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 26px; border-radius: 12px; color: #fff; font-weight: 700; box-shadow: var(--shadow); transition: .2s;
}
.sig:hover { filter: brightness(1.08); transform: translateY(-2px); }
.sig--1 { background: linear-gradient(135deg, #19c2d8, #0e8ca1); }
.sig--2 { background: linear-gradient(135deg, #5b8cff, #3f6fe0); }
.sig--3 { background: linear-gradient(135deg, #34c38f, #1ea573); }
.sig--4 { background: linear-gradient(135deg, #ff7d9c, #f0507c); }
.sig__go { font-style: normal; font-size: 12px; opacity: .85; }
.sig-tip, .sig-none { padding: 0 18px 6px; color: var(--muted); font-size: 12px; }
.intro-dl { padding: 14px 18px 0; margin: 0; }
.intro-dl div { display: flex; gap: 10px; padding: 4px 0; }
.intro-dl dt { color: var(--muted); flex: 0 0 72px; }
.intro-dl dd { margin: 0; }
.intro-card__p { padding: 10px 18px 4px; color: var(--muted); }
.mrow-list { padding: 8px 12px 12px; }
.mrow {
  display: grid; grid-template-columns: 88px 92px 1fr auto; align-items: center; gap: 10px;
  padding: 10px 8px; border-radius: 10px; transition: .15s;
}
.mrow:hover { background: var(--primary-soft); }
.mrow__time { font-size: 13px; }
.mrow__teams { display: flex; align-items: center; justify-content: center; gap: 8px; min-width: 0; }
.mrow__team { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mrow__logo { width: 22px; height: 22px; object-fit: contain; }
.mrow__vs { font-style: normal; font-weight: 800; color: var(--primary); padding: 0 4px; }
.tag {
  padding: 2px 10px; border-radius: 7px; font-size: 12px;
  background: var(--primary-soft); color: var(--primary); white-space: nowrap;
}
.tag--sm { padding: 1px 8px; font-size: 12px; }

/* ---------- 资讯列表（左图卡片流） ---------- */
.sec-hd {
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 16px; padding: 12px 18px; font-size: 19px;
  background: var(--glass); border: 1px solid var(--stroke); border-radius: var(--radius);
}
.sec-hd::before { content: ""; width: 4px; height: 18px; border-radius: 2px; background: linear-gradient(var(--primary), var(--primary-2)); }
/* 资讯：头条大卡 + 双列图文网格 */
.news-feature { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); margin-bottom: 18px; overflow: hidden; transition: .2s; }
.news-feature:hover { border-color: var(--stroke-2); }
.news-feature__thumb { display: block; min-height: 220px; overflow: hidden; background: var(--bg-2); }
.news-feature__thumb img { width: 100%; height: 100%; object-fit: cover; transition: .35s; }
.news-feature:hover .news-feature__thumb img { transform: scale(1.05); }
.news-feature__body { display: flex; flex-direction: column; gap: 10px; padding: 20px 22px; min-width: 0; }
.news-feature__tag { align-self: flex-start; padding: 2px 10px; border-radius: 6px; font-size: 12px; font-weight: 700; background: linear-gradient(135deg, var(--hot), #e0324a); color: #fff; }
.news-feature__title { font-size: 21px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-feature:hover .news-feature__title { color: var(--primary); }
.news-feature__sum { color: var(--muted); font-size: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-feature__date { font-size: 12px; margin-top: auto; }
.news-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.ncard { display: flex; flex-direction: column; overflow: hidden; transition: .2s; }
.ncard:hover { border-color: var(--stroke-2); transform: translateY(-3px); }
.ncard__thumb { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-2); }
.ncard__thumb img { width: 100%; height: 100%; object-fit: cover; transition: .35s; }
.ncard:hover .ncard__thumb img { transform: scale(1.06); }
.ncard__body { display: flex; flex-direction: column; gap: 8px; padding: 12px 14px; min-width: 0; }
.ncard__title { font-size: 15px; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ncard:hover .ncard__title { color: var(--primary); }
.ncard__date { font-size: 12px; margin-top: auto; }

/* ---------- 集锦：按日期分组的横向封面卡带 ---------- */
.hl-groups { display: flex; flex-direction: column; gap: 22px; }
.hl-sec__hd { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text); margin-bottom: 12px; }
.hl-sec__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft); }
.hl-sec__count { font-size: 12px; color: var(--muted); font-weight: 500; }
.hl-band { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(0, 210px); gap: 14px; overflow-x: auto; padding: 2px 2px 12px; scroll-snap-type: x proximity; scrollbar-width: thin; }
.hl-card { display: flex; flex-direction: column; gap: 8px; padding: 8px; scroll-snap-align: start; transition: .2s; }
.hl-card:hover { border-color: var(--stroke-2); transform: translateY(-3px); }
.hl-card__cover { position: relative; display: block; aspect-ratio: 16 / 9; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-2); }
.hl-card__cover img { width: 100%; height: 100%; object-fit: cover; transition: .35s; }
.hl-card:hover .hl-card__cover img { transform: scale(1.06); }
.hl-card__play { position: absolute; inset: 0; margin: auto; width: 36px; height: 36px; border-radius: 50%; background: rgba(25, 194, 216, .9); color: #fff; font-style: normal; font-size: 13px; display: flex; align-items: center; justify-content: center; padding-left: 3px; }
.hl-card__title { font-size: 14px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hl-card:hover .hl-card__title { color: var(--primary); }

/* ---------- 录像：双列大封面视频墙 ---------- */
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.video-card { padding: 12px; display: flex; flex-direction: column; gap: 10px; transition: .2s; }
.video-card:hover { border-color: var(--stroke-2); transform: translateY(-3px); box-shadow: var(--shadow), var(--glow); }
.video-card__cover { position: relative; display: block; aspect-ratio: 16 / 9; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-2); }
.video-card__cover img { width: 100%; height: 100%; object-fit: cover; transition: .35s; }
.video-card:hover .video-card__cover img { transform: scale(1.07); }
.video-card__mask { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .5)); opacity: .6; transition: .25s; }
.video-card:hover .video-card__mask { opacity: .85; }
.video-card__play {
  position: absolute; inset: 0; margin: auto; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(25, 194, 216, .92); color: #fff; font-style: normal; font-size: 18px;
  display: flex; align-items: center; justify-content: center; padding-left: 4px; transition: .25s;
}
.video-card:hover .video-card__play { transform: scale(1.1); background: var(--primary); }
.video-card__title { font-size: 16px; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.video-card:hover .video-card__title { color: var(--primary); }
.video-card__date { font-size: 12px; }

/* ---------- 文章详情 ---------- */
.crumb { display: flex; gap: 8px; color: var(--muted); margin-bottom: 12px; font-size: 13px; }
.crumb i { font-style: normal; }
.crumb a:hover { color: var(--primary); }
.art { padding: 22px 24px 26px; }
.art__title { font-size: 23px; line-height: 1.5; }
.art__meta { color: var(--muted); font-size: 13px; margin: 10px 0 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.art__cover img { max-width: 100%; border-radius: var(--radius-sm); }
.art__watch { margin: 0 0 16px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.watch-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 28px; border-radius: 999px; color: #fff; font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); box-shadow: var(--glow); transition: .2s;
}
.watch-btn:hover { filter: brightness(1.08); transform: translateY(-2px); }
.watch-btn i { font-style: normal; font-size: 13px; }
.watch-tip { color: var(--muted); font-size: 12px; }
.art__body p { margin: 0 0 14px; color: #c4ccd6; }
.art__pn { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 16px; border-top: 1px dashed var(--line); color: var(--muted); font-size: 13px; }
.art__pn a:hover { color: var(--primary); }

/* ---------- 页脚 ---------- */
.ft { background: rgba(6, 9, 14, .85); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-top: 1px solid var(--stroke); color: #aab1bb; padding: 30px 0 26px; margin-top: 30px; }
.ft a { color: inherit; }
.ft a:hover { color: var(--primary); }
.ft__text { max-width: 900px; margin: 0 auto; padding: 0 16px 18px; text-align: center; font-size: 13px; border-bottom: 1px solid var(--line); }
.ft__copy { text-align: center; font-size: 13px; color: #7d848e; margin: 18px auto 0; }

/* ---------- 后台 ---------- */
.adm-body { background: var(--bg); }
.adm-hd { background: var(--primary-dark); color: #fff; }
.adm-hd__in { display: flex; align-items: center; justify-content: space-between; height: 52px; }
.adm-hd__title { font-weight: 700; }
.adm-hd__ops a { color: #dff6fa; margin-left: 16px; }
.adm-wrap { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 18px; padding-top: 18px; padding-bottom: 40px; align-items: start; }
.adm-side { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; position: sticky; top: 16px; }
.adm-side__item { display: block; padding: 10px 16px; border-bottom: 1px solid var(--line); }
.adm-side__item:last-child { border-bottom: 0; }
.adm-side__item.is-on { background: var(--primary); color: #fff; }
.adm-main { min-width: 0; }
.adm-h1 { font-size: 20px; margin: 4px 0 14px; }
.adm-sub { color: var(--muted); margin: -8px 0 12px; }
.adm-card { padding: 16px 18px; margin-bottom: 16px; }
.adm-ops { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.adm-ops__tabs, .adm-ops__filter { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
/* 筛选栏下拉框：与 .fld 表单控件保持同一风格 */
.adm-ops__filter select {
  padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px;
  font: inherit; background: var(--bg); color: var(--text); cursor: pointer;
}
.adm-ops__filter select:hover { border-color: var(--primary); }
.adm-ops__filter select:focus { outline: none; border-color: var(--primary); }
.flash {
  padding: 10px 14px; border-radius: 8px; margin-bottom: 14px;
  background: var(--primary-soft); border: 1px solid var(--primary); color: var(--primary);
}
.stat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 16px; }
.stat { padding: 14px; text-align: center; display: flex; flex-direction: column; }
.stat strong { font-size: 26px; color: var(--primary); }
.stat span { color: var(--muted); font-size: 13px; }
.notice { background: rgba(250, 166, 22, .12); border: 1px solid var(--warn); border-radius: 8px; padding: 12px 14px; margin-bottom: 16px; }
.notice__form { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.notice__form input {
  padding: 6px 10px; border: 1px solid var(--line); border-radius: 6px;
  background: var(--bg); color: var(--text); font: inherit;
}
.form .fld { display: block; margin-bottom: 12px; }
.fld > span:first-child { display: block; color: var(--muted); margin-bottom: 4px; }
.fld input[type="text"], .fld input[type="password"], .fld input[type="number"], .fld input[type="date"],
.fld textarea, .fld select {
  width: 100%; padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px;
  font: inherit; background: var(--bg); color: var(--text);
}
.fld input:focus, .fld textarea:focus, .fld select:focus { outline: none; border-color: var(--primary); }
.fld textarea { resize: vertical; }
.fld__row { display: flex; align-items: center; gap: 10px; }
.fld__logo { width: 42px; height: 42px; object-fit: contain; background: var(--bg); border-radius: 6px; }
.fld__logo--cover { width: 96px; height: 60px; object-fit: cover; }
.tbl { width: 100%; border-collapse: collapse; overflow: hidden; }
.tbl th, .tbl td { padding: 9px 12px; border-bottom: 1px solid var(--line); text-align: left; font-size: 13px; }
.tbl th { background: var(--primary-soft); color: var(--primary); }
.tbl tr:last-child td { border-bottom: 0; }
.tbl__title { max-width: 420px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tbl__ops { display: flex; gap: 10px; align-items: center; }
.tbl__ops a { color: var(--primary); }
.tbl__del { display: inline; }
.tbl__del button, .tbl td button {
  border: 0; background: none; color: var(--hot); cursor: pointer; font: inherit; padding: 0;
}
.tbl__empty { text-align: center; color: var(--muted); }
.btn {
  display: inline-block; padding: 8px 20px; border-radius: 8px; border: 1px solid var(--line);
  background: var(--card); color: var(--text); cursor: pointer; font: inherit; transition: .18s;
}
.btn:hover { border-color: var(--primary); color: var(--primary); }
.btn--primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn--primary:hover { filter: brightness(1.06); color: #fff; }
.btn--block { width: 100%; margin-top: 15px; }
/* 详情页按钮管理：可增减的按钮行 */
.fld--check { display: flex; align-items: center; gap: 8px; }
.fld--check input[type="checkbox"] { width: auto; margin: 0; }
.fld--check > span { display: inline; color: var(--text); margin: 0; }
.btn-slots { display: flex; flex-direction: column; gap: 10px; margin: 4px 0 12px; }
.btn-slot { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.btn-slot__name { flex: 0 0 200px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; font: inherit; background: var(--bg); color: var(--text); }
.btn-slot__url { flex: 1 1 280px; min-width: 200px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; font: inherit; background: var(--bg); color: var(--text); }
.btn--del { padding: 8px 14px; color: var(--hot); border-color: var(--line); }
.btn--del:hover { border-color: var(--hot); color: var(--hot); }
.btn-slots__ops { margin: 0 0 14px; }
.login-body { display: flex; align-items: center; justify-content: center; min-height: 100vh; }
.login-box { width: 340px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 26px 26px 30px; box-shadow: var(--shadow); }
.login-box__hd { font-size: 18px; text-align: center; margin-bottom: 18px; color: var(--primary); }
.err-box { text-align: center; padding: 80px 0; }
.err-box__code { font-size: 64px; font-weight: 800; color: var(--primary); margin: 0; }
.err-box__msg { color: var(--muted); margin: 6px 0 20px; }

/* ---------- 响应式 ---------- */
@media (max-width: 1200px) {
  .container { max-width: 1040px; }
}
@media (max-width: 992px) {
  .layout-2col { grid-template-columns: minmax(0, 1fr); }
  .side-col { position: static; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; }
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .mc { grid-template-columns: 64px minmax(0, 1fr) 80px minmax(0, 1fr) 104px; gap: 8px; padding: 12px 14px; }
}
@media (max-width: 768px) {
  /* 页头：logo 独占一行，4 个栏目合并为一行并收紧上下间距 */
  .hd__in { display: flex; flex-wrap: wrap; flex-direction: row; justify-content: center; align-items: center; height: auto; padding: 10px 0; gap: 4px 10px; }
  .brand { order: -1; flex: 0 0 100%; display: flex; align-items: center; justify-content: center; }
  .nav { justify-content: center; flex-wrap: nowrap; }
  .nav__item { padding: 6px 12px; }
  .bar-sticky { position: static; }
  /* 资讯带 / 集锦带：横向滚动改为每行 2 个网格，卡片放大 */
  .band__scroll { grid-auto-flow: row; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow-x: visible; }
  .hl-band { grid-auto-flow: row; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow-x: visible; }
  .side-col { grid-template-columns: minmax(0, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .news-feature { grid-template-columns: 1fr; }
  .news-feature__thumb { min-height: 200px; }
  .mrow { grid-template-columns: 76px 1fr auto; }
  .mrow__time { display: none; }
  .adm-wrap { grid-template-columns: 1fr; }
  .adm-side { position: static; display: flex; overflow-x: auto; }
  .adm-side__item { border-bottom: 0; border-right: 1px solid var(--line); white-space: nowrap; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__team img { width: 50px; height: 50px; }
  .hero__score { font-size: 26px; }
  .fc { flex-basis: 252px; }
}
@media (max-width: 576px) {
  .brand__name { font-size: 18px; }
  .mc {
    grid-template-columns: 1fr auto 1fr; grid-template-areas: "time time side" "home mid away";
    gap: 8px 10px; padding: 12px 14px;
  }
  .mc__time { grid-area: time; flex-direction: row; gap: 6px; align-items: baseline; }
  .mc__side { grid-area: side; }
  .mc__team--home { grid-area: home; }
  .mc__mid { grid-area: mid; }
  .mc__team--away { grid-area: away; }
  .mc__go { display: none; }
  .mc__team { flex-direction: column; gap: 4px; text-align: center; }
  .mc__team--home, .mc__team--away { justify-content: center; }
  .mc__team--home .mc__logo { order: -1; }
  .mc__team--home .mc__tname { text-align: center; }
  .video-grid { grid-template-columns: 1fr; }
  .sig { padding: 9px 18px; }
  .art { padding: 16px; }
  .art__title { font-size: 19px; }
  .tbl__title { max-width: 180px; }
  .band__scroll { grid-auto-columns: minmax(0, 168px); }
  .console { padding: 12px 12px 14px; gap: 12px; }
  .rail__line { left: 16px; right: 16px; }
  .rail__label { font-size: 14px; }
  .segs { gap: 10px; }
  .seg { width: 100%; justify-content: space-between; }
  .seg__item { flex: 1 1 0; text-align: center; padding: 6px 10px; font-size: 12px; }
  .seg--state .seg__item { padding: 5px 8px; }
}
