:root {
  --bg: #0a0e17;
  --surface: #121a2a;
  --surface2: #1a2438;
  --border: #2a3650;
  --text: #e8edf5;
  --muted: #8b9bb8;
  --accent: #00d4aa;
  --accent-dim: #00a884;
  --accent-border: rgba(0, 212, 170, 0.35);
  --accent-soft: rgba(0, 212, 170, 0.12);
  --accent-soft-bg: rgba(0, 212, 170, 0.06);
  --gold: #f5c542;
  --danger: #ff6b6b;
  --radius: 14px;
  --font: "Segoe UI", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 212, 170, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(0, 212, 170, 0.06), transparent);
  overflow-x: hidden;
}

.site-layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1rem;
}

.page-shell {
  flex: 1 1 960px;
  max-width: 960px;
  min-width: 0;
  padding: 0;
  position: relative;
}

header {
  padding: 1.5rem 0 1rem;
}

main {
  padding: 0 0 2rem;
  max-width: none;
  margin: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent), #0088ff);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

h1 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.stat-pill {
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.25);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.74rem;
  color: rgba(0, 212, 170, 0.9);
}

.stat-pill strong {
  color: var(--accent);
  margin-right: 0.25rem;
}

.date-group {
  margin-top: 1.75rem;
}

.date-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.75rem;
  padding-left: 0.25rem;
}

.match-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.match-card.clickable {
  cursor: pointer;
}

.match-card.clickable:hover {
  border-color: var(--accent-dim);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.match-card.unlocked,
.match-card.revealed {
  cursor: default;
  border-color: rgba(0, 212, 170, 0.35);
  background: rgba(0, 212, 170, 0.04);
}

.match-card.unlocked:hover,
.match-card.revealed:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(0, 212, 170, 0.35);
}

.match-card.revealed .preview-row {
  display: none !important;
}

.match-card.unlocked:not(.free-open)::before {
  content: "已解锁";
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.62rem;
  background: rgba(0, 212, 170, 0.15);
  color: var(--accent);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.match-meta {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.teams {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.vs {
  color: var(--muted);
  font-weight: 400;
  margin: 0 0.35rem;
}

.preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.preview-locked {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.lock-icon {
  opacity: 0.7;
}

.btn-unlock {
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #041510;
  border: none;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.btn-unlock:hover {
  filter: brightness(1.08);
}

.prediction-panel {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
  display: none;
}

.prediction-panel.visible {
  display: block;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.pred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.pred-box {
  background: var(--surface2);
  border-radius: 10px;
  padding: 0.85rem;
  text-align: center;
}

.pred-box.highlight {
  border: 1px solid rgba(0, 212, 170, 0.35);
  background: rgba(0, 212, 170, 0.06);
}

.pred-label {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.pred-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
}

.pred-sub {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.models-row {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  width: 100%;
  max-width: 420px;
  padding: 1.5rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.modal h2 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.modal-match {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.price-tag {
  text-align: center;
  margin: 1rem 0 1.25rem;
}

.price-tag .amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
}

.price-tag .amount small {
  font-size: 1rem;
  vertical-align: super;
}

.price-tag .desc {
  font-size: 0.8rem;
  color: var(--muted);
}

.plan-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.plan-tab {
  flex: 1;
  padding: 0.55rem;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--muted);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.8rem;
}

.plan-tab.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 212, 170, 0.08);
}

.pay-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pay-btn {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface2);
  color: var(--text);
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.pay-btn:hover {
  border-color: var(--accent-dim);
}

.pay-btn.primary {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--accent), #0088cc);
  color: #041510;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.25rem;
  cursor: pointer;
}

.modal-wrap {
  position: relative;
}

.modal-note {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.75rem;
}

.loading {
  text-align: center;
  padding: 3rem;
  color: var(--muted);
}

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--surface2);
  border: 1px solid var(--accent);
  color: var(--text);
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  z-index: 2000;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.hidden {
  display: none !important;
}

.custom-section {
  max-width: 960px;
  margin: 0 auto 1.5rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.section-title {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.section-desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.custom-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.custom-form select {
  flex: 1;
  min-width: 140px;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text);
  font-size: 0.9rem;
}

.custom-result {
  margin-top: 1rem;
}

.custom-result .prediction-panel {
  display: block;
}

.btn-live {
  margin-top: 0.85rem;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--accent);
  cursor: pointer;
  font-size: 0.8rem;
}

.btn-live:hover {
  border-color: var(--accent);
}

.live-badge {
  display: inline-block;
  font-size: 0.6rem;
  background: rgba(0, 212, 170, 0.2);
  color: var(--accent);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 0.25rem;
}

.pred-box-wide {
  grid-column: 1 / -1;
  text-align: left;
}

.top3-value {
  font-size: 1rem !important;
  color: var(--text) !important;
}

.pick-1x2 {
  font-size: 1.1rem !important;
  color: var(--accent) !important;
}

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  gap: 1rem;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.stripe-btn {
  grid-column: 1 / -1;
  background: #635bff22;
  border-color: #635bff;
  color: #a59bff;
}

.trial-banner,
.promo-banner {
  margin-top: 0.75rem;
  padding: 0.55rem 1rem;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.35);
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--accent);
}

.info-panel {
  margin-bottom: 0.85rem;
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.28);
  border-radius: 10px;
  overflow: hidden;
}

