/* ============================================================
   APP SHELL — 全站统一外壳（左侧玻璃拟态边栏 + 设计系统增强）
   依赖 topic-unified.css 的设计令牌；本文件在其之后加载以覆盖。
   ============================================================ */
@import url('./styles/tokens-2026.css');
@import url('./styles/components-2026.css');

:root {
  --sidebar-w: 272px;
  --sidebar-w-collapsed: 80px;
  --shell-accent: #f59e0b;
  --shell-accent-dim: #b45309;
  --shell-glass: rgba(17, 19, 30, 0.72);
  --shell-glass-2: rgba(24, 27, 42, 0.6);
  --shell-border: rgba(245, 158, 11, 0.14);
  --shell-hover: rgba(245, 158, 11, 0.1);
  --shell-active: rgba(245, 158, 11, 0.16);
  --shell-radius: 14px;
  --shell-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

/* 主体左移，给固定侧边栏让位 */
body.app-shell {
  padding-left: var(--sidebar-w);
  transition: padding-left 0.32s var(--shell-ease);
}
body.app-shell.sidebar-collapsed { padding-left: var(--sidebar-w-collapsed); }
@media (max-width: 1024px) {
  body.app-shell { padding-left: 0; }
  body.app-shell.sidebar-collapsed { padding-left: 0; }
}
body.app-shell .container { animation: none; }

/* ─── 侧边栏 ─── */
.app-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebar-w);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  background: var(--shell-glass);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-right: 1px solid var(--shell-border);
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.45);
  transition: width 0.32s var(--shell-ease), transform 0.32s var(--shell-ease);
  overflow: hidden;
}
body.sidebar-collapsed .app-sidebar { width: var(--sidebar-w-collapsed); }

.app-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 22px 18px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--shell-border);
  white-space: nowrap;
}
.app-sidebar-brand .logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
  flex-shrink: 0;
}
.app-sidebar-brand .brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.app-sidebar-brand .brand-name { font-size: 17px; font-weight: 900; letter-spacing: -0.02em; color: var(--text-primary); }
.app-sidebar-brand .brand-sub { font-size: 10px; color: var(--gold-400); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; }

.app-sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 14px 12px 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(245,158,11,0.25) transparent;
}
.app-sidebar-nav::-webkit-scrollbar { width: 6px; }
.app-sidebar-nav::-webkit-scrollbar-thumb { background: rgba(245,158,11,0.22); border-radius: 3px; }

.app-nav-group { margin-bottom: 18px; }
.app-nav-group-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 12px 8px;
  white-space: nowrap;
}
.app-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  margin: 2px 0;
  border-radius: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.app-nav-item .nav-ico { font-size: 18px; width: 22px; text-align: center; flex-shrink: 0; filter: grayscale(0.2); }
.app-nav-item:hover { background: var(--shell-hover); color: var(--text-primary); transform: translateX(2px); }
.app-nav-item.active {
  background: linear-gradient(100deg, var(--shell-active), transparent);
  color: var(--gold-200);
  font-weight: 800;
}
.app-nav-item.active::before {
  content: '';
  position: absolute;
  left: 0; top: 14%; bottom: 14%;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(var(--gold-400), var(--gold-600));
  box-shadow: 0 0 12px rgba(245,158,11,0.6);
}
.app-nav-item .nav-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(245, 158, 11, 0.18);
  color: var(--shell-accent);
}

/* 收起态：只显示图标 */
body.sidebar-collapsed .app-sidebar-brand .brand-text,
body.sidebar-collapsed .app-nav-group-label,
body.sidebar-collapsed .app-nav-item span.nav-label,
body.sidebar-collapsed .app-nav-item .nav-badge { display: none; }
body.sidebar-collapsed .app-nav-item { justify-content: center; padding: 12px 0; }
body.sidebar-collapsed .app-sidebar-brand { justify-content: center; padding: 22px 0 18px; }
body.sidebar-collapsed .app-shell-foot .foot-label { display: none; }
body.sidebar-collapsed .app-shell-foot { justify-content: center; }

