/* 焦点体育新模板 — 对齐 muban（红主色 + 浅底 + 深色焦点带） */
:root {
  --fx-bg: #faf8f6;
  --fx-fg: #2a221f;
  --fx-card: #ffffff;
  --fx-muted: #7a6f68;
  --fx-border: #ebe4de;
  --fx-primary: #c0392b;
  --fx-primary-fg: #fff;
  --fx-accent: #d4a017;
  --fx-secondary: #f3eee9;
  --fx-strong: #1c1512;
  --fx-radius: 10px;
  --fx-max: 1152px;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body.fx-body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--fx-bg);
  color: var(--fx-fg);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.fx-page { min-height: 100vh; display: flex; flex-direction: column; }
.fx-main { flex: 1; width: 100%; max-width: var(--fx-max); margin: 0 auto; padding: 20px 16px 40px; }
.fx-main-wide { max-width: 1200px; }

/* Teams directory */
.fx-teams-dir {
  display: grid; grid-template-columns: 168px 1fr; gap: 18px; align-items: start;
  min-height: 60vh;
}
.fx-teams-nav {
  position: sticky; top: 88px;
  border: 1px solid var(--fx-border); border-radius: 14px; background: var(--fx-card);
  overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,.03);
}
.fx-teams-nav-hd {
  padding: 14px 16px; font-size: 16px; font-weight: 800;
  border-bottom: 1px solid var(--fx-border); background: var(--fx-secondary);
}
.fx-teams-nav nav { display: flex; flex-direction: column; padding: 8px; }
.fx-teams-nav-a {
  border-radius: 8px; padding: 10px 12px; font-size: 14px; font-weight: 600; color: var(--fx-muted);
}
.fx-teams-nav-a:hover { background: var(--fx-secondary); color: var(--fx-fg); }
.fx-teams-nav-a.on { background: var(--fx-primary); color: #fff; }
.fx-teams-hd {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end; justify-content: space-between;
  margin-bottom: 16px;
}
.fx-teams-hd h1 { margin: 0; font-size: 22px; }
.fx-teams-hd p { margin: 4px 0 0; font-size: 13px; color: var(--fx-muted); }
.fx-teams-search { margin: 0; max-width: 280px; width: 100%; }
.fx-teams-block {
  border: 1px solid var(--fx-border); border-radius: 14px; background: var(--fx-card);
  overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,.03);
}
.fx-teams-block-hd {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px; background: linear-gradient(90deg, rgba(192,57,43,.08), transparent 60%);
  border-bottom: 1px solid var(--fx-border);
}
.fx-teams-block-hd strong { display: block; font-size: 16px; }
.fx-teams-block-hd span { font-size: 12px; color: var(--fx-muted); }
.fx-teams-block-hd em {
  font-style: normal; font-size: 11px; letter-spacing: .12em; font-weight: 700;
  color: rgba(192,57,43,.35); text-transform: uppercase; white-space: nowrap;
}
.fx-teams-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.fx-teams-item {
  padding: 14px 14px 12px; border-right: 1px solid var(--fx-border); border-bottom: 1px solid var(--fx-border);
}
.fx-teams-item:nth-child(3n) { border-right: 0; }
.fx-teams-item-main { display: flex; align-items: center; gap: 10px; min-width: 0; }
.fx-teams-item .logo {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: #fff; border: 1px solid var(--fx-border);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  font-size: 13px; font-weight: 800; color: var(--fx-primary);
}
.fx-teams-item .logo img { width: 70%; height: 70%; object-fit: contain; }
.fx-teams-item .logo.fal { background: rgba(192,57,43,.08); border-color: transparent; }
.fx-teams-item .txt { min-width: 0; }
.fx-teams-item strong {
  display: block; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fx-teams-item em {
  display: block; font-style: normal; font-size: 11px; color: var(--fx-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fx-teams-item-main:hover strong { color: var(--fx-primary); }
.fx-teams-item-links {
  display: flex; gap: 12px; margin-top: 8px; padding-left: 52px;
}
.fx-teams-item-links a { font-size: 12px; color: var(--fx-muted); font-weight: 500; }
.fx-teams-item-links a:hover { color: var(--fx-primary); }

@media (max-width: 960px) {
  .fx-teams-dir { grid-template-columns: 1fr; }
  .fx-teams-nav { position: static; }
  .fx-teams-nav nav {
    display: flex; flex-direction: row; flex-wrap: nowrap; overflow-x: auto;
    gap: 6px; padding: 10px; -webkit-overflow-scrolling: touch;
  }
  .fx-teams-nav-a { flex: 0 0 auto; white-space: nowrap; }
  .fx-teams-grid { grid-template-columns: 1fr 1fr; }
  .fx-teams-item:nth-child(3n) { border-right: 1px solid var(--fx-border); }
  .fx-teams-item:nth-child(2n) { border-right: 0; }
  .fx-teams-block-hd em { display: none; }
}
@media (max-width: 560px) {
  .fx-teams-grid { grid-template-columns: 1fr; }
  .fx-teams-item { border-right: 0 !important; }
}

/* Header */
.fx-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--fx-border);
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
}
.fx-header-top {
  max-width: var(--fx-max); margin: 0 auto;
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
}
.fx-brand { display: flex; align-items: center; gap: 8px; flex-shrink: 0; font-size: 20px; font-weight: 700; }
.fx-brand img { border-radius: 8px; object-fit: cover; }
.fx-brand strong { color: var(--fx-primary); font-weight: 700; }
.fx-search { margin-left: auto; position: relative; }
.fx-search input {
  width: 220px; border: 1px solid var(--fx-border); border-radius: 999px;
  background: var(--fx-secondary); padding: 8px 14px 8px 14px;
  font-size: 13px; outline: none;
}
.fx-search input:focus { border-color: var(--fx-primary); box-shadow: 0 0 0 2px rgba(192,57,43,.15); }
.fx-menu-btn {
  display: none; border: 0; background: var(--fx-secondary);
  border-radius: 8px; width: 36px; height: 36px; font-size: 18px; cursor: pointer;
}
.fx-nav { border-top: 1px solid var(--fx-border); background: rgba(243,238,233,.45); }
.fx-nav-list {
  max-width: var(--fx-max); margin: 0 auto; padding: 0 12px;
  list-style: none; display: flex; flex-wrap: wrap; gap: 2px;
}
.fx-nav-a {
  display: block; padding: 10px 12px; font-size: 14px; font-weight: 500;
  color: rgba(42,34,31,.78); position: relative;
}
.fx-nav-a:hover { color: var(--fx-fg); }
.fx-nav-a.is-on { color: var(--fx-primary); }
.fx-nav-a.is-on::after {
  content: ""; position: absolute; left: 10px; right: 10px; bottom: 0;
  height: 2px; border-radius: 2px; background: var(--fx-primary);
}

/* Focus matches strip */
.fx-focus {
  position: relative; overflow: hidden;
  background: var(--fx-strong); color: #fff;
}
.fx-focus::before, .fx-focus::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none; filter: blur(48px);
}
.fx-focus::before { left: -80px; top: -20px; width: 220px; height: 220px; background: rgba(192,57,43,.28); }
.fx-focus::after { right: -40px; bottom: -60px; width: 200px; height: 200px; background: rgba(212,160,23,.18); }
.fx-focus-inner { position: relative; max-width: var(--fx-max); margin: 0 auto; padding: 18px 16px 16px; }
.fx-focus-hd { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.fx-focus-hd i { width: 4px; height: 14px; border-radius: 4px; background: var(--fx-primary); }
.fx-focus-hd strong { font-size: 14px; letter-spacing: .04em; }
.fx-focus-hd span { font-size: 11px; color: rgba(255,255,255,.45); }
.fx-focus-scroll {
  display: flex; gap: 12px; overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.fx-focus-scroll::-webkit-scrollbar { display: none; }
.fx-match {
  flex: 0 0 240px; display: flex; flex-direction: column; gap: 10px;
  padding: 14px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.06);
  color: #fff !important;
}
.fx-match:hover { border-color: rgba(192,57,43,.55); background: rgba(255,255,255,.1); }
.fx-match-top { display: flex; justify-content: space-between; align-items: center; }
.fx-match-lg {
  font-size: 11px; padding: 2px 6px; border-radius: 4px;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.85);
}
.fx-badge {
  font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 999px;
}
.fx-badge-live { background: var(--fx-primary); color: #fff; }
.fx-badge-done { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.fx-badge-up { background: rgba(212,160,23,.2); color: var(--fx-accent); }
.fx-team-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.fx-team-l { display: flex; align-items: center; gap: 8px; min-width: 0; }
.fx-av {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; overflow: hidden; position: relative;
}
.fx-av i { font-style: normal; line-height: 1; }
.fx-av img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border-radius: 50%; object-fit: contain; background: rgba(255,255,255,.95); display: block;
}
.fx-team-n { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fx-score { font-size: 18px; font-weight: 700; font-variant-numeric: tabular-nums; }
.fx-score.dim { color: rgba(255,255,255,.45); }

/* Home grid */
.fx-grid {
  display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start;
}
.fx-sec-hd {
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--fx-border); padding-bottom: 10px; margin-bottom: 14px;
}
.fx-sec-hd i { width: 6px; height: 18px; border-radius: 999px; background: var(--fx-primary); }
.fx-sec-hd h2 { margin: 0; font-size: 18px; }
.fx-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.fx-pill {
  border: 0; cursor: pointer; border-radius: 999px; padding: 6px 12px;
  font-size: 13px; font-weight: 500; background: var(--fx-secondary); color: var(--fx-fg);
}
.fx-pill:hover { background: var(--fx-accent); color: #fff; }
.fx-pill.on { background: var(--fx-primary); color: #fff; }
.fx-hero {
  display: block; position: relative; overflow: hidden; border-radius: var(--fx-radius);
  background: var(--fx-card); box-shadow: 0 1px 2px rgba(0,0,0,.04);
  border: 1px solid var(--fx-border); margin-bottom: 14px;
}
.fx-hero-pic { aspect-ratio: 16/9; overflow: hidden; background: #ddd; }
.fx-hero-pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.fx-hero:hover .fx-hero-pic img { transform: scale(1.05); }
.fx-hero-mask {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88), rgba(0,0,0,.2), transparent);
  display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
  padding: 18px; color: #fff;
}
.fx-hero-meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12px; align-items: center; }
.fx-chip { background: var(--fx-primary); border-radius: 999px; padding: 2px 8px; font-weight: 600; }
.fx-chip-ghost { background: rgba(255,255,255,.2); border-radius: 999px; padding: 2px 8px; }
.fx-hero-mask strong { font-size: 20px; line-height: 1.35; font-weight: 700; }
.fx-hero-mask p { margin: 0; font-size: 13px; color: rgba(255,255,255,.85); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fx-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fx-card {
  display: flex; flex-direction: column; overflow: hidden; border-radius: var(--fx-radius);
  background: var(--fx-card); border: 1px solid var(--fx-border); box-shadow: 0 1px 2px rgba(0,0,0,.03);
  color: inherit !important;
}
.fx-card-pic { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #eee; }
.fx-card-pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.fx-card:hover .fx-card-pic img { transform: scale(1.05); }
.fx-card-tag {
  position: absolute; left: 8px; top: 8px; font-size: 11px; font-weight: 600;
  background: rgba(0,0,0,.6); color: #fff; border-radius: 4px; padding: 2px 8px;
}
.fx-card-body { padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.fx-card-body strong { font-size: 14px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fx-card-body em { font-style: normal; font-size: 12px; color: var(--fx-muted); }

/* Sidebar */
.fx-side { display: flex; flex-direction: column; gap: 22px; }
.fx-box {
  background: var(--fx-card); border: 1px solid var(--fx-border);
  border-radius: var(--fx-radius); box-shadow: 0 1px 2px rgba(0,0,0,.03); overflow: hidden;
}
.fx-box-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 0 8px; margin: 0 0 8px; border-bottom: 1px solid var(--fx-border);
}
.fx-box-hd > span { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; }
.fx-box-hd i { width: 5px; height: 14px; border-radius: 999px; background: var(--fx-primary); }
.fx-box-hd a { font-size: 12px; color: var(--fx-muted); }
.fx-hot { list-style: none; margin: 0; padding: 8px; }
.fx-hot li a {
  display: flex; gap: 10px; padding: 8px; border-radius: 8px; align-items: flex-start;
}
.fx-hot li a:hover { background: var(--fx-secondary); }
.fx-hot em {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-style: normal; font-weight: 700; background: var(--fx-secondary); color: var(--fx-muted);
}
.fx-hot li:nth-child(-n+3) em { background: var(--fx-primary); color: #fff; }
.fx-hot span { font-size: 13px; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fx-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.fx-table th { background: #f7f3ef; text-align: left; padding: 8px 10px; font-weight: 500; }
.fx-table td { padding: 8px 10px; border-top: 1px solid var(--fx-border); }
.fx-table tr:hover td { background: var(--fx-secondary); }
.fx-rank {
  display: inline-flex; width: 20px; height: 20px; align-items: center; justify-content: center;
  border-radius: 4px; font-size: 11px; font-weight: 700; color: var(--fx-muted);
}
.fx-rank.top { background: rgba(192,57,43,.1); color: var(--fx-primary); }
.fx-side-match { list-style: none; margin: 0; padding: 4px 6px 10px; }
.fx-side-match li + li { border-top: 1px solid var(--fx-border); }
.fx-side-match li a { display: block; padding: 10px 8px; border-radius: 8px; }
.fx-side-match li a:hover { background: var(--fx-secondary); }
.fx-side-match .meta { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.fx-side-match .t { font-size: 12px; color: var(--fx-primary); font-weight: 700; font-variant-numeric: tabular-nums; }
.fx-side-match .l { font-size: 11px; color: var(--fx-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fx-side-match .v {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 6px; align-items: center;
}
.fx-side-match .tm {
  display: flex; align-items: center; gap: 6px; min-width: 0;
}
.fx-side-match .tm.away { flex-direction: row-reverse; text-align: right; }
.fx-side-match .av {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: rgba(192,57,43,.08); color: var(--fx-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; overflow: hidden; position: relative;
}
.fx-side-match .av i {
  font-style: normal; line-height: 1;
}
.fx-side-match .av img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; background: #fff; display: block;
}
.fx-side-match .tm em {
  font-style: normal; font-size: 13px; font-weight: 500; line-height: 1.25;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fx-side-match b {
  color: var(--fx-primary); font-size: 13px; font-weight: 800;
  font-variant-numeric: tabular-nums; text-align: center; min-width: 2.2em;
}

/* News list */
.fx-news-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.fx-news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fx-ncard {
  display: flex; gap: 12px; padding: 12px; border-radius: var(--fx-radius);
  background: var(--fx-card); border: 1px solid var(--fx-border); color: inherit !important;
}
.fx-ncard:hover { border-color: rgba(192,57,43,.35); }
.fx-ncard-pic { width: 140px; flex-shrink: 0; aspect-ratio: 16/10; border-radius: 8px; overflow: hidden; background: #eee; }
.fx-ncard-pic img { width: 100%; height: 100%; object-fit: cover; }
.fx-ncard-body { min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.fx-ncard-body strong { font-size: 15px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fx-ncard-body em { font-style: normal; font-size: 12px; color: var(--fx-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fx-ncard-meta { margin-top: auto; font-size: 12px; color: var(--fx-muted); display: flex; gap: 8px; }
.fx-pager { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 24px; }
.fx-pager a {
  padding: 8px 14px; border-radius: 8px; background: var(--fx-secondary); font-size: 13px; font-weight: 600;
}
.fx-pager a:hover { background: var(--fx-primary); color: #fff; }
.fx-empty { text-align: center; padding: 48px 16px; color: var(--fx-muted); font-size: 14px; background: var(--fx-card); border-radius: var(--fx-radius); border: 1px solid var(--fx-border); }

/* Footer */
.fx-footer {
  margin-top: 40px; position: relative; overflow: hidden;
  background: var(--fx-strong); color: #fff;
}
.fx-footer::before {
  content: ""; position: absolute; left: -40px; top: -40px; width: 180px; height: 180px;
  border-radius: 50%; background: rgba(192,57,43,.2); filter: blur(40px); pointer-events: none;
}
.fx-footer-inner { position: relative; max-width: var(--fx-max); margin: 0 auto; padding: 36px 16px 24px; }
.fx-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 28px; }
.fx-footer-brand { font-size: 18px; font-weight: 700; }
.fx-footer-brand span { color: var(--fx-primary); }
.fx-footer p { margin: 12px 0 0; font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 320px; }
.fx-footer h3 {
  margin: 0 0 12px; font-size: 13px; display: flex; align-items: center; gap: 8px;
}
.fx-footer h3::before { content: ""; width: 4px; height: 12px; border-radius: 4px; background: var(--fx-primary); }
.fx-footer-nav { display: flex; flex-direction: column; gap: 8px; }
.fx-footer-nav a { font-size: 13px; color: rgba(255,255,255,.55); width: fit-content; }
.fx-footer-nav a:hover { color: var(--fx-primary); }
.fx-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.fx-tags span, .fx-tags a {
  font-size: 12px; padding: 4px 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05); color: rgba(255,255,255,.7);
}
.fx-tags a:hover { color: var(--fx-primary); border-color: rgba(192,57,43,.4); }
.fx-copy {
  margin-top: 28px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px; color: rgba(255,255,255,.35);
  display: flex; flex-wrap: wrap; gap: 8px 10px; align-items: center;
}
.fx-copy-sep { opacity: .45; }
.fx-copy a.fx-beian { color: rgba(255,255,255,.45); }
.fx-copy a.fx-beian:hover { color: #fff; }

/* Page hero band */
.fx-hero-band {
  position: relative; overflow: hidden; background: var(--fx-strong); color: #fff;
}
.fx-hero-band::before {
  content: ""; position: absolute; left: -60px; top: -40px; width: 200px; height: 200px;
  border-radius: 50%; background: rgba(192,57,43,.28); filter: blur(40px); pointer-events: none;
}
.fx-hero-band-inner {
  position: relative; max-width: var(--fx-max); margin: 0 auto;
  padding: 28px 16px; display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-end; justify-content: space-between;
}
.fx-hero-band-title { display: flex; align-items: center; gap: 10px; }
.fx-hero-band-title i { width: 6px; height: 26px; border-radius: 999px; background: var(--fx-primary); }
.fx-hero-band-title h1 { margin: 0; font-size: 24px; }
.fx-hero-band-title span { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); font-weight: 600; }
.fx-hero-band-text p { margin: 8px 0 0; max-width: 520px; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.6); }
.fx-live-pill {
  display: inline-flex; align-items: center; gap: 8px; border-radius: 999px;
  border: 1px solid rgba(192,57,43,.45); background: rgba(192,57,43,.18);
  padding: 8px 14px; font-size: 13px; font-weight: 600; color: #fff;
}
.fx-live-pill i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--fx-primary);
  box-shadow: 0 0 0 0 rgba(192,57,43,.6); animation: fxPulse 1.4s infinite;
}
@keyframes fxPulse {
  0% { box-shadow: 0 0 0 0 rgba(192,57,43,.55); }
  70% { box-shadow: 0 0 0 8px rgba(192,57,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(192,57,43,0); }
}

/* Live schedule */
.fx-live-filter {
  position: sticky; top: 96px; z-index: 20; margin-bottom: 18px;
  border: 1px solid var(--fx-border); background: rgba(255,255,255,.96);
  border-radius: 12px; padding: 14px; box-shadow: 0 1px 3px rgba(0,0,0,.04); backdrop-filter: blur(8px);
}
.fx-live-sports { display: flex; flex-wrap: wrap; gap: 8px; }
.fx-live-status, .fx-live-leagues {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--fx-border);
}
.fx-tag {
  border-radius: 6px; padding: 4px 10px; font-size: 13px; color: var(--fx-muted);
}
.fx-tag:hover { color: var(--fx-fg); }
.fx-tag.on { background: rgba(192,57,43,.1); color: var(--fx-primary); font-weight: 600; }
.fx-live-days { display: flex; flex-direction: column; gap: 28px; }
.fx-live-dayhd { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.fx-live-date {
  background: var(--fx-fg); color: #fff; border-radius: 6px; padding: 4px 10px;
  font-size: 13px; font-weight: 700;
}
.fx-live-week { font-size: 13px; font-weight: 500; color: var(--fx-muted); }
.fx-live-count { font-size: 12px; color: var(--fx-muted); }
.fx-live-line { flex: 1; height: 1px; background: var(--fx-border); }
.fx-live-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.fx-live-card {
  border: 1px solid var(--fx-border); border-radius: 12px; background: var(--fx-card);
  overflow: hidden; transition: box-shadow .2s, border-color .2s;
}
.fx-live-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.06); }
.fx-live-card.is-live { border-color: rgba(192,57,43,.4); box-shadow: 0 0 0 1px rgba(192,57,43,.15); }
.fx-live-card-top {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  padding: 8px 12px; border-bottom: 1px solid var(--fx-border); background: rgba(243,238,233,.45);
}
.fx-live-card-meta { display: flex; align-items: center; gap: 8px; min-width: 0; }
.fx-sport-badge {
  flex-shrink: 0; border-radius: 4px; padding: 2px 6px; font-size: 11px; font-weight: 700;
  background: rgba(192,57,43,.1); color: var(--fx-primary);
}
.fx-sport-basketball { background: rgba(212,160,23,.18); color: #b8860b; }
.fx-sport-other { background: var(--fx-secondary); color: var(--fx-fg); }
.fx-live-league { font-size: 12px; color: var(--fx-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fx-live-time { font-size: 12px; font-weight: 700; font-variant-numeric: tabular-nums; }
.fx-live-card-body { display: flex; align-items: center; gap: 8px; padding: 16px 12px; }
.fx-live-side { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; min-width: 0; }
.fx-live-av {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(192,57,43,.1);
  color: var(--fx-primary); display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; overflow: hidden; position: relative;
}
.fx-live-av2 { background: rgba(212,160,23,.15); color: #b8860b; }
.fx-live-av i { font-style: normal; line-height: 1; }
.fx-live-av img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; background: #fff; display: block;
}
.fx-live-name { font-size: 13px; font-weight: 500; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fx-live-sc { font-size: 18px; font-weight: 800; }
.fx-live-mid { flex-shrink: 0; }
.fx-live-vs { font-size: 16px; font-weight: 900; font-style: italic; color: rgba(122,111,104,.45); }
.fx-live-card-act { padding: 0 12px 14px; }
.fx-btn-primary, .fx-btn-ghost, .fx-btn-outline {
  display: flex; align-items: center; justify-content: center; width: 100%;
  border-radius: 8px; padding: 9px 12px; font-size: 13px; font-weight: 600;
}
.fx-btn-primary { background: var(--fx-primary); color: #fff !important; }
.fx-btn-primary:hover { filter: brightness(1.05); }
.fx-btn-ghost { border: 1px solid var(--fx-border); color: var(--fx-fg) !important; }
.fx-btn-ghost:hover { background: var(--fx-secondary); }
.fx-btn-outline { border: 1px solid rgba(192,57,43,.4); color: var(--fx-primary) !important; }
.fx-btn-outline:hover { background: rgba(192,57,43,.06); }

/* Teams / players */
.fx-searchbar { display: flex; gap: 8px; margin-bottom: 18px; }
.fx-searchbar input {
  flex: 1; border: 1px solid var(--fx-border); border-radius: 999px;
  padding: 10px 14px; background: var(--fx-card); font-size: 14px;
}
.fx-searchbar button {
  border: 0; border-radius: 999px; padding: 0 18px; background: var(--fx-primary); color: #fff; font-weight: 600; cursor: pointer;
}
.fx-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; list-style: none; margin: 0; padding: 0; }
.fx-team-grid a {
  display: flex; align-items: center; gap: 12px; padding: 12px;
  border: 1px solid var(--fx-border); border-radius: 10px; background: var(--fx-card);
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.fx-team-grid a:hover { transform: translateY(-2px); border-color: var(--fx-primary); box-shadow: 0 4px 12px rgba(0,0,0,.06); }
.fx-team-grid img { width: 40px; height: 40px; object-fit: contain; }
.fx-team-grid .fx-team-av {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(192,57,43,.1);
  color: var(--fx-primary); display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0;
}
.fx-team-grid span { font-size: 14px; font-weight: 600; }

/* Portal data table polish inside fx */
.portal-wrap .zb-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.portal-wrap .zb-filter a {
  border-radius: 999px; padding: 6px 12px; background: var(--fx-secondary); font-size: 13px; font-weight: 500;
}
.portal-wrap .zb-filter a.on { background: var(--fx-primary); color: #fff; }
.portal-wrap .zb-day { margin: 0 0 12px; font-size: 18px; }
.portal-table { width: 100%; border-collapse: collapse; background: var(--fx-card); border: 1px solid var(--fx-border); border-radius: 10px; overflow: hidden; }
.portal-table th, .portal-table td { padding: 10px 12px; border-bottom: 1px solid var(--fx-border); font-size: 13px; text-align: left; }
.portal-table th { background: #f7f3ef; font-weight: 600; }
.portal-crest { width: 18px; height: 18px; vertical-align: -4px; margin-right: 6px; }

/* Match detail (inside fx shell) */
.fx-match-wrap .zb-match { max-width: 900px; margin: 0 auto; }
.fx-match-wrap .zb-crumb { font-size: 13px; color: var(--fx-muted); margin-bottom: 12px; }
.fx-match-wrap .zb-board {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center;
  border: 1px solid var(--fx-border); border-radius: 14px; background: var(--fx-card); padding: 24px 16px;
}
.fx-match-wrap .zb-team {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; font-size: 17px; font-weight: 700; min-width: 0;
}
.fx-match-wrap .zb-team b {
  display: block; line-height: 1.3;
  max-width: 100%; overflow: hidden; text-overflow: ellipsis;
}
.fx-match-wrap .zb-crest {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(192,57,43,.08); color: var(--fx-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; overflow: hidden; position: relative;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.fx-match-wrap .zb-crest i { font-style: normal; line-height: 1; }
.fx-match-wrap .zb-crest img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; background: #fff; padding: 8px; box-sizing: border-box;
}
.fx-match-wrap .zb-mid { text-align: center; }
.fx-match-wrap .zb-nums { font-size: 32px; font-weight: 800; letter-spacing: 2px; }
.fx-match-wrap .zb-status { display: inline-block; border-radius: 999px; padding: 2px 10px; font-size: 12px; font-weight: 700; margin-bottom: 6px; }
.fx-match-wrap .zb-status.is-live { background: rgba(192,57,43,.12); color: var(--fx-primary); }
.fx-match-wrap .zb-status.is-over { background: var(--fx-secondary); color: var(--fx-muted); }
.fx-match-wrap .zb-status.is-wait { background: rgba(212,160,23,.15); color: #b8860b; }
.fx-match-wrap .zb-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 12px; }
.fx-match-wrap .zb-tabs a {
  border-radius: 999px; padding: 6px 14px; background: var(--fx-secondary); font-size: 13px; font-weight: 500; cursor: pointer;
}
.fx-match-wrap .zb-tabs a.on { background: var(--fx-primary); color: #fff; }
.fx-match-wrap .zb-box {
  border: 1px solid var(--fx-border); border-radius: 12px; background: var(--fx-card); padding: 16px;
}
.fx-match-wrap .zb-box h2 { margin: 0 0 10px; font-size: 16px; }
.fx-match-wrap .zb-jumpbox { display: flex; flex-direction: column; gap: 8px; }
.fx-match-wrap .zb-jump {
  display: block; text-align: center; border-radius: 8px; padding: 12px;
  background: var(--fx-primary); color: #fff !important; font-weight: 600;
}
.fx-match-wrap .zb-tip { font-size: 13px; color: var(--fx-muted); }
.fx-match-wrap .zb-kv { width: 100%; border-collapse: collapse; }
.fx-match-wrap .zb-kv th, .fx-match-wrap .zb-kv td { padding: 8px 10px; border-bottom: 1px solid var(--fx-border); text-align: left; font-size: 13px; }
.fx-match-wrap .zb-kv th { width: 100px; color: var(--fx-muted); font-weight: 500; }
.fx-match-wrap .zb-rel { list-style: none; margin: 0; padding: 0; }
.fx-match-wrap .zb-rel li { border-bottom: 1px solid var(--fx-border); }
.fx-match-wrap .zb-rel a { display: block; padding: 10px 0; font-size: 13px; }
.fx-match-wrap .zb-rel em { color: var(--fx-muted); font-style: normal; margin-left: 6px; }

.fx-hero-crest { width: 56px; height: 56px; object-fit: contain; background: #fff; border-radius: 50%; padding: 6px; }
.fx-match-list { list-style: none; margin: 0; padding: 0; border: 1px solid var(--fx-border); border-radius: 12px; overflow: hidden; background: var(--fx-card); }
.fx-match-list li + li { border-top: 1px solid var(--fx-border); }
.fx-match-list a { display: block; padding: 12px 14px; }
.fx-match-list a:hover { background: rgba(192,57,43,.04); }
.fx-match-list .meta { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.fx-match-list .t { font-size: 12px; color: var(--fx-muted); font-variant-numeric: tabular-nums; font-weight: 600; }
.fx-match-list .l { font-size: 12px; color: var(--fx-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fx-match-list .v {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 8px; align-items: center;
}
.fx-match-list .tm { display: flex; align-items: center; gap: 8px; min-width: 0; }
.fx-match-list .tm.away { flex-direction: row-reverse; text-align: right; }
.fx-match-list .av {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: rgba(192,57,43,.08); color: var(--fx-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; overflow: hidden; position: relative;
}
.fx-match-list .av i { font-style: normal; line-height: 1; }
.fx-match-list .av img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; background: #fff; display: block;
}
.fx-match-list .tm em {
  font-style: normal; font-size: 14px; font-weight: 600; line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fx-match-list b {
  color: var(--fx-primary); font-size: 14px; font-weight: 800;
  font-variant-numeric: tabular-nums; text-align: center; min-width: 2.4em;
}

.fx-match-wrap .zb-rel-match { list-style: none; margin: 0; padding: 0; }
.fx-match-wrap .zb-rel-match li { border-bottom: 1px solid var(--fx-border); }
.fx-match-wrap .zb-rel-match li:last-child { border-bottom: 0; }
.fx-match-wrap .zb-rel-match a { display: block; padding: 12px 0; }
.fx-match-wrap .zb-rel-match .meta {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  margin-bottom: 8px; font-size: 12px; color: var(--fx-muted);
}
.fx-match-wrap .zb-rel-match .t { font-weight: 600; font-variant-numeric: tabular-nums; }
.fx-match-wrap .zb-rel-match .v {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 8px; align-items: center;
}
.fx-match-wrap .zb-rel-match .tm { display: flex; align-items: center; gap: 8px; min-width: 0; }
.fx-match-wrap .zb-rel-match .tm.away { flex-direction: row-reverse; text-align: right; }
.fx-match-wrap .zb-rel-match .tm em {
  font-style: normal; font-size: 14px; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fx-match-wrap .zb-rel-match b {
  color: var(--fx-primary); font-weight: 800; text-align: center; min-width: 2.4em;
}
.fx-match-wrap .zb-crest-sm,
.fx-hero-vs .zb-crest-hero {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: rgba(192,57,43,.1); color: var(--fx-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; overflow: hidden; position: relative;
}
.fx-match-wrap .zb-crest-sm i,
.fx-hero-vs .zb-crest-hero i { font-style: normal; line-height: 1; }
.fx-match-wrap .zb-crest-sm img,
.fx-hero-vs .zb-crest-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; background: #fff; display: block;
}
.fx-hero-vs {
  display: flex; align-items: center; gap: 10px;
}
.fx-hero-vs .zb-crest-hero {
  width: 40px; height: 40px; font-size: 16px; background: #fff;
}
.fx-hero-vs span { color: rgba(255,255,255,.55); font-weight: 800; font-size: 13px; }
.fx-back { margin-top: 18px; font-size: 13px; }
.fx-back a { color: var(--fx-primary); }

/* Article detail */
.fx-article-wrap { max-width: 860px; }
.fx-crumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  margin-bottom: 14px; font-size: 13px; color: var(--fx-muted);
}
.fx-crumb a:hover { color: var(--fx-primary); }
.fx-article {
  border: 1px solid var(--fx-border); border-radius: 14px; background: var(--fx-card); overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.fx-article-cover { position: relative; aspect-ratio: 16/9; background: #1a1a1a; }
.fx-article-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fx-article-cover-mask {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent 55%);
  pointer-events: none;
}
.fx-article-cat {
  position: absolute; left: 16px; top: 16px;
  border-radius: 999px; padding: 4px 12px; font-size: 12px; font-weight: 700;
  background: var(--fx-primary); color: #fff;
}
.fx-article-body { padding: 22px 24px 28px; }
.fx-article-body h1 {
  margin: 0; font-size: 26px; line-height: 1.35; font-weight: 800; color: var(--fx-fg);
}
.fx-article-meta {
  display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: center;
  margin-top: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--fx-border);
  font-size: 13px; color: var(--fx-muted);
}
.fx-article-src { font-weight: 600; color: var(--fx-fg); }
.fx-article-lead {
  margin: 18px 0 0; padding: 14px 16px;
  border-left: 4px solid var(--fx-primary); border-radius: 0 10px 10px 0;
  background: rgba(192,57,43,.06); font-size: 15px; line-height: 1.7; color: var(--fx-fg);
}
.fx-article-content {
  margin-top: 18px; font-size: 15px; line-height: 1.9; color: rgba(28,25,23,.9);
}
.fx-article-content p { margin: 0 0 1em; }
.fx-article-content img {
  max-width: 100%; height: auto; border-radius: 8px; margin: 12px 0; display: block;
}
.fx-article-content a { color: var(--fx-primary); }
.fx-article-content h2, .fx-article-content h3 {
  margin: 1.2em 0 .5em; font-size: 1.15em; font-weight: 700;
}
.fx-article-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--fx-border);
}
.fx-article-tags span {
  border-radius: 999px; padding: 4px 12px; font-size: 12px; font-weight: 500;
  background: var(--fx-secondary); color: var(--fx-fg);
}
.fx-related { margin-top: 28px; }
.fx-related-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.fx-related-grid a {
  display: flex; gap: 12px; padding: 10px;
  border: 1px solid var(--fx-border); border-radius: 10px; background: var(--fx-card);
  transition: border-color .15s, box-shadow .15s;
}
.fx-related-grid a:hover { border-color: var(--fx-primary); box-shadow: 0 4px 12px rgba(0,0,0,.05); }
.fx-related-grid .pic {
  width: 112px; height: 80px; flex-shrink: 0; border-radius: 8px; overflow: hidden; background: #eee;
}
.fx-related-grid .pic img { width: 100%; height: 100%; object-fit: cover; }
.fx-related-grid .txt { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.fx-related-grid strong {
  font-size: 14px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.fx-related-grid a:hover strong { color: var(--fx-primary); }
.fx-related-grid em { margin-top: auto; font-style: normal; font-size: 12px; color: var(--fx-muted); }

.fx-loadmore {
  margin: 20px 0 8px; text-align: center; min-height: 36px;
}
.fx-loadmore-tip {
  display: inline-block; font-size: 13px; color: var(--fx-muted); padding: 8px 12px;
}
.fx-loadmore-sent { height: 1px; width: 100%; }

/* Team detail (qiumiwu-inspired, site red palette) */
.fx-team-page { padding-top: 16px; }
.fx-team-hero {
  border: 1px solid var(--fx-border); border-radius: 16px; overflow: hidden;
  background: var(--fx-strong); color: #fff; margin-bottom: 0;
}
.fx-team-hero-main {
  display: flex; gap: 18px; align-items: center; padding: 22px 20px 18px;
  background:
    radial-gradient(480px 180px at 10% -20%, rgba(192,57,43,.45), transparent 60%),
    radial-gradient(360px 160px at 90% 0%, rgba(212,160,23,.2), transparent 55%),
    linear-gradient(135deg, #241c18 0%, #1c1512 55%, #2a1814 100%);
}
.fx-team-logo {
  width: 88px; height: 88px; border-radius: 50%; flex-shrink: 0;
  background: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25); overflow: hidden;
  font-size: 28px; font-weight: 800; color: var(--fx-primary);
}
.fx-team-logo img { width: 72%; height: 72%; object-fit: contain; }
.fx-team-title-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.fx-team-title-row h1 { margin: 0; font-size: 26px; line-height: 1.25; }
.fx-team-title-row em { font-style: normal; font-size: 16px; color: rgba(255,255,255,.7); font-weight: 500; }
.fx-team-lg {
  border-radius: 999px; padding: 3px 10px; font-size: 12px; font-weight: 700;
  background: var(--fx-primary); color: #fff;
}
.fx-team-en { margin: 6px 0 0; font-size: 14px; color: rgba(255,255,255,.65); }
.fx-team-rank { margin: 8px 0 0; font-size: 13px; color: rgba(255,255,255,.75); }
.fx-team-rank strong { color: #fff; font-size: 15px; margin: 0 2px; }
.fx-team-meta {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,.04); border-top: 1px solid rgba(255,255,255,.08);
}
.fx-team-meta > div { padding: 14px 12px; text-align: center; }
.fx-team-meta > div + div { border-left: 1px solid rgba(255,255,255,.08); }
.fx-team-meta span { display: block; font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: 4px; }
.fx-team-meta b { font-size: 14px; font-weight: 700; }

.fx-team-tabs {
  display: flex; flex-wrap: wrap; gap: 4px; margin: 14px 0 18px;
  border-bottom: 1px solid var(--fx-border); padding-bottom: 0;
}
.fx-team-tabs button {
  border: 0; background: transparent; cursor: pointer;
  padding: 10px 16px; font-size: 14px; font-weight: 600; color: var(--fx-muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.fx-team-tabs button.on { color: var(--fx-primary); border-bottom-color: var(--fx-primary); }

.fx-team-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 20px; align-items: start;
}
.fx-team-panel { display: none; }
.fx-team-panel.on { display: block; }
.fx-team-main .fx-team-card + .fx-team-card { margin-top: 16px; }
.fx-team-card {
  border: 1px solid var(--fx-border); border-radius: 14px; background: var(--fx-card);
  padding: 18px 18px 16px; box-shadow: 0 1px 3px rgba(0,0,0,.03);
}
.fx-team-card h2 {
  display: flex; align-items: center; gap: 8px;
  margin: 0 0 14px; font-size: 17px;
}
.fx-team-card h2 i {
  width: 4px; height: 16px; border-radius: 4px; background: var(--fx-primary);
}
.fx-team-intro p { margin: 0 0 10px; font-size: 14px; line-height: 1.85; color: rgba(42,34,31,.9); }
.fx-team-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.fx-team-stats > div {
  text-align: center; border-radius: 10px; background: var(--fx-secondary); padding: 12px 8px;
}
.fx-team-stats b { display: block; font-size: 18px; color: var(--fx-primary); line-height: 1.2; }
.fx-team-stats span { display: block; margin-top: 4px; font-size: 12px; color: var(--fx-muted); }

.fx-match-list-plain { border: 0; border-radius: 0; }
.fx-match-list-plain li + li { border-top: 1px solid var(--fx-border); }
.fx-match-list-plain a { padding: 12px 0; }
.fx-team-more {
  display: block; width: 100%; margin-top: 8px; border: 1px dashed var(--fx-border);
  border-radius: 8px; background: transparent; padding: 10px; cursor: pointer;
  color: var(--fx-primary); font-weight: 600; font-size: 13px;
}
.fx-team-more:hover { background: rgba(192,57,43,.05); }

.fx-roster-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fx-roster-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border: 1px solid var(--fx-border); border-radius: 10px; background: #fff;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.fx-roster-item:hover { border-color: var(--fx-primary); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.05); }
.fx-roster-item .num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: rgba(192,57,43,.1); color: var(--fx-primary);
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.fx-roster-item .txt { min-width: 0; flex: 1; }
.fx-roster-item strong { display: block; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fx-roster-item em { display: block; font-style: normal; font-size: 11px; color: var(--fx-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fx-roster-item .pos {
  flex-shrink: 0; border-radius: 6px; background: var(--fx-secondary);
  padding: 3px 8px; font-size: 11px; font-weight: 600; color: var(--fx-muted);
}

.fx-team-news { list-style: none; margin: 0; padding: 0; }
.fx-team-news li + li { border-top: 1px solid var(--fx-border); }
.fx-team-news a { display: block; padding: 12px 0; }
.fx-team-news strong { display: block; font-size: 14px; line-height: 1.45; }
.fx-team-news a:hover strong { color: var(--fx-primary); }
.fx-team-news span { display: block; margin-top: 4px; font-size: 12px; color: var(--fx-muted); }

.fx-team-side .fx-team-card + .fx-team-card { margin-top: 16px; }
.fx-team-table-wrap { overflow-x: auto; }
.fx-team-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.fx-team-table th, .fx-team-table td { padding: 8px 6px; text-align: left; border-bottom: 1px solid var(--fx-border); }
.fx-team-table th { color: var(--fx-muted); font-weight: 500; font-size: 12px; }
.fx-team-table .rk {
  display: inline-flex; width: 22px; height: 22px; border-radius: 6px;
  align-items: center; justify-content: center; font-size: 12px; font-weight: 700;
  background: var(--fx-secondary);
}
.fx-team-table tr.is-me { background: rgba(192,57,43,.06); }
.fx-team-table tr.is-me .rk { background: var(--fx-primary); color: #fff; }
.fx-team-table .tn { display: flex; align-items: center; gap: 6px; min-width: 0; }
.fx-team-table .tn img { width: 18px; height: 18px; object-fit: contain; }
.fx-team-table .tn span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 110px; }
.fx-team-links { display: flex; flex-direction: column; gap: 8px; }
.fx-team-links a {
  border-radius: 8px; padding: 10px 12px; background: var(--fx-secondary);
  font-size: 13px; font-weight: 600;
}
.fx-team-links a:hover { background: rgba(192,57,43,.1); color: var(--fx-primary); }

@media (max-width: 960px) {
  .fx-team-layout { grid-template-columns: 1fr; }
  .fx-team-meta { grid-template-columns: 1fr 1fr; }
  .fx-team-meta > div:nth-child(3),
  .fx-team-meta > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.08); }
  .fx-team-meta > div:nth-child(3) { border-left: 0; }
  .fx-roster-grid { grid-template-columns: 1fr; }
  .fx-team-hero-main { flex-direction: column; align-items: flex-start; }
  .fx-team-title-row h1 { font-size: 22px; }
  .fx-team-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .fx-grid { grid-template-columns: 1fr; }
  .fx-news-grid { grid-template-columns: 1fr; }
  .fx-footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .fx-search { display: none; }
  .fx-menu-btn { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
  .fx-nav { display: none; }
  .fx-nav.is-open { display: block; }
  .fx-nav-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; padding: 10px 12px 14px; }
  .fx-nav-a {
    text-align: center; border-radius: 8px; background: var(--fx-secondary); padding: 8px 4px; font-size: 12px;
  }
  .fx-nav-a.is-on { background: var(--fx-primary); color: #fff; }
  .fx-nav-a.is-on::after { display: none; }
  .fx-cards { grid-template-columns: 1fr; }
  .fx-ncard { flex-direction: column; }
  .fx-ncard-pic { width: 100%; }
  .fx-live-grid { grid-template-columns: 1fr; }
  .fx-team-grid { grid-template-columns: 1fr 1fr; }
  .fx-live-filter { top: 56px; }
  .fx-article-body { padding: 16px; }
  .fx-article-body h1 { font-size: 20px; }
  .fx-related-grid { grid-template-columns: 1fr; }
  .fx-article-wrap { max-width: none; }
}
