    :root {
      --ink: #07365c;
      --text: #24485f;
      --muted: #5e7180;
      --green: #52c41a;
      --lime: #b7ef1d;
      --pink: #ff3c9a;
      --red: #f33131;
      --yellow: #ffd83d;
      --cyan: #24c7f2;
      --blue: #1768d8;
      --paper: #fffdf6;
      --line: rgba(7, 54, 92, .16);
      --shadow: 0 18px 44px rgba(7, 54, 92, .14);
      --radius: 8px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 78px;
    }

    body {
      margin: 0;
      color: var(--ink);
      font-family: "Trebuchet MS", Arial, sans-serif;
      line-height: 1.5;
      background:
        linear-gradient(180deg, rgba(244, 255, 236, .92) 0%, rgba(255, 255, 248, .98) 42%, rgba(236, 255, 247, .9) 100%),
        repeating-linear-gradient(135deg, rgba(183, 239, 29, .08) 0 12px, rgba(36, 199, 242, .05) 12px 24px);
    }

    body.modal-open {
      overflow: hidden;
    }

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

    a {
      color: inherit;
      text-decoration: none;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 30;
      border-bottom: 3px solid rgba(7, 54, 92, .08);
      background: rgba(255, 253, 246, .96);
      backdrop-filter: blur(14px);
    }

    .nav {
      width: min(1180px, calc(100% - 32px));
      min-height: 76px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      min-width: 220px;
      height: 76px;
      position: relative;
      z-index: 3;
    }

    .brand img {
      position: absolute;
      top: 10px;
      left: 0;
      width: auto;
      height: 146px;
      margin-top: 0;
      padding: 8px 14px;
      border: 4px solid #fff;
      border-radius: var(--radius);
      background: rgba(255, 253, 246, .98);
      box-shadow: 0 16px 32px rgba(7, 54, 92, .18);
    }

    .nav-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: 2px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      color: var(--ink);
      cursor: pointer;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .nav-toggle span,
    .nav-toggle::before,
    .nav-toggle::after {
      content: "";
      position: absolute;
      width: 22px;
      height: 3px;
      border-radius: 99px;
      background: currentColor;
    }

    .nav-toggle::before {
      transform: translateY(-8px);
    }

    .nav-toggle::after {
      transform: translateY(8px);
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
      flex-wrap: wrap;
    }

    .nav-links a {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 14px;
      border-radius: var(--radius);
      color: var(--ink);
      font-weight: 900;
      transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible,
    .nav-links a.is-active {
      background: var(--pink);
      color: #fff;
      box-shadow: 0 6px 0 #b91f6e;
      outline: 2px solid transparent;
      transform: translateY(-2px);
    }

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

    .hero-slider {
      position: relative;
      min-height: calc(100svh - 76px);
      overflow: hidden;
      background: #123;
      isolation: isolate;
    }

    .slider-track,
    .slide {
      position: absolute;
      inset: 0;
    }

    .slide {
      display: grid;
      align-items: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity .7s ease;
    }

    .slide.is-active {
      opacity: 1;
      pointer-events: auto;
    }

    .slide img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(7, 54, 92, .68), rgba(7, 54, 92, .2) 52%, rgba(7, 54, 92, .48)),
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .26));
      z-index: 1;
    }

    .slider-inner {
      position: relative;
      z-index: 2;
      display: grid;
      min-height: calc(100svh - 76px);
      align-items: center;
      padding: 70px 0 96px;
    }

    .slide-title {
      max-width: 980px;
      margin: 0 auto;
      color: #fff;
      font-size: 4.8rem;
      line-height: 1;
      text-align: center;
      text-transform: uppercase;
      text-shadow: 0 5px 14px rgba(0, 0, 0, .55);
    }

    .slider-arrow {
      position: absolute;
      top: 50%;
      z-index: 4;
      width: 50px;
      height: 58px;
      border: 0;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .12);
      color: #fff;
      font-size: 3rem;
      line-height: 1;
      cursor: pointer;
      transform: translateY(-50%);
    }

    .slider-arrow:hover,
    .slider-arrow:focus-visible {
      background: rgba(255, 255, 255, .24);
      outline: 2px solid #fff;
    }

    .slider-arrow.prev {
      left: 28px;
    }

    .slider-arrow.next {
      right: 28px;
    }

    .slider-dots {
      position: absolute;
      left: 50%;
      bottom: 28px;
      z-index: 4;
      display: flex;
      gap: 8px;
      transform: translateX(-50%);
    }

    .slider-dot {
      width: 64px;
      height: 8px;
      border: 0;
      border-radius: 99px;
      background: rgba(255, 255, 255, .82);
      cursor: pointer;
    }

    .slider-dot.is-active {
      background: var(--blue);
    }

    .section-inner {
      position: relative;
      z-index: 1;
    }

    .eyebrow {
      width: fit-content;
      margin-bottom: 18px;
      padding: 8px 13px;
      border: 2px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      color: var(--red);
      font-size: .86rem;
      font-weight: 900;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    h1 {
      max-width: 740px;
      margin-bottom: 20px;
      color: var(--red);
      font-size: 5.2rem;
      line-height: .94;
      letter-spacing: 0;
      text-shadow: 0 4px 0 rgba(7, 54, 92, .09);
    }

    .hero-actions,
    .section-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
    }

    .button {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 18px;
      border: 0;
      border-radius: var(--radius);
      background: var(--blue);
      color: #fff;
      font: inherit;
      font-weight: 900;
      box-shadow: 0 7px 0 #0b3d91;
      cursor: pointer;
    }

    .button.secondary {
      background: var(--yellow);
      color: var(--ink);
      box-shadow: 0 7px 0 #d49d00;
    }

    .button.pink {
      background: var(--pink);
      box-shadow: 0 7px 0 #b91f6e;
    }

    .contact-action {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 11px 16px;
      border-radius: var(--radius);
      background: #fff;
      color: var(--ink);
      font-weight: 900;
      box-shadow: 0 6px 0 rgba(7, 54, 92, .14);
      border: 2px solid rgba(7, 54, 92, .12);
    }

    .contact-action:hover,
    .contact-action:focus-visible {
      background: #f0ffe8;
      outline: 2px solid rgba(82, 196, 26, .28);
    }

    .contact-action img {
      width: 26px;
      height: 26px;
      object-fit: contain;
    }

    .back-to-top {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 25;
      width: 52px;
      height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 3px solid #fff;
      border-radius: 50%;
      background: var(--pink);
      color: #fff;
      font-size: 2rem;
      line-height: 1;
      font-weight: 900;
      box-shadow: 0 7px 0 #b91f6e, 0 14px 28px rgba(7, 54, 92, .2);
      opacity: 0;
      pointer-events: none;
      transform: translateY(14px);
      transition: opacity .2s ease, transform .2s ease;
    }

    .back-to-top.is-visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .back-to-top:hover,
    .back-to-top:focus-visible {
      outline: 3px solid rgba(255, 216, 61, .8);
      transform: translateY(-2px);
    }

    section {
      position: relative;
      padding: 74px 0;
      scroll-margin-top: 0;
    }

    .reserve-band {
      padding-top: 112px;
    }

    section:not(.hero-slider)::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      width: min(1180px, calc(100% - 32px));
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(82, 196, 26, .36), rgba(255, 60, 154, .22), transparent);
      transform: translateX(-50%);
    }

    .section-heading {
      max-width: 760px;
      margin-bottom: 28px;
    }

    .section-heading.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section-heading h2 {
      margin-bottom: 10px;
      color: var(--green);
      font-size: 3rem;
      line-height: 1;
      letter-spacing: 0;
    }

    .section-heading p {
      color: var(--muted);
      font-size: 1.08rem;
    }

    .games-grid,
    .pricing-grid,
    .benefits-grid,
    .rules-grid,
    .contact-grid {
      display: grid;
      gap: 16px;
    }

    .games-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .game-card,
    .price-card,
    .benefit-card,
    .rule-panel,
    .faq-item,
    .contact-panel {
      border: 2px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 12px 30px rgba(7, 54, 92, .08);
    }

    .game-card {
      overflow: hidden;
    }

    .game-image {
      min-height: 290px;
      display: grid;
      place-items: end center;
      padding: 18px;
      background: linear-gradient(180deg, #f7fdff, #fff);
    }

    .game-image img {
      width: auto;
      max-width: min(100%, 520px);
      max-height: 260px;
      object-fit: contain;
    }

    .game-card h3 {
      margin: 0;
      padding: 0 22px;
      color: var(--green);
      font-size: 2rem;
      text-align: center;
    }

    .measure {
      width: fit-content;
      margin: -4px auto 16px;
      padding: 9px 16px;
      border-radius: var(--radius);
      background: var(--lime);
      color: var(--red);
      font-size: 1.15rem;
      font-weight: 900;
      transform: rotate(-3deg);
      box-shadow: 0 7px 0 rgba(7, 54, 92, .16);
    }

    .game-card p {
      margin: 0;
      padding: 0 22px 22px;
      color: var(--text);
      text-align: center;
    }

    .pricing-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .price-card {
      padding: 22px;
      position: relative;
      overflow: hidden;
    }

    .price-card.cyan {
      --card-color: var(--cyan);
    }

    .price-card.pink {
      --card-color: var(--pink);
    }

    .price-card.green {
      --card-color: var(--green);
    }

    .price-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 8px;
      background: var(--card-color, var(--cyan));
    }

    .price-card h3 {
      margin-bottom: 12px;
      font-size: 1.35rem;
    }

    .price {
      margin-bottom: 14px;
      color: var(--red);
      font-size: 2.25rem;
      line-height: 1;
      font-weight: 900;
    }

    .feature-list,
    .rule-list,
    .contact-items {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
      color: var(--text);
    }

    .feature-list li,
    .rule-list li {
      display: grid;
      grid-template-columns: 16px 1fr;
      gap: 9px;
      align-items: start;
    }

    .feature-list li::before,
    .rule-list li::before {
      content: "";
      width: 8px;
      height: 8px;
      margin-top: 0;
      border: 3px solid #fff;
      border-radius: 50%;
      background: var(--yellow);
      box-shadow: 0 0 0 2px var(--blue);
      transform: translateY(.45em);
    }

    .reserve-band {
      border-top: 3px solid rgba(7, 54, 92, .08);
      border-bottom: 3px solid rgba(7, 54, 92, .08);
      background:
        linear-gradient(135deg, rgba(36, 199, 242, .22), rgba(255, 216, 61, .24)),
        #fff;
    }

    .reserve-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 430px;
      gap: 32px;
      align-items: start;
    }

    .reserve-intro {
      position: sticky;
      top: 190px;
      padding-top: 110px;
    }

    .reserve-logo {
      width: min(380px, 88%);
      margin-top: 24px;
      filter: drop-shadow(0 18px 18px rgba(7, 54, 92, .12));
    }

    .reserve-form {
      display: grid;
      gap: 12px;
      padding: 18px;
      border: 2px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: var(--shadow);
    }

    .form-notice {
      grid-column: 1 / -1;
      padding: 12px 14px;
      border: 2px solid rgba(82, 196, 26, .35);
      border-radius: var(--radius);
      background: #f0ffe8;
      color: var(--text);
      font-weight: 900;
    }

    .form-notice.error {
      border-color: rgba(243, 49, 49, .36);
      background: #fff0f0;
    }

    .form-notice.is-hidden {
      display: none;
    }

    .honeypot {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
    }

    label {
      display: grid;
      gap: 6px;
      color: var(--ink);
      font-weight: 900;
    }

    input,
    select,
    textarea {
      width: 100%;
      min-height: 46px;
      border: 2px solid rgba(7, 54, 92, .2);
      border-radius: var(--radius);
      padding: 10px 12px;
      color: var(--ink);
      background: #fffdf6;
      font: inherit;
    }

    .shirt-options {
      display: grid;
      gap: 12px;
      min-width: 0;
      width: 100%;
      margin: 4px 0;
      padding: 14px;
      border: 2px dashed rgba(255, 60, 154, .28);
      border-radius: var(--radius);
      background: #fff7fb;
    }

    .shirt-skip {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 4px 0;
      padding: 12px 14px;
      border: 2px solid rgba(7, 54, 92, .12);
      border-radius: var(--radius);
      background: #fffdf6;
      font-weight: 900;
    }

    .consent-check {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 12px 14px;
      border: 2px solid rgba(7, 54, 92, .12);
      border-radius: var(--radius);
      background: #fffdf6;
      color: var(--text);
      font-size: .96rem;
      font-weight: 800;
    }

    .shirt-skip input,
    .consent-check input {
      width: 20px;
      min-height: 20px;
      accent-color: var(--pink);
      flex: 0 0 auto;
    }

    .shirt-options.is-hidden {
      display: none;
    }

    .shirt-options-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .shirt-options legend {
      padding: 0 8px;
      color: var(--pink);
      font-weight: 900;
    }

    .guide-button {
      min-height: 36px;
      padding: 8px 11px;
      border: 0;
      border-radius: var(--radius);
      background: var(--yellow);
      color: var(--ink);
      font: inherit;
      font-size: .92rem;
      font-weight: 900;
      box-shadow: 0 4px 0 #d49d00;
      cursor: pointer;
    }

    .shirt-list {
      display: grid;
      gap: 12px;
      min-width: 0;
    }

    .shirt-row {
      display: grid;
      grid-template-columns: minmax(78px, .7fr) minmax(96px, 1fr) minmax(96px, 1fr) 38px;
      gap: 10px;
      align-items: end;
      min-width: 0;
      padding: 12px;
      border: 2px solid rgba(7, 54, 92, .1);
      border-radius: var(--radius);
      background: #fff;
    }

    .shirt-row label,
    .shirt-row input,
    .shirt-row select {
      min-width: 0;
    }

    .shirt-remove {
      width: 38px;
      height: 42px;
      border: 0;
      border-radius: var(--radius);
      background: #fff0f0;
      color: var(--red);
      font: inherit;
      font-size: 1.35rem;
      font-weight: 900;
      cursor: pointer;
    }

    .shirt-remove:disabled {
      cursor: not-allowed;
      opacity: .35;
    }

    .add-shirt {
      width: fit-content;
      min-height: 42px;
      padding: 9px 14px;
      border: 0;
      border-radius: var(--radius);
      background: var(--blue);
      color: #fff;
      font: inherit;
      font-weight: 900;
      box-shadow: 0 5px 0 #0b3d91;
      cursor: pointer;
    }

    .form-help {
      margin: 0;
      color: var(--muted);
      font-size: .94rem;
      font-weight: 800;
    }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
      place-items: center;
      padding: 20px;
      background: rgba(7, 54, 92, .62);
    }

    .modal.is-open {
      display: grid;
    }

    .modal-panel {
      width: min(920px, 100%);
      max-height: min(760px, calc(100svh - 40px));
      overflow: auto;
      padding: 24px;
      border: 4px solid #fff;
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
    }

    .modal-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
    }

    .modal-head h3 {
      margin-bottom: 4px;
      color: var(--green);
      font-size: 2rem;
      line-height: 1;
    }

    .modal-head p {
      margin: 0;
      color: var(--muted);
      font-weight: 800;
    }

    .modal-close {
      width: 42px;
      height: 42px;
      flex: 0 0 auto;
      border: 0;
      border-radius: var(--radius);
      background: var(--pink);
      color: #fff;
      font-size: 1.6rem;
      font-weight: 900;
      line-height: 1;
      box-shadow: 0 5px 0 #b91f6e;
      cursor: pointer;
    }

    .size-table-wrap {
      overflow-x: auto;
      border: 2px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }

    .size-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 760px;
    }

    .size-table th,
    .size-table td {
      padding: 12px 14px;
      border-bottom: 1px solid var(--line);
      text-align: left;
      vertical-align: top;
    }

    .size-table th {
      background: #f0ffe8;
      color: var(--ink);
      font-weight: 900;
    }

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

    .measure-notes {
      margin: 18px 0 0;
      padding-left: 18px;
      color: var(--text);
      font-weight: 800;
    }

    .measure-notes li + li {
      margin-top: 8px;
    }

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

    .benefits-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .benefit-card {
      min-height: 240px;
      display: grid;
      align-content: center;
      justify-items: center;
      gap: 14px;
      padding: 20px;
      text-align: center;
    }

    .benefit-card img {
      width: 92px;
      height: 92px;
      object-fit: contain;
    }

    .benefit-card h3 {
      margin-bottom: 0;
      color: var(--green);
      font-size: 1.28rem;
      line-height: 1.18;
    }

    .benefit-card p {
      margin: 0;
      color: var(--muted);
      font-size: .98rem;
    }

    .rules-grid {
      grid-template-columns: 300px minmax(0, 1fr);
      align-items: center;
    }

    .mascot-card {
      min-height: 320px;
      display: grid;
      place-items: center;
      border: 2px dashed rgba(7, 54, 92, .28);
      border-radius: var(--radius);
      background: #eafff6;
    }

    .mascot-card img {
      max-height: 300px;
      object-fit: contain;
    }

    .rule-panel {
      padding: 24px;
    }

    .rule-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      overflow: hidden;
    }

    .faq-item summary {
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 16px 18px;
      color: var(--ink);
      font-size: 1.08rem;
      font-weight: 900;
      cursor: pointer;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      width: 30px;
      height: 30px;
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--yellow);
      color: var(--ink);
      font-size: 1.3rem;
      line-height: 1;
      box-shadow: 0 0 0 2px var(--blue);
    }

    .faq-item[open] summary::after {
      content: "-";
      background: var(--pink);
      color: #fff;
    }

    .faq-item p {
      margin: 0;
      padding: 0 18px 18px;
      color: var(--text);
    }

    .contact-grid {
      grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
      align-items: stretch;
    }

    .contact-panel {
      padding: 24px;
    }

    .contact-panel.accent {
      background: var(--ink);
      color: #fff;
    }

    .contact-panel.accent p {
      color: rgba(255, 255, 255, .78);
    }

    .contact-items {
      margin-top: 18px;
      font-weight: 900;
    }

    .contact-items a,
    .contact-items span {
      display: block;
      padding: 12px 14px;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .16);
      color: #fff;
    }

    .contact-panel.accent .contact-items a:hover,
    .contact-panel.accent .contact-items a:focus-visible {
      background: rgba(255, 255, 255, .24);
      outline: 2px solid rgba(255, 255, 255, .6);
    }

    .social-links {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 16px;
    }

    .social-intro {
      margin: 28px 0 0;
      color: var(--muted);
      font-size: 1.08rem;
    }

    .social-link {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 8px 12px;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .16);
      color: inherit;
      font-weight: 900;
    }

    .social-link:hover,
    .social-link:focus-visible {
      background: rgba(255, 255, 255, .24);
      outline: 2px solid rgba(255, 255, 255, .6);
    }

    .contact-panel:not(.accent) .social-link {
      background: rgba(7, 54, 92, .08);
    }

    .contact-panel:not(.accent) .social-link:hover,
    .contact-panel:not(.accent) .social-link:focus-visible {
      background: rgba(7, 54, 92, .14);
      outline-color: rgba(7, 54, 92, .28);
    }

    .social-link img {
      width: 26px;
      height: 26px;
      object-fit: contain;
    }

    .footer-socials {
      margin-top: 0;
    }

    .footer-socials .social-link {
      min-height: 0;
      padding: 0;
      background: transparent;
    }

    .footer-socials .social-link:hover,
    .footer-socials .social-link:focus-visible {
      background: transparent;
      outline-color: rgba(7, 54, 92, .28);
    }

    .footer {
      padding: 26px 0;
      border-top: 3px solid rgba(7, 54, 92, .08);
      background: #fff;
    }

    .footer-inner {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      color: var(--ink);
      font-weight: 800;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }

    .footer-brand img {
      width: 126px;
      height: auto;
    }

    .footer-inner a {
      color: inherit;
      font-weight: inherit;
    }

    .footer-tagline,
    .footer-credit {
      display: inline-flex;
      align-items: center;
    }

    @media (min-width: 1040px) {
      .brand img {
        left: -118px;
      }
    }

    @media (min-width: 1220px) {
      .brand img {
        left: -210px;
      }
    }

    @media (max-width: 980px) {
      .reserve-layout,
      .rules-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .reserve-intro {
        position: static;
        padding-top: 0;
      }

      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

      h1,
      .slide-title {
        font-size: 4rem;
      }
    }

    @media (max-width: 840px) {
      .nav {
        min-height: 76px;
      }

      .brand img {
        width: auto;
        height: 104px;
        top: 8px;
        margin-top: 0;
        padding: 6px 10px;
      }

      .brand {
        min-width: 160px;
        height: 76px;
      }

      .nav-toggle {
        display: inline-flex;
      }

      .nav-links {
        position: absolute;
        inset: 68px 16px auto;
        display: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 14px;
        border: 2px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: var(--shadow);
        justify-content: stretch;
        z-index: 4;
      }

      .nav-links.is-open {
        display: grid;
      }

      .nav-links a {
        width: 100%;
        min-height: 48px;
        justify-content: center;
        padding: 10px 12px;
        background: rgba(7, 54, 92, .05);
      }

      .nav-links a:last-child {
        grid-column: 1 / -1;
      }

      .nav-links a:hover,
      .nav-links a:focus-visible,
      .nav-links a.is-active {
        transform: none;
      }

      .hero-slider,
      .slider-inner {
        min-height: 520px;
      }

      .games-grid,
      .rule-list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 620px) {
      section {
        padding: 56px 0;
      }

      h1,
      .slide-title {
        font-size: 3rem;
      }

      .section-heading h2 {
        font-size: 2.1rem;
      }

      .benefits-grid,
      .pricing-grid {
        grid-template-columns: 1fr;
      }

      .hero-actions,
      .section-actions,
      .footer-inner {
        align-items: stretch;
        flex-direction: column;
      }

      .footer {
        padding: 30px 0;
      }

      .footer-inner {
        align-items: center;
        justify-content: center;
        gap: 18px;
        text-align: center;
      }

      .footer-brand {
        justify-content: center;
        gap: 10px;
      }

      .footer-brand img {
        width: 178px;
      }

      .footer-tagline {
        font-size: 1.15rem;
        line-height: 1.2;
      }

      .footer-socials {
        justify-content: center;
        gap: 18px;
      }

      .footer-socials .social-link img {
        width: 34px;
        height: 34px;
      }

      .footer-credit {
        padding-top: 4px;
        font-size: 1rem;
      }

      .back-to-top {
        right: 14px;
        bottom: 14px;
        width: 48px;
        height: 48px;
      }

      .button,
      .contact-action {
        width: 100%;
      }

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

      .add-shirt {
        width: 100%;
      }

      .shirt-options-head,
      .modal-head {
        align-items: stretch;
        flex-direction: column;
      }

      .game-image {
        min-height: 210px;
      }

      .slider-arrow {
        width: 40px;
        height: 48px;
        font-size: 2.2rem;
      }

      .slider-arrow.prev {
        left: 10px;
      }

      .slider-arrow.next {
        right: 10px;
      }

      .slider-dot {
        width: 42px;
      }
    }