/* ─── 侧边栏底部：主题 + 收起 ─── */
.app-shell-foot {
  flex-shrink: 0;
  border-top: 1px solid var(--shell-border);
  padding: 14px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.app-theme-switch {
  display: flex;
  gap: 4px;
  background: rgba(0,0,0,0.25);
  padding: 4px;
  border-radius: 12px;
  flex: 1;
}
.app-theme-switch button {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 15px;
  padding: 6px 0;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}
.app-theme-switch button:hover { color: var(--gold-300); }
.app-theme-switch button.active { background: var(--shell-active); color: var(--gold-400); box-shadow: 0 0 0 1px var(--border-glow) inset; }
.app-collapse-btn {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--shell-border);
  background: rgba(0,0,0,0.25);
  color: var(--text-secondary);
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s ease;
}
.app-collapse-btn:hover { color: var(--gold-300); border-color: var(--gold-400); }

/* ─── 移动端 FAB + 遮罩 ─── */
.app-fab {
  display: none;
  position: fixed;
  top: 16px; left: 16px;
  z-index: 1300;
  width: 46px; height: 46px;
  border-radius: 14px;
  border: 1px solid var(--shell-border);
  background: var(--shell-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--gold-400);
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
}
.app-sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  z-index: 1150;
}
@media (max-width: 1024px) {
  .app-fab { display: flex; align-items: center; justify-content: center; }
  .app-sidebar { transform: translateX(-100%); box-shadow: none; }
  body.sidebar-open .app-sidebar { transform: translateX(0); box-shadow: 8px 0 40px rgba(0,0,0,0.6); }
  body.sidebar-open .app-sidebar-backdrop { display: block; }
  .app-collapse-btn { display: none; }
}

/* ============================================================
   通用页面组件（供 每日日报大盘 / 数据源 / AI管理 复用）
   ============================================================ */

/* 页头 */
.page-head { margin-bottom: 24px; }
.page-head h1 {
  font-size: 28px; font-weight: 800; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 12px; color: var(--text-primary);
}
.page-head h1 .ph-ico {
  width: 44px; height: 44px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  box-shadow: 0 4px 16px rgba(245,158,11,0.3);
}
.page-head p { color: var(--text-muted); font-size: 14px; margin-top: 8px; max-width: 760px; line-height: 1.6; }

/* 分段标签 */
.seg-tabs { display: inline-flex; gap: 4px; background: var(--surface-2); border: 1px solid var(--border-subtle); padding: 5px; border-radius: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.seg-tab {
  border: none; background: transparent; color: var(--text-secondary);
  font-size: 14px; font-weight: 700; padding: 9px 18px; border-radius: 10px;
  cursor: pointer; transition: all 0.2s ease; white-space: nowrap;
}
.seg-tab:hover { color: var(--text-primary); }
.seg-tab.active { background: var(--shell-active); color: var(--gold-300); box-shadow: 0 0 0 1px var(--border-glow) inset; }

/* 统计卡 */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; margin-bottom: 24px; }
.stat-card {
  background: var(--surface-2); border: 1px solid var(--border-subtle);
  border-radius: var(--shell-radius); padding: 18px 20px;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: border-color 0.3s ease, transform 0.2s ease;
}
.stat-card:hover { border-color: var(--border-soft); transform: translateY(-2px); }
.stat-card::after { content:''; position:absolute; right:-20px; top:-20px; width:80px; height:80px; border-radius:50%; background: radial-gradient(circle, rgba(245,158,11,0.12), transparent 70%); }
.stat-card .stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.stat-card .stat-value { font-size: 26px; font-weight: 800; margin-top: 6px; font-variant-numeric: tabular-nums; color: var(--text-primary); }
.stat-card .stat-sub { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.stat-card.cyan .stat-value { color: var(--shell-cyan); }
.stat-card.cyan::after { background: radial-gradient(circle, rgba(6,182,212,0.14), transparent 70%); }
.stat-card.green .stat-value { color: var(--green2); }
.stat-card.green::after { background: radial-gradient(circle, rgba(16,185,129,0.14), transparent 70%); }
.stat-card.red .stat-value { color: var(--red2); }
.stat-card.red::after { background: radial-gradient(circle, rgba(239,68,68,0.14), transparent 70%); }

/* 分类区块 */
.cat-section { margin-bottom: 28px; }
.cat-section-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border-subtle); }
.cat-section-head .cat-ico { font-size: 20px; }
.cat-section-head h2 { font-size: 18px; font-weight: 800; color: var(--text-primary); }
.cat-section-head .cat-count { font-size: 12px; color: var(--text-muted); margin-left: auto; }

