:root {
  color-scheme: dark;
  --surface: rgba(12, 19, 31, 0.88);
  --surface-strong: rgba(18, 27, 43, 0.94);
  --panel: rgba(255, 255, 255, 0.04);
  --line: rgba(188, 204, 225, 0.12);
  --line-strong: rgba(218, 228, 241, 0.18);
  --text: #f4f7fb;
  --muted: #a5b1c4;
  --soft: #70809a;
  --gold: #d7bb83;
  --blue: #6f8fda;
  --orange: #d89a64;
  --gray-tag: #7f8998;
  --radius: 18px;
  --radius-sm: 12px;
  --sans: "Segoe UI Variable", "Segoe UI", "Microsoft YaHei UI", sans-serif;
  --tab-h: 56px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

[hidden] {
  display: none !important;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  background:
    radial-gradient(circle at 10% 0%, rgba(87, 216, 208, 0.16), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(214, 181, 109, 0.15), transparent 28%),
    linear-gradient(180deg, #040910 0%, #07111d 28%, #0b1320 100%);
  color: var(--text);
  overscroll-behavior: none;
}

button,
input {
  font: inherit;
}

.auth-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
}

.auth-card {
  width: min(100%, 420px);
  padding: 22px 18px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 29, 46, 0.94), rgba(10, 18, 30, 0.98));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.auth-brand {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 8px;
}

.auth-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.auth-copy {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 18px;
}

.auth-tab,
.auth-submit,
.user-chip {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.auth-tab {
  height: 40px;
  color: var(--muted);
}

.auth-tab.active {
  color: var(--gold);
  border-color: rgba(214, 181, 109, 0.28);
  background: rgba(214, 181, 109, 0.08);
}

.auth-form {
  display: none;
  margin-top: 14px;
}

.auth-form.active {
  display: block;
}

.auth-field {
  display: block;
  margin-bottom: 12px;
}

.auth-field span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
}

.auth-field input {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
}

.auth-field input::placeholder {
  color: rgba(165, 177, 196, 0.6);
}

.auth-error {
  min-height: 18px;
  margin: 2px 0 10px;
  color: #ffb88c;
  font-size: 12px;
}

.auth-submit {
  width: 100%;
  height: 42px;
  background: linear-gradient(90deg, rgba(111, 143, 218, 0.88), rgba(111, 143, 218, 0.62));
  border-color: rgba(111, 143, 218, 0.28);
  font-weight: 700;
}

.shell {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 12px 14px 0;
  overflow: hidden;
  min-height: 100vh;
}

.ambient {
  position: fixed;
  width: 180px;
  height: 180px;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.55;
}

.ambient-a {
  left: -60px;
  top: -60px;
  background: radial-gradient(circle, rgba(87, 216, 208, 0.22) 0%, rgba(87, 216, 208, 0.02) 70%, transparent 100%);
}

.ambient-b {
  right: -80px;
  bottom: -60px;
  background: radial-gradient(circle, rgba(214, 181, 109, 0.2) 0%, rgba(214, 181, 109, 0.02) 66%, transparent 100%);
}

.hero {
  padding: 4px 4px 10px;
}

.hero-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.user-chip {
  height: 34px;
  padding: 0 12px;
  color: var(--muted);
}

