:root {
  --bg-top: #101828;
  --bg-bottom: #efe4d4;
  --paper: rgba(255, 251, 244, 0.78);
  --paper-strong: #fffaf2;
  --ink: #162235;
  --ink-soft: rgba(22, 34, 53, 0.68);
  --line: rgba(22, 34, 53, 0.1);
  --line-strong: rgba(22, 34, 53, 0.16);
  --warm: #f2a13d;
  --warm-deep: #be5a30;
  --rose: #b94a3a;
  --sage: #5f7267;
  --cool: #6b88a5;
  --navy: #11233c;
  --shadow: 0 28px 70px rgba(15, 24, 40, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Aptos", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 15% 12%, rgba(242, 161, 61, 0.18), transparent 22%),
    radial-gradient(circle at 85% 9%, rgba(255, 226, 182, 0.17), transparent 18%),
    radial-gradient(circle at 50% 32%, rgba(185, 74, 58, 0.08), transparent 30%),
    linear-gradient(180deg, var(--bg-top) 0 28rem, var(--bg-bottom) 28rem 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 70%);
}

.app-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 26px 18px 64px;
}

.project-menu {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.project-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 250, 242, 0.34);
  border-radius: 999px;
  color: #fffaf2;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  background: rgba(255, 250, 242, 0.12);
  backdrop-filter: blur(12px);
}

.project-menu a.active {
  color: var(--navy);
  border-color: rgba(242, 161, 61, 0.42);
  background: linear-gradient(120deg, #ffe4b5, var(--warm), #e9783f);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Georgia", "Noto Serif SC", "Songti SC", serif;
  letter-spacing: -0.02em;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.9fr);
  gap: 18px;
  align-items: start;
}

.hero-card,
.info-card,
.panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  color: #fff7ee;
  background:
    radial-gradient(circle at top right, rgba(255, 214, 153, 0.18), transparent 26%),
    linear-gradient(155deg, #10203a 0%, #163457 60%, #1c3f67 100%);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -14% -28% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 226, 190, 0.28), rgba(255, 226, 190, 0));
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 0 46%, rgba(255, 255, 255, 0.035) 46% 52%, transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-topline,
.panel-title-row,
.pick-card-head,
.latest-draw-head,
.score-line,
.draw-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.eyebrow,
.section-kicker,
.pick-kicker,
.pulse-eyebrow,
.mini-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 700;
}

.eyebrow {
  color: rgba(255, 247, 238, 0.7);
}

.eyebrow.dark,
.section-kicker,
.pick-kicker,
.pulse-eyebrow,
.mini-label {
  color: rgba(22, 34, 53, 0.52);
}

.hero-pill,
.badge,
.ghost-pill,
.pick-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-pill {
  color: #ffe9c8;
  background: rgba(255, 247, 238, 0.1);
  border: 1px solid rgba(255, 247, 238, 0.14);
}

h1 {
  margin-top: 14px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.98;
  max-width: 8ch;
}

.hero-copy {
  margin-top: 16px;
  max-width: 40ch;
  line-height: 1.72;
  color: rgba(255, 247, 238, 0.82);
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease;
}

button:hover {
  transform: translateY(-1px);
}

button:disabled {
  opacity: 0.62;
  transform: none;
  cursor: wait;
}

.primary {
  background: linear-gradient(135deg, #ffbd61, #f28d3d);
  color: #422105;
  box-shadow: 0 12px 24px rgba(242, 161, 61, 0.24);
}

.secondary {
  color: #fff7ee;
  border: 1px solid rgba(255, 247, 238, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.status-text {
  margin-top: 16px;
  min-height: 40px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 247, 238, 0.78);
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.hero-stat {
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 247, 238, 0.11);
  backdrop-filter: blur(10px);
}

.hero-stat span {
  display: block;
  font-size: 11px;
  color: rgba(255, 247, 238, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-stat strong {
  display: block;
  margin-top: 10px;
  font-size: 24px;
  font-family: "Georgia", "Noto Serif SC", "Songti SC", serif;
}

.latest-draw-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 247, 238, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.latest-draw-head strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
}

.ghost-pill,
.badge {
  color: var(--ink-soft);
  background: rgba(22, 34, 53, 0.06);
  border: 1px solid rgba(22, 34, 53, 0.08);
}

.latest-draw-card .ghost-pill {
  color: #fff0dd;
  background: rgba(255, 247, 238, 0.08);
  border-color: rgba(255, 247, 238, 0.12);
}

.side-stack {
  display: grid;
  gap: 18px;
}

.info-card,
.panel {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.92), rgba(250, 243, 233, 0.82));
  backdrop-filter: blur(14px);
}

.info-card::before,
.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top right, rgba(242, 161, 61, 0.08), transparent 30%);
}