/* 数据源卡片（复用 data-source-card 视觉） */
.ds-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }

/* 日期 / 日历 */
.cal-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.cal-chip {
  border: 1px solid var(--border-subtle); background: var(--surface-2);
  color: var(--text-secondary); font-size: 13px; font-weight: 700;
  padding: 8px 14px; border-radius: 100px; cursor: pointer; transition: all 0.2s ease;
}
.cal-chip:hover { color: var(--text-primary); border-color: var(--border-soft); }
.cal-chip.active { background: var(--shell-active); color: var(--gold-300); border-color: var(--gold-400); }
.cal-month { font-size: 14px; font-weight: 800; color: var(--text-primary); margin-right: 6px; }

/* 日期分组卡片流 */
.date-group { margin-bottom: 26px; }
.date-group-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.date-group-head .dg-date { font-size: 16px; font-weight: 800; color: var(--gold-400); }
.date-group-head .dg-meta { font-size: 12px; color: var(--text-muted); }
.date-group-head .dg-line { flex: 1; height: 1px; background: var(--border-subtle); }

.daily-card {
  background: var(--surface-2); border: 1px solid var(--border-subtle);
  border-radius: var(--shell-radius); padding: 18px 20px; margin-bottom: 12px;
  transition: border-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  border-left: 3px solid var(--gold-500);
}
.daily-card:hover { border-color: var(--border-soft); transform: translateY(-2px); }
.daily-card.football { border-left-color: var(--shell-cyan); }
.daily-card-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.daily-card-head .dc-title { font-size: 16px; font-weight: 800; color: var(--text-primary); }
.daily-card-head .dc-tag { font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 100px; }
.dc-tag.lottery { background: rgba(245,158,11,0.14); color: var(--gold-400); }
.dc-tag.football { background: rgba(6,182,212,0.14); color: var(--shell-cyan); }
.daily-card-head .dc-date { font-size: 12px; color: var(--text-muted); margin-left: auto; }
.daily-card-body { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 18px; }
.dc-metric { display: flex; flex-direction: column; gap: 2px; }
.dc-metric .dc-m-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.dc-metric .dc-m-value { font-size: 18px; font-weight: 800; font-variant-numeric: tabular-nums; }
.dc-note { font-size: 13px; color: var(--text-secondary); margin-top: 10px; line-height: 1.6; padding-top: 10px; border-top: 1px solid var(--border-subtle); }

/* 分页 */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 28px 0 10px; flex-wrap: wrap; }
.page-btn {
  min-width: 38px; height: 38px; padding: 0 12px;
  border: 1px solid var(--border-subtle); background: var(--surface-2);
  color: var(--text-secondary); font-weight: 700; font-size: 13px;
  border-radius: 10px; cursor: pointer; transition: all 0.2s ease;
}
.page-btn:hover:not(:disabled) { color: var(--text-primary); border-color: var(--border-soft); }
.page-btn.active { background: var(--shell-active); color: var(--gold-300); border-color: var(--gold-400); }
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.page-info { font-size: 12px; color: var(--text-muted); margin: 0 8px; }

