/* =========================================================
   FCTV33 · World Cup 2026 — 主题样式
   深色数据看板 + 霓虹点缀，还原参考站布局
   ========================================================= */

:root {
  --bg: #12141d;
  --bg-panel: #1d2029;
  --bg-panel-2: #20242f;
  --bg-card: #262a36;
  --text: #f4f6fb;
  --text-dim: #9aa1b2;
  --text-faint: #6b7284;
  --accent: #2ee6a6;         /* 荧光足球绿 · 直播/进行中 */
  --accent-gold: #ffb13d;    /* 金橙 · 奖杯/卫冕/倒计时 */
  --accent-blue: #4e7cff;    /* 蓝紫点缀 */
  --line: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  --font: Inter, "PingFang SC", "Microsoft YaHei", "Segoe UI", Roboto, system-ui, sans-serif;
  --font-num: "DIN Alternate", "Bahnschrift", "Roboto Condensed", Roboto, -apple-system, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background:
    radial-gradient(1200px 600px at 75% -10%, rgba(46, 230, 166, 0.07), transparent 60%),
    radial-gradient(1000px 500px at 10% 0%, rgba(78, 124, 255, 0.08), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.62;
  letter-spacing: 0.1px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 全页横向铺满的底色条 */
.wc2026-page {
  background: transparent;
}

/* ===================== 顶栏 ===================== */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
  padding: 0 24px;
  background: linear-gradient(180deg, #181b26, rgba(18, 20, 29, 0.85));
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.top-logo { display: inline-flex; align-items: center; }
.top-logo__img { height: 40px; width: auto; display: block; }

.top-menu { display: flex; align-items: center; gap: 10px; }
.top-menu-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  transition: 180ms ease;
}
.top-menu-item__icon { color: var(--accent); }
.top-menu-item--link:hover { color: var(--text); border-color: rgba(46, 230, 166, 0.5); }
.top-menu-item--lang .top-menu-item__icon { color: var(--text-dim); }

/* ===================== 横幅 ===================== */
.banner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 18px auto 0;
  padding: 0 20px;
}
.banner__img {
  display: block;
  width: 100%;
  height: auto;          /* 保持原图比例，随宽度自然缩放 */
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* ===================== 主导航 ===================== */
.wc-nav {
  max-width: 1200px;
  margin: 18px auto 24px;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.wc-nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid transparent;
  transition: 180ms ease;
}
.wc-nav__item:hover { background: var(--bg-card); transform: translateY(-2px); }
.wc-nav__item.is-active {
  background: linear-gradient(135deg, rgba(46, 230, 166, 0.14), rgba(78, 124, 255, 0.12));
  border-color: rgba(46, 230, 166, 0.35);
}
.wc-nav__icon {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  background: rgba(46, 230, 166, 0.12);
  border: 1px solid rgba(46, 230, 166, 0.4);
  border-radius: 12px;
  transition: 160ms ease;
}
.wc-nav__icon svg { width: 22px; height: 22px; }
.wc-nav__item:hover .wc-nav__icon { background: rgba(46, 230, 166, 0.22); transform: translateY(-1px); }
.wc-nav__item.is-active .wc-nav__icon {
  color: #0b2018;
  background: linear-gradient(135deg, var(--accent), #4e7cff);
  border-color: transparent;
}
.wc-nav__text { display: flex; flex-direction: column; line-height: 1.25; }
.wc-nav__title { font-size: 15px; font-weight: 700; color: var(--text); }
.wc-nav__desc { font-size: 11px; color: var(--text-faint); }

/* ===================== 双栏主体 ===================== */
.wc-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}
@media (min-width: 760px) {
  .wc-main { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .wc-main { grid-template-columns: 2fr 1fr; }
}
@media (max-width: 999px) {
  .wc-nav { grid-template-columns: repeat(3, 1fr); }
}

/* 面板 */
.panel {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 22px;
}
.panel-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.panel-title::before {
  content: "";
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-blue));
}

/* tabs */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.tabs__item {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  transition: 180ms ease;
}
.tabs__item:hover { color: var(--text); background: var(--bg-card); }
.tabs__item.is-active {
  color: #06121b;
  font-weight: 600;
  background: linear-gradient(100deg, var(--accent), #7ef0c8);
  border-color: rgba(46, 230, 166, 0.5);
}
.mini-tabs .tabs__item { padding: 5px 11px; font-family: var(--font-num); font-weight: 700; }
.mini-tabs .tabs__item.is-active { background: var(--accent); color: #06121b; }

/* ===================== 比赛卡 ===================== */
.match-list { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 520px) { .match-list { grid-template-columns: 1fr 1fr; } }
.match {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
  transition: 180ms ease;
}
.match:hover { border-color: rgba(46, 230, 166, 0.4); transform: translateY(-2px); }
.match__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 8px;
}
.match__stage {
  font-size: 11px;
  color: var(--accent);
  border: 1px solid rgba(46, 230, 166, 0.5);
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}
.match__stage--gold { color: var(--accent-gold); border-color: rgba(255, 177, 61, 0.5); }
.match__date { font-size: 12px; color: var(--text-faint); text-align: right; }

.match__body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}
.team { display: flex; flex-direction: column; align-items: center; gap: 7px; min-width: 0; }
.team__crest {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-num);
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
  background: radial-gradient(circle at 30% 25%, color-mix(in srgb, var(--c1) 80%, #fff 20%), var(--c1) 55%, var(--c2) 130%);
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}
.team__name { font-size: 14px; font-weight: 600; white-space: nowrap; }
.match__time {
  font-family: var(--font-num);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  padding: 8px 6px;
  white-space: nowrap;
}
.match__vs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  background: #10131b;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 8px;
  letter-spacing: 1px;
  z-index: 2;
}

/* ===================== 赛事信息 ===================== */
.info__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.info__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.info__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(46, 230, 166, 0.14);
  flex-shrink: 0;
}
.info__dot--gold { background: var(--accent-gold); box-shadow: 0 0 0 4px rgba(255, 177, 61, 0.16); }
.info__label { font-size: 12px; color: var(--text-faint); }
.info__value { font-size: 15px; font-weight: 700; color: var(--text); }