.summary-strip {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.summary-item {
  text-align: center;
}

.summary-item .s-label {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.summary-item .s-value {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.summary-item .s-value.positive {
  color: var(--green);
}

.summary-item .s-value.negative {
  color: var(--red);
}

.tab-contents {
  padding-bottom: calc(var(--tab-h) + var(--safe-bottom) + 16px);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(var(--tab-h) + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  display: flex;
  background: rgba(8, 14, 24, 0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
  z-index: 100;
}

.tab-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  color: var(--soft);
  font-size: 12px;
  font-family: var(--sans);
  cursor: pointer;
  transition: color 160ms ease;
  padding: 0;
  gap: 4px;
}

.tab-item.active {
  color: var(--gold);
  border-top: 2px solid var(--gold);
}

.date-group {
  margin-bottom: 16px;
}

.group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.group-header .group-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.group-header .group-count {
  font-size: 11px;
  color: var(--soft);
  margin-left: 12px;
}

.group-header .group-arrow {
  color: var(--soft);
  font-size: 10px;
  transition: transform 200ms ease;
}

.group-header.collapsed .group-arrow {
  transform: rotate(-90deg);
}

.group-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.group-body.collapsed {
  max-height: 0 !important;
}

.match-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(17, 28, 44, 0.96), rgba(11, 19, 32, 0.98)),
    rgba(9, 14, 23, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  padding: 18px 16px 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  cursor: pointer;
}

.match-card:active {
  border-color: rgba(111, 143, 218, 0.35);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.match-header.enhanced {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.event-meta {
  min-width: 0;
}

.event-title {
  color: var(--gold);
  font-size: 13px;
  line-height: 1.3;
}

.event-subline {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.event-time {
  text-align: right;
  flex-shrink: 0;
}

.match-stage {
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  margin-top: 3px;
}

.match-time {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.match-countdown {
  margin-top: 6px;
  color: var(--soft);
  font-size: 11px;
}

.match-body.enhanced {
  padding: 2px 0 14px;
}

.match-core {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.team-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.team-flag {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.24));
}

.team-flag-image {
  width: 26px;
  height: 26px;
  object-fit: cover;
  border-radius: 999px;
  display: block;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
}

.team-flag-emoji {
  font-size: 22px;
  line-height: 1;
}

.match-core .team-name {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.team-panel.eliminated .team-name,
.team-panel.eliminated .team-flag {
  opacity: 0.48;
}

.team-panel.winner .team-name {
  color: #fff4d9;
}

.match-core-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 52px;
  flex-shrink: 0;
}

.match-vs {
  color: var(--soft);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.team-panel.home {
  align-items: flex-end;
  text-align: right;
}

.team-panel.away {
  align-items: flex-start;
  text-align: left;
}

.match-score-band {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
}

.match-score-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.match-score {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  color: var(--text);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.match-score-caption {
  font-size: 11px;
  color: var(--muted);
}

.result-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.result-pill.draw {
  background: rgba(127, 137, 152, 0.18);
  color: #d7dce5;
  border-color: rgba(161, 170, 183, 0.28);
}

.result-pill.home-win {
  background: rgba(111, 143, 218, 0.2);
  color: #dbe6ff;
  border-color: rgba(111, 143, 218, 0.36);
}

.result-pill.away-win {
  background: rgba(216, 154, 100, 0.2);
  color: #ffe4cf;
  border-color: rgba(216, 154, 100, 0.34);
}

.result-pill.scheduled {
  background: rgba(127, 137, 152, 0.16);
  color: #d3dae5;
  border-color: rgba(160, 170, 183, 0.24);
}

.result-pill.resolved {
  background: rgba(214, 181, 109, 0.12);
  color: var(--gold);
  border-color: rgba(214, 181, 109, 0.3);
}

.match-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.action-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-height: 72px;
  padding: 10px 10px 8px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.action-head {
  display: flex;
  align-items: center;
  gap: 6px;
}

.action-card.active {
  border-color: rgba(111, 143, 218, 0.36);
  background:
    linear-gradient(180deg, rgba(111, 143, 218, 0.14), rgba(111, 143, 218, 0.04)),
    rgba(255, 255, 255, 0.02);
}

.action-card.muted {
  opacity: 0.9;
}

.action-icon {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.48);
}

.action-card.active .action-icon {
  color: var(--blue);
}

.action-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.action-label {
  font-size: 10px;
  color: var(--muted);
}

.action-value {
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.action-card.muted .action-value {
  color: rgba(244, 247, 251, 0.92);
}

.action-hint {
  font-size: 10px;
  color: var(--soft);
}

.action-accent {
  margin-top: auto;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.action-card.active .action-accent {
  background: linear-gradient(90deg, var(--blue), rgba(111, 143, 218, 0.2));
}

.match-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.bottom-sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
  z-index: 200;
}

.bottom-sheet-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65vh;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(180deg, rgba(14, 22, 36, 0.98), rgba(8, 14, 24, 0.99));
  border-top: 1px solid var(--line-strong);
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 201;
  display: flex;
  flex-direction: column;
  overscroll-behavior: contain;
}

.bottom-sheet.open {
  transform: translateY(0);
}

.drag-handle {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: var(--line-strong);
  margin: 10px auto 6px;
  flex-shrink: 0;
  cursor: grab;
}

.bottom-sheet-content {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 16px 24px;
}

.sheet-match-body {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.sheet-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.sheet-versus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
}

.sheet-versus .team-name {
  font-size: 22px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sheet-result-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sheet-match-body .match-vs {
  font-size: 20px;
}

.sheet-match-body .match-score {
  font-size: 28px;
}

.sheet-match-body .match-subtext {
  font-size: 14px;
}

.sheet-match-body .result-pill {
  height: 22px;
  font-size: 11px;
  min-width: 40px;
}

.sheet-match-info {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.sheet-match-info .winner-info {
  margin-top: 4px;
  color: var(--gold);
}

.detail-block {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.detail-block:last-child {
  border-bottom: 0;
}

.detail-block h3 {
  margin: 0 0 10px;
  font-size: 14px;
}

.detail-grid {
  display: grid;
  gap: 8px;
}

.detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
}

.detail-row .label {
  color: var(--muted);
}

.detail-row .value {
  color: var(--text);
  text-align: right;
}

.detail-row .value strong {
  color: #f3e7c9;
}

.reason-box {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 10px;
}

.reason-main {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text);
}

.reason-meta {
  margin-top: 6px;
  font-size: 11px;
  color: var(--soft);
}

.mini-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.mini-tag.gold {
  border-color: rgba(214, 181, 109, 0.3);
  color: #e5c98b;
  background: rgba(214, 181, 109, 0.08);
}

.sheet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.overview-card {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(18, 29, 46, 0.88), rgba(10, 19, 31, 0.92));
}

.overview-label {
  color: var(--muted);
  font-size: 11px;
}

.overview-value {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 700;
}

.finance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.finance-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(19, 31, 49, 0.88), rgba(12, 22, 35, 0.9));
}

.finance-card .f-label {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.finance-card .f-value {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.finance-card .f-value.positive {
  color: var(--green);
}

.finance-card .f-value.negative {
  color: var(--red);
}

.strategy-status {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.strategy-status h3 {
  margin: 0 0 10px;
  font-size: 14px;
}

.betting-summary-card {
  padding: 14px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(18, 29, 46, 0.88), rgba(11, 19, 31, 0.94));
}

.betting-summary-card.compact {
  padding: 12px 12px 10px;
}

.betting-summary-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.betting-summary-date {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.betting-summary-count {
  margin-top: 4px;
  font-size: 11px;
  color: var(--muted);
}

.betting-summary-stake {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.betting-table {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.025);
}

.betting-table-head,
.betting-table-row {
  display: grid;
  grid-template-columns: minmax(0, 4.4fr) minmax(36px, 0.82fr) minmax(34px, 0.8fr) minmax(46px, 0.88fr) minmax(34px, 0.8fr) minmax(44px, 0.9fr);
  gap: 4px;
  align-items: center;
  padding: 8px 8px;
}

.betting-table-head {
  font-size: 10px;
  color: var(--soft);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}

.betting-table-row {
  font-size: 11px;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.betting-table-row:last-child {
  border-bottom: 0;
}

.betting-table-head span:not(:first-child),
.betting-table-row span:not(:first-child) {
  text-align: center;
}

.schedule-cell {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 10.5px;
  letter-spacing: 0;
}

@media (max-width: 380px) {
  .betting-table-head,
  .betting-table-row {
    grid-template-columns: minmax(0, 4.7fr) minmax(30px, 0.7fr) minmax(30px, 0.7fr) minmax(40px, 0.75fr) minmax(30px, 0.7fr) minmax(40px, 0.8fr);
    gap: 3px;
    padding: 8px 6px;
  }

  .betting-table-head {
    font-size: 9px;
  }

  .betting-table-row,
  .schedule-cell {
    font-size: 10px;
  }
}

.status-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.status-row:last-child {
  border-bottom: 0;
}

.status-row .label {
  color: var(--muted);
}

.status-row .value {
  color: var(--text);
}

.betting-empty {
  padding: 40px 16px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.error-state {
  padding: 18px;
  border-radius: 14px;
  background: rgba(239, 118, 122, 0.08);
  border: 1px solid rgba(239, 118, 122, 0.35);
  color: #f0b3b5;
  line-height: 1.6;
  font-size: 13px;
}

.admin-shell {
  padding-bottom: 24px;
}

.admin-panel {
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(18, 29, 46, 0.88), rgba(11, 19, 31, 0.94));
}

.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.admin-head h2 {
  margin: 0;
  font-size: 15px;
}

.admin-meta,
.admin-mode {
  color: var(--muted);
  font-size: 12px;
}

.admin-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.admin-card {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 10px;
}

.admin-card.compact {
  padding: 10px 12px;
}

.admin-card:last-child {
  margin-bottom: 0;
}

.admin-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.admin-card-head strong {
  font-size: 14px;
}

.approve-btn {
  width: auto;
  min-width: 72px;
  height: 34px;
  padding: 0 14px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
}

.admin-grid span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
}

.admin-grid strong {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  word-break: break-all;
}

.admin-empty {
  padding: 18px 8px;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

@media (min-width: 768px) {
  .shell {
    max-width: 720px;
    margin: 0 auto;
    padding: 20px 24px 0;
  }

  .hero h1 {
    font-size: 28px;
  }

  .match-card {
    padding: 16px 20px;
  }

  .team-name {
    font-size: 18px;
  }

  .match-score {
    font-size: 24px;
  }

  .summary-strip {
    border-radius: var(--radius);
  }

  .finance-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .overview-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
