@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=ZCOOL+KuaiLe&display=swap');

:root {
  --bg: #f0f4f8;
  --bg-deep: #dde8e2;
  --text: #0d1f18;
  --muted: #52715e;
  --primary: #0d9488;
  --primary-dark: #0f766e;
  --primary-light: #ccfbf1;
  --accent: #f59e0b;
  --accent-light: #fef3c7;
  --danger: #dc2626;
  --danger-light: #fee2e2;
  --success: #16a34a;
  --success-light: #dcfce7;
  --info: #0ea5e9;
  --info-light: #e0f2fe;
  --card: rgba(255, 255, 255, 0.85);
  --border: rgba(13, 31, 24, 0.10);
  --border-strong: rgba(13, 31, 24, 0.18);
  --shadow-sm: 0 2px 8px rgba(13, 118, 110, 0.08);
  --shadow: 0 8px 32px rgba(13, 118, 110, 0.13);
  --shadow-lg: 0 20px 60px rgba(13, 118, 110, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Outfit', 'PingFang SC', 'Microsoft YaHei', 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse at 5% 5%, #fef3c7 0, transparent 40%),
    radial-gradient(ellipse at 90% 10%, #cffafe 0, transparent 35%),
    radial-gradient(ellipse at 50% 95%, #d1fae5 0, transparent 45%),
    linear-gradient(150deg, #f0f9ff 0%, var(--bg) 50%, var(--bg-deep) 100%);
  min-height: 100vh;
}

h1, h2, h3 { margin: 0; }
p { margin: 0; }

/* ── Container ── */
.container {
  width: min(1240px, 94vw);
  margin: 0 auto;
  padding: 28px 0 56px;
}

/* ── Glass Card ── */
.glass {
  background: var(--card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

/* ── Typography ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--primary-dark);
  text-transform: uppercase;
  background: var(--primary-light);
  padding: 3px 10px;
  border-radius: 99px;
}

.subtitle {
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary) 0%, #0891b2 100%);
  color: #fff;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.18s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.30);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.38);
  filter: brightness(1.06);
}

.btn:active {
  transform: translateY(0);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none;
  box-shadow: none;
}

.btn.ghost {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.btn.ghost:hover {
  background: var(--bg);
  border-color: var(--primary);
  color: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(13, 118, 110, 0.12);
}

.btn.danger {
  background: linear-gradient(135deg, var(--danger), #b91c1c);
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.28);
  color: #fff;
}

.btn.danger:hover {
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.36);
  color: #fff;
}

.btn.small {
  padding: 6px 12px;
  font-size: 0.84rem;
  border-radius: 8px;
}

.btn.accent {
  background: linear-gradient(135deg, var(--accent), #d97706);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.32);
  color: #fff;
}

/* ── Inputs ── */
input, select, textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

input::placeholder {
  color: #9ca3af;
}

/* ── Table ── */
table {
  width: 100%;
  border-collapse: collapse;
}

thead tr {
  background: rgba(13, 148, 136, 0.04);
}

th, td {
  border-bottom: 1px solid rgba(13, 31, 24, 0.07);
  text-align: left;
  padding: 11px 10px;
  vertical-align: middle;
  font-size: 0.92rem;
}

th {
  color: var(--primary-dark);
  font-size: 0.80rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

tbody tr {
  transition: background 0.12s;
}

tbody tr:hover {
  background: rgba(13, 148, 136, 0.04);
}

.table-wrap {
  overflow: auto;
  border-radius: var(--radius-sm);
}

/* ── Utilities ── */
.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── Status Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 99px;
}

.badge.success { background: var(--success-light); color: var(--success); }
.badge.danger  { background: var(--danger-light);  color: var(--danger); }
.badge.warning { background: var(--accent-light);  color: #92400e; }
.badge.info    { background: var(--info-light);    color: #0369a1; }

/* ── Auth Gate (Player) ── */
.locked-view {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
  transition: filter 0.3s;
}

.auth-gate {
  position: fixed;
  inset: 0;
  background: rgba(5, 20, 14, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  z-index: 99;
  padding: 16px;
  animation: fadeIn 0.25s ease;
}

.auth-gate.hidden {
  display: none;
}

.auth-card {
  width: min(480px, 96vw);
  padding: 32px;
  display: grid;
  gap: 16px;
  animation: slideUp 0.28s ease;
}

.auth-card h2 {
  font-size: 1.55rem;
  font-weight: 800;
}

.auth-card .auth-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: -6px;
}

.auth-form {
  display: flex;
  gap: 10px;
}

.auth-form input {
  flex: 1;
}

/* ── Player Layout ── */
.play-layout {
  display: grid;
  gap: 20px;
}

.hero {
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.08) 0%, rgba(8, 145, 178, 0.06) 100%);
}

.hero::before {
  content: '⚽';
  position: absolute;
  right: -10px;
  top: -20px;
  font-size: 9rem;
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero h1 {
  margin-top: 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  font-family: 'ZCOOL KuaiLe', cursive;
  color: var(--text);
  line-height: 1.2;
}

.employee-badge {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 16px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  width: fit-content;
}

.employee-badge p {
  font-size: 0.95rem;
  color: var(--primary-dark);
}

/* ── Matches Panel ── */
.matches-panel {
  padding-bottom: 10px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 2px;
}

.panel-head h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.match-card {
  padding: 20px;
  display: grid;
  gap: 14px;
  transition: transform 0.18s, box-shadow 0.18s;
}

.match-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.match-card.locked {
  background: rgba(248, 250, 252, 0.9);
}

.match-card.locked .predict-form {
  opacity: 0.5;
  pointer-events: none;
}

.match-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.time {
  color: var(--muted);
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.lock-text {
  font-size: 0.84rem;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
}

.lock-text.is-locked {
  background: var(--danger-light);
  color: var(--danger);
}

.lock-text.is-open {
  background: var(--success-light);
  color: var(--success);
}

.teams {
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.02em;
  padding: 6px 0;
}

.predict-form {
  display: grid;
  gap: 12px;
}

/* ── Winner Pick ── */
.winner-row {
  display: grid;
  gap: 8px;
}

.winner-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.score-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.winner-options {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
}

.winner-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
  transition: all 0.15s;
  background: #fff;
  user-select: none;
}

.winner-btn input[type="radio"] {
  display: none;
  width: auto;
}

.winner-btn:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
  box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.18);
}

.winner-btn:hover:not(:has(input:disabled)) {
  border-color: var(--primary);
  background: rgba(13, 148, 136, 0.06);
}

.winner-btn:has(input:disabled) {
  cursor: not-allowed;
  opacity: 0.6;
}

.score-row {
  display: grid;
  grid-template-columns: 1fr 36px 1fr;
  gap: 8px;
  align-items: end;
}

.score-row label {
  display: grid;
  gap: 5px;
}

.score-row label span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

.score-row input {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  padding: 8px 4px;
  border-radius: 10px;
}

.colon {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  text-align: center;
  padding-bottom: 6px;
  line-height: 1;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-row .status {
  font-weight: 600;
  color: var(--success);
}

.meta-row .status.no-pred {
  color: var(--muted);
}

.meta-row .points {
  color: var(--accent);
  font-weight: 700;
}

/* ── Result Panel ── */
.result-panel {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  display: grid;
  gap: 6px;
  font-size: 0.86rem;
}

.result-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.rp-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 52px;
}

.rp-value {
  font-weight: 600;
}

.rp-submitted  { color: var(--primary); }
.rp-missing    { color: var(--muted); font-style: italic; }
.rp-published  { color: var(--text); }
.rp-pending    { color: var(--muted); font-style: italic; }
.rp-score-tag  { background: var(--primary-light); color: var(--primary-dark); padding: 1px 6px; border-radius: 4px; font-weight: 700; }
.rp-pts-pos    { color: var(--success); font-weight: 800; margin-left: auto; }
.rp-pts-zero   { color: var(--muted);   font-weight: 600; margin-left: auto; }

.empty {
  padding: 32px;
  text-align: center;
  color: var(--muted);
}

/* ── Background Orbs ── */
.bg-orbs .orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

.orb-a { background: #fb923c; width: 380px; height: 380px; top: -120px; left: -120px; }
.orb-b { background: #06b6d4; width: 320px; height: 320px; right: -100px; top: 15%; }
.orb-c { background: #34d399; width: 360px; height: 360px; left: 15%; bottom: -140px; }

/* ── Tabs ── */
.tabs-wrap {
  overflow: hidden;
}

.tab-bar {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 0 8px;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  background: rgba(13, 148, 136, 0.03);
}

.tab-bar::-webkit-scrollbar { display: none; }

.tab-btn {
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
  border-radius: 0;
}

.tab-btn:hover {
  color: var(--primary-dark);
}

.tab-btn.active {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

.tab-panel {
  display: none;
  padding: 24px;
  animation: fadeIn 0.18s ease;
}

.tab-panel.active {
  display: block;
}

/* ── Admin layout: remove gap now that sections are in tabs ── */
.admin-layout {
  display: grid;
  gap: 20px;
}

/* ── Block head inside tab panels (no top border needed) ── */
.tab-panel > .block-head {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.admin-header {
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.07) 0%, rgba(8, 145, 178, 0.05) 100%);
}

.admin-header-info h1 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-top: 8px;
}

.admin-header-info .subtitle {
  margin-top: 6px;
  max-width: 460px;
}

.admin-header-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  flex-shrink: 0;
}

.qr-wrap {
  text-align: center;
  font-size: 0.86rem;
  color: var(--muted);
}

.qr-wrap img {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  display: block;
  margin: 0 auto 6px;
}

.qr-url-form {
  display: grid;
  gap: 6px;
  margin-top: 6px;
  text-align: left;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* ── Block ── */
.block {
  padding: 24px;
}

.block-head {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.block-head h2 {
  font-size: 1.1rem;
  font-weight: 700;
}

.block-head.spread {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

/* ── Forms ── */
.inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  align-items: flex-end;
}

.inline-form input {
  flex: 1;
  min-width: 120px;
}

.inline-mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.inline-mini input {
  width: 68px;
  text-align: center;
  padding: 7px 4px;
  font-weight: 700;
}

.stack-form {
  display: grid;
  gap: 8px;
}

.actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Leaderboard ── */
.rank-1 td:first-child::before { content: '🥇 '; }
.rank-2 td:first-child::before { content: '🥈 '; }
.rank-3 td:first-child::before { content: '🥉 '; }
.rank-1 { background: rgba(245, 158, 11, 0.06); }
.rank-2 { background: rgba(148, 163, 184, 0.06); }
.rank-3 { background: rgba(180, 120, 80, 0.06); }
.score-highlight { font-size: 1.05rem; font-weight: 800; color: var(--primary-dark); }

/* ── Status Matrix ── */
/* ── Status Matrix ── */
.status-matrix-wrap {
  overflow: auto;
  max-height: 60vh;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.status-matrix td,
.status-matrix th {
  white-space: nowrap;
}

/* Sticky employee-no column */
.status-matrix th:first-child,
.status-matrix td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #fff;
  border-right: 1.5px solid var(--border);
  box-shadow: 2px 0 6px rgba(13, 31, 24, 0.06);
}

.status-matrix thead th:first-child {
  background: rgba(13, 148, 136, 0.06);
  z-index: 3;
}

.cell-submitted { color: var(--success); font-weight: 600; }
.cell-missing   { color: var(--muted); font-size: 0.82rem; }

/* ── Modal ── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(5, 20, 14, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 16px;
  animation: fadeIn 0.22s ease;
}

.modal.hidden {
  display: none;
}

.modal-card {
  width: min(900px, 96vw);
  max-height: 88vh;
  overflow: auto;
  padding: 28px;
  animation: slideUp 0.25s ease;
}

.excel-grid-wrap {
  max-height: 380px;
  overflow: auto;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.excel-grid {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  font-size: 0.84rem;
}

.excel-grid thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #e8f0fe;
  border: 1px solid #bbb;
  padding: 5px 10px;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}

.excel-grid .row-num {
  width: 36px;
  min-width: 36px;
  text-align: center;
  color: #888;
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  font-size: 0.75rem;
  user-select: none;
  padding: 0;
}

.excel-grid td[contenteditable] {
  border: 1px solid #d1d5db;
  padding: 3px 6px;
  height: 26px;
  outline: none;
  white-space: nowrap;
  overflow: hidden;
  cursor: text;
}

.excel-grid td[contenteditable]:focus {
  border: 2px solid #1a73e8;
  background: #fff;
  z-index: 1;
  position: relative;
}

/* ── Admin Login ── */
.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
}

.login-card {
  width: min(440px, 100%);
  padding: 40px 36px;
  display: grid;
  gap: 20px;
  animation: slideUp 0.3s ease;
}

.login-card .login-icon {
  font-size: 3.5rem;
  text-align: center;
}

.login-card h1 {
  font-size: 1.75rem;
  font-weight: 800;
  text-align: center;
  margin-top: -6px;
}

.login-card .subtitle {
  text-align: center;
}

.login-field {
  display: grid;
  gap: 6px;
}

.login-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.error-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--danger-light);
  color: var(--danger);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ── Message bar ── */
.message-bar {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-left: 3px solid var(--primary);
}

/* ── Animations ── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 760px) {
  .container { width: 100%; padding-left: 0; padding-right: 0; }
  .hero { padding: 20px 16px; }
  .admin-header { flex-direction: column; padding: 20px; }
  .admin-header-actions { align-items: flex-start; }
  .block { padding: 16px; }
  .tab-panel { padding: 16px; }

  .employee-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }

  .auth-form {
    flex-direction: column;
  }

  .auth-form .btn {
    width: 100%;
    padding: 14px;
  }

  .auth-card {
    padding: 24px 20px;
  }

  .auth-card h2 {
    font-size: 1.25rem;
  }

  .block-head.spread {
    flex-direction: column;
    align-items: flex-start;
  }

  /* ── Match cards: single column ── */
  .match-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .match-card {
    padding: 16px 14px;
  }

  .match-top {
    flex-wrap: wrap;
    gap: 6px;
  }

  .teams {
    font-size: 1.05rem;
    text-align: center;
  }

  /* ── Winner pick buttons: 48px touch target ── */
  .winner-btn {
    min-height: 48px;
    font-size: 0.95rem;
    padding: 12px 6px;
  }

  /* ── Score inputs: ≥16px prevents iOS zoom ── */
  .score-row {
    grid-template-columns: 1fr 32px 1fr;
    gap: 6px;
  }

  .score-row input {
    font-size: 1.6rem;
    padding: 10px 4px;
  }

  .score-row label span {
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .colon {
    font-size: 1.6rem;
    padding-bottom: 8px;
  }

  /* ── Submit button: full width ── */
  .predict-form > .btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
  }

  /* ── Meta row: stack on small screens ── */
  .meta-row {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }

  /* ── Hero ── */
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero::before {
    font-size: 6rem;
    right: -6px;
    top: -14px;
  }

  /* ── Panels ── */
  .panel-head {
    padding: 0 2px;
    margin-bottom: 12px;
  }

  .matches-panel {
    padding: 0 12px 16px;
  }

  .play-layout {
    gap: 14px;
    padding-bottom: 32px;
  }
}
