:root {
  --paper: #f4eee2;
  --paper-light: #fffaf0;
  --ink: #17324d;
  --muted: #6f756f;
  --coral: #e85d4a;
  --coral-dark: #bd4032;
  --yellow: #f4c95d;
  --sky: #9bc8d6;
  --green: #3d775d;
  --red: #c3483a;
  --line: rgba(23, 50, 77, 0.18);
  --shadow: 0 12px 32px rgba(45, 49, 43, 0.11);
  --display: Georgia, "Times New Roman", serif;
  --sans: ui-rounded, "SF Pro Rounded", "Avenir Next", Avenir, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.72), transparent 27rem),
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(23, 50, 77, 0.025) 39px 40px),
    var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.site-header {
  min-height: 116px;
  padding: 24px 0 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 66px;
  height: 58px;
  position: relative;
  display: block;
}

.brand-wheel {
  position: absolute;
  bottom: 1px;
  width: 27px;
  height: 27px;
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.brand-wheel--left {
  left: 1px;
}

.brand-wheel--right {
  right: 1px;
}

.brand-wheel::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px dashed var(--ink);
  border-radius: 50%;
}

.brand-bird {
  position: absolute;
  left: 22px;
  top: 0;
  width: 31px;
  height: 37px;
  border-radius: 55% 55% 44% 48%;
  display: grid;
  place-items: center;
  color: var(--paper-light);
  background: var(--coral);
  font: 700 22px/1 var(--display);
  transform: rotate(-8deg);
}

.brand-bird::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 8px;
  border-width: 5px 0 5px 17px;
  border-style: solid;
  border-color: transparent transparent transparent var(--yellow);
}

.brand-name,
.brand-edition {
  display: block;
}

.brand-name {
  font: 700 24px/1.1 var(--display);
  letter-spacing: -0.02em;
}

