﻿/* ==========================================================================
   Design page stack (Figma page__content gap)
   ========================================================================== */

.design-page-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.6vw, 1.875rem);
  width: 100%;
}

/* ==========================================================================
   Banners (Figma PNG exports)
   ========================================================================== */

.banners {
  display: grid;
  grid-template-columns: minmax(0, 779fr) minmax(0, 362fr) minmax(0, 362fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1.3125rem 1.25rem;
  width: 100%;
  aspect-ratio: 1583 / 382;
}

.banner-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-xl);
  transition: var(--transition-base);
  height: auto;
}

.banner-card--hero {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 100%;
}

.banner-card:hover {
  transform: translateY(-0.125rem);
  filter: brightness(1.04);
  z-index: 1;
}

.banner-card:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.banner-card:focus-visible {
  outline: 0.125rem solid var(--color-accent);
  outline-offset: 0.125rem;
}

.banner-card__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
  pointer-events: none;
}

.banner-card--hero .banner-card__image {
  aspect-ratio: 779 / 382;
}

.banner-grid {
  display: contents;
}

.banner-card--category {
  border-radius: 0.9375rem;
}

.banner-card--category:nth-child(1) {
  grid-column: 2;
  grid-row: 1;
}

.banner-card--category:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}

.banner-card--category:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.banner-card--category:nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}

.banner-card--category .banner-card__image {
  aspect-ratio: 362 / 181;
}

/* Desktop grid: images fill cells without distortion */
@media (min-width: 87.5625rem) {
  .banner-card {
    height: 100%;
    min-height: 0;
  }

  .banner-card__image {
    height: 100%;
    aspect-ratio: unset;
    object-fit: cover;
  }
}

/* ==========================================================================
   Filters
   ========================================================================== */

.filters {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  width: 100%;
}

.filters__search-form {
  flex: 1 1 auto;
  min-width: 0;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex: 1 1 auto;
  min-width: 0;
  height: 3.25rem;
  padding: 0.625rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.search-field:hover {
  background: var(--color-surface-hover);
}

.search-field:focus-within {
  background: var(--color-surface);
  outline: none;
}

.search-field__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
}

.search-field__icon {
  width: 100%;
  height: 100%;
}

.search-field__divider {
  width: 0.0625rem;
  height: 2rem;
  background: var(--color-border-2);
}

.search-field__input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: var(--font-sm);
  font-weight: 500;
  line-height: 1.0625rem;
  color: var(--color-text);
}

.search-field__input::placeholder {
  color: var(--color-text-muted);
}

.search-field__input:focus {
  outline: none;
  color: var(--color-text);
}

.provider-select {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  height: 3.25rem;
  padding: 0.625rem;
  border: 0;
  background: var(--color-surface);
  border-radius: 0.9375rem;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  transition: var(--transition-base);
}

.provider-select:disabled {
  opacity: 1;
  cursor: default;
}

.provider-select-wrap {
  position: relative;
  flex: 0 1 18.375rem;
  min-width: 11rem;
  overflow: visible;
}

.provider-select:hover {
  background: var(--color-surface-hover);
}

.provider-select:active {
  background: var(--color-surface);
  transform: scale(0.995);
}

.provider-select:focus-visible {
  outline: 0.125rem solid var(--color-accent);
  outline-offset: 0.125rem;
}

.provider-select__icon {
  width: 1.375rem;
  height: 1.375rem;
  object-fit: contain;
}

.provider-select__divider {
  width: 0.0625rem;
  height: 2rem;
  background: var(--color-border-2);
}

.provider-select__label {
  font-size: var(--font-sm);
  font-weight: 500;
  line-height: 1.0625rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.provider-select__arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  padding: 0.625rem;
}

.provider-select__arrow {
  width: 0.75rem;
  height: 0.375rem;
}

.provider-select--open .provider-select__arrow {
  transform: rotate(180deg);
}

.provider-select__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-height: 18.75rem;
  margin: 0;
  padding: 0.375rem;
  list-style: none;
  overflow-y: auto;
  background: var(--color-surface-5);
  border: 0.0625rem solid var(--color-border);
  border-radius: 0.9375rem;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.35);
  z-index: 1000;
}

.provider-select__menu[hidden] {
  display: none;
}

