:root {
  --bg: #0f0f0f;
  --surface: #171717;
  --surface-soft: #202020;
  --surface-paper: #f2f3ef;
  --text: #f2f2f2;
  --muted: #a7a7a7;
  --muted-dark: #5d625b;
  --line: #343434;
  --line-light: #d3d8d0;
  --accent: #ffd02b;
  --accent-strong: #ffe06a;
  --danger: #c41f24;
  --green: #0f6d35;
  --section-current: #111111;
  --section-about: #e9ede6;
  --section-details: #e9ede6;
  --section-story: #151a13;
  --section-registration: #2b1115;
  --section-format: #dfe7dc;
  --section-history: #f1f2ef;
  --paper: #fbfbf7;
  --ink: #141414;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --shadow-soft: 0 18px 48px rgba(20, 20, 20, 0.16);
  --radius: 8px;
}

@font-face {
  font-display: swap;
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/bebas-neue-regular.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/oswald-regular.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Oswald";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/fonts/oswald-medium.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 208, 43, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 208, 43, 0.025) 1px, transparent 1px),
    var(--bg);
  background-size: 42px 42px;
  font-family: "Oswald", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  background-image: var(--hero-image, none);
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 208, 43, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(15, 15, 15, 0.98), rgba(15, 15, 15, 0.8) 48%, rgba(15, 15, 15, 0.45)),
    linear-gradient(0deg, rgba(15, 15, 15, 0.9), rgba(15, 15, 15, 0.18) 46%);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
}

.brand,
.topbar__link {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  width: 96px;
  min-height: 48px;
  align-items: center;
  color: var(--text);
}

.brand img {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.topbar__links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.topbar__link {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(242, 242, 242, 0.22);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(15, 15, 15, 0.58);
  font-weight: 600;
  text-transform: uppercase;
}

.hero__content {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0 96px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: "Oswald", Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  margin: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  font-size: 5.1rem;
  letter-spacing: 0;
}

h2 {
  font-size: 3.5rem;
}

.hero__lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 0;
}

.hero__facts span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 208, 43, 0.32);
  border-radius: var(--radius);
  background: rgba(15, 15, 15, 0.68);
  color: var(--text);
  font-weight: 600;
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
}

.button--primary,
.button--submit {
  color: #101010;
  background: var(--accent);
}

.button--primary:hover,
.button--submit:hover {
  background: var(--accent-strong);
}

.button--ghost {
  border: 1px solid rgba(242, 242, 242, 0.3);
  color: var(--text);
  background: rgba(15, 15, 15, 0.48);
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.current-game,
.about-game,
.why-game,
.format-game,
.details,
.registration,
.history {
  color: var(--text);
}

.current-game {
  position: relative;
  padding: 72px 0;
  background:
    linear-gradient(rgba(255, 208, 43, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 208, 43, 0.035) 1px, transparent 1px),
    var(--section-current);
  background-size: 40px 40px;
  border-top: 1px solid rgba(255, 208, 43, 0.22);
}

.current-game .eyebrow {
  color: var(--accent);
}

.current-game__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: start;
}

.current-game__layout p {
  max-width: 420px;
  color: var(--muted);
}

.game-preview {
  overflow: hidden;
  border: 1px solid rgba(255, 208, 43, 0.22);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.game-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: var(--surface);
}

.game-preview div {
  padding: 22px;
}

.game-preview span {
  display: block;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
}

.game-preview h3 {
  margin: 8px 0 0;
  color: var(--text);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.game-preview p {
  max-width: 100%;
  margin: 12px 0 18px;
}

.about-game {
  padding: 72px 0;
  color: var(--ink);
  background: var(--section-about);
}

.about-game .eyebrow,
.why-game .eyebrow {
  color: var(--green);
}

.about-game h2,
.why-game h2 {
  color: var(--ink);
}

.about-game__layout,
.format-game__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: start;
}

.about-game__copy {
  display: grid;
  gap: 14px;
}

.about-game__copy p,
.format-game__layout p {
  margin: 0;
  font-size: 1.08rem;
}

.about-game__copy p {
  color: var(--muted-dark);
}

.why-game {
  padding: 72px 0;
  color: var(--ink);
  background: #f8f8f3;
}

.why-game__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.why-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.why-card span {
  display: inline-grid;
  min-width: 38px;
  min-height: 34px;
  place-items: center;
  border-radius: var(--radius);
  color: #101010;
  background: var(--accent);
  font-weight: 600;
}

.why-card h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.why-card p {
  margin: 12px 0 0;
  color: var(--muted-dark);
}

.format-game {
  padding: 74px 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(15, 109, 53, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 109, 53, 0.045) 1px, transparent 1px),
    var(--section-format);
  background-size: 40px 40px;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.format-game .eyebrow {
  color: var(--green);
}

.format-game h2 {
  color: var(--ink);
}

.format-game__layout p {
  max-width: 460px;
  color: var(--muted-dark);
}