.brand-edition {
  margin-top: 5px;
  color: var(--coral-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.19em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.icon-button:hover {
  color: var(--paper-light);
  background: var(--ink);
  transform: rotate(7deg);
}

.best-score {
  padding-left: 15px;
  border-left: 1px solid var(--line);
  text-align: right;
}

.best-score__label,
.best-score__value {
  display: block;
}

.best-score__label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.best-score__value {
  margin-top: 3px;
  font: 700 17px/1 var(--display);
}

main {
  flex: 1;
}

.game {
  padding: 24px 0 20px;
}

.game[hidden] {
  display: none;
}

.game-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.round-count,
.score-count {
  min-width: 86px;
}

.round-count > span,
.score-count > span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.round-count > strong,
.score-count > strong {
  font: 700 17px/1 var(--display);
  letter-spacing: 0.03em;
}

.score-count {
  text-align: right;
}

.progress-track {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(23, 50, 77, 0.12);
}

.progress-track span {
  display: block;
  width: 10%;
  height: 100%;
  border-radius: inherit;
  background: var(--coral);
  transition: width 350ms ease;
}

.question-block {
  margin: 25px auto 23px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--coral-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.question-block h1 {
  max-width: 930px;
  margin: 0 auto;
  font: 400 clamp(28px, 3.7vw, 48px)/1.04 var(--display);
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.model-name {
  color: var(--coral-dark);
  font-style: italic;
  white-space: nowrap;
}

.question-mark {
  color: var(--coral-dark);
}

.question-hint {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
}

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

.choice {
  min-width: 0;
  padding: 0;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: inherit;
  background: var(--paper-light);
  box-shadow: 0 2px 0 rgba(23, 50, 77, 0.08);
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  transform: translateY(0) rotate(var(--tilt, 0deg));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.choice:nth-child(1) {
  --tilt: -0.35deg;
}

.choice:nth-child(2) {
  --tilt: 0.22deg;
}

.choice:nth-child(3) {
  --tilt: -0.18deg;
}

.choice:not(:disabled):hover {
  border-color: rgba(23, 50, 77, 0.48);
  box-shadow: var(--shadow);
  transform: translateY(-6px) rotate(0deg);
}

.choice:disabled {
  cursor: default;
}

.choice__number {
  position: absolute;
  z-index: 2;
  top: 11px;
  left: 11px;
  width: 27px;
  height: 27px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 250, 240, 0.92);
  font: 700 11px/1 var(--sans);
}

.choice__image-wrap {
  height: clamp(210px, 25vw, 300px);
  padding: 28px 18px 18px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(23, 50, 77, 0.025) 31px 32px),
    #fffdf7;
}

.choice__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 -20px 24px rgba(244, 238, 226, 0.16);
}

.choice__image {
  display: block;
  width: 92%;
  height: 92%;
  object-fit: contain;
  overflow: hidden;
  clip-path: inset(0);
  transform: scale(0.94);
  transition: transform 220ms ease, filter 220ms ease, opacity 220ms ease;
}

.choice:not(:disabled):hover .choice__image {
  transform: scale(0.98);
}

.choice__caption {
  min-height: 45px;
  padding: 11px 15px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: var(--paper-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.choice__model {
  overflow: hidden;
  opacity: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: opacity 180ms ease;
}

.choice__verdict {
  flex: none;
}

.choice.is-dimmed .choice__image {
  filter: grayscale(1);
  opacity: 0.46;
}

.choice.is-correct {
  border-color: var(--green);
  box-shadow: 0 0 0 2px var(--green), var(--shadow);
  transform: translateY(-4px) rotate(0deg);
}

.choice.is-wrong {
  border-color: var(--red);
  box-shadow: 0 0 0 2px var(--red);
  animation: shake 320ms ease;
}

.choice.is-correct .choice__caption {
  color: #fff;
  background: var(--green);
}

.choice.is-wrong .choice__caption {
  color: #fff;
  background: var(--red);
}

.choice.is-revealed .choice__model {
  opacity: 1;
}

.game-footer {
  min-height: 58px;
  padding-top: 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.streak {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.streak.is-hot {
  color: var(--coral-dark);
  transform: scale(1.03);
}

.streak-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--coral-dark);
  background: rgba(232, 93, 74, 0.12);
  font-size: 15px;
}

.keyboard-hint {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.05em;
}

kbd {
  min-width: 21px;
  height: 21px;
  margin: 0 1px;
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 4px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.72);
  font: 700 10px/1 var(--sans);
}

.next-button {
  justify-self: end;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.next-button:hover {
  background: var(--coral-dark);
  transform: translateX(2px);
}

.bonus {
  padding: 24px 0 30px;
}

.bonus[hidden] {
  display: none;
}

.bonus-meta {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bonus-meta span,
.bonus-meta strong {
  display: block;
}

.bonus-meta span {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.bonus-meta strong {
  font: 700 17px/1 var(--display);
  letter-spacing: 0.03em;
}

.bonus-score-count {
  text-align: right;
}

.bonus-question {
  margin: 25px auto 23px;
}

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

.bonus-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--paper-light);
  box-shadow: 0 2px 0 rgba(23, 50, 77, 0.08);
  animation: card-in 380ms both;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.bonus-card:nth-child(2) {
  animation-delay: 55ms;
}

.bonus-card:nth-child(3) {
  animation-delay: 110ms;
}

.bonus-card__image-wrap {
  height: clamp(210px, 24vw, 280px);
}

.bonus-card__control {
  min-height: 92px;
  padding: 13px 15px 12px;
  border-top: 1px solid var(--line);
  display: block;
  background: var(--paper-light);
}

.bonus-card__control label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.bonus-select {
  width: 100%;
  height: 36px;
  padding: 0 34px 0 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fffdf7;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.bonus-select:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.bonus-select:disabled {
  color: var(--ink);
  cursor: default;
  opacity: 1;
  -webkit-text-fill-color: var(--ink);
}

.bonus-card__answer {
  min-height: 14px;
  margin-top: 7px;
  display: block;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bonus-card.is-correct {
  border-color: var(--green);
  box-shadow: 0 0 0 2px var(--green), var(--shadow);
  transform: translateY(-3px);
}

.bonus-card.is-correct .bonus-card__answer {
  color: var(--green);
}

.bonus-card.is-wrong {
  border-color: var(--red);
  box-shadow: 0 0 0 2px var(--red);
}

.bonus-card.is-wrong .bonus-card__answer {
  color: var(--red);
}

.bonus-actions {
  min-height: 90px;
  padding-top: 14px;
  display: grid;
  place-items: center;
}

.bonus-status {
  min-height: 17px;
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.results {
  min-height: 650px;
  padding: 52px 0;
  display: grid;
  place-items: center;
}

.results[hidden] {
  display: none;
}

.results-card {
  width: min(680px, 100%);
  padding: clamp(32px, 6vw, 64px);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-light);
  box-shadow: var(--shadow);
  text-align: center;
}

.results-card::before,
.results-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(23, 50, 77, 0.09);
  border-radius: 50%;
}

.results-card::before {
  width: 210px;
  height: 210px;
  right: -125px;
  top: -115px;
}

.results-card::after {
  width: 145px;
  height: 145px;
  left: -86px;
  bottom: -80px;
}

.results-stamp {
  width: 100px;
  height: 100px;
  margin: 6px auto 16px;
  border: 3px double var(--coral-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--coral-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.25;
  transform: rotate(-8deg);
}

.results h1 {
  margin: 0;
  font: 400 clamp(36px, 6vw, 60px)/1 var(--display);
  letter-spacing: -0.04em;
}

.results-copy {
  max-width: 460px;
  margin: 14px auto 30px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.results-scoreline {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.results-scoreline div + div {
  border-left: 1px solid var(--line);
}

.results-scoreline > div > span,
.results-scoreline > div > strong {
  display: block;
}

.results-scoreline > div > span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.results-scoreline > div > strong {
  font: 700 25px/1 var(--display);
}

.results-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.primary-button,
.secondary-button {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.primary-button {
  border: 1px solid var(--ink);
  color: #fff;
  background: var(--ink);
}

.secondary-button {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.secondary-button:hover {
  border-color: var(--ink);
}

.copy-status {
  min-height: 18px;
  margin: 10px 0 -12px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
}

.site-footer {
  min-height: 66px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--ink);
  text-underline-offset: 3px;
}

.how-to {
  width: min(460px, calc(100% - 32px));
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 0 24px 80px rgba(23, 50, 77, 0.28);
}

.how-to::backdrop {
  background: rgba(23, 50, 77, 0.48);
  backdrop-filter: blur(3px);
}

.how-to h2 {
  margin: 0 0 16px;
  font: 400 38px/1 var(--display);
}

.how-to ol {
  margin: 0 0 18px;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.8;
}

.how-to > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 25px;
}

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

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  30% { transform: translateX(-5px); }
  60% { transform: translateX(4px); }
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(12px) rotate(var(--tilt, 0deg)); }
  to { opacity: 1; transform: translateY(0) rotate(var(--tilt, 0deg)); }
}

.choice {
  animation: card-in 380ms both;
}

.choice:nth-child(2) { animation-delay: 55ms; }
.choice:nth-child(3) { animation-delay: 110ms; }

@media (min-width: 761px) {
  .page-shell {
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }

  .site-header {
    min-height: clamp(94px, 14dvh, 116px);
    padding-top: clamp(16px, 3dvh, 24px);
    padding-bottom: clamp(14px, 2.5dvh, 20px);
    flex: none;
  }

  main {
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: auto;
  }

  .game,
  .bonus,
  .results {
    min-height: 0;
    flex: 1;
  }

  .game {
    padding-top: clamp(12px, 2.5dvh, 24px);
    padding-bottom: clamp(8px, 2dvh, 20px);
    display: grid;
    grid-template-rows: auto auto minmax(187px, 1fr) auto;
  }

  .question-block {
    margin-top: clamp(12px, 2.6dvh, 25px);
    margin-bottom: clamp(12px, 2.4dvh, 23px);
  }

  .question-block h1 {
    font-size: clamp(28px, min(3.7vw, 5.5dvh), 48px);
  }

  .choices,
  .bonus-choices {
    min-height: 0;
    align-items: center;
  }

  .choice {
    height: 100%;
    max-height: 347px;
    display: grid;
    grid-template-rows: minmax(140px, 1fr) auto;
  }

  .choice__image-wrap {
    height: auto;
    min-height: 0;
  }

  .game-footer {
    min-height: clamp(44px, 7dvh, 58px);
    padding-top: clamp(8px, 1.6dvh, 14px);
  }

  .bonus {
    min-height: 0;
    padding-top: clamp(12px, 2.5dvh, 24px);
    padding-bottom: clamp(10px, 2dvh, 30px);
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
  }

  .bonus-meta {
    padding-bottom: clamp(10px, 1.8dvh, 16px);
  }

  #bonus-form {
    min-height: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .bonus-card {
    height: 100%;
    min-height: 0;
    max-height: 384px;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .bonus-choices {
    height: 100%;
  }

  .bonus-card__image-wrap {
    height: auto;
  }

  .bonus-actions {
    min-height: clamp(54px, 9dvh, 90px);
    padding-top: clamp(8px, 1.6dvh, 14px);
  }

  .results {
    min-height: 0;
    padding: clamp(18px, 5dvh, 52px) 0;
  }

  .results-card {
    padding: clamp(24px, 5dvh, 64px);
  }

  .site-footer {
    min-height: clamp(48px, 8dvh, 66px);
    padding: clamp(10px, 2dvh, 18px) 0;
    flex: none;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 24px, 580px);
  }

  .site-header {
    min-height: 88px;
    padding: 16px 0;
  }

  .brand-mark {
    width: 51px;
    height: 48px;
    transform: scale(0.82);
    transform-origin: left center;
    margin-right: -7px;
  }

  .brand-name {
    font-size: 19px;
  }

  .brand-edition {
    font-size: 8px;
  }

  .best-score {
    display: none;
  }

  .game {
    padding-top: 18px;
  }

  .game-meta {
    gap: 12px;
  }

  .question-block {
    margin: 20px auto 17px;
  }

  .question-block h1 {
    font-size: clamp(27px, 8vw, 38px);
  }

  .question-hint {
    font-size: 11px;
  }

  .choices {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .choice,
  .choice:nth-child(n) {
    --tilt: 0deg;
    display: grid;
    grid-template-columns: 1fr 108px;
  }

  .choice__image-wrap {
    height: 166px;
    padding: 19px 12px 12px;
  }

  .choice__caption {
    min-width: 0;
    min-height: 100%;
    padding: 16px 11px;
    border-top: 0;
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .choice__model {
    max-width: 86px;
    white-space: normal;
    font-size: 9px;
    line-height: 1.35;
  }

  .choice__number {
    width: 25px;
    height: 25px;
    top: 8px;
    left: 8px;
  }

  .game-footer {
    grid-template-columns: 1fr auto;
  }

  .keyboard-hint {
    display: none;
  }

  .next-button {
    grid-column: 2;
  }

  .bonus {
    padding-top: 18px;
  }

  .bonus-question {
    margin: 20px auto 17px;
  }

  .bonus-choices {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bonus-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 138px;
  }

  .bonus-card__image-wrap {
    height: 168px;
    padding: 19px 12px 12px;
  }

  .bonus-card__control {
    min-width: 0;
    min-height: 100%;
    padding: 14px 10px;
    border-top: 0;
    border-left: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .bonus-select {
    padding-right: 28px;
    padding-left: 8px;
    font-size: 10px;
  }

  .results {
    min-height: 620px;
    padding: 28px 0;
  }

  .results-scoreline > div > strong {
    font-size: 18px;
  }

  .results-actions {
    flex-direction: column;
  }

  .site-footer {
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
}

@media (max-width: 390px) {
  .brand-edition {
    display: none;
  }

  .choice__image-wrap {
    height: 145px;
  }
}

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