.provider-select__option-btn {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 2.9375rem;
  padding: 0.9375rem;
  border: 0;
  border-radius: 0.9375rem;
  background: transparent;
  color: var(--color-show-all);
  font-family: inherit;
  font-size: var(--font-sm);
  font-weight: 500;
  line-height: normal;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-base);
}

.provider-select__option-btn:hover {
  background: transparent;
  color: var(--color-text-muted);
}

.provider-select__option-btn:focus-visible {
  outline: 0.125rem solid var(--color-accent);
  outline-offset: 0.0625rem;
}

.provider-select__option-btn--active {
  background: var(--color-accent);
  color: var(--color-text-dark);
}

.provider-select__option-btn--active:hover {
  background: var(--color-auth-submit-hover);
  color: var(--color-text-dark);
}

.provider-select__option-btn--active:active {
  background: var(--color-auth-submit-press);
  transform: scale(0.98);
}

/* ==========================================================================
   Games results
   ========================================================================== */

.games-results {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.875rem;
  width: 100%;
}

.games-results[hidden] {
  display: none;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--game-card-size), 1fr));
  gap: var(--game-card-gap);
  width: 100%;
}

.game-card {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--color-surface);
  transition: var(--transition-base);
}

.game-card__media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.game-card:hover .game-card__image {
  filter: blur(0.15625rem);
  transform: scale(1.05);
}

.game-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  background: transparent;
  opacity: 1;
  transition: background var(--transition-base);
  pointer-events: none;
}

.game-card:hover .game-card__overlay,
.game-card:focus-visible .game-card__overlay {
  background: var(--color-slot-overlay);
}

.game-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.625rem;
  height: 3.625rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-text);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity var(--transition-base);
}

.game-card:hover .game-card__play,
.game-card:focus-visible .game-card__play {
  opacity: 1;
}

.game-card__play-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.125rem;
}

.game-card__meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  padding: 0 0.5rem 0.75rem;
  text-align: center;
  pointer-events: none;
}

.game-card__title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-family: var(--font-family);
  font-size: clamp(0.625rem, 2.95vw, var(--font-md));
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow:
    0 0.0625rem 0.3125rem rgba(0, 0, 0, 0.72),
    0 0 0.0625rem rgba(0, 0, 0, 0.85);
}

.game-card__provider {
  font-family: var(--font-family);
  font-size: clamp(0.5rem, 2.2vw, var(--font-xs));
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
  text-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.55);
}

.game-card:focus-visible {
  outline: 0.125rem solid var(--color-accent);
  outline-offset: 0.125rem;
}

.game-card__image {
  width: 100%;
  aspect-ratio: 158 / 224;
  object-fit: cover;
  border-radius: inherit;
  transition:
    filter var(--transition-base),
    transform var(--transition-base);
}

.games-results__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 0.25rem;
}

.load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.625rem;
  background: var(--color-accent);
  border: 0;
  border-radius: 0.9375rem;
  cursor: pointer;
  transition: var(--transition-base);
}

.load-more:hover {
  background: var(--color-auth-submit-hover);
}

.load-more:active {
  background: var(--color-auth-submit-press);
  transform: scale(0.98);
}

.load-more:focus-visible {
  outline: 0.125rem solid var(--color-text);
  outline-offset: 0.125rem;
}

.load-more[hidden] {
  display: none;
}

.load-more__icon {
  flex-shrink: 0;
}

.load-more__label {
  font-size: var(--font-sm);
  font-weight: 600;
  line-height: 1.0625rem;
  color: var(--color-text-dark);
}

/* ==========================================================================
   Empty state
   ========================================================================== */

.empty-state[hidden] {
  display: none;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  max-width: 41.25rem;
  margin: 0 auto;
  min-height: 10.8125rem;
  padding: 1rem 0;
}

.empty-state__icon {
  width: 7.5rem;
  height: 7.5rem;
  object-fit: contain;
}

.empty-state__title {
  margin: 0;
  font-size: var(--font-xl);
  font-weight: 500;
  line-height: 2.6875rem;
  text-align: center;
}

/* ==========================================================================
   Home page slot rows (Figma node 4603:639)
   ========================================================================== */

.home-page {
  container-type: inline-size;
  container-name: home;
  display: flex;
  flex-direction: column;
  gap: calc(100cqw * 30 / var(--home-figma-width));
  width: 100%;
}

