:root {
  --bg: #0f172a;
  --bg-soft: #111827;
  --card: #1f2937;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --brand: #22c55e;
  --brand-2: #38bdf8;
  --line: #334155;
  --warn: #f59e0b;
  --heat-1: #ef4444;
  --heat-2: #f97316;
  --heat-3: #facc15;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: linear-gradient(180deg, #0b1225 0%, #0f172a 100%);
  color: var(--text);
  line-height: 1.65;
}

a { color: var(--brand-2); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1120px, 92vw); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(148, 163, 184, .15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-wrap img { width: 34px; height: 34px; border-radius: 8px; object-fit: cover; }
.logo-title { font-weight: 800; letter-spacing: .4px; color: #f8fafc; }
.logo-sub { font-size: 12px; color: var(--muted); margin-top: -3px; }

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.nav a {
  padding: 8px 11px;
  border-radius: 10px;
  color: #cbd5e1;
  font-size: 14px;
}
.nav a.active, .nav a:hover {
  background: rgba(56, 189, 248, .12);
  color: #e0f2fe;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(148,163,184,.25);
  background: rgba(2,6,23,.5);
  color: #e2e8f0;
  font-size: 20px;
  line-height: 1;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.section-head .section-title,
.section-head .section-desc {
  margin-bottom: 0;
}

.hero {
  margin-top: 22px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 18px;
  overflow: hidden;
  background: #0b1220;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 0;
}
.hero-content { padding: 36px 30px; }
.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.15;
}
.hero p { color: #cbd5e1; max-width: 62ch; }
.hero-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 16px 0 22px;
  color: #93c5fd;
  font-size: 14px;
}
.hero-image { min-height: 100%; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: #f8fafc;
  background: #172036;
  font-weight: 600;
}
.btn.primary {
  background: linear-gradient(90deg, #16a34a, #22c55e);
  border: none;
  color: #06210f;
}
.btn.warn {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  border: none;
  color: #1f1300;
}

section { margin: 32px 0; }
.section-title {
  margin: 0 0 4px;
  font-size: 26px;
}
.section-desc { color: var(--muted); margin: 0 0 18px; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.card {
  background: linear-gradient(180deg, rgba(31,41,55,.9), rgba(17,24,39,.94));
  border: 1px solid rgba(148,163,184,.16);
  border-radius: 14px;
  padding: 16px;
}
.card h3 { margin: 2px 0 8px; font-size: 20px; }
.card p { margin: 0; color: #cbd5e1; }
.card .meta { margin-top: 12px; font-size: 13px; color: #93c5fd; }

.news-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  overflow: hidden;
}
.news-card > div {
  min-width: 0;
  flex: 1;
}
.news-card .thumb {
  display: block;
  width: 110px;
  height: 78px;
  flex: 0 0 110px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,.2);
  background: rgba(2,6,23,.42);
}
.news-card .thumb img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.news-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.35;
  word-break: break-word;
}
.news-card h3 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #cbd5e1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card .meta {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.news-updated {
  color: #93c5fd;
  font-size: 12px;
  margin-top: 8px;
}
.news-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.22);
  color: #86efac;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
}
.news-hub-head {
  margin-bottom: 18px;
}
.news-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.news-hub-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.news-hub-card .thumb {
  display: block;
  width: 180px;
  height: 120px;
  flex: 0 0 180px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,.18);
}
.news-hub-card .thumb img,
.news-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-detail-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 20px;
}
.news-detail-copy h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4.4vw, 42px);
  line-height: 1.15;
}
.news-lede {
  font-size: 17px;
  line-height: 1.7;
  color: #dbeafe;
  margin: 0 0 12px;
}
.news-detail-image {
  min-height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,.16);
  background: rgba(2,6,23,.5);
}
.news-section-block {
  margin-top: 16px;
  padding-top: 8px;
}
.news-section-block h2 {
  margin-bottom: 10px;
}
.news-section-block ul {
  padding-left: 20px;
}
.news-section-block li {
  margin-bottom: 8px;
  color: #dbe4f0;
}

.single-countdown {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(148,163,184,.22);
  border-radius: 999px;
  background: rgba(15,23,42,.55);
}
.single-countdown .label {
  font-size: 13px;
  color: #cbd5e1;
}
.single-countdown .days {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  color: #86efac;
}
.single-countdown .unit {
  font-size: 14px;
  color: #e2e8f0;
}