.format-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.format-steps li {
  display: grid;
  grid-template-columns: minmax(92px, 0.4fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid rgba(15, 109, 53, 0.16);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.format-steps strong {
  color: var(--danger);
  text-transform: uppercase;
}

.format-steps span {
  color: var(--muted-dark);
}

.format-game + .current-game {
  border-top: 1px solid rgba(255, 208, 43, 0.28);
}

.details {
  padding: 72px 0;
  color: var(--ink);
  background: var(--section-details);
}

.details .eyebrow {
  color: var(--green);
}

.details h2 {
  color: var(--ink);
}

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

.detail {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.detail__label {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
}

.detail strong,
.detail small {
  display: block;
}

.detail strong {
  font-size: 1.08rem;
}

.detail small {
  margin-top: 8px;
  color: var(--muted-dark);
}

.story {
  padding: 74px 0;
  background:
    linear-gradient(rgba(255, 208, 43, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 208, 43, 0.055) 1px, transparent 1px),
    var(--section-story);
  background-size: 38px 38px;
  color: var(--text);
}

.story .eyebrow {
  color: var(--accent);
}

.story h2 {
  color: var(--text);
}

.story__layout,
.registration__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 78px;
  padding: 18px 20px 18px 66px;
  border: 1px solid rgba(255, 208, 43, 0.2);
  border-radius: var(--radius);
  background: rgba(28, 36, 24, 0.94);
  counter-increment: steps;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.steps li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: var(--radius);
  color: #101010;
  background: var(--accent);
  content: counter(steps);
  font-weight: 600;
}

.registration {
  padding: 78px 0;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(196, 31, 36, 0.22), transparent 36%),
    linear-gradient(rgba(255, 208, 43, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 208, 43, 0.035) 1px, transparent 1px),
    var(--section-registration);
  background-size: auto, 40px 40px, 40px 40px;
  border-top: 1px solid rgba(255, 208, 43, 0.18);
  border-bottom: 1px solid rgba(255, 208, 43, 0.18);
}

.registration .eyebrow {
  color: var(--accent);
}

.registration h2 {
  color: var(--text);
}

.registration__intro p {
  max-width: 380px;
  color: #d1d1cc;
}

.form {
  display: grid;
  gap: 2px;
  width: min(100%, 520px);
  justify-self: start;
  padding: 14px;
  border: 1px solid rgba(255, 208, 43, 0.28);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.registration-state {
  align-self: start;
  padding: 26px;
  border: 1px solid rgba(255, 208, 43, 0.28);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.registration-state strong {
  display: block;
  color: var(--danger);
  font-size: 1.35rem;
  line-height: 1.15;
}

.registration-state p {
  margin: 12px 0 0;
  color: var(--muted-dark);
}

.registration-state__highlight {
  color: var(--danger);
  font-weight: 900;
}

.registration-state__deal {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 800;
}

.registration-state--wide {
  grid-column: 1 / -1;
  max-width: 680px;
}

.field {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form label,
.form legend {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.15;
}

label,
legend {
  color: var(--text);
  font-weight: 600;
}

.required-mark {
  color: var(--danger);
  font-weight: 900;
}

input[type="text"],
input[type="number"],
input[type="tel"],
textarea {
  width: 100%;
  min-height: 38px;
  border: 1px solid #c6cbc2;
  border-radius: var(--radius);
  padding: 7px 10px;
  color: var(--ink);
  background: #ffffff;
}

textarea {
  min-height: 72px;
  resize: vertical;
}

.textarea--compact {
  min-height: 0;
  height: calc(1.35em * 2 + 16px);
  overflow-y: auto;
  resize: none;
}

.field + .field,
.field + fieldset,
fieldset + .field,
fieldset + fieldset {
  margin-top: 0;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(255, 208, 43, 0.22);
  border-color: var(--accent);
}

.choice {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.3;
}

.choice input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.field .choice + .choice {
  margin-top: 0;
}

.field__hint,
.field__error,
.form__note,
.form__status {
  margin: 0;
}

.field__hint {
  color: var(--muted-dark);
  font-size: 0.76rem;
  line-height: 1.25;
  margin-top: -1px;
}

.field__error {
  min-height: 0.65rem;
  color: var(--danger);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.2;
  margin-top: -1px;
}

.form__status {
  min-height: 1.5rem;
  color: var(--accent);
  font-weight: 600;
}

.form__note {
  color: var(--muted-dark);
  font-size: 0.76rem;
  line-height: 1.2;
}

.form__status.is-error {
  color: var(--danger);
}

.button--submit {
  width: 100%;
  min-height: 40px;
  padding: 10px 14px;
}

.venue-trigger {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(20, 20, 20, 0.18);
  text-underline-offset: 4px;
}

.venue-trigger:hover {
  text-decoration-color: rgba(20, 20, 20, 0.42);
}

.venue-trigger--active {
  color: var(--green);
}

.modal-open {
  overflow: hidden;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
}

.success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.72);
}

.success-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: 30px;
  border: 1px solid rgba(255, 208, 43, 0.24);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 208, 43, 0.1), rgba(255, 255, 255, 0) 38%),
    var(--paper);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.42);
}