.info-card > *,
.panel > * {
  position: relative;
  z-index: 1;
}

.info-card h2 {
  margin-top: 8px;
  font-size: 28px;
  line-height: 1.1;
}

.info-copy {
  margin-top: 12px;
  color: var(--ink-soft);
  line-height: 1.68;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.detail-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(22, 34, 53, 0.07);
}

.detail-item span {
  color: var(--ink-soft);
  font-size: 13px;
}

.detail-item strong {
  text-align: right;
  font-size: 14px;
  color: var(--ink);
}

.overview-panel {
  margin-top: 18px;
}

.panel-title-row {
  margin-bottom: 18px;
}

.panel-title-row h2 {
  font-size: 31px;
  line-height: 1.08;
}

.subtle {
  font-size: 12px;
  color: var(--ink-soft);
}

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

.metric-card,
.pulse-card,
.pick-card,
.score-card,
.draw-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.metric-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.64);
}

.metric-card p {
  font-size: 13px;
  color: var(--ink-soft);
}

.metric-card strong {
  display: block;
  margin-top: 14px;
  font-size: 30px;
  font-family: "Georgia", "Noto Serif SC", "Songti SC", serif;
}

.pulse-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.pulse-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.pulse-card h3 {
  margin-top: 8px;
  font-size: 24px;
}

.pulse-copy {
  margin-top: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 14px;
}

.mini-kpi-grid,
.play-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.play-meta-grid.secondary {
  margin-top: 10px;
}

.mini-kpi-grid {
  margin-top: 16px;
}

.mini-kpi,
.meta-pill {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(22, 34, 53, 0.04);
  border: 1px solid rgba(22, 34, 53, 0.07);
}

.mini-kpi span,
.meta-pill span {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
}

.mini-kpi strong,
.meta-pill strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
}

.signal-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.signal-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
}

.signal-chip.positive {
  color: #7b321f;
  background: rgba(242, 161, 61, 0.18);
  border-color: rgba(242, 161, 61, 0.3);
}

.signal-chip.negative {
  color: #284869;
  background: rgba(107, 136, 165, 0.16);
  border-color: rgba(107, 136, 165, 0.26);
}

.prediction-panel,
.play-panel,
.score-panel,
.draw-panel {
  margin-top: 18px;
}

