* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: #0c0e16;
  color: #e7e9ee;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  min-height: 100vh;
}
.hidden { display: none !important; }
.dot-sep { opacity: 0.4; margin: 0 4px; }
.mute-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: #8a8fa3;
  cursor: pointer;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  transition: all .12s;
}
.mute-btn:hover { background: rgba(255,255,255,0.05); color: #fff; }

.app {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 16px;
  padding: 16px;
  min-height: 100vh;
}

.sidebar {
  background: linear-gradient(180deg, #14172a 0%, #0e1020 100%);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: calc(100vh - 32px);
  overflow: auto;
}
.brand-title {
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 18px;
  background: linear-gradient(90deg, #ff5fa2, #b65cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-sub {
  font-size: 12px;
  color: #8a8fa3;
  letter-spacing: 1px;
  margin-top: 2px;
}
.wallet-area {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.chain-badge {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,82,204,0.12);
  border: 1px solid rgba(0,82,204,0.4);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #9bd3ff;
}
.chain-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4a90e2;
  box-shadow: 0 0 8px rgba(74,144,226,0.7);
  flex-shrink: 0;
}
.chain-badge.testnet { background: rgba(251,191,36,0.10); border-color: rgba(251,191,36,0.35); color: #f6c659; }
.chain-badge.testnet .dot { background: #fbbf24; box-shadow: 0 0 8px rgba(251,191,36,0.6); }
.chain-badge.disabled { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); color: #6f7488; }
.chain-badge.disabled .dot { background: #6f7488; box-shadow: none; }
.wallet-btn {
  width: 100%;
  background: linear-gradient(90deg, #ff5fa2, #b65cff);
  color: white;
  border: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 11px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity .15s, transform .15s;
}
.wallet-btn:hover { opacity: 0.95; transform: translateY(-1px); }
.wallet-btn:active { transform: translateY(0); }

.wallet-info {
  display: grid;
  grid-template-columns: 32px 1fr auto 22px;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(180,120,255,0.10), rgba(255,95,162,0.06));
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all .15s;
}
.wallet-info:hover {
  border-color: rgba(180,120,255,0.4);
  background: linear-gradient(135deg, rgba(180,120,255,0.16), rgba(255,95,162,0.10));
}
.wallet-info .avatar-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5fa2, #b65cff);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wallet-info .meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.wallet-info .meta .small-label {
  font-size: 9px;
  color: #8a8fa3;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.wallet-info .addr {
  font-family: -apple-system, ui-monospace, monospace;
  font-size: 12px;
  color: #cfd2dc;
  font-weight: 600;
}
.wallet-info .bal-block {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.wallet-info .bal {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
}
.wallet-info .bal-unit {
  font-size: 9px;
  font-weight: 700;
  color: #8a8fa3;
  letter-spacing: 1.2px;
}
.wallet-info .disconnect {
  background: transparent;
  border: none;
  color: #6f7488;
  cursor: pointer;
  font-size: 13px;
  padding: 4px;
  border-radius: 4px;
  line-height: 1;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .12s;
}
.wallet-info .disconnect:hover { background: rgba(248,113,113,0.18); color: #f87171; }

.my-bets-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(180,120,255,0.10);
  border: 1px solid rgba(180,120,255,0.22);
  border-radius: 10px;
  color: #d6c4ff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}
.my-bets-btn:hover {
  background: rgba(180,120,255,0.18);
  border-color: rgba(180,120,255,0.5);
  color: #fff;
}
.my-bets-btn .badge {
  font-size: 10px;
  background: rgba(180,120,255,0.3);
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.4px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.brand-progress { margin-top: 10px; }
.brand-progress .bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.brand-progress .bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff5fa2, #b65cff);
  width: 0%;
  transition: width 0.5s ease;
}
.brand-progress .bar-labels {
  display: flex; justify-content: space-between;
  font-size: 10px; color: #6f7488;
  margin-top: 4px;
  letter-spacing: 1px;
}

.standings {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.standings .row {
  display: grid;
  grid-template-columns: 22px 1fr 26px 26px 26px 26px 32px 36px;
  align-items: center;
  padding: 6px 6px;
  border-radius: 6px;
  gap: 4px;
}
.standings .row.head {
  color: #6f7488;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.standings .row .pos { color: #6f7488; text-align: center; }
.standings .row .club { display: flex; align-items: center; gap: 8px; overflow: hidden; }
.standings .row .club .dot {
  width: 10px; height: 10px; border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.3);
}
.standings .row .club .nm {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500;
}
.standings .row .num { text-align: center; color: #b8bdcf; font-variant-numeric: tabular-nums; font-size: 12px; }
.standings .row .num.pts { color: #fff; font-weight: 700; }
.standings .row.body:hover { background: rgba(255,255,255,0.04); cursor: pointer; }
.standings .row.body.selected { background: rgba(180,120,255,0.14); }
.standings .row.body .pos { color: #fff; font-weight: 600; }
.standings .row.body.cl   .pos { color: #4ade80; }
.standings .row.body.eu   .pos { color: #fbbf24; }
.standings .row.body.rel  .pos { color: #f87171; }

.main {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.match-area {
  background: #0a0c14;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.match-header {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
}
.team-tag {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600;
}
.team-tag.away { justify-content: flex-end; }
.team-tag .dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
}
.match-score {
  font-size: 36px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 2px;
}
.match-score .dash { opacity: 0.4; margin: 0 8px; }
.match-clock {
  font-size: 13px;
  color: #8a8fa3;
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
  min-width: 50px;
  text-align: right;
}
canvas {
  border-radius: 10px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.5);
  max-width: 100%;
  height: auto;
}
.placeholder {
  text-align: center;
  padding: 50px 20px;
  color: #8a8fa3;
}
.ph-title {
  font-size: 12px; font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8a8fa3;
}
.ph-countdown {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 3px;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(90deg, #ff5fa2, #b65cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 8px 0 16px;
}
.ph-sub { font-size: 13px; max-width: 460px; margin: 18px auto 0; line-height: 1.5; opacity: 0.7; }
.ph-fixture {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.04);
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #e7e9ee;
}

.bottom-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
}
.rosters-row { grid-template-columns: 1fr 1fr; }
.rosters-row.solo { grid-template-columns: 1fr; }
.rosters-row.hidden-row { display: none; }
.panel {
  background: linear-gradient(180deg, #14172a 0%, #0e1020 100%);
  border-radius: 12px;
  padding: 16px;
  max-height: 360px;
  overflow: auto;
}
.panel h3 {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a8fa3;
}

.result-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
}
.result-row:last-child { border-bottom: none; }
.result-row .h { text-align: right; }
.result-row .a { text-align: left; }
.result-row .s {
  text-align: center;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  background: rgba(255,255,255,0.06);
  padding: 3px 8px;
  border-radius: 6px;
}
.result-row.live .s { background: rgba(255,95,162,0.18); color: #ff8ec0; }

.player-row {
  display: grid;
  grid-template-columns: 28px 30px 1fr 30px;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.player-row .avatar-cell { display: flex; align-items: center; justify-content: center; }
.player-row.clickable { cursor: pointer; border-radius: 6px; transition: background .12s; }
.player-row.clickable:hover { background: rgba(255,255,255,0.04); }
.player-row.sub { opacity: 0.55; }
.player-row .role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #8a8fa3;
}
.player-row .nm {
  display: flex; flex-direction: column;
  font-weight: 500;
}
.player-row .attrs-line {
  font-size: 10px;
  color: #6f7488;
  letter-spacing: 0.5px;
}
.player-row .ovr {
  text-align: center;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  padding: 3px 0;
  border-radius: 5px;
}
.ovr.a85 { background: linear-gradient(90deg, #fbbf24, #f59e0b); color: #422006; }
.ovr.a75 { background: rgba(74,222,128,0.18); color: #4ade80; }
.ovr.a65 { background: rgba(255,255,255,0.06); color: #e7e9ee; }
.ovr.a0  { background: rgba(255,255,255,0.04); color: #8a8fa3; }

.event-row {
  display: grid;
  grid-template-columns: 32px 24px 1fr;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.event-row .min {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: #8a8fa3;
}
.event-row .icon {
  text-align: center;
  font-size: 14px;
}
.event-row .desc { line-height: 1.3; }
.event-row .desc strong { font-weight: 600; }
.event-row.goal .icon { color: #4ade80; }
.event-row.card-yellow .icon { color: #fbbf24; }
.event-row.card-red .icon { color: #ef4444; }
.event-row.injury .icon { color: #f87171; }
.event-row.sub-event .icon { color: #60a5fa; }
.event-row.save .icon { color: #a78bfa; }
.event-row.foul .icon { color: #fb923c; }
.event-row.setpiece .icon { color: #94a3b8; }
.event-row.setpiece .desc { color: #94a3b8; }
.event-row.shot .icon { color: #cbd5e1; }
.event-row.prematch-good .icon { color: #4ade80; }
.event-row.prematch-good .desc { color: #b8e9cc; }
.event-row.prematch-bad .icon { color: #f87171; }
.event-row.prematch-bad .desc { color: #f3c5c5; }

.match-summary {
  width: 100%;
  background: linear-gradient(180deg, #14172a 0%, #0a0c14 100%);
  border-radius: 10px;
  padding: 28px 36px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.summary-banner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: #8a8fa3;
}
.summary-banner .next-in { color: #ff8ec0; }
.summary-final {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 16px 0;
}
.summary-final .side {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.summary-final .side.away { /* same */ }
.summary-final .side .name {
  font-size: 18px; font-weight: 700; text-align: center;
}
.summary-final .scoreboard {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: 6px;
  font-variant-numeric: tabular-nums;
  display: flex; align-items: center; gap: 10px;
}
.summary-final .scoreboard .dash { opacity: 0.3; }
.summary-final .ft {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  color: #8a8fa3;
  margin-top: -4px;
}
.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
}
.summary-section {
  display: flex; flex-direction: column; gap: 6px;
}
.summary-section .section-title {
  font-size: 10px; letter-spacing: 2px; font-weight: 700; text-transform: uppercase;
  color: #8a8fa3;
  margin-bottom: 4px;
}
.summary-section .scorer-row {
  font-size: 13px; display: flex; gap: 8px; align-items: center;
}
.summary-section .scorer-row .min {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: #4ade80;
  min-width: 28px;
}
.summary-stats {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 14px;
}
.summary-stat {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  padding: 4px 0;
}
.summary-stat .label {
  text-align: center;
  color: #8a8fa3;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.summary-stat .home, .summary-stat .away {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
.summary-stat .home { text-align: left; }
.summary-stat .away { text-align: right; }
.summary-stat .bar-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  height: 4px;
  align-items: center;
}
.summary-stat .bar-h, .summary-stat .bar-a {
  height: 100%;
  border-radius: 2px;
}
.summary-stat .bar-h { justify-self: end; background: rgba(255,255,255,0.2); }
.summary-stat .bar-a { justify-self: start; background: rgba(255,255,255,0.2); }

.modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.modal.hidden { display: none; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal-card {
  position: relative;
  background: linear-gradient(180deg, #14172a 0%, #0a0c14 100%);
  border-radius: 14px;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow: auto;
  padding: 24px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.05);
}
.modal-close {
  position: absolute;
  top: 10px; right: 10px;
  background: transparent;
  border: none;
  color: #8a8fa3;
  font-size: 22px;
  cursor: pointer;
  width: 32px; height: 32px;
  border-radius: 50%;
  line-height: 1;
  transition: all .15s;
}
.modal-close:hover { background: rgba(255,255,255,0.06); color: #fff; }

.team-modal-head {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.team-modal-head .name { font-size: 22px; font-weight: 800; }
.team-modal-head .sub { font-size: 12px; color: #8a8fa3; letter-spacing: 1px; }

.modal-section { margin-bottom: 18px; }
.modal-section h4 {
  font-size: 10px; letter-spacing: 2px; font-weight: 700; text-transform: uppercase;
  color: #8a8fa3; margin: 0 0 8px;
}

.season-stats-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  font-size: 12px;
}
.season-stats-grid .lbl {
  text-align: center; color: #8a8fa3; font-size: 10px; letter-spacing: 1px;
}
.season-stats-grid .val {
  text-align: center; font-weight: 700; font-variant-numeric: tabular-nums;
}
.season-stats-grid .val.pts { color: #ff8ec0; }

.form-strip { display: flex; gap: 4px; }
.form-strip span {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 5px;
  font-size: 11px; font-weight: 800;
  color: #fff;
}
.form-strip .W { background: #16a34a; }
.form-strip .D { background: #6b7280; }
.form-strip .L { background: #dc2626; }

.modal-roster .player-row {
  cursor: pointer;
  border-radius: 6px;
  padding: 5px 8px;
}
.modal-roster .player-row:hover {
  background: rgba(255,255,255,0.04);
}
.modal-roster .stat-line {
  font-size: 10px;
  color: #6f7488;
  letter-spacing: 0.5px;
}
.modal-roster .stat-line .g { color: #4ade80; }
.modal-roster .stat-line .y { color: #fbbf24; }
.modal-roster .stat-line .r { color: #ef4444; }

.player-modal-head {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.player-modal-head .big-avatar { width: 80px; height: 80px; border-radius: 50%; }
.player-modal-head .name { font-size: 22px; font-weight: 800; }
.player-modal-head .role-team { font-size: 13px; color: #8a8fa3; }
.player-modal-head .ovr-big {
  margin-left: auto;
  font-size: 28px; font-weight: 800;
  padding: 8px 16px;
  border-radius: 8px;
}

.attr-row {
  display: grid;
  grid-template-columns: 100px 1fr 30px;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  font-size: 12px;
}
.attr-row .lbl { color: #8a8fa3; letter-spacing: 1px; font-weight: 600; font-size: 10px; text-transform: uppercase; }
.attr-row .bar { height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.attr-row .bar-fill { height: 100%; }
.attr-row .val { text-align: right; font-weight: 700; font-variant-numeric: tabular-nums; }

.career-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  text-align: center;
}
.career-stats .stat-card {
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 10px;
}
.career-stats .stat-card .v {
  font-size: 22px; font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.bet-stat {
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  padding: 10px;
  text-align: center;
}
.bet-stat .v { font-size: 20px; font-weight: 800; font-variant-numeric: tabular-nums; }
.bet-stat .l { font-size: 9px; color: #8a8fa3; letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }

.bet-section-title {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  color: #8a8fa3;
  margin: 14px 0 8px;
}

.bet-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 6px;
}
.bet-card-row1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.bet-teams { font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.bet-status { font-size: 11px; font-weight: 800; letter-spacing: 0.5px; }
.bet-card-row2 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  color: #b8bdcf;
}
.bet-pick strong { color: #d6c4ff; }
.bet-stake { font-weight: 700; font-variant-numeric: tabular-nums; }
.bet-card-row3 {
  font-size: 10px;
  color: #6f7488;
  margin-top: 4px;
  letter-spacing: 0.3px;
}

.career-stats .stat-card .l {
  font-size: 10px;
  color: #8a8fa3;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-footer {
  margin-top: 14px;
  padding: 28px 32px 32px;
  background: linear-gradient(180deg, #14172a 0%, #0e1020 100%);
  border-radius: 12px;
  color: #cfd2dc;
}
.site-footer .about { max-width: 820px; }
.site-footer h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 14px;
  background: linear-gradient(90deg, #ff5fa2, #b65cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.site-footer h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b65cff;
  margin: 22px 0 8px;
}
.site-footer p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 12px;
  color: #cfd2dc;
}
.site-footer ul {
  margin: 0;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.7;
  color: #cfd2dc;
}
.site-footer ul li::marker { color: #b65cff; }
.site-footer .chain-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.site-footer .chain-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
}
.site-footer .chain-row.live { border-color: rgba(251,191,36,0.3); }
.site-footer .chain-row.planned { opacity: 0.6; }
.site-footer .chain-tag {
  font-size: 9px;
  letter-spacing: 1px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.site-footer .chain-tag.testnet { background: rgba(251,191,36,0.15); color: #fbbf24; }
.site-footer .chain-tag.soon { background: rgba(255,255,255,0.06); color: #8a8fa3; }
.site-footer .chain-name { font-weight: 700; min-width: 140px; }
.site-footer .chain-meta { color: #8a8fa3; font-size: 12px; }
.site-footer .chain-meta code {
  background: rgba(255,255,255,0.05);
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 11px;
}
.site-footer .chain-meta a { color: #b65cff; text-decoration: none; }
.site-footer .chain-meta a:hover { text-decoration: underline; }

.site-footer .disclaimer {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: #8a8fa3;
}

.section-divider {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #6f7488;
  text-transform: uppercase;
  padding: 8px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 8px;
}
.section-divider:first-child { border-top: none; margin-top: 0; padding-top: 0; }

.fixture-row {
  display: grid;
  grid-template-columns: 40px 1fr 44px;
  align-items: center;
  column-gap: 10px;
  row-gap: 6px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
}
.fixture-row:last-child { border-bottom: none; }
.fixture-row.live { background: rgba(255,95,162,0.08); border-radius: 6px; padding: 7px 8px; margin: 0 -8px; }
.fixture-row.next { border-left: 2px solid #b65cff; padding-left: 6px; }
.fixture-row .rd {
  font-size: 10px;
  color: #6f7488;
  letter-spacing: 1px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.fixture-row .matchup {
  display: grid;
  grid-template-columns: 1fr 24px 1fr;
  gap: 6px;
  align-items: center;
  font-size: 12px;
}
.fixture-row .matchup .h, .fixture-row .matchup .a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
}
.fixture-row .matchup .h { justify-content: flex-end; }
.fixture-row .matchup .a { justify-content: flex-start; flex-direction: row-reverse; }
.fixture-row .matchup .vs {
  opacity: 0.4;
  font-size: 10px;
  text-align: center;
  font-weight: 600;
}
.fixture-row .when {
  font-size: 10px;
  color: #8a8fa3;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-align: right;
}
.fixture-row .rd {
  font-size: 11px;
  color: #b8bdcf;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.fixture-odds {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  margin-top: 4px;
}
.odd-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: #e7e9ee;
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  text-align: center;
  transition: all .12s;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.odd-btn:hover { background: rgba(180,120,255,0.14); border-color: rgba(180,120,255,0.5); }
.odd-btn.disabled { opacity: 0.4; cursor: not-allowed; }
.odd-btn .lbl { font-size: 9px; color: #8a8fa3; letter-spacing: 1px; font-weight: 600; }
.odd-btn.sel { background: rgba(180,120,255,0.18); border-color: rgba(180,120,255,0.6); }

.market-tab {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: #8a8fa3;
  font-weight: 600;
  font-size: 11px;
  padding: 7px;
  border-radius: 6px;
  cursor: pointer;
  transition: all .12s;
}
.market-tab:hover { background: rgba(255,255,255,0.06); color: #fff; }
.market-tab.active {
  background: linear-gradient(90deg, #ff5fa2, #b65cff);
  color: #fff;
  border-color: transparent;
}
.fixture-row.live .when { color: #ff8ec0; font-weight: 600; }
.fixture-row.next .when { color: #b65cff; font-weight: 600; }

.round-header {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  color: #8a8fa3;
  padding: 10px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 6px;
}
.round-header:first-child { border-top: none; padding-top: 4px; margin-top: 0; }

.roster-team-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 6px;
}
.roster-team-head .rt-dot {
  width: 14px; height: 14px; border-radius: 50%;
}
.roster-team-head .rt-name {
  font-weight: 700;
  font-size: 14px;
}
.roster-team-head .rt-ovr {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,0.06);
  padding: 2px 8px;
  border-radius: 4px;
}

.player-row.off { opacity: 0.4; text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.3); }
.player-row .stamina-mini {
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  margin-top: 3px;
  overflow: hidden;
}
.player-row .stamina-mini-fill {
  height: 100%;
}