.slot-row {
  display: flex;
  flex-direction: column;
  gap: calc(100cqw * 20 / var(--home-figma-width));
  width: 100%;
}

.slot-row__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(100cqw * 10 / var(--home-figma-width));
  width: 100%;
}

.slot-row__title-group {
  display: flex;
  align-items: center;
  gap: calc(100cqw * 10 / var(--home-figma-width));
  min-width: 0;
}

.slot-row__icon {
  flex-shrink: 0;
  width: calc(100cqw * 32 / var(--home-figma-width));
  height: calc(100cqw * 32 / var(--home-figma-width));
  object-fit: contain;
}

.slot-row__icon--buy {
  width: calc(100cqw * 31 / var(--home-figma-width));
}

.slot-row__title {
  margin: 0;
  font-size: calc(100cqw * 32 / var(--home-figma-width));
  font-weight: 600;
  line-height: normal;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slot-row__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(100cqw * 10 / var(--home-figma-width));
  flex-shrink: 0;
}

.slot-row__show-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(100cqw * 10 / var(--home-figma-width));
  padding: calc(100cqw * 10 / var(--home-figma-width));
  border-radius: calc(100cqw * 10 / var(--home-figma-width));
  transition: var(--transition-base);
}

.slot-row__show-all:hover .slot-row__show-all-label {
  color: var(--color-text-muted);
}

.slot-row__show-all:focus-visible {
  outline: calc(100cqw * 2 / var(--home-figma-width)) solid var(--color-accent);
  outline-offset: calc(100cqw * 4 / var(--home-figma-width));
}

.slot-row__show-all:active .slot-row__show-all-label {
  color: var(--color-text);
}

.slot-row__show-all:active {
  transform: scale(0.98);
}

.slot-row__show-all-label {
  font-size: calc(100cqw * 14 / var(--home-figma-width));
  font-weight: 600;
  line-height: normal;
  color: var(--color-show-all);
  white-space: nowrap;
  transition: var(--transition-base);
}

.slot-row__show-all-arrow {
  flex-shrink: 0;
  width: calc(100cqw * 4 / var(--home-figma-width));
  height: calc(100cqw * 9 / var(--home-figma-width));
}

.slot-row__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: calc(100cqw * 42 / var(--home-figma-width));
  height: calc(100cqw * 42 / var(--home-figma-width));
  padding: calc(100cqw * 10 / var(--home-figma-width));
  border-radius: calc(100cqw * 15 / var(--home-figma-width));
  transition: var(--transition-base);
}

.slot-row__nav-btn--inactive {
  background: var(--color-surface);
  color: var(--color-text);
  cursor: default;
}

.slot-row__nav-btn--active {
  background: var(--color-nav-active);
  color: var(--color-text-dark);
  cursor: pointer;
}

.slot-row__nav-btn--active:hover {
  background: var(--color-accent);
}

.slot-row__nav-btn--active:active {
  background: var(--color-auth-submit-press);
  transform: scale(0.97);
}

.slot-row__nav-btn--inactive:disabled {
  opacity: 1;
}

.slot-row__nav-btn--active:focus-visible {
  outline: calc(100cqw * 2 / var(--home-figma-width)) solid var(--color-accent);
  outline-offset: calc(100cqw * 4 / var(--home-figma-width));
}

.slot-row__nav-icon {
  display: block;
  width: calc(100cqw * 6 / var(--home-figma-width));
  height: calc(100cqw * 12 / var(--home-figma-width));
}

.slot-row__viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: calc(100cqw * 20 / var(--home-figma-width));
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.slot-row__viewport::-webkit-scrollbar {
  display: none;
}

.slot-row__track {
  display: flex;
  align-items: stretch;
  gap: var(--game-card-gap);
  width: max-content;
  min-width: 100%;
}

.slot-row__card {
  position: relative;
  display: block;
  flex: 0 0 var(--game-card-size);
  width: var(--game-card-size);
  border-radius: calc(var(--game-card-size) * 20 / 158);
  overflow: hidden;
  background: var(--color-surface);
  scroll-snap-align: start;
  transition: var(--transition-base);
}

.slot-row__card-media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.slot-row__card:hover .slot-row__card-image {
  filter: blur(calc(100cqw * 2.5 / var(--home-figma-width)));
  transform: scale(1.05);
}

