:root {
  --accent-deep: #0f6b2a;
  --accent-mid: #1f9b48;
  --accent-bright: #22c55e;
  --accent-glow: rgba(34, 197, 94, 0.35);
  --bg-void: #0a0a0a;
  --bg-card: #131313;
  --bg-card-hover: #1a1a1a;
  --text-white: #f0f0f0;
  --text-dim: #b0b0b0;
  --text-gray: #7a7a7a;
  --pixel-font: "Press Start 2P", monospace;
  --mono-font: "Share Tech Mono", monospace;
  --body-font: "Rajdhani", sans-serif;
  --accent-scanline: rgba(34, 197, 94, 0.025);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-btn: 20px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Shared utility classes ── */

.section-page {
  padding: 80px 0 100px;
}

.section-title--compact {
  margin-bottom: 0;
}

.link-accent {
  color: var(--accent-bright);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.link-accent:hover {
  opacity: 1;
  text-decoration: underline;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  background: var(--bg-void);
  color: var(--text-white);
  font-family: var(--body-font);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    var(--accent-scanline) 2px,
    var(--accent-scanline) 4px
  );
  pointer-events: none;
  z-index: 9999;
  opacity: 0.45;
}

button,
input,
select {
  font: inherit;
}

main,
section {
  position: relative;
  z-index: 1;
}

/* ── Grid background ── */

.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 197, 94, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 197, 94, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* ── Ambient glow ── */

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.ambient-1 {
  top: -250px;
  right: -250px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(15, 107, 42, 0.28) 0%, transparent 70%);
}

.ambient-2 {
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(31, 155, 72, 0.16) 0%, transparent 70%);
}

/* ── Shared section styles ── */

.section-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-tag {
  margin-bottom: 12px;
  font-family: var(--mono-font);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-bright);
  opacity: 0.75;
}

.section-title {
  margin: 0 0 32px;
  font-family: var(--pixel-font);
  font-size: clamp(14px, 2.8vw, 24px);
  line-height: 1.8;
  color: var(--text-white);
}

/* ── Divider ── */

.divider {
  position: relative;
  height: 1px;
  margin: 80px 0;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.25), transparent);
}

.divider::before {
  content: "//";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 20px;
  background: var(--bg-void);
  color: var(--accent-deep);
  font-family: var(--mono-font);
  font-size: 14px;
  letter-spacing: 4px;
}

/* ── Hero ── */

#landing-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 120px 40px 100px;
  text-align: center;
}

.hero-tag {
  margin-bottom: 24px;
  font-family: var(--mono-font);
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--accent-bright);
  opacity: 0.65;
}

.hero-title {
  margin: 0 0 8px;
  font-family: var(--pixel-font);
  font-size: clamp(24px, 5.5vw, 52px);
  line-height: 1.5;
  letter-spacing: 4px;
  color: var(--text-white);
  text-shadow: 0 0 50px rgba(34, 197, 94, 0.15);
}

.hero-year {
  margin-bottom: 44px;
  font-family: var(--pixel-font);
  font-size: clamp(28px, 9vw, 80px);
  line-height: 1.2;
  color: transparent;
  -webkit-text-stroke: 2px var(--accent-deep);
  text-stroke: 2px var(--accent-deep);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono-font);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 34px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-btn);
  background: rgba(34, 197, 94, 0.05);
  color: var(--accent-bright);
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
}

.hero-btn:hover {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.55);
  box-shadow: 0 0 28px rgba(34, 197, 94, 0.1), inset 0 0 16px rgba(34, 197, 94, 0.03);
  transform: translateY(-2px);
}

.hero-btn--primary {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.45);
}

/* ── Scroll hint ── */

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-gray);
  opacity: var(--scroll-hint-opacity, 1);
  transform: translate(-50%, var(--scroll-hint-offset, 0px));
  filter: blur(var(--scroll-hint-blur, 0px));
  transition:
    opacity 0.18s linear,
    transform 0.18s linear,
    filter 0.18s linear,
    color 0.2s ease;
  will-change: opacity, transform, filter;
}

.scroll-hint::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background: linear-gradient(to bottom, rgba(34, 197, 94, 0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

.scroll-hint:hover {
  color: var(--accent-bright);
}

.scroll-hint.is-hidden {
  pointer-events: none;
}

/* ── Stat cards ── */

.stat-label,
.toolbar-label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-gray);
}

#scoreboard-summary-section,
#archive-scoreboard-section {
  padding: 20px 0 100px;
}

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

.stat-card {
  position: relative;
  padding: 22px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(34, 197, 94, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out);
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  opacity: 0.4;
}

.stat-card:hover {
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 4px 24px rgba(34, 197, 94, 0.06);
  transform: translateY(-2px);
}

.stat-card .stat-icon {
  font-size: 18px;
  margin-bottom: 4px;
  opacity: 0.5;
  color: var(--accent-mid);
}