/* ===================== 表格 ===================== */
.table { width: 100%; border-collapse: collapse; margin-bottom: 12px; }
.table th, .table td {
  padding: 11px 10px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.table thead th {
  font-size: 12px;
  color: var(--text-faint);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.table tbody tr { transition: background 160ms ease; }
.table tbody tr:hover { background: rgba(255, 255, 255, 0.03); }
.table tbody tr:last-child td { border-bottom: none; }
.col-rank { width: 34px; color: var(--text-faint); font-family: var(--font-num); font-size: 13px; }
.col-team { font-weight: 600; font-size: 14px; padding-left: 4px; text-align: left; letter-spacing: 0.2px; }
.col-num { text-align: right; font-family: var(--font-num); color: var(--text-dim); width: 54px; }
.col-pts { color: var(--accent); font-weight: 800; }
.col-plus { color: var(--accent); }

.flag {
  display: inline-grid; place-items: center;
  width: 26px; height: 18px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
  background: color-mix(in srgb, var(--c) 85%, #000);
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-right: 7px;
  vertical-align: middle;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.player { display: flex; align-items: center; gap: 8px; }
.player__avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-num);
  font-size: 10px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-panel-2));
  border: 1px solid var(--line);
  color: var(--text);
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.player__meta { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.player__meta b { font-size: 13.5px; font-weight: 600; letter-spacing: 0.1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player__meta sub { font-size: 11px; color: #767e90; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player__meta small {
  display: flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--text-faint);
}
.player__meta small img { width: 18px; height: 13px; border-radius: 3px; object-fit: cover; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35); }

.standings-header { display: flex; align-items: center; justify-content: space-between; }
.standings-header .panel-title { margin-bottom: 0; }
.standings-header .mini-tabs { margin-bottom: 0; }

.note { font-size: 12px; color: var(--accent); margin: 6px 0 12px; }

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--bg-panel-2);
  transition: 180ms ease;
  width: 100%;
}
.btn:hover { border-color: rgba(46, 230, 166, 0.5); color: var(--accent); transform: translateY(-1px); }
.btn--ghost { background: rgba(255, 255, 255, 0.03); }