.info-panel-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  background: rgba(0, 212, 170, 0.1);
  border: none;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.info-panel-toggle:hover {
  background: rgba(0, 212, 170, 0.16);
}

.info-panel-toggle .chevron {
  font-size: 0.65rem;
  opacity: 0.85;
}

.info-panel-body {
  padding: 0.65rem 0.85rem 0.85rem;
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(232, 237, 245, 0.82);
}

.info-panel-body.collapsed {
  display: none;
}

.glossary-section {
  display: none;
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.65rem;
}

.glossary-item {
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(139, 155, 184, 0.95);
}

.glossary-item strong {
  color: var(--accent);
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.74rem;
}

.policy-section {
  display: none;
}

.policy-list {
  margin: 0 0 0 1rem;
  color: rgba(139, 155, 184, 0.95);
  font-size: 0.72rem;
  line-height: 1.65;
}

.policy-list strong {
  color: var(--text);
}

.policy-detail {
  margin-top: 0.55rem;
  font-size: 0.7rem;
  color: rgba(139, 155, 184, 0.9);
  line-height: 1.5;
}

.schedule-hint {
  margin-top: 0.55rem;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.28);
  color: var(--accent);
  font-size: 0.72rem;
}

.sync-meta {
  margin-top: 0.45rem;
  font-size: 0.68rem;
  color: rgba(0, 212, 170, 0.75);
}

.backtest-ticker {
  flex: 0 0 268px;
  width: 268px;
  position: sticky;
  top: 1rem;
  align-self: flex-start;
  z-index: 100;
  background: rgba(18, 26, 42, 0.96);
  border: 1px solid rgba(0, 212, 170, 0.35);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.ticker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.65rem;
  background: rgba(0, 212, 170, 0.12);
  border-bottom: 1px solid rgba(0, 212, 170, 0.25);
}

.ticker-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
}

.ticker-pct {
  font-size: 0.68rem;
  color: rgba(0, 212, 170, 0.85);
}

.ticker-viewport {
  height: 132px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}

.ticker-track {
  display: flex;
  flex-direction: column;
  animation: ticker-scroll 28s linear infinite;
}

.backtest-ticker:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.ticker-item {
  padding: 0.45rem 0.65rem;
  border-bottom: 1px solid rgba(0, 212, 170, 0.1);
  font-size: 0.68rem;
  line-height: 1.45;
  color: var(--muted);
}

.ticker-date {
  color: var(--accent);
  margin-right: 0.35rem;
}