.stat-card strong {
  display: block;
  margin-top: 10px;
  font-family: var(--pixel-font);
  font-size: clamp(18px, 3.5vw, 28px);
  line-height: 1.6;
  color: var(--text-white);
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

/* ── Toolbar ── */

.archive-scoreboard-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 14px;
  margin-bottom: 20px;
}

.toolbar-field {
  display: flex;
  flex-direction: column;
}

.toolbar-field-search {
  flex: 1 1 320px;
}

.archive-scoreboard-search,
.archive-scoreboard-filter {
  min-width: min(420px, 100%);
  padding: 12px 16px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius);
  background: var(--bg-card);
  font-family: var(--mono-font);
  font-size: 14px;
  color: var(--text-white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.archive-scoreboard-filter {
  min-width: 180px;
}

.archive-scoreboard-search:focus,
.archive-scoreboard-filter:focus {
  border-color: rgba(34, 197, 94, 0.55);
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.1);
}

.archive-scoreboard-counter {
  margin-top: 16px;
  margin-bottom: 16px;
  font-family: var(--mono-font);
  font-size: 14px;
  letter-spacing: 2px;
  text-align: right;
  color: var(--text-gray);
}

.archive-scoreboard-counter span {
  color: var(--accent-bright);
  font-weight: 600;
}

/* ── Table ── */

.table-wrap {
  border: 1px solid rgba(34, 197, 94, 0.12);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow-x: auto;
}

.archive-scoreboard-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono-font);
  font-size: 14px;
}

.archive-scoreboard-table th,
.archive-scoreboard-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(34, 197, 94, 0.06);
  text-align: left;
}

.archive-scoreboard-table th {
  background: rgba(34, 197, 94, 0.03);
  color: var(--text-gray);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 2;
  border-bottom: 1px solid rgba(34, 197, 94, 0.12);
}

.archive-scoreboard-table tbody tr {
  transition: background 0.15s;
}

.archive-scoreboard-table tbody tr:hover {
  background: rgba(34, 197, 94, 0.05);
}

.archive-scoreboard-table tbody tr.score-threshold-break td {
  border-top: 3px solid var(--accent-mid);
}

.archive-scoreboard-table th:last-child,
.archive-scoreboard-table td:last-child {
  width: 120px;
  text-align: right;
}

.archive-scoreboard-table td:first-child {
  width: 90px;
}

/* ── Place pill ── */

.place-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--pixel-font);
  font-size: 9px;
  line-height: 1.6;
  color: var(--accent-bright);
}

/* ── Class pill ── */

.class-pill {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(34, 197, 94, 0.04);
  font-family: var(--pixel-font);
  font-size: 8px;
  line-height: 1.8;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── Name & score ── */

.participant-name {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-white);
  letter-spacing: 0.3px;
}

.score-value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--pixel-font);
  font-size: 10px;
  line-height: 1.6;
  color: var(--text-white);
}

.score-bar-wrap {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: rgba(34, 197, 94, 0.08);
  border-radius: 2px;
  overflow: hidden;
  vertical-align: middle;
}

.score-bar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent-bright));
  border-radius: 2px;
  transition: width 0.4s var(--ease-out);
}

/* ── Empty state ── */

.empty-state {
  margin-top: 20px;
  padding: 24px;
  border: 1px dashed rgba(34, 197, 94, 0.2);
  border-radius: var(--radius);
  background: rgba(34, 197, 94, 0.02);
  font-family: var(--mono-font);
  color: var(--text-gray);
  text-align: center;
}

/* ── Footer ── */

.site-footer {
  position: relative;
  z-index: 1;
  padding: 48px 20px 36px;
  text-align: center;
  font-family: var(--mono-font);
  border-top: 1px solid rgba(34, 197, 94, 0.08);
}

.footer-brand {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-gray);
  opacity: 0.5;
  margin-bottom: 10px;
}

.footer-credits {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-gray);
  opacity: 0.6;
  line-height: 1.8;
}

.footer-credits a {
  color: var(--accent-bright);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-credits a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ── Fade-in animations ── */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.5s var(--ease-out) both;
}

.fade-in-d1 { animation-delay: 0.08s; }
.fade-in-d2 { animation-delay: 0.16s; }
.fade-in-d3 { animation-delay: 0.24s; }
.fade-in-d4 { animation-delay: 0.32s; }

/* ── Back link ── */

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono-font);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-bright);
  text-decoration: none;
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--radius-btn);
  padding: 10px 24px;
  transition: all 0.25s var(--ease-out);
}

.back-link:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.1);
  transform: translateY(-1px);
}

/* ── Shared card base ── */

.card-base,
.upload-card,
.chart-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(34, 197, 94, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.card-base::before,
.upload-card::before,
.chart-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  opacity: 0.3;
}

/* ── Statistics page ── */

