.template-spacer {
      min-height: calc(100vh - var(--nav-offset) - 260px);
    }

    .game-slider-wrap {
      max-width: var(--page-max-width);
      margin: 36px auto 0;
      padding: 0 var(--page-gutter);
      width: 100%;
    }

    .game-slider {
      position: relative;
    }

    .game-slider-viewport {
      overflow: hidden;
    }

    .game-slider-track {
      display: flex;
      gap: 12px;
      transition: transform 0.3s ease-in-out;
      touch-action: pan-y;
      will-change: transform;
    }

    .game-slide {
      flex: 0 0 calc((100% - 36px) / 4);
      max-width: calc((100% - 36px) / 4);
      border-radius: 18px;
      overflow: hidden;
      background: #1b1b1b;
      border: 1px solid #2e2e2e;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    }

    .game-slide a {
      color: inherit;
      text-decoration: none;
      display: block;
    }

    @media (max-width: 1200px) {
      .game-slide {
        flex: 0 0 calc((100% - 24px) / 3);
        max-width: calc((100% - 24px) / 3);
      }
    }

    @media (max-width: 768px) {
      .game-slide {
        flex: 0 0 calc((100% - 12px) / 2);
        max-width: calc((100% - 12px) / 2);
      }
    }

    @media (max-width: 480px) {
      .game-slide {
        flex: 0 0 100%;
        max-width: 100%;
      }
    }

    .game-slide-image {
      display: block;
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: fill;
    }

    .game-slide-info {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      padding: 12px 16px;
      background: #1b1b1b;
      color: #fff;
    }

    .game-slide-title {
      font-size: 18px;
      font-weight: 700;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .game-slide-play {
      border: 0;
      border-radius: 999px;
      padding: 8px 28px;
      min-width: 112px;
      background: #f0d210;
      color: #171717;
      font-weight: 600;
      font-size: 14px;
      white-space: nowrap;
      cursor: pointer;
    }

    .game-slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 0;
      background: #f0d210;
      color: #222;
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
      opacity: 0;
      transition: opacity 0.2s ease;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
      z-index: 2;
    }

    .game-slider-nav svg {
      width: 24px;
      height: 24px;
      display: block;
      margin: 0 auto;
    }

    .game-slider:hover .game-slider-nav {
      opacity: 1;
    }

    .game-slider-prev {
      left: 8px;
    }

    .game-slider-next {
      right: 8px;
    }

    @media (max-width: 48rem) {}

    @media (max-width: 1100px) {
      .pizza-slider-track img {
        height: 156px;
      }
    }

    @media (max-width: 1600px) {
      .pizza-slider-track img {
        height: 176px;
      }
    }

    @media (max-width: 1250px) {
      .pizza-slider-track img {
        height: 136px;
      }
    }

    @media (max-width: 1450px) {
      .game-slide {
        flex: 0 0 clamp(13.5rem, 10vw + 11rem, 19rem);
      }

      .game-slide-info {
        padding: 10px 12px;
      }

      .game-slide-title {
        font-size: 16px;
      }

      .game-slide-play {
        min-width: 98px;
        padding: 7px 18px;
        font-size: 13px;
      }
    }

    @media (max-width: 1360px) {
      .game-slider-wrap {
        max-width: 1240px;
        padding-left: 14px;
        padding-right: 14px;
      }

      .game-slide {
        flex: 0 0 clamp(12.75rem, 9vw + 10.8rem, 18rem);
      }
    }