:root {
  --page-bg: #edf3fb;
  --ink: #10233a;
  --muted: #5f6f82;
  --line: rgba(16, 35, 58, 0.1);
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.94);
  --primary: #165c96;
  --primary-deep: #0f3050;
  --teal: #0f766e;
  --danger: #c2410c;
  --gold: #e4a11b;
  --shadow-soft: 0 24px 60px rgba(16, 35, 58, 0.12);
  --shadow-strong: 0 36px 90px rgba(8, 28, 51, 0.2);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(44, 149, 228, 0.18), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(254, 198, 72, 0.18), transparent 25%),
    radial-gradient(circle at 50% 100%, rgba(15, 118, 110, 0.12), transparent 30%),
    linear-gradient(180deg, #f6f9fd 0%, var(--page-bg) 100%);
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

code {
  color: var(--primary-deep);
  background: rgba(22, 92, 150, 0.08);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}

.page-shell::before {
  width: 28rem;
  height: 28rem;
  left: -10rem;
  bottom: -8rem;
  background: radial-gradient(circle, rgba(25, 116, 210, 0.12) 0%, rgba(25, 116, 210, 0) 72%);
}

.page-shell::after {
  width: 24rem;
  height: 24rem;
  right: -8rem;
  top: -6rem;
  background: radial-gradient(circle, rgba(228, 161, 27, 0.18) 0%, rgba(228, 161, 27, 0) 72%);
}

.container-xxl {
  position: relative;
  z-index: 1;
}

.hero-card {
  border-radius: var(--radius-xl);
  color: #fff;
  box-shadow: var(--shadow-strong);
  background:
    linear-gradient(125deg, rgba(15, 48, 80, 0.98) 0%, rgba(22, 92, 150, 0.95) 55%, rgba(53, 150, 210, 0.9) 100%);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 35%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.03) 100%);
  pointer-events: none;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-copy {
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.metric-card {
  height: 100%;
  padding: 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.metric-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.76);
}

.metric-value {
  margin-top: 0.55rem;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
}

.metric-leader {
  font-size: 1.15rem;
  word-break: break-word;
}

.glass-panel {
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.section-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
}

.control-btn,
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.7rem 1.05rem;
  font-weight: 700;
}

.replay-sort-select {
  width: auto;
  min-width: 9rem;
  border-radius: 999px;
  padding: 0.7rem 2.35rem 0.7rem 1.05rem;
  font-weight: 700;
}

.dataset-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.dataset-item {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(22, 92, 150, 0.12);
  background: rgba(22, 92, 150, 0.05);
}

.dataset-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.dataset-value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  word-break: break-word;
}

.guide-list {
  display: grid;
  gap: 1rem;
}

.guide-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.95rem;
  align-items: start;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(16, 35, 58, 0.06);
}

.guide-index {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, #1ea7c7 100%);
  box-shadow: 0 16px 30px rgba(22, 92, 150, 0.2);
}

.guide-title {
  font-size: 1rem;
  font-weight: 800;
}

.guide-copy {
  margin: 0.35rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.leaderboard-panel {
  top: 1.5rem;
}

.leaderboard-list {
  display: grid;
  gap: 0.9rem;
}

.leaderboard-item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: 1.15rem;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.leaderboard-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(16, 35, 58, 0.08);
}

.leaderboard-rank {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(16, 35, 58, 0.07);
  color: var(--ink);
}

.leaderboard-rank.top-1 {
  color: #fff;
  background: linear-gradient(135deg, #f3b81b 0%, #e17c16 100%);
}

.leaderboard-rank.top-2 {
  color: #fff;
  background: linear-gradient(135deg, #8e9aa9 0%, #748092 100%);
}

.leaderboard-rank.top-3 {
  color: #fff;
  background: linear-gradient(135deg, #c07d39 0%, #9c5522 100%);
}

.leaderboard-body {
  min-width: 0;
}

.leaderboard-name {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
}

.leaderboard-score {
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-deep);
}

.mini-progress {
  margin-top: 0.55rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(22, 92, 150, 0.12);
  overflow: hidden;
}

.mini-progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary) 0%, #29a6d8 100%);
}