.stats-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}

.stats-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.stats-class-btn {
  font-family: var(--mono-font);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 22px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-btn);
  background: transparent;
  color: var(--text-gray);
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}

.stats-class-btn:hover {
  border-color: rgba(34, 197, 94, 0.4);
  color: var(--accent-bright);
  background: rgba(34, 197, 94, 0.05);
}

.stats-class-btn.active {
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.1);
  color: var(--accent-bright);
}

.charts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.chart-card {
  padding: 28px 24px;
}

.chart-card:hover {
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.06);
}

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

.chart-title {
  font-family: var(--pixel-font);
  font-size: 9px;
  line-height: 2;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin: 0 0 20px;
  text-transform: uppercase;
}

.chart-wrap {
  position: relative;
  width: 100%;
  max-height: 320px;
}

.chart-wrap.tall {
  max-height: 380px;
}

.chart-wrap canvas {
  width: 100% !important;
}

/* ── Upload page ── */

.admin-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.upload-card {
  padding: 36px 32px;
}

.upload-card h3 {
  font-family: var(--pixel-font);
  font-size: 10px;
  line-height: 2;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin: 0 0 24px;
  text-transform: uppercase;
}

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--mono-font);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-gray);
}

.form-hint {
  margin-top: 6px;
  font-family: var(--mono-font);
  font-size: 11px;
  color: var(--text-gray);
  opacity: 0.7;
}

.drop-zone {
  position: relative;
  padding: 32px 20px;
  border: 2px dashed rgba(34, 197, 94, 0.2);
  border-radius: var(--radius);
  background: rgba(34, 197, 94, 0.02);
  text-align: center;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.drop-zone:hover, .drop-zone.drag-over {
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.06);
}

.drop-zone-icon { font-size: 32px; margin-bottom: 12px; opacity: 0.5; color: var(--accent-mid); }

.drop-zone-text {
  font-family: var(--mono-font);
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.8;
}

.drop-zone-text strong { color: var(--accent-bright); }

.drop-zone input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
}

.file-list { margin-top: 12px; list-style: none; padding: 0; }

.file-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  margin-top: 8px;
  background: rgba(34, 197, 94, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--mono-font);
  font-size: 13px;
  color: var(--text-dim);
}

.file-remove {
  background: none; border: none;
  color: var(--text-gray); cursor: pointer;
  font-size: 16px; padding: 0 4px;
  transition: color 0.2s;
}

.file-remove:hover { color: #ef4444; }

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono-font);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 34px;
  border: 1px solid rgba(34, 197, 94, 0.45);
  border-radius: var(--radius-btn);
  background: rgba(34, 197, 94, 0.1);
  color: var(--accent-bright);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  margin-top: 8px;
}

.action-btn:hover:not(:disabled) {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(34, 197, 94, 0.6);
  box-shadow: 0 0 28px rgba(34, 197, 94, 0.12);
  transform: translateY(-2px);
}

.action-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.action-btn.danger {
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
}

.action-btn.danger:hover:not(:disabled) {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 0 28px rgba(239, 68, 68, 0.1);
}

.result-box {
  margin-top: 24px;
  padding: 20px;
  border-radius: var(--radius);
  font-family: var(--mono-font);
  font-size: 13px;
  line-height: 1.8;
  display: none;
}

.result-box.success {
  display: block;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--accent-bright);
}

.result-box.error {
  display: block;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-top-color: var(--accent-bright);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Preview card ── */
#preview-section { display: none; margin-top: 32px; }

.preview-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.preview-field {
  padding: 16px 18px;
  background: rgba(34, 197, 94, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.1);
  border-radius: var(--radius-sm);
}

.preview-field-label {
  display: block;
  font-family: var(--mono-font);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 6px;
}

.preview-field-value {
  font-family: var(--mono-font);
  font-size: 15px;
  color: var(--text-white);
}

.preview-field-value.highlight {
  font-family: var(--pixel-font);
  font-size: 18px;
  color: var(--accent-bright);
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.preview-files {
  margin-top: 16px;
  font-family: var(--mono-font);
  font-size: 12px;
  color: var(--text-gray);
  line-height: 1.8;
}

.confirm-bar {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ── Responsive ── */

@media (max-width: 980px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .charts-grid {
    grid-template-columns: 1fr;
  }
  .chart-card.wide {
    grid-column: 1;
  }
}

@media (max-width: 768px) {
  .section-inner {
    padding: 0 20px;
  }

  #landing-hero {
    padding: 80px 20px 70px;
  }

  .divider {
    margin: 60px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .archive-scoreboard-search,
  .archive-scoreboard-filter,
  .toolbar-field,
  .toolbar-field-search {
    width: 100%;
    min-width: 0;
  }

  .archive-scoreboard-table {
    min-width: 580px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .score-bar-wrap {
    display: none;
  }
}