/* ===================== 倒计时 ===================== */
.countdown { text-align: center; }
.countdown__event {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 26px;
  font-weight: 800;
  font-family: var(--font-num);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.countdown__trophy { color: var(--accent-gold); }
.countdown__date { font-size: 13px; color: var(--text-dim); margin-bottom: 14px; }
.countdown__badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #06121b;
  background: linear-gradient(100deg, var(--accent), #7ef0c8);
  margin-bottom: 18px;
}
.countdown__host-label { font-size: 12px; color: var(--text-faint); margin-bottom: 12px; }
.countdown__hosts { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.countdown__label {
  margin: 12px 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.countdown__list { display: flex; flex-direction: column; gap: 8px; }
.cgame {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
}
.cgame b { font-weight: 600; white-space: nowrap; }
.cgame .cs { color: var(--accent); font-weight: 700; margin: 0 1px; }
.cgame i {
  font-style: normal;
  margin-left: auto;
  font-size: 11px;
  color: var(--text-faint);
  font-family: "DIN Alternate", inherit;
}
.cgame .flagimg {
  width: 20px; height: 14px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .35);
  flex-shrink: 0;
}
.host { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.host__flag {
  width: 56px; height: 40px;
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.host__flag--us { background: linear-gradient(160deg, #3c3b6e, #b22234); }
.host__flag--ca { background: linear-gradient(90deg, #ff0000, #fff 50%, #ff0000); color: #b22234; text-shadow: none; }
.host__flag--mx { background: linear-gradient(90deg, #006847 33%, #fff 33% 66%, #ce1126 66%); color: #1d2029; text-shadow: none; }
.host__name { font-size: 14px; font-weight: 600; }

/* ===================== 页脚 ===================== */
.footer {
  margin-top: 30px;
  background: linear-gradient(180deg, #161923, #0e1017);
  border-top: 1px solid var(--line);
  padding: 36px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
  margin-bottom: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.footer-brand__name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(100deg, #2ee6a6, #4e7cff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.footer-brand__slogan { font-size: 13px; color: var(--text-dim); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  display: inline-flex; align-items: center; gap: 8px;
  width: max-content;
  font-size: 13px; color: var(--text-dim);
  transition: 160ms ease;
}
.footer-link:hover { color: var(--accent); }
.footer-link .ico { font-size: 14px; opacity: .92; }
.footer-links-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px;
  padding: 16px 0 6px;
}
.footer-links-row .footer-link { font-size: 12.5px; }
.footer-badge {
  text-align: center;
  font-size: 30px; font-weight: 800; letter-spacing: 1px;
  background: linear-gradient(100deg, #2ee6a6, #4e7cff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 8px 0;
}
.footer-partners {
  text-align: center;
  font-size: 11px;
  letter-spacing: .02em;
  color: var(--text-faint);
  opacity: .85;
  padding-bottom: 14px;
}
.footer-copy {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  text-align: center;
  font-size: 12px;
  color: var(--text-faint);
}

/* ===================== 响应式 ===================== */
/* 平板：两栏保持并排，导航/页脚降为 2 列 */
@media (max-width: 999px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 手机：主体两栏纵向堆叠为单列，导航两列 */
@media (max-width: 760px) {
  .top-bar { height: 56px; padding: 0 14px; }
  .top-logo__img { height: 32px; }
  .top-menu { gap: 6px; }
  .top-menu-item { padding: 7px 11px; font-size: 13px; }

  .container { padding: 0 14px; }
  .banner { padding: 0 14px; margin-top: 12px; }
  .wc-nav { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 8px; margin: 12px auto 18px; }
  .wc-nav__item { flex-direction: column; gap: 6px; padding: 10px 6px; }
  .wc-nav__icon { width: 36px; height: 36px; border-radius: 10px; }
  .wc-nav__icon svg { width: 19px; height: 19px; }
  .wc-nav__desc { font-size: 10px; }
  .wc-nav__title { font-size: 14px; }

  .panel { padding: 16px; margin-bottom: 16px; }
  .panel-title { font-size: 16px; }

  .match__body { grid-template-columns: 1fr auto 1fr; }
  .team__crest { width: 40px; height: 40px; font-size: 13px; }
  .match__time { font-size: 17px; }

  .table th, .table td { padding: 9px 8px; }
  .col-num { width: 44px; }
}

/* 窄屏手机：导航两列，弱化次要元素 */
@media (max-width: 560px) {
  .wc-nav { grid-template-columns: repeat(2, 1fr); }
  .wc-nav__desc { display: none; }
  .top-menu-item--lang .top-menu-item__txt { display: none; }
  .info__grid { grid-template-columns: 1fr; }
  .match-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   推广弹窗 (promo modal) — 深色主题 Design Tokens 见 DESIGN.md
   ========================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s ease, visibility .3s ease;
}
.modal.is-open { visibility: visible; opacity: 1; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 11, 20, .74);
  backdrop-filter: blur(2px);
}
.modal__box {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(160deg, #1d2029, #171a22);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 30px 26px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
  transform: translateY(10px);
  transition: transform .3s ease;
}
.modal.is-open .modal__box { transform: none; }

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #9aa1b2;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  opacity: .55;
  transition: opacity .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.modal__close:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.modal__close:disabled { cursor: not-allowed; }
.modal__close.is-ready {
  opacity: 1;
  border-color: rgba(46, 230, 166, .55);
  color: #fff;
}

.modal__ttl {
  position: absolute;
  top: 23px;
  right: 92px;
  font-size: 12px;
  font-weight: 700;
  color: #2ee6a6;
  letter-spacing: .5px;
}

.modal__badge {
  display: inline-block;
  background: linear-gradient(90deg, #2ee6a6, #ffb13d);
  color: #0a0d14;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 20px;
}
.modal__title {
  font-size: 24px;
  font-weight: 800;
  color: #f4f6fb;
  margin: 14px 0 6px;
}
.modal__sub { color: #9aa1b2; font-size: 14px; margin: 0 0 16px; }
.modal__points {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.modal__points li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: #e6eaf4;
}
.modal__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, #2ee6a6, #4e7cff);
}
.modal__cta {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(90deg, #2ee6a6, #22c98b);
  color: #07110c;
  font-weight: 800;
  font-size: 15px;
  font-family: inherit;
  padding: 13px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  transition: filter .18s ease, transform .18s ease, opacity .18s ease;
}
.modal__cta:hover:not(:disabled) { filter: brightness(1.08); transform: translateY(-1px); }
.modal__cta:disabled { cursor: not-allowed; opacity: .55; filter: saturate(.5); }
.modal__cta.is-locked { animation: ctaPulse 1.6s ease-in-out infinite; }
@keyframes ctaPulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(46,230,166,.0);} 50%{ box-shadow: 0 0 0 6px rgba(46,230,166,.18);} }
.modal__hint { text-align: center; font-size: 12px; color: #6c7487; margin-top: 12px; }

@media (max-width: 560px) {
  .modal { padding: 14px; }
  .modal__box { padding: 24px 18px 20px; }
  .modal__title { font-size: 20px; }
}

/* ===================== 真实图片（队徽 / 国旗 / 头像）===================== */
.team__crest,
.flag,
.player__avatar,
.host__flag {
  overflow: hidden;
}
.team__crest img,
.flag img,
.player__avatar img,
.host__flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team__crest img,
.player__avatar img {
  border-radius: 50%;
}
.host__flag img {
  border-radius: 6px;
}
/* 无真实队徽时的兜底：保持原文字占位效果 */
.team__crest:empty,
.player__avatar:empty {
  color: #fff;
  font-family: var(--font-num);
  font-weight: 800;
}