.slot-row__card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  background: transparent;
  opacity: 1;
  transition: background var(--transition-base);
  pointer-events: none;
}

.slot-row__card:hover .slot-row__card-overlay,
.slot-row__card:focus-visible .slot-row__card-overlay {
  background: var(--color-slot-overlay);
}

.slot-row__card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--game-card-size) * 58 / 158);
  height: calc(var(--game-card-size) * 58 / 158);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-text);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity var(--transition-base);
}

.slot-row__card:hover .slot-row__card-play,
.slot-row__card:focus-visible .slot-row__card-play {
  opacity: 1;
}

.slot-row__card-play-icon {
  width: calc(var(--game-card-size) * 20 / 158);
  height: calc(var(--game-card-size) * 20 / 158);
  margin-left: calc(var(--game-card-size) * 2 / 158);
}

.slot-row__card-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(var(--game-card-size) * 2 / 158);
  padding: 0 calc(var(--game-card-size) * 8 / 158) calc(var(--game-card-size) * 12 / 158);
  text-align: center;
  pointer-events: none;
}

.slot-row__card-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-family: var(--font-family);
  font-size: calc(var(--game-card-size) * 17 / 158);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow:
    0 0.0625rem 0.3125rem rgba(0, 0, 0, 0.72),
    0 0 0.0625rem rgba(0, 0, 0, 0.85);
}

.slot-row__card-provider {
  font-family: var(--font-family);
  font-size: calc(var(--game-card-size) * 10 / 158);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
  text-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.55);
}

.slot-row__card:focus-visible {
  outline: calc(var(--game-card-size) * 2 / 158) solid var(--color-accent);
  outline-offset: calc(var(--game-card-size) * 4 / 158);
}

.slot-row__card-image {
  display: block;
  width: 100%;
  aspect-ratio: 158 / 224;
  object-fit: cover;
  border-radius: inherit;
  transition:
    filter var(--transition-base),
    transform var(--transition-base);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9375rem;
  width: 100%;
}

.site-footer__brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.3125rem;
  width: 100%;
  min-height: 3.125rem;
  height: auto;
}

.site-footer__line {
  flex: 1 1 0;
  min-width: 2rem;
  max-width: 38.8125rem;
  height: 0.125rem;
  border: 0;
  background: var(--color-border-2);
}

.site-footer__logo {
  width: 8.4375rem;
  height: 3.125rem;
  object-fit: contain;
}

.site-footer__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.625rem 1.25rem;
  width: 100%;
  min-height: 2.4375rem;
  padding: 0 0.625rem;
}

.site-footer__copyright {
  margin: 0;
  font-size: var(--font-sm);
  font-weight: 400;
  line-height: 1.0625rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.site-footer__payments {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9375rem;
  flex: 1;
  height: 2.4375rem;
}

.site-footer__payment-icon {
  width: 2.4375rem;
  height: 2.4375rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
}

.site-footer__social-row {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  width: 100%;
  height: 2.5rem;
}

.site-footer__telegram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-telegram);
  border-radius: 6.25rem;
  transition: var(--transition-base);
}

.site-footer__telegram:hover {
  filter: brightness(1.08);
  transform: translateY(-0.0625rem);
}

.site-footer__telegram:focus-visible {
  outline: 0.125rem solid var(--color-accent);
  outline-offset: 0.125rem;
}

.site-footer__telegram-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.site-footer__age {
  margin: 0;
  font-size: var(--font-lg);
  font-weight: 700;
  line-height: 1.5rem;
}
@media (max-width: 87.5rem) {
  .banners {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    aspect-ratio: auto;
    gap: 0.625rem;
  }

  .banner-card,
  .banner-card--hero,
  .banner-card--category {
    height: auto;
  }

  .banner-card--hero {
    grid-column: 1;
    grid-row: auto;
  }

  .banner-card__image {
    height: auto;
    object-fit: unset;
  }

  .banner-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 0.625rem;
    width: 100%;
  }

  .banner-card--category:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .filters {
    flex-direction: column;
  }

  .provider-select-wrap {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
  }
}

