/* ── Slots moving row (Hot home) ── */

.slots-wrap {
  padding: 8px 0 30px;
}

.slots-wrap[hidden] {
  display: none;
}

.slots-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px;
  margin-bottom: 14px;
}

.slots-section-title {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}

.slots-section-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.slots-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 32px;
  padding: 0 12px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.slots-all-btn svg {
  color: rgba(255, 255, 255, 0.45);
}

.slots-all-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.slots-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.slots-nav-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

.slots-marquee {
  position: relative;
}

.slots-marquee-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.slots-marquee-viewport::-webkit-scrollbar {
  display: none;
}

.slots-marquee-track {
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: max-content;
  padding: 2px 18px;
}

@media (prefers-reduced-motion: reduce) {
  .slots-marquee-viewport {
    scroll-behavior: auto;
  }
}

.slots-marquee-item {
  flex: 0 0 108px;
  width: 108px;
}

.slots-marquee-item .game-tile {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
}

.slots-marquee-item .game-tile--wide {
  grid-column: unset;
  aspect-ratio: 3 / 4;
  height: auto;
}

.slots-marquee-item .game-tile--wide[data-id="pawn-shop"] {
  height: auto;
  align-self: stretch;
}

.slots-marquee-item .tile-footer--compact .tile-provider--kyro {
  font-size: 8px;
}

.slots-marquee-item .tile-name {
  font-size: 10px;
}