/* 按钮 */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border-soft); background: var(--surface-3);
  color: var(--text-primary); font-size: 14px; font-weight: 700;
  padding: 10px 18px; border-radius: 11px; cursor: pointer;
  transition: all 0.2s ease; text-decoration: none;
}
.btn:hover { border-color: var(--gold-400); transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); border-color: transparent; color: #1a1205; }
.btn-primary:hover { box-shadow: 0 6px 20px rgba(245,158,11,0.35); }
.btn-cyan { background: linear-gradient(135deg, var(--shell-cyan), var(--shell-cyan-2)); border-color: transparent; color: #04222a; }
.btn-danger { background: rgba(239,68,68,0.14); border-color: rgba(239,68,68,0.4); color: var(--red2); }
.btn-danger:hover { background: rgba(239,68,68,0.22); border-color: var(--red); }
.btn-ghost { background: transparent; }
.btn-sm { padding: 6px 12px; font-size: 12px; border-radius: 9px; }

/* 表单 */
.form-grid { display: grid; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 13px; font-weight: 700; color: var(--text-secondary); }
.field {
  width: 100%; background: var(--surface-1); border: 1px solid var(--border-subtle);
  color: var(--text-primary); font-size: 14px; padding: 11px 14px; border-radius: 11px;
  font-family: inherit; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field:focus { outline: none; border-color: var(--gold-400); box-shadow: 0 0 0 3px rgba(245,158,11,0.12); }
.field::placeholder { color: var(--text-muted); }
textarea.field { resize: vertical; min-height: 80px; line-height: 1.5; }
.form-hint { font-size: 12px; color: var(--text-muted); }
.form-actions { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }

/* 配置列表行 */
.cfg-list { display: grid; gap: 12px; }
.cfg-row {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface-2); border: 1px solid var(--border-subtle);
  border-radius: var(--shell-radius); padding: 16px 18px;
  transition: border-color 0.3s ease;
}
.cfg-row:hover { border-color: var(--border-soft); }
.cfg-ico { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; background: var(--surface-3); flex-shrink: 0; }
.cfg-main { flex: 1; min-width: 0; }
.cfg-name { font-size: 15px; font-weight: 800; color: var(--text-primary); display: flex; align-items: center; gap: 8px; }
.cfg-meta { font-size: 12px; color: var(--text-muted); margin-top: 3px; display: flex; gap: 14px; flex-wrap: wrap; }
.cfg-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* 开关 */
.switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider { position: absolute; inset: 0; background: var(--surface-4); border-radius: 100px; transition: 0.25s; cursor: pointer; }
.switch .slider::before { content: ''; position: absolute; height: 18px; width: 18px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: 0.25s; }
.switch input:checked + .slider { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); }
.switch input:checked + .slider::before { transform: translateX(20px); }

/* 空态 */
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-state .es-ico { font-size: 44px; opacity: 0.5; margin-bottom: 12px; }
.empty-state .es-text { font-size: 14px; }

/* 提示条 */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--surface-3); border: 1px solid var(--border-soft); color: var(--text-primary);
  padding: 12px 22px; border-radius: 12px; font-size: 14px; font-weight: 700;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5); z-index: 2000; opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.ok { border-color: rgba(16,185,129,0.4); }
.toast.err { border-color: rgba(239,68,68,0.4); }

/* 模态框 */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  z-index: 1500; display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  width: 100%; max-width: 540px; max-height: 88vh; overflow-y: auto;
  background: var(--surface-2); border: 1px solid var(--border-soft);
  border-radius: 18px; padding: 26px; box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: fadeInUp 0.3s ease both;
}
.modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.modal-head h3 { font-size: 19px; font-weight: 800; color: var(--text-primary); }
.modal-close { background: none; border: none; color: var(--text-muted); font-size: 24px; cursor: pointer; line-height: 1; }
.modal-close:hover { color: var(--text-primary); }