/* Mobile home — Figma node 4603:4673 (376px frame, 346px content) */
@media (max-width: 48rem) {
  :root {
    --home-figma-width: 346;
    --game-card-size: 109px;
    --game-card-gap: 10px;
  }

  .design-page-stack {
    gap: 15px;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .banners {
    gap: 15px;
    width: 100%;
  }

  .banner-card {
    border-radius: 0;
  }

  .banner-card--hero {
    border-radius: 25px;
    overflow: hidden;
  }

  .banner-card--category {
    border-radius: 15px;
  }

  .banner-card--hero .banner-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 346 / 206;
    border-radius: 0;
    object-fit: cover;
    object-position: 50% 50%;
    transform: scale(1.025);
  }

  .banner-card--category .banner-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 168 / 134;
    border-radius: 15px;
    object-fit: cover;
  }

  .banner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }

  .filters {
    flex-direction: column;
    gap: 5px;
    width: 100%;
  }

  .filters__search-form,
  .provider-select-wrap {
    width: 100%;
    max-width: none;
  }

  .search-field,
  .provider-select {
    width: 100%;
    height: 52px;
    padding: 10px;
    gap: 10px;
    border-radius: 15px;
    box-sizing: border-box;
  }

  .search-field__divider,
  .provider-select__divider {
    height: 32px;
  }

  .search-field__input,
  .provider-select__label {
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
  }

  .search-field__input::placeholder {
    color: var(--color-text-muted);
  }

  .home-page {
    gap: 15px;
    width: 100%;
  }

  .slot-row {
    gap: 10px;
    width: 100%;
  }

  .slot-row__header {
    min-height: 32px;
    gap: 10px;
  }

  .slot-row__title-group {
    gap: 10px;
    min-width: 0;
  }

  .slot-row__icon {
    width: 24px;
    height: 24px;
  }

  .slot-row__icon--fire {
    width: 20px;
    height: 26px;
  }

  .slot-row__icon--buy {
    width: 23px;
    height: 24px;
  }

  .slot-row__title {
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    white-space: nowrap;
  }

  .slot-row__controls {
    gap: 10px;
    flex-shrink: 0;
  }

  .slot-row__show-all {
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    width: 83px;
    min-width: 83px;
    box-sizing: border-box;
  }

  .slot-row__show-all-label {
    font-size: 10px;
    font-weight: 600;
    line-height: normal;
    color: var(--color-show-all);
  }

  .slot-row__show-all-arrow {
    width: 4px;
    height: 9px;
  }

  .slot-row__nav-btn {
    width: 23px;
    height: 23px;
    min-width: 23px;
    min-height: 23px;
    padding: 0;
    border-radius: 5px;
    box-sizing: border-box;
  }

  .slot-row__nav-btn--active {
    background: var(--color-nav-active);
  }

  .slot-row__nav-icon {
    width: 5px;
    height: 9px;
  }

  .slot-row__nav-btn--next {
    margin-left: -5px;
  }

  .slot-row__track {
    gap: 10px;
  }

  .slot-row__viewport {
    border-radius: 15px;
  }

  .slot-row__card {
    flex: 0 0 109px;
    width: 109px;
    border-radius: 15px;
  }

  .slot-row__card-image {
    aspect-ratio: 109 / 164;
  }

  .game-card {
    border-radius: 15px;
  }

  .game-card__image {
    aspect-ratio: 109 / 164;
  }

  .empty-state__title {
    font-size: clamp(1.5rem, 6vw, 2.25rem);
    line-height: 1.2;
  }

  .site-footer {
    gap: 15px;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 15px 0 0;
    box-sizing: border-box;
  }

  .site-footer__brand-row {
    gap: 20px;
    min-height: 41px;
  }

  .site-footer__logo {
    width: 110px;
    height: 41px;
  }

  .site-footer__meta-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    gap: 15px;
    min-height: auto;
  }

  .site-footer__copyright {
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    color: var(--color-show-all);
    white-space: normal;
  }

  .site-footer__payment-icon {
    width: 39px;
    height: 39px;
  }

  .site-footer__payments {
    justify-content: center;
    flex-wrap: wrap;
    height: 39px;
    gap: 15px;
  }

  .site-footer__social-row {
    justify-content: center;
    flex-wrap: wrap;
    height: 40px;
    gap: 15px;
  }

  .site-footer__age {
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
  }
}

body.design-nav-active .content-layout {
  width: 100%;
}