.ticker-match {
  display: block;
  color: var(--text);
  font-size: 0.7rem;
  margin: 0.1rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ticker-scores {
  display: block;
  font-size: 0.65rem;
}

.ticker-scores strong {
  color: var(--accent);
}

.ticker-tag {
  display: inline-block;
  margin-top: 0.15rem;
  padding: 0.05rem 0.35rem;
  border-radius: 4px;
  font-size: 0.6rem;
}

.ticker-tag.hit {
  background: rgba(0, 212, 170, 0.15);
  color: var(--accent);
}

.ticker-tag.miss {
  background: rgba(255, 107, 107, 0.12);
  color: var(--danger);
}

@media (max-width: 1100px) {
  .site-layout {
    flex-direction: column;
    padding: 0 0.85rem;
    max-width: 100%;
  }

  .backtest-ticker {
    order: -1;
    flex: none;
    width: 100%;
    position: static;
    margin: 0.5rem 0 0.75rem;
  }

  .ticker-viewport {
    height: 108px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .site-layout {
    padding: 0 0.75rem;
    gap: 0;
  }

  .page-shell {
    width: 100%;
  }

  header {
    padding-top: 0.85rem;
  }

  h1 {
    font-size: 1.08rem;
    line-height: 1.3;
  }

  .subtitle {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .logo {
    gap: 0.6rem;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
    flex-shrink: 0;
  }

  .stats-bar {
    gap: 0.4rem;
    margin-top: 0.75rem;
  }

  .stat-pill {
    font-size: 0.65rem;
    padding: 0.28rem 0.6rem;
  }

  .odds-banner,
  .promo-banner {
    font-size: 0.72rem;
    line-height: 1.55;
    padding: 0.5rem 0.75rem;
  }

  .info-panel {
    margin-bottom: 0.65rem;
  }

  .info-panel-toggle {
    padding: 0.6rem 0.75rem;
    font-size: 0.74rem;
    min-height: 44px;
  }

  .info-panel-body {
    font-size: 0.68rem;
    padding: 0.55rem 0.75rem 0.75rem;
  }

  .policy-list {
    font-size: 0.68rem;
    line-height: 1.6;
    padding-left: 0.85rem;
  }

  .sync-meta,
  .policy-detail {
    font-size: 0.65rem;
    line-height: 1.55;
    word-break: break-word;
  }

  .section-heading {
    font-size: 0.98rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem;
  }

  .date-tag {
    font-size: 0.68rem;
  }

  .section-desc {
    font-size: 0.72rem;
    line-height: 1.5;
  }

  .backtest-ticker {
    margin: 0.35rem 0 0.65rem;
    border-radius: 8px;
  }

  .ticker-head {
    padding: 0.4rem 0.6rem;
  }

  .ticker-viewport {
    height: 96px;
  }

  .ticker-item {
    padding: 0.4rem 0.6rem;
    font-size: 0.64rem;
  }

  .ticker-match {
    font-size: 0.66rem;
    white-space: normal;
    line-height: 1.35;
  }

  .match-card {
    padding: 0.85rem 0.9rem;
    margin-bottom: 0.65rem;
    border-radius: 12px;
  }

  .match-meta {
    font-size: 0.66rem;
    line-height: 1.45;
    word-break: break-word;
  }

  .match-card.unlocked:not(.free-open)::before,
  .match-card.free-open::before {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.58rem;
  }

  .teams {
    font-size: 0.92rem;
    padding-right: 2.8rem;
    line-height: 1.4;
    word-break: break-word;
  }

  .preview-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    margin-top: 0.15rem;
  }

  .preview-locked {
    font-size: 0.72rem;
  }

  .btn-unlock {
    width: 100%;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    min-height: 44px;
  }

  .pred-grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .pred-box {
    padding: 0.7rem 0.75rem;
    text-align: left;
  }

  .pred-box-wide {
    grid-column: 1;
  }

  .pred-value {
    font-size: 1.25rem;
  }

  .pick-1x2 {
    font-size: 1rem !important;
  }

  .top3-value {
    font-size: 0.88rem !important;
    word-break: break-word;
    line-height: 1.45;
  }

  .pred-sub,
  .models-row {
    font-size: 0.66rem;
    line-height: 1.5;
  }

  .pred-note {
    font-size: 0.68rem;
    padding: 0.55rem 0.65rem;
  }

  .modal-overlay {
    padding: 0.65rem;
    align-items: flex-end;
  }

  .modal-wrap {
    width: 100%;
  }

  .modal {
    padding: 1rem 1rem 1.25rem;
    max-height: 88vh;
    overflow-y: auto;
    border-radius: 16px 16px 12px 12px;
    width: 100%;
    max-width: none;
  }

  .modal h2 {
    font-size: 1.05rem;
  }

  .modal-match {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .price-tag .amount {
    font-size: 1.85rem;
  }

  .qrcode-img {
    max-width: min(200px, 65vw);
  }

  .glossary-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .site-footer {
    padding: 1.25rem 0 1.75rem;
    font-size: 0.7rem;
  }

  .toast {
    bottom: calc(1rem + env(safe-area-inset-bottom, 0));
    left: 0.75rem;
    right: 0.75rem;
    transform: translateY(80px);
    max-width: none;
    text-align: center;
    font-size: 0.78rem;
  }

  .toast.show {
    transform: translateY(0);
  }
}

@media (max-width: 380px) {
  .site-layout {
    padding: 0 0.6rem;
  }

  .teams {
    font-size: 0.86rem;
  }

  .pred-value {
    font-size: 1.15rem;
  }
}

.section-heading {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.date-tag {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
}

.future-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.match-card.free-open::before {
  content: "已开放";
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.62rem;
  background: rgba(0, 212, 170, 0.2);
  color: var(--accent);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.match-card.future-card {
  opacity: 0.92;
  border-style: dashed;
}

.highlight-pill {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

.modal-wide {
  max-width: 440px;
}

.order-box {
  text-align: center;
}

.order-id {
  font-size: 0.9rem;
  margin: 0.75rem 0;
}

.order-id strong {
  color: var(--accent);
  font-size: 1.05rem;
}

.qrcode-wrap {
  margin: 1rem 0;
}

.qrcode-img {
  max-width: 220px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.qrcode-hint {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.pay-status {
  font-size: 0.82rem;
  color: var(--accent);
  margin-top: 0.75rem;
  min-height: 1.2em;
}

.free-view-box {
  text-align: center;
  padding: 1rem 0;
}

.free-view-box p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.empty-msg {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 1.5rem;
  text-align: center;
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  width: 100%;
}

.site-footer p {
  margin: 0;
  letter-spacing: 0.02em;
}

.fixture-list-inner {
  margin-top: 0.75rem;
}

.odds-banner {
  margin-top: 0.75rem;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.35);
  color: var(--accent);
}

.odds-banner.locked {
  background: rgba(0, 212, 170, 0.1);
  border-color: rgba(0, 212, 170, 0.35);
  color: var(--accent);
}

.policy-section {
  display: none;
}

.backtest-section {
  display: none;
}

.backtest-table .score-hit {
  color: var(--accent);
  font-weight: 700;
}

.pred-note {
  margin-top: 0.75rem;
  padding: 0.65rem 0.75rem;
  background: rgba(0, 212, 170, 0.08);
  border-left: 3px solid var(--accent);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
}