.success-modal__dialog .eyebrow {
  margin-bottom: 14px;
  color: var(--danger);
}

.success-modal__dialog h2 {
  color: var(--ink);
}

.success-modal__lead,
.success-modal__copy {
  margin: 0;
}

.success-modal__lead {
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 600;
}

.success-modal__copy {
  margin-top: 12px;
  color: var(--muted-dark);
  font-size: 1rem;
}

.success-modal__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.success-modal__ghost {
  border-color: rgba(20, 20, 20, 0.14);
  color: var(--ink);
  background: transparent;
}

.success-modal__ghost:hover {
  background: rgba(20, 20, 20, 0.04);
}

.success-modal__social {
  display: grid;
  width: 100%;
  min-height: 122px;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 18px 14px;
  border: 1px solid rgba(20, 20, 20, 0.14);
  color: var(--ink);
  background: transparent;
}

.success-modal__social--telegram {
  color: var(--ink);
}

.success-modal__social--instagram {
  color: var(--ink);
}

.success-modal__social:hover {
  background: rgba(20, 20, 20, 0.04);
}

.success-modal__icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--ink);
}

.success-modal__social--telegram .success-modal__icon {
  color: #229ed9;
}

.success-modal__social--instagram .success-modal__icon {
  color: #d62976;
}

.success-modal__icon svg {
  width: 28px;
  height: 28px;
}

.success-modal__label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.success-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.success-modal__close:hover {
  background: #ffffff;
}

.venue-modal {
  position: fixed;
  inset: 0;
  z-index: 29;
  display: grid;
  place-items: center;
  padding: 20px;
}

.venue-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.72);
}

.venue-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  padding: 24px;
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.42);
}

.venue-modal__media {
  overflow: hidden;
  margin-top: 18px;
  border-radius: var(--radius);
  background: var(--surface);
}

.venue-modal__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.venue-modal__address {
  margin: 18px 0 0;
  color: var(--muted-dark);
  font-size: 1rem;
}

.venue-modal__map {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: var(--radius);
}

.venue-modal__map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.venue-modal__actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.venue-modal__map-link {
  min-width: 220px;
}

.venue-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.venue-modal__close:hover {
  background: #ffffff;
}

.button[disabled] {
  cursor: wait;
  opacity: 0.68;
}

[data-home-primary][href="#current"] {
  cursor: progress;
}

.footer {
  padding: 26px 0;
  background: var(--bg);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.footer a {
  color: var(--text);
  font-weight: 600;
}

.history {
  padding: 72px 0 84px;
  color: var(--ink);
  background: var(--section-history);
}

.history .eyebrow {
  color: var(--green);
}

.history h2 {
  color: var(--ink);
}

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

.history-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.history-card-link:focus-visible {
  outline: 3px solid rgba(255, 208, 43, 0.42);
  outline-offset: 4px;
}

.history-card {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.history-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--surface);
}

.history-card div {
  padding: 16px;
}

.history-card span {
  display: block;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
}

.history-card h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.history-card p,
.history__empty {
  color: var(--muted-dark);
}

.history-card p {
  margin: 8px 0 0;
}

.history__empty {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #ffffff;
}

@media (max-width: 900px) {
  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 3rem;
  }

  .current-game__layout,
  .about-game__layout,
  .format-game__layout,
  .details__grid,
  .why-game__grid,
  .history__grid,
  .story__layout,
  .registration__layout {
    grid-template-columns: 1fr;
  }

  .story__layout,
  .registration__layout {
    gap: 30px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 86svh;
  }

  .topbar,
  .section-inner,
  .hero__content {
    width: min(100% - 24px, 1120px);
  }

  .hero__content {
    padding: 54px 0 72px;
  }

  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .button,
  .hero__actions {
    width: 100%;
  }

  .topbar {
    align-items: flex-start;
    gap: 14px;
  }

  .brand,
  .brand img {
    width: 72px;
    height: 72px;
  }

  .topbar__links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .current-game,
  .about-game,
  .why-game,
  .format-game,
  .details,
  .story,
  .registration,
  .history {
    padding: 54px 0;
  }

  .form {
    padding: 12px;
    width: 100%;
  }

  .success-modal {
    padding: 14px;
  }

  .success-modal__dialog {
    padding: 22px 18px 18px;
  }

  .venue-modal {
    padding: 14px;
  }

  .venue-modal__dialog {
    padding: 22px 18px 18px;
  }

  .success-modal__actions {
    grid-template-columns: 1fr;
  }

  .venue-modal__actions {
    flex-direction: column;
  }

  .format-steps li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer__inner {
    flex-direction: column;
  }
}