.report-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.report-tab {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.report-tab.active {
  color: #fff7ee;
  background: linear-gradient(135deg, #294766, #6b88a5);
  box-shadow: 0 10px 24px rgba(41, 71, 102, 0.16);
}

.report-list {
  display: grid;
  gap: 12px;
}

.report-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.report-card.compared {
  background: linear-gradient(135deg, rgba(219, 228, 235, 0.9), rgba(255, 251, 244, 0.9));
}

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

.report-head h3 {
  margin-top: 6px;
  font-size: 24px;
}

.report-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(22, 34, 53, 0.06);
  border: 1px solid rgba(22, 34, 53, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.automation-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 8px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(120deg, #ffe4b5, var(--warm), #e9783f);
  border: 1px solid rgba(242, 161, 61, 0.36);
  font-size: 12px;
  font-weight: 800;
}

.report-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.report-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(22, 34, 53, 0.04);
  color: var(--ink-soft);
  font-size: 12px;
}

.report-comparison {
  margin-top: 12px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 14px;
}

.report-toggle {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff7ee;
  background: linear-gradient(135deg, #294766, #6b88a5);
}

.report-detail {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(22, 34, 53, 0.1);
}

.report-detail-grid,
.report-bias-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.report-detail-card,
.report-bias-grid div {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(22, 34, 53, 0.08);
}

.report-detail-card span,
.report-bias-grid span {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
}

.report-detail-card strong,
.report-bias-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

.report-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.report-section {
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(22, 34, 53, 0.07);
}

.report-section h4 {
  margin: 0;
  font-size: 15px;
}

.report-number-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.report-number-row.compact {
  gap: 6px;
}

.report-ball {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #fffdf8, #f0dcc3);
  border: 1px solid rgba(185, 74, 58, 0.16);
  color: #8f3428;
  font-weight: 800;
  font-size: 12px;
}

.report-number-row.compact .report-ball {
  width: 30px;
  height: 30px;
  font-size: 11px;
}

.report-ball.hit {
  color: #fff7ee;
  background: linear-gradient(135deg, #4f7b62, #78a587);
  border-color: rgba(79, 123, 98, 0.25);
}

.report-ball.miss {
  color: #7c3428;
  background: linear-gradient(180deg, #fff6ed, #eed8ca);
  opacity: 0.78;
}

.report-number-row.actual .report-ball {
  color: #1f405a;
  background: linear-gradient(135deg, #dcebf5, #fffdf8);
  border-color: rgba(107, 136, 165, 0.24);
}

.report-play-table {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.report-play-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(22, 34, 53, 0.035);
}

.report-play-row strong,
.report-play-row span {
  display: block;
}

.report-play-row span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.35;
}

.report-play-row.positive {
  background: rgba(95, 114, 103, 0.08);
}

.report-play-row.negative {
  background: rgba(185, 74, 58, 0.07);
}

.report-reasons {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 14px;
}

.play-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.play-chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.play-chip.active {
  background: linear-gradient(135deg, #f2a13d, #ffd08e);
  color: #542a0d;
  box-shadow: 0 10px 24px rgba(242, 161, 61, 0.18);
}

.play-meta {
  margin-top: 14px;
  margin-bottom: 14px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(22, 34, 53, 0.06), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(22, 34, 53, 0.08);
}

.play-meta-copy {
  margin-top: 12px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 14px;
}

.pick-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pick-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.pick-card.wide {
  grid-column: 1 / -1;
}

.pick-card.warm {
  background: linear-gradient(135deg, rgba(255, 228, 183, 0.92), rgba(255, 248, 238, 0.82));
}

.pick-card.recommended {
  background: linear-gradient(135deg, rgba(255, 214, 138, 0.98), rgba(255, 244, 219, 0.88));
}

.pick-card.balanced {
  background: linear-gradient(135deg, rgba(219, 228, 235, 0.88), rgba(255, 248, 238, 0.86));
}

.pick-card.coldish {
  background: linear-gradient(135deg, rgba(217, 232, 243, 0.82), rgba(255, 255, 255, 0.86));
}

.pick-card.pool {
  background: linear-gradient(135deg, rgba(245, 238, 228, 0.92), rgba(255, 249, 242, 0.86));
}

.pick-card h3 {
  margin-top: 6px;
  font-size: 24px;
}

.pick-meta {
  margin-top: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.pick-note {
  margin-top: 8px;
  color: var(--ink-soft);
  line-height: 1.58;
  font-size: 14px;
}

.pick-badge {
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(22, 34, 53, 0.08);
}

.ball-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.ball-row.tight {
  margin-top: 12px;
  gap: 7px;
}

.ball {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #fffdf8, #f0dcc3);
  border: 1px solid rgba(185, 74, 58, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  color: #8f3428;
  font-weight: 800;
  font-size: 14px;
}

.ball.mini {
  width: 31px;
  height: 31px;
  font-size: 11px;
}

.score-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.score-column {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(22, 34, 53, 0.08);
}

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

.score-column h3 {
  font-size: 24px;
}

.score-list {
  display: grid;
  gap: 12px;
}

.score-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.score-number {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-weight: 800;
  font-size: 18px;
}

.score-number.hot {
  color: #4d2609;
  background: linear-gradient(135deg, #f2a13d, #ffd395);
}

.score-number.cold {
  color: #1f405a;
  background: linear-gradient(135deg, #a4c0d9, #e1edf5);
}

.score-main {
  min-width: 0;
}

.score-line strong {
  font-size: 22px;
}

.score-line span {
  color: var(--ink-soft);
  font-size: 13px;
}

.score-track {
  height: 9px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(22, 34, 53, 0.08);
}

.score-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(242, 161, 61, 0.85), rgba(185, 74, 58, 0.9));
}

.score-card.cold .score-track span {
  background: linear-gradient(90deg, rgba(107, 136, 165, 0.9), rgba(53, 99, 141, 0.9));
}

.score-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.score-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(22, 34, 53, 0.04);
  color: var(--ink-soft);
  font-size: 12px;
}

.draw-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.draw-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.draw-head strong {
  display: block;
  font-size: 22px;
}

.draw-head p {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 13px;
}

.empty {
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .metric-grid,
  .pulse-grid,
  .pick-stack,
  .score-columns,
  .draw-list,
  .report-two-col {
    grid-template-columns: 1fr;
  }

  .pick-card.wide {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .app-shell {
    padding: 18px 14px 40px;
  }

  .hero-card,
  .info-card,
  .panel {
    border-radius: 24px;
  }

  h1 {
    max-width: 9ch;
    font-size: 2.45rem;
  }

  .panel-title-row h2,
  .info-card h2 {
    font-size: 26px;
  }

  .actions {
    flex-direction: column;
  }

  .hero-stat-row,
  .mini-kpi-grid,
  .play-meta-grid,
  .report-detail-grid,
  .report-bias-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-item,
  .score-column-head,
  .draw-head,
  .report-head {
    align-items: flex-start;
  }

  .report-play-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-stat-row,
  .metric-grid,
  .mini-kpi-grid,
  .play-meta-grid,
  .report-detail-grid,
  .report-bias-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .info-card,
  .panel,
  .score-column {
    padding: 18px;
  }

  .ball {
    width: 38px;
    height: 38px;
  }
}