.live-player-wrap {
  display: grid;
  gap: 12px;
}
.live-player-box {
  position: relative;
  border: 1px solid rgba(249,115,22,.28);
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(239,68,68,.22), transparent 40%),
    linear-gradient(180deg, #120902 0%, #000 100%);
  box-shadow: 0 18px 40px rgba(239,68,68,.12);
}
#match-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: min(72vh, 760px);
  display: block;
  background: #000;
}
.live-player-box::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.68) 100%);
  pointer-events: none;
}
.live-status {
  position: relative;
  font-size: 12px;
  color: #fde68a;
  background: linear-gradient(90deg, rgba(127,29,29,.72), rgba(154,52,18,.72));
  border-top: 1px solid rgba(251,191,36,.18);
  padding: 8px 10px;
  letter-spacing: .2px;
}
.live-switches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.live-switches .btn {
  padding: 8px 12px;
  font-size: 13px;
  background: linear-gradient(180deg, rgba(69,10,10,.9), rgba(31,10,10,.92));
  border: 1px solid rgba(239,68,68,.24);
}
.live-switches .btn.primary {
  background: linear-gradient(90deg, var(--heat-1), var(--heat-2), var(--heat-3));
  color: #2b1200;
  box-shadow: 0 8px 22px rgba(249,115,22,.24);
}

.kpi {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
}
.kpi .item {
  background: rgba(15, 23, 42, .72);
  border: 1px solid rgba(148,163,184,.2);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}
.kpi .num { font-size: 28px; font-weight: 800; color: #86efac; line-height: 1.1; }
.kpi .label { color: #cbd5e1; margin-top: 5px; font-size: 14px; }

.table-wrap {
  overflow: auto;
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 12px;
  background: rgba(2,6,23,.35);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
th, td {
  border-bottom: 1px solid rgba(148,163,184,.14);
  padding: 11px 12px;
  text-align: left;
  vertical-align: top;
}
th {
  font-size: 14px;
  color: #e2e8f0;
  background: rgba(30,41,59,.65);
}
td { font-size: 14px; color: #cbd5e1; }

.note {
  margin: 16px 0;
  padding: 12px 14px;
  border-left: 4px solid var(--warn);
  background: rgba(245,158,11,.12);
  color: #fde68a;
  border-radius: 8px;
}

.article {
  background: rgba(15,23,42,.55);
  border: 1px solid rgba(148,163,184,.16);
  border-radius: 14px;
  padding: 22px;
}
.article h1 { margin-top: 0; font-size: 34px; }
.article h2 { margin-top: 30px; font-size: 24px; }
.article h3 { margin-top: 24px; font-size: 20px; }
.article p, .article li { color: #d1d5db; }
.article ul { padding-left: 20px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
}
.gallery figure {
  margin: 0;
  border: 1px solid rgba(148,163,184,.2);
  border-radius: 10px;
  overflow: hidden;
  background: #0b1220;
}
.gallery img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.gallery figcaption {
  padding: 8px 10px;
  font-size: 12px;
  color: #cbd5e1;
}

.cta-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.cta-links a {
  display: block;
  background: rgba(2,6,23,.42);
  border: 1px solid rgba(148,163,184,.2);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  font-weight: 600;
}

.site-footer {
  margin-top: 40px;
  padding: 20px 0 34px;
  border-top: 1px solid rgba(148,163,184,.16);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3, .kpi, .cta-links { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery { grid-template-columns: repeat(3, minmax(0,1fr)); }
  #match-video { min-height: 56vh; }
}

@media (max-width: 680px) {
  .nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 4vw;
    width: min(320px, 92vw);
    background: rgba(15, 23, 42, .98);
    border: 1px solid rgba(148,163,184,.2);
    border-radius: 12px;
    padding: 10px;
    z-index: 60;
  }
  .nav.open { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }

  .hero-content { padding: 24px 18px; }
  .grid-3, .grid-2, .kpi, .cta-links { grid-template-columns: 1fr; }
  .single-countdown {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 12px;
  }

  .gallery { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .article { padding: 16px; }
  .article h1 { font-size: 28px; }
  .news-card { gap: 10px; }
  .news-card .thumb {
    width: 88px;
    height: 64px;
    flex: 0 0 88px;
  }
  .news-card h3 { font-size: 15px; }
  .news-card p { font-size: 12px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  #match-video { min-height: 42vh; }
  .news-hub-grid,
  .news-detail-hero { grid-template-columns: 1fr; }
  .news-hub-card {
    flex-direction: column;
  }
  .news-hub-card .thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    flex: none;
  }
}

