@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/barlow-condensed-600.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-condensed-700.woff2") format("woff2");
}

:root {
  --paper: #ffffff;
  --paper-alt: #f5f7fa;
  --ink: #14213d;
  --body-color: #414e68;
  --muted: #67718a;
  --line: #e3e8ef;
  --line-strong: #c9d2e0;
  --navy: #182a5c;
  --navy-hover: #21387a;
  --blue: #1f4fae;
  --gold: #dba032;
  --silver: #9aa5b5;
  --bronze: #b08d57;
  --success-bg: #eef8f0;
  --success-line: #bfe0c6;
  --success-text: #1e6a35;
  --error-bg: #fdf0ef;
  --error-line: #eac6c0;
  --error-text: #a03024;
  --shadow-phone: 0 24px 48px -28px rgba(20, 33, 61, 0.4);
  --shadow-card: 0 14px 28px -22px rgba(20, 33, 61, 0.35);
  --radius: 8px;
  --nav-height: 64px;
  --container: 1120px;
  --font-display: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: calc(var(--nav-height) + 16px);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: var(--nav-height) 0 0;
  background: var(--paper);
  color: var(--body-color);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

figure {
  margin: 0;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.9rem, 5.6vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: 0.004em;
}

h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  line-height: 1;
  letter-spacing: 0.01em;
}

h2::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 14px;
  border-radius: 2px;
  background: var(--gold);
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.35;
}

p {
  margin: 0;
}

/* ---------- Navigation ---------- */

.navbar {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-height);
  z-index: 1000;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.nav-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.nav-logo:hover {
  text-decoration: none;
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 12px;
  color: var(--body-color);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--ink);
  text-decoration: none;
}