/* 浅色主题适配（侧边栏） */
body.light-theme .app-sidebar { background: rgba(255,255,255,0.82); border-right-color: rgba(180,83,9,0.12); }
body.light-theme .app-sidebar-brand { border-bottom-color: rgba(180,83,9,0.1); }
body.light-theme .app-shell-foot { border-top-color: rgba(180,83,9,0.1); }
body.light-theme .app-nav-item { color: #6b6b75; }
body.light-theme .app-nav-item:hover { color: #1a1a1e; background: rgba(245,158,11,0.08); }
body.light-theme .app-nav-group-label { color: #9a9aa5; }
body.light-theme .stat-card, body.light-theme .daily-card, body.light-theme .cfg-row, body.light-theme .modal {
  background: #fff; border-color: rgba(180,83,9,0.1); box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
body.light-theme .seg-tabs, body.light-theme .cal-chip, body.light-theme .page-btn, body.light-theme .field, body.light-theme .btn {
  background: #fefefe;
}
body.light-theme .app-theme-switch, body.light-theme .app-collapse-btn { background: rgba(0,0,0,0.04); }

/* 宽屏优化 */
@media (min-width: 1400px) {
  .ds-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .page-head h1 { font-size: 22px; }
  .daily-card-body { gap: 12px; }
}

/* ============================================================
   足球专题：每场比赛整行铺开（赔率 + 情报 横向展开）
   ============================================================ */
.match-rows { display: flex; flex-direction: column; gap: 10px; }
.match-row {
  display: flex; align-items: stretch; gap: 16px;
  background: var(--surface-3); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 12px 18px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  flex-wrap: wrap;
}
.match-row:hover { border-color: var(--border-soft); box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.mr-col { display: flex; flex-direction: column; gap: 4px; justify-content: center; }
.mr-meta { min-width: 104px; flex-shrink: 0; }
.mr-league { font-size: 13px; font-weight: 800; color: var(--gold-400); white-space: nowrap; }
.mr-league-full { font-size: 10px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 160px; }
.mr-status { margin-top: 4px; }
.mr-teams { flex: 1.2; min-width: 220px; }
.mr-teams-inner { display: flex; align-items: center; justify-content: center; gap: 12px; }
.mr-team { display: flex; align-items: center; gap: 6px; flex: 1; }
.mr-team-away { justify-content: flex-end; }
.mr-seed { font-size: 10px; font-weight: 800; color: var(--text-muted); background: var(--surface-4); border-radius: 4px; padding: 1px 5px; flex-shrink: 0; }
.mr-team-name { font-size: 14px; font-weight: 700; color: var(--text-primary); text-align: center; }
.mr-score { font-size: 16px; font-weight: 800; color: var(--gold-300); font-variant-numeric: tabular-nums; min-width: 52px; text-align: center; flex-shrink: 0; }
.mr-score.mr-score-vs { color: var(--text-muted); font-size: 13px; }
.mr-time { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 4px; }
.mr-block-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; margin-bottom: 4px; white-space: nowrap; }
.mr-odds-3 { display: flex; gap: 6px; }
.mr-o { display: flex; flex-direction: column; align-items: center; background: var(--surface-2); border-radius: 8px; padding: 5px 9px; min-width: 50px; }
.mr-o i { font-size: 9px; color: var(--text-muted); font-style: normal; font-weight: 700; margin-bottom: 2px; }
.mr-o { font-size: 14px; font-weight: 800; color: var(--text-primary); font-variant-numeric: tabular-nums; }
.mr-odds { min-width: 168px; flex-shrink: 0; }
.mr-handicap { min-width: 168px; flex-shrink: 0; }
.mr-full { min-width: 92px; flex-shrink: 0; }
.mr-full summary { font-size: 11px; font-weight: 700; color: var(--gold-400); cursor: pointer; user-select: none; padding: 4px 0; }
.mr-full summary:hover { color: var(--gold-300); }
.mr-full summary::-webkit-details-marker { display: none; }
.mr-full-body { margin-top: 8px; }
.mr-intel { flex: 1.6; min-width: 260px; }
.mr-remark { flex-basis: 100%; font-size: 11px; color: var(--text-muted); line-height: 1.4; margin-top: 2px; }
@media (max-width: 1100px) {
  .match-row { gap: 10px 14px; }
  .mr-teams { min-width: 100%; order: -1; flex-basis: 100%; }
}