.logo-shell {
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 auto;
  border-radius: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(16, 35, 58, 0.08);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.logo-shell img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
}

.logo-shell.logo-qwen img {
  width: 90%;
  height: 90%;
}

.logo-shell.mini {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.95rem;
}

.logo-shell.large {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.2rem;
}

.logo-fallback {
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.review-panel {
  min-height: 48rem;
}

.review-title {
  font-size: clamp(1.65rem, 2.5vw, 2.6rem);
  font-weight: 800;
}

.progress-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}

.progress-shell {
  height: 0.85rem;
  background: rgba(22, 92, 150, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.progress-accent {
  background: linear-gradient(90deg, var(--primary) 0%, #1ca2d7 100%);
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
}

.empty-state {
  min-height: 22rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(22, 92, 150, 0.22);
  background:
    linear-gradient(135deg, rgba(22, 92, 150, 0.04) 0%, rgba(228, 161, 27, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.empty-state-inner {
  max-width: 28rem;
}

.empty-state-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.empty-icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1rem;
  border-radius: 1.4rem;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 40px rgba(16, 35, 58, 0.1);
}

.intro-wrap {
  display: grid;
  gap: 1.6rem;
  align-items: start;
}

.start-only-wrap {
  min-height: min(56vh, 32rem);
  display: grid;
  place-items: center;
}

.start-panel {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.start-option-card {
  width: min(100%, 28rem);
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 35, 58, 0.08);
  background: var(--panel-strong);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(16, 35, 58, 0.06);
}

.start-option-body {
  min-width: 0;
}

.start-actions {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.intro-model-card {
  height: 100%;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 35, 58, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 254, 0.92) 100%);
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  text-align: center;
  box-shadow: 0 18px 36px rgba(16, 35, 58, 0.06);
}

.intro-model-name {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.45;
  word-break: break-word;
}

.intro-action {
  display: flex;
  justify-content: center;
}

.start-review-btn {
  min-width: 12rem;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(16, 35, 58, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.review-grid {
  display: grid;
  gap: 1.1rem;
}

.replay-select-wrap {
  display: grid;
  gap: 1.5rem;
}

.replay-select-header {
  display: grid;
  gap: 0.45rem;
}

.replay-option-card {
  height: 100%;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 35, 58, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 254, 0.92) 100%);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(16, 35, 58, 0.06);
}

.replay-checkbox {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0;
}

.replay-option-body {
  min-width: 0;
}

.anonymous-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.anonymous-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(22, 92, 150, 0.08);
  color: var(--primary);
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.model-card {
  height: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 254, 0.92) 100%);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(16, 35, 58, 0.12);
}

.model-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.model-head {
  display: flex;
  gap: 0.95rem;
  align-items: start;
}

.model-meta {
  min-width: 0;
  flex: 1;
}

.model-name {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.45;
}

.model-subtitle {
  color: var(--muted);
  font-size: 0.92rem;
}

.score-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  background: rgba(15, 118, 110, 0.08);
  color: var(--teal);
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.response-panel {
  flex: 1;
  padding: 1rem 1.1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid rgba(16, 35, 58, 0.08);
  color: #183048;
  line-height: 1.8;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.model-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.copy-meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.replay-footer {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.score-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
  align-items: center;
}

.score-action {
  width: 2.75rem;
  min-width: 2.75rem;
  border-radius: 999px;
  padding: 0.7rem 0;
  color: var(--primary-deep);
  border-color: rgba(22, 92, 150, 0.18);
  background: rgba(22, 92, 150, 0.08);
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-weight: 700;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.score-action:hover {
  color: var(--primary-deep);
  border-color: rgba(22, 92, 150, 0.32);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(16, 35, 58, 0.08);
}

.score-action:disabled {
  cursor: default;
  opacity: 0.52;
}

.score-action.selected,
.score-action.selected:disabled {
  color: #fff;
  border-color: rgba(15, 48, 80, 0.86);
  background: var(--primary-deep);
  box-shadow: 0 14px 28px rgba(15, 48, 80, 0.18);
  opacity: 1;
  transform: none;
}

.bonus-wrap {
  display: grid;
  gap: 1.2rem;
}

.bonus-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.bonus-summary {
  display: grid;
  gap: 0.25rem;
}

.bonus-card {
  height: 100%;
  padding: 1.15rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 35, 58, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 254, 0.92) 100%);
  box-shadow: 0 18px 36px rgba(16, 35, 58, 0.06);
  display: grid;
  gap: 1rem;
}

.bonus-card-head,
.bonus-score-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.bonus-total {
  min-width: 5.6rem;
  padding: 0.55rem 0.85rem;
  border-radius: 1rem;
  color: #fff;
  background: var(--primary-deep);
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  text-align: center;
  display: grid;
  gap: 0.15rem;
}

.bonus-total-label {
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.74;
}

.bonus-total strong {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
}

.bonus-score-line {
  color: var(--muted);
  font-size: 0.92rem;
}

.bonus-score-line strong {
  color: var(--primary-deep);
}

.bonus-actions {
  justify-content: flex-start;
}

.summary-wrap {
  display: grid;
  gap: 1.4rem;
}

.summary-hero {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(135deg, rgba(15, 48, 80, 0.98) 0%, rgba(24, 94, 146, 0.96) 100%);
  box-shadow: 0 28px 50px rgba(15, 48, 80, 0.22);
}

.summary-copy {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.result-save-status {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  margin-top: 0.25rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.result-save-status.error {
  color: #fff4f4;
  background: rgba(220, 38, 38, 0.22);
  border-color: rgba(255, 255, 255, 0.24);
}

.summary-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.podium-card {
  height: 100%;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--panel-strong);
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(16, 35, 58, 0.08);
}

.podium-card.featured {
  transform: translateY(-0.4rem);
  background: linear-gradient(180deg, rgba(255, 249, 237, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-color: rgba(228, 161, 27, 0.28);
}

.podium-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(22, 92, 150, 0.08);
  color: var(--primary);
}

.podium-name {
  margin-top: 1rem;
  font-size: 1.08rem;
  font-weight: 800;
}

.podium-score {
  margin-top: 0.5rem;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary-deep);
}

.summary-table-card {
  border-radius: var(--radius-lg);
  background: var(--panel-strong);
  box-shadow: 0 20px 40px rgba(16, 35, 58, 0.08);
}

.summary-table-card .card-body {
  padding: 1.35rem;
}

.summary-table {
  margin: 0;
}

.summary-table thead th {
  padding: 0.9rem 0.85rem;
  border-bottom-width: 1px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-table tbody td {
  padding: 1rem 0.85rem;
  vertical-align: middle;
  border-color: rgba(16, 35, 58, 0.06);
}

.summary-table tbody tr:hover {
  background: rgba(22, 92, 150, 0.04);
}

.table-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(16, 35, 58, 0.08);
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-weight: 700;
}

.table-model {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.table-score {
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.score-track {
  position: relative;
  width: 100%;
  min-width: 8rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(22, 92, 150, 0.12);
  overflow: hidden;
}

.score-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary) 0%, #1ca2d7 100%);
}

.reveal-in {
  animation: revealIn 0.45s cubic-bezier(0.21, 1, 0.32, 1) both;
}

@keyframes revealIn {
  from {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (max-width: 1199.98px) {
  .leaderboard-panel {
    top: auto;
  }
}

@media (max-width: 991.98px) {
  .dataset-grid {
    grid-template-columns: 1fr;
  }

  .review-panel {
    min-height: auto;
  }

  .podium-card.featured {
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .hero-card,
  .glass-panel,
  .review-panel,
  .summary-hero,
  .summary-table-card,
  .podium-card {
    border-radius: 1.5rem;
  }

  .model-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .score-actions {
    width: 100%;
  }

  .score-actions .score-action {
    flex: 1 1 2.5rem;
  }

  .start-actions {
    width: 100%;
  }

  .start-review-btn {
    flex: 1 1 12rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .metric-card,
  .intro-model-card,
  .leaderboard-item,
  .dataset-item {
    padding: 0.95rem;
  }

  .review-title {
    font-size: 1.6rem;
  }

  .empty-state {
    min-height: 18rem;
    padding: 1.5rem;
  }
}