.nav-links a.is-active,
.nav-links a[aria-current="true"] {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.nav-locale {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 10px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.nav-locale a {
  padding: 6px 8px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-locale a:hover {
  color: var(--ink);
  text-decoration: none;
}

.nav-locale a.is-active,
.nav-locale a[aria-current] {
  color: #ffffff;
  background: var(--navy);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

/* ---------- Sections ---------- */

.section {
  padding: 72px 0;
}

.section-inner {
  display: grid;
  gap: 28px;
}

#news,
#rules {
  background: var(--paper-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.info-content {
  display: grid;
  gap: 12px;
  max-width: 68ch;
}

.info-content p:first-child {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 500;
}

/* ---------- Hero ---------- */

.hero {
  padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 6vw, 76px);
  background: linear-gradient(180deg, var(--paper-alt), var(--paper) 360px);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
}

.accent {
  color: var(--blue);
}

.subtitle {
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-note {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}

.launch-countdown {
  width: min(100%, 460px);
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.countdown-value {
  font-variant-numeric: tabular-nums;
}

.countdown-value:empty {
  display: none;
}

.cta-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  width: min(100%, 500px);
}

.cta input,
.input,
.textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.textarea {
  min-height: 120px;
  resize: vertical;
}

.cta input::placeholder,
.input::placeholder,
.textarea::placeholder {
  color: var(--muted);
}

.cta input:focus,
.input:focus,
.textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31, 79, 174, 0.15);
}

.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 47px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 650;
  cursor: pointer;
  text-decoration: none;
}

.button:hover,
.btn:hover {
  text-decoration: none;
}

.button.primary,
.btn-primary {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
}

.button.primary:hover,
.btn-primary:hover {
  background: var(--navy-hover);
  border-color: var(--navy-hover);
}

.button.primary:active,
.btn-primary:active {
  transform: translateY(1px);
}

.button.coffee,
.button.ghost {
  background: var(--paper);
  border-color: var(--line-strong);
  color: var(--ink);
}

.button.coffee:hover,
.button.ghost:hover {
  background: var(--paper-alt);
}

.button.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-link {
  min-height: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--blue);
  font-weight: 650;
}

.btn-link:hover {
  text-decoration: underline;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-feedback {
  padding: 11px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper-alt);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.form-feedback.success {
  border-color: var(--success-line);
  background: var(--success-bg);
  color: var(--success-text);
}

.form-feedback.error {
  border-color: var(--error-line);
  background: var(--error-bg);
  color: var(--error-text);
}

.form-privacy {
  color: var(--muted);
  font-size: 0.85rem;
}

.form-privacy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.credibility-note {
  max-width: 52ch;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-cross-link {
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 650;
}

.hero-cross-link:hover {
  text-decoration: underline;
}

.hero-cross-link-icon::before {
  content: "\2192";
}

/* ---------- Trust strip ---------- */

.trust-strip {
  display: flex;
  width: min(100%, 460px);
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip .stat {
  display: grid;
  min-width: 0;
  flex: 1 1 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-strip .stat + .stat {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.trust-strip .stat strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

/* ---------- Social & share rows ---------- */

.social-follow,
.share-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.social-label,
.share-label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-button,
.share-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
}

.social-button:hover,
.share-button:hover {
  background: var(--paper-alt);
  text-decoration: none;
}

.social-icon {
  display: inline-flex;
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

/* ---------- Hero media ---------- */

.hero-media {
  position: relative;
  justify-self: center;
  width: min(100%, 400px);
  padding: 0 0 36px;
}

.hero-media.inline {
  justify-self: start;
  margin: 6px 0;
}

.mockup {
  border: 1px solid var(--line-strong);
  background: var(--navy);
}

.mockup.main {
  width: min(82%, 320px);
  border-radius: 24px;
  box-shadow: var(--shadow-phone);
}

.mockup.alt {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(44%, 180px);
  border-radius: 18px;
  box-shadow: 0 0 0 6px var(--paper), var(--shadow-card);
}

/* ---------- Podium ---------- */

.podium-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
  max-width: 720px;
}

.podium-stand {
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-top-width: 4px;
  border-radius: 10px;
  background: var(--paper);
  text-align: center;
}

.podium-rank {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.podium-stand.first {
  padding-top: 34px;
  padding-bottom: 30px;
  border-top-color: var(--gold);
}

.podium-stand.first .podium-rank {
  color: var(--gold);
  font-size: 3rem;
}

.podium-stand.second {
  border-top-color: var(--silver);
}

.podium-stand.second .podium-rank {
  color: var(--silver);
}

.podium-stand.third {
  border-top-color: var(--bronze);
}

.podium-stand.third .podium-rank {
  color: var(--bronze);
}

.podium-name {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

/* ---------- Cards ---------- */

.card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}

.card h2 {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.card h2::before {
  content: none;
}

.card p {
  font-size: 0.95rem;
}

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

.list-dot {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  font-size: 0.95rem;
}

.list-dot li::marker {
  color: var(--gold);
}

/* ---------- News ---------- */

.news-grid {
  display: grid;
  gap: 16px;
}

#news .news-grid {
  grid-template-columns: 1fr;
  max-width: 860px;
}

#news .news-grid[data-mode="summary"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-article {
  justify-items: start;
  padding: 24px;
}

.news-article h2 {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.news-article h2::before {
  content: none;
}

.news-article p {
  font-size: 1rem;
}

.chip.news-date {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-article .actions,
.news-card .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.news-link {
  overflow-wrap: anywhere;
}

.news-actions,
.rules-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#news-status {
  color: var(--muted);
  font-size: 0.92rem;
}

#news-status:empty {
  display: none;
}

/* ---------- Subpages (news, schedule) ---------- */

.page-lead {
  max-width: 68ch;
  font-size: 1.08rem;
  line-height: 1.65;
}

.news-page-list {
  display: grid;
  gap: 16px;
  max-width: 860px;
}

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

.schedule-dates {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-card h3 {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Scoring modal ---------- */

.rules-modal {
  width: min(560px, calc(100vw - 32px));
  max-height: 85vh;
  margin: auto;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--paper);
  color: var(--body-color);
}

.rules-modal::backdrop {
  background: rgba(20, 33, 61, 0.55);
}

.modal-inner {
  position: relative;
  display: grid;
  gap: 14px;
  max-height: calc(85vh - 2px);
  padding: 24px;
  overflow: auto;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  padding: 4px 8px;
  background: none;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.modal-lead {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Rules teaser ---------- */

.rules-content {
  display: grid;
  gap: 24px;
  max-width: 860px;
}

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

/* ---------- Rules & privacy pages ---------- */

.rules-title {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
}

.rules-block {
  display: grid;
  gap: 16px;
}

.rules-block + .rules-block {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.rules-section-title {
  text-align: left;
}

.rules-subtitle {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.rules-content p,
.rules-list {
  line-height: 1.65;
}

.rules-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.rules-list li::marker {
  color: var(--gold);
}

.rules-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}

.rules-table {
  width: 100%;
  min-width: 300px;
  border-collapse: collapse;
}

.rules-table th,
.rules-table td {
  padding: 9px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.rules-table th {
  background: var(--paper-alt);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rules-table td:last-child,
.rules-table th:last-child {
  text-align: right;
}

.rules-table tr:last-child td {
  border-bottom: 0;
}

.rules-qa {
  padding: 16px 0 4px;
  border-top: 1px solid var(--line-strong);
}

.rules-qa h3 {
  margin-bottom: 8px;
}

.rules-qa p + p {
  margin-top: 8px;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
  align-items: start;
}

.form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.label {
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 650;
}

.hint {
  color: var(--muted);
  font-size: 0.8rem;
}

.contact-grid .card h3 {
  font-size: 1.15rem;
}

.contact-grid .card a {
  font-weight: 650;
}

/* ---------- Footer ---------- */

.footer {
  padding: 34px 0;
  background: var(--navy);
  color: #c8d2ea;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  font-size: 0.9rem;
}

.footer a {
  color: #c8d2ea;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer a:hover {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-socials a {
  display: inline-flex;
  color: #c8d2ea;
  text-decoration: none;
}

.footer-socials a:hover {
  color: #ffffff;
}

.footer-socials svg {
  width: 20px;
  height: 20px;
}

/* ---------- Support popup ---------- */

.support-popup {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  width: min(320px, calc(100vw - 36px));
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.support-popup.is-visible {
  opacity: 1;
  transform: none;
}

.support-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.support-popup__title {
  color: var(--ink);
  font-weight: 700;
}

.support-popup__close {
  border: 0;
  padding: 4px;
  background: none;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
}

.support-popup__text {
  margin-top: 6px;
  font-size: 0.9rem;
}

/* ---------- Utilities ---------- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 1060px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(var(--nav-height) - 1px);
    left: 0;
    right: 0;
    padding: 10px 16px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 12px 8px;
  }

  .nav-links a.is-active,
  .nav-links a[aria-current="true"] {
    text-underline-offset: 4px;
  }

  .nav-locale {
    margin-left: 0;
    padding-left: 0;
    padding-top: 12px;
    border-left: 0;
    border-top: 1px solid var(--line);
    justify-content: flex-start;
    gap: 6px;
  }

  .nav-locale a {
    padding: 8px 12px;
  }
}

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

@media (max-width: 940px) {
  .hero-media {
    justify-self: start;
    width: min(100%, 420px);
  }

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

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

  #news .news-grid[data-mode="summary"] {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .section {
    padding: 52px 0;
  }

  .container {
    padding: 0 20px;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 3.2rem);
  }

  .hero {
    padding-top: 36px;
    padding-bottom: 52px;
  }

  .hero-media,
  .hero-media.inline {
    justify-self: center;
    width: min(100%, 300px);
    padding-bottom: 0;
  }

  .hero-media .mockup.main {
    width: 100%;
  }

  .hero-media .mockup.alt {
    display: none;
  }

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

  .button.primary,
  .button-row .button {
    width: 100%;
  }

  .trust-strip .stat + .stat {
    padding-left: 14px;
  }

  .trust-strip .stat strong {
    font-size: 1.5rem;
  }

  .podium-grid {
    gap: 10px;
  }

  .podium-stand {
    padding: 16px 8px;
  }

  .podium-stand.first {
    padding-top: 26px;
    padding-bottom: 22px;
  }

  .podium-name {
    font-size: 1.05rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
