﻿/* Spotlight banner (do ZIP Kingdom Store) */
:root {
  --spotlight-autoplay-ms: 3000ms;
  --platform-steam-rgb: 69, 209, 255;
  --platform-steam-solid: #45d1ff;
  --platform-steam-deep: #12aed8;
  --platform-steam-border: rgba(var(--platform-steam-rgb), 0.36);
  --platform-steam-border-strong: rgba(var(--platform-steam-rgb), 0.78);
  --platform-steam-glow: rgba(var(--platform-steam-rgb), 0.28);
  --platform-steam-bg-soft: rgba(var(--platform-steam-rgb), 0.08);
  --platform-ps-rgb: 0, 112, 204;
  --platform-ps-solid: #0070cc;
  --platform-ps-deep: #004891;
  --platform-ps-border: rgba(var(--platform-ps-rgb), 0.38);
  --platform-ps-border-strong: rgba(var(--platform-ps-rgb), 0.8);
  --platform-ps-glow: rgba(var(--platform-ps-rgb), 0.26);
  --platform-ps-bg-soft: rgba(var(--platform-ps-rgb), 0.1);
  --platform-xbox-rgb: 96, 190, 96;
  --platform-xbox-solid: #60be60;
  --platform-xbox-deep: #107c10;
  --platform-xbox-border: rgba(var(--platform-xbox-rgb), 0.44);
  --platform-xbox-border-strong: rgba(var(--platform-xbox-rgb), 0.82);
  --platform-xbox-glow: rgba(var(--platform-xbox-rgb), 0.24);
  --platform-xbox-bg-soft: rgba(var(--platform-xbox-rgb), 0.1);
  --platform-accounts-rgb: 245, 184, 49;
  --platform-accounts-solid: #f5b831;
  --platform-accounts-deep: #c9921a;
  --platform-accounts-border: rgba(var(--platform-accounts-rgb), 0.42);
  --platform-accounts-border-strong: rgba(var(--platform-accounts-rgb), 0.82);
  --platform-accounts-glow: rgba(var(--platform-accounts-rgb), 0.28);
  --platform-accounts-bg-soft: rgba(var(--platform-accounts-rgb), 0.1);
}
.home-steam-spotlight {
  width: 100%;
  margin-top: 0.85rem;
  margin-bottom: 0.85rem;
}

.home-cat-spotlight.reveal-fade-up {
  opacity: 1;
  transform: none;
}

@media (min-width: 640px) {
  .home-steam-spotlight {
    margin-top: 1.15rem;
    margin-bottom: 1.25rem;
  }
}

.home-steam-spotlight__shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 0;
  background: #070b12;
  box-shadow:
    0 0 0 var(--kb-hairline) rgba(var(--platform-steam-rgb), 0.48),
    0 28px 64px rgba(0, 0, 0, 0.55),
    0 0 56px rgba(var(--platform-steam-rgb), 0.12);
}

.home-steam-spotlight__stage {
  position: relative;
  min-height: clamp(20rem, 48vw, 30rem);
  isolation: isolate;
}

.home-steam-spotlight__hero {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #050608;
}

.home-steam-spotlight__hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 16% 36%;
  transform: scale(1.03);
  transition: opacity 0.35s ease, transform 0.6s ease;
}

@media (min-width: 768px) {
  .home-steam-spotlight__hero-img {
    object-position: 10% 32%;
  }
}

.home-steam-spotlight__hero.is-loading .home-steam-spotlight__hero-img {
  opacity: 0.35;
}

.home-steam-spotlight__hero-img.is-swapping {
  opacity: 1;
}

.home-steam-spotlight__hero-fade {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: #050608;
  opacity: 0;
  transition: opacity 0.52s ease-in-out;
  will-change: opacity;
}

.home-steam-spotlight__hero-fade--active {
  opacity: 1;
}

.home-steam-spotlight__hero-img.is-placeholder {
  opacity: 0;
}

.home-steam-spotlight__hero.is-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg, #0a1018 0%, #111a28 45%, #0a1018 90%);
  background-size: 200% 100%;
  animation: home-steam-shimmer 1.2s ease-in-out infinite;
  pointer-events: none;
}

.home-steam-spotlight__loading-label {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  margin: 0;
  transform: translate(-50%, -50%);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 10, 18, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  pointer-events: none;
}

.home-steam-spotlight__hero:not(.is-loading) .home-steam-spotlight__loading-label,
.home-steam-spotlight__hero.has-video .home-steam-spotlight__loading-label {
  display: none;
}

.home-steam-spotlight__panel.is-bootstrapping .home-steam-spotlight__desc:empty {
  min-height: 2.75rem;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.06);
  animation: home-steam-shimmer 1.2s ease-in-out infinite;
}

.home-steam-spotlight__price-skeleton {
  display: inline-block;
  min-width: 5.5rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.35);
}

@keyframes home-steam-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.home-steam-spotlight__hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.38) 100%),
    linear-gradient(
      90deg,
      rgba(6, 10, 18, 0) 0%,
      rgba(6, 10, 18, 0.02) 34%,
      rgba(6, 10, 18, 0.12) 44%,
      rgba(8, 14, 24, 0.78) 56%,
      rgba(8, 14, 24, 0.96) 66%,
      #0a121c 100%
    );
}

@media (max-width: 767px) {
  .home-steam-spotlight__hero-scrim {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.25) 42%, rgba(8, 14, 24, 0.92) 78%, #0a121c 100%),
      linear-gradient(90deg, rgba(6, 10, 18, 0.12) 0%, rgba(6, 10, 18, 0.45) 100%);
  }
}

.home-steam-spotlight__panel {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: clamp(20rem, 48vw, 30rem);
  width: 100%;
  max-width: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  margin-left: auto;
  padding: 1.25rem 1.15rem 2.15rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .home-steam-spotlight__panel {
    width: min(42%, 25rem);
    padding: 2rem 2.25rem 2rem 1.65rem;
  }
}

@media (max-width: 767px) {
  .home-steam-spotlight__panel {
    justify-content: flex-end;
    padding-bottom: 2.45rem;
  }
}

.home-steam-spotlight__side-arrow {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 2.5rem;
  height: 2.5rem;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 2px solid rgba(var(--platform-steam-rgb), 0.85);
  background: rgba(8, 8, 11, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

@media (min-width: 640px) {
  .home-steam-spotlight__side-arrow {
    display: inline-flex;
  }
}

.home-steam-spotlight__side-arrow--prev {
  left: 0.85rem;
}

.home-steam-spotlight__side-arrow--next {
  right: 0.85rem;
}

.home-steam-spotlight__side-arrow:hover {
  border-color: var(--platform-steam-solid);
  background: rgba(var(--platform-steam-rgb), 0.22);
  box-shadow: 0 0 26px var(--platform-steam-glow);
  transform: translateY(-50%) scale(1.05);
}

.home-steam-spotlight__badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.38rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--platform-steam-rgb), 0.62);
  background: rgba(var(--platform-steam-rgb), 0.2);
  padding: 0.32rem 0.72rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ef0ff;
}

.home-steam-spotlight__badge-icon {
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
  opacity: 0.95;
}

.home-steam-spotlight__title {
  margin: 0;
  font-family: 'Kanit', sans-serif;
  font-size: clamp(1.5rem, 2.9vw, 2.4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.home-steam-spotlight__desc {
  margin: 0;
  max-width: 28rem;
  font-size: clamp(0.88rem, 1.4vw, 0.98rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.home-steam-spotlight__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.home-steam-spotlight__price-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.home-steam-spotlight__price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
}

.home-steam-spotlight__price {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  font-weight: 900;
  color: var(--platform-steam-solid);
  text-shadow: 0 0 24px var(--platform-steam-glow);
}

.home-steam-spotlight__compare {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
}

.home-steam-spotlight__discount {
  display: inline-flex;
  align-items: center;
  border-radius: 0.45rem;
  background: rgba(var(--platform-steam-rgb), 0.24);
  padding: 0.22rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: #9ef0ff;
}

.home-steam-spotlight__cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(var(--platform-steam-rgb), 0.62);
  background: rgba(var(--platform-steam-rgb), 0.22);
  padding: 0.7rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.18s ease;
}

.home-steam-spotlight__cta:hover {
  transform: translateY(-1px);
}

.home-cat-spotlight--steam .home-steam-spotlight__cta:hover {
  background: rgba(var(--platform-steam-rgb), 0.36);
  border-color: var(--platform-steam-border-strong);
  box-shadow: 0 0 28px var(--platform-steam-glow);
}

.home-steam-spotlight__dots-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.65rem;
  z-index: 18;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  pointer-events: none;
}

@media (min-width: 768px) {
  .home-steam-spotlight__dots-wrap {
    right: 42%;
    bottom: 0.85rem;
    justify-content: center;
  }
}

.home-steam-spotlight__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  pointer-events: auto;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(6, 10, 18, 0.52);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--platform-steam-rgb), 0.14);
}

/* Bolinha de autoplay â€” igual galeria da pÃ¡gina de produto */
.home-steam-spotlight__autoplay-ring {
  flex-shrink: 0;
  width: 2.15rem;
  height: 2.15rem;
  color: rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.65));
  pointer-events: none;
}

.home-steam-spotlight__autoplay-ring--paused .home-steam-spotlight__autoplay-fill--running {
  animation-play-state: paused;
}

.home-steam-spotlight__autoplay-svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.home-steam-spotlight__autoplay-fill {
  stroke-dashoffset: 87.965;
}

.home-steam-spotlight__autoplay-fill--running {
  animation: home-spotlight-ring-progress var(--spotlight-autoplay-ms, 3000ms) linear forwards;
}

@media (prefers-reduced-motion: reduce) {
  .home-steam-spotlight__autoplay-fill--running,
  .home-steam-spotlight__dot.is-active.is-progressing::after {
    animation-duration: var(--spotlight-autoplay-ms, 3000ms) !important;
    animation-iteration-count: 1 !important;
  }
}

@keyframes home-spotlight-ring-progress {
  from {
    stroke-dashoffset: 87.965;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.home-cat-spotlight--playstation .home-steam-spotlight__autoplay-ring {
  color: var(--platform-ps-solid);
}

.home-cat-spotlight--xbox .home-steam-spotlight__autoplay-ring {
  color: var(--platform-xbox-solid);
}

.home-cat-spotlight--accounts .home-steam-spotlight__autoplay-ring {
  color: var(--platform-accounts-solid);
}

.home-steam-spotlight__dot {
  position: relative;
  width: 0.45rem;
  height: 0.45rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  transition: width 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.home-steam-spotlight__dot::before {
  content: '';
  position: absolute;
  inset: -0.5rem;
}

.home-steam-spotlight__dot.is-active {
  width: 1.65rem;
  background: var(--platform-steam-solid);
  box-shadow: 0 0 14px var(--platform-steam-glow);
}

.home-steam-spotlight__dot.is-active.is-progressing::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: rgba(255, 255, 255, 0.42);
  animation: home-spotlight-dot-progress var(--spotlight-autoplay-ms, 3000ms) linear forwards;
  pointer-events: none;
}

@keyframes home-spotlight-dot-progress {
  to {
    transform: scaleX(1);
  }
}

/* Destaques por plataforma â€” acentos via tokens */
.home-cat-spotlight--playstation .home-steam-spotlight__shell {
  box-shadow:
    0 0 0 var(--kb-hairline) var(--platform-ps-border),
    0 28px 64px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(var(--platform-ps-rgb), 0.08);
}

.home-cat-spotlight--playstation .home-steam-spotlight__badge {
  border-color: rgba(var(--platform-ps-rgb), 0.45);
  background: var(--platform-ps-bg-soft);
  color: #b8d9f5;
}

.home-cat-spotlight--playstation .home-steam-spotlight__side-arrow {
  border-color: rgba(var(--platform-ps-rgb), 0.85);
}

.home-cat-spotlight--playstation .home-steam-spotlight__side-arrow:hover {
  border-color: rgba(var(--platform-ps-rgb), 0.85);
  background: rgba(var(--platform-ps-rgb), 0.18);
  box-shadow: 0 0 18px var(--platform-ps-glow);
}

.home-cat-spotlight--playstation .home-steam-spotlight__dot.is-active {
  background: var(--platform-ps-solid);
  box-shadow: 0 0 10px var(--platform-ps-glow);
}

.home-cat-spotlight--playstation .home-steam-spotlight__dots {
  border-color: rgba(var(--platform-ps-rgb), 0.16);
}

.home-cat-spotlight--playstation .home-steam-spotlight__cta {
  border-color: rgba(var(--platform-ps-rgb), 0.62);
  background: linear-gradient(135deg, var(--platform-ps-solid) 0%, var(--platform-ps-deep) 100%);
}

.home-cat-spotlight--playstation .home-steam-spotlight__cta:hover {
  border-color: var(--platform-ps-border-strong);
  background: linear-gradient(135deg, var(--platform-ps-solid) 0%, var(--platform-ps-deep) 100%);
  box-shadow: 0 0 28px var(--platform-ps-glow);
}

.home-cat-spotlight--xbox .home-steam-spotlight__shell {
  box-shadow:
    0 0 0 var(--kb-hairline) var(--platform-xbox-border),
    0 28px 64px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(var(--platform-xbox-rgb), 0.07);
}

.home-cat-spotlight--xbox .home-steam-spotlight__badge {
  border-color: rgba(var(--platform-xbox-rgb), 0.42);
  background: var(--platform-xbox-bg-soft);
  color: #c8e6c8;
}

.home-cat-spotlight--xbox .home-steam-spotlight__badge-icon--xbox {
  color: #e8f5e8;
}

.home-cat-spotlight--xbox .home-steam-spotlight__side-arrow {
  border-color: rgba(var(--platform-xbox-rgb), 0.85);
}

.home-cat-spotlight--xbox .home-steam-spotlight__side-arrow:hover {
  border-color: rgba(var(--platform-xbox-rgb), 0.85);
  background: rgba(var(--platform-xbox-rgb), 0.18);
  box-shadow: 0 0 18px var(--platform-xbox-glow);
}

.home-cat-spotlight--xbox .home-steam-spotlight__dot.is-active {
  background: var(--platform-xbox-deep);
  box-shadow: 0 0 10px var(--platform-xbox-glow);
}

.home-cat-spotlight--xbox .home-steam-spotlight__dots {
  border-color: rgba(var(--platform-xbox-rgb), 0.16);
}

.home-cat-spotlight--xbox .home-steam-spotlight__cta {
  border-color: rgba(var(--platform-xbox-rgb), 0.62);
  background: linear-gradient(135deg, var(--platform-xbox-deep) 0%, #0b5a0b 100%);
}

.home-cat-spotlight--xbox .home-steam-spotlight__cta:hover {
  border-color: var(--platform-xbox-border-strong);
  background: linear-gradient(135deg, var(--platform-xbox-deep) 0%, #0b5a0b 100%);
  box-shadow: 0 0 28px var(--platform-xbox-glow);
}

.home-cat-spotlight--accounts .home-steam-spotlight__shell {
  box-shadow:
    0 0 0 var(--kb-hairline) var(--platform-accounts-border),
    0 28px 64px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(var(--platform-accounts-rgb), 0.08);
}

.home-cat-spotlight--accounts .home-steam-spotlight__badge {
  border-color: rgba(var(--platform-accounts-rgb), 0.45);
  background: var(--platform-accounts-bg-soft);
  color: #ffe9a8;
}

.home-cat-spotlight--accounts .home-steam-spotlight__side-arrow {
  border-color: rgba(var(--platform-accounts-rgb), 0.85);
}

.home-cat-spotlight--accounts .home-steam-spotlight__side-arrow:hover {
  border-color: rgba(var(--platform-accounts-rgb), 0.85);
  background: rgba(var(--platform-accounts-rgb), 0.18);
  box-shadow: 0 0 18px var(--platform-accounts-glow);
}

.home-cat-spotlight--accounts .home-steam-spotlight__dot.is-active {
  background: var(--platform-accounts-solid);
  box-shadow: 0 0 10px var(--platform-accounts-glow);
}

.home-cat-spotlight--accounts .home-steam-spotlight__dots {
  border-color: rgba(var(--platform-accounts-rgb), 0.16);
}

.home-cat-spotlight--accounts .home-steam-spotlight__cta {
  border-color: rgba(var(--platform-accounts-rgb), 0.62);
  background: linear-gradient(135deg, var(--platform-accounts-solid) 0%, var(--platform-accounts-deep) 100%);
}

.home-cat-spotlight--accounts .home-steam-spotlight__cta:hover {
  border-color: var(--platform-accounts-border-strong);
  box-shadow: 0 0 28px var(--platform-accounts-glow);
}

.home-cat-spotlight--playstation .home-steam-spotlight__hero-img,
.home-cat-spotlight--xbox .home-steam-spotlight__hero-img {
  object-position: 16% 38%;
}

@media (min-width: 768px) {
  .home-cat-spotlight--playstation .home-steam-spotlight__hero-img,
  .home-cat-spotlight--xbox .home-steam-spotlight__hero-img {
    object-position: 10% 34%;
  }
}

/* Spotlight — refinamentos mobile */
@media (max-width: 767px) {
  .home-steam-spotlight__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: clamp(1.35rem, 5.5vw, 1.85rem);
    line-height: 1.12;
  }
  .home-steam-spotlight__cta {
    width: 100%;
    min-height: 2.85rem;
    justify-content: center;
    padding: 0.85rem 1.35rem;
    font-size: 0.95rem;
  }
  .home-steam-spotlight__dot::before { inset: -0.65rem; }
  .home-steam-spotlight__dots {
    gap: 0.55rem;
    padding: 0.5rem 0.85rem;
  }
}

.home-category-block .home-steam-spotlight {
  margin-top: 1rem;
  margin-bottom: 0.35rem;
}

/* —— Steam vitrine SeekKey — arte API, painel colado na borda —— */
.home-steam-spotlight--vitrine {
  --steam-vitrine-panel: #0b1220;
  --steam-vitrine-accent: hsl(var(--primary));
  --steam-vitrine-accent-ink: #041018;
  --steam-vitrine-radius: 1.05rem;
  --steam-vitrine-height: clamp(20rem, 52vw, 28rem);
  width: 100%;
  max-width: min(100%, 96rem);
  margin-inline: auto;
  padding-inline: clamp(0.1rem, 0.6vw, 0.45rem);
  padding-bottom: 2.35rem;
  box-sizing: border-box;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__shell {
  position: relative;
  overflow: visible;
  width: 100%;
  border-radius: var(--steam-vitrine-radius);
  border: 0;
  background: var(--steam-vitrine-panel);
  box-shadow:
    0 0 0 var(--kb-hairline) rgba(255, 255, 255, 0.12),
    0 18px 40px rgba(0, 0, 0, 0.45);
}

.home-steam-spotlight--vitrine .home-steam-spotlight__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--steam-vitrine-radius);
  min-height: 0;
  isolation: isolate;
  background: var(--steam-vitrine-panel);
}

.home-steam-spotlight--vitrine .home-steam-spotlight__hero {
  position: relative !important;
  inset: auto !important;
  z-index: 0;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 15rem;
  overflow: hidden !important;
  background: #05070c;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__hero-scrim {
  display: none !important;
}

/* Vitrine Steam: badge e CTA visíveis (layout = PlayStation) */
.home-steam-spotlight--vitrine .home-steam-spotlight__badge,
.home-steam-spotlight--vitrine .home-steam-spotlight__cta {
  display: inline-flex !important;
}

/* Subtitle: no line-clamp/overflow — avoids clipping descenders (g, y, p) */
.home-steam-spotlight--vitrine .home-steam-spotlight__desc {
  display: block !important;
  flex: 0 0 auto;
  margin: 0 0 0.55rem;
  padding-bottom: 0.2rem;
  max-height: none;
  overflow: visible;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  line-height: 1.55;
  opacity: 0.88;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__cta {
  width: 100%;
  margin-top: 0.35rem;
  justify-content: center;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__hero-img,
.home-steam-spotlight--vitrine .home-steam-spotlight__hero-video {
  position: absolute !important;
  inset: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__hero-img {
  transform: none;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__hero-video {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__hero-img {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__hero.is-loading .home-steam-spotlight__hero-img {
  opacity: 1;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__hero.is-loading::after {
  opacity: 0.55;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__hero:not(.is-loading) .home-steam-spotlight__loading-label,
.home-steam-spotlight--vitrine .home-steam-spotlight__hero.has-video .home-steam-spotlight__loading-label {
  display: none !important;
}

/* Painel: título → grade 2×2 → rodapé (Steam esq. | preço dir.) — cores Kingdom */
.home-steam-spotlight--vitrine .home-steam-spotlight__panel {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: none !important;
  min-width: 0;
  min-height: 0;
  margin: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0.55rem;
  padding: 1.1rem 1rem 0.95rem;
  background: var(--steam-vitrine-panel);
  box-sizing: border-box;
  pointer-events: none;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__cta,
.home-steam-spotlight--vitrine .home-steam-spotlight__thumb,
.home-steam-spotlight--vitrine .home-steam-spotlight__price-row {
  pointer-events: auto;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__title {
  margin: 0;
  width: 100%;
  font-family: 'Kanit', 'Geist', sans-serif;
  font-size: clamp(1.12rem, 3.1vw, 1.4rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: none;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 0 0 auto;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: none;
  grid-auto-rows: auto;
  gap: 0.35rem;
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  min-height: 0;
  align-content: start;
  align-items: start;
  position: relative;
  z-index: 6;
  pointer-events: auto;
  margin: 0;
}

/* Mobile: hide screenshot grid — keeps hero + title + price + CTA compact */
@media (max-width: 767px) {
  .home-steam-spotlight--vitrine .home-steam-spotlight__thumbs,
  .home-cat-spotlight--presale.home-steam-spotlight--vitrine .home-steam-spotlight__thumbs {
    display: none !important;
  }
}

.home-steam-spotlight--vitrine .home-steam-spotlight__thumb {
  position: relative;
  display: block;
  width: 100%;
  height: auto !important;
  min-height: 0;
  min-width: 0;
  aspect-ratio: 16 / 9 !important;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  pointer-events: auto;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__thumb.is-empty {
  display: none;
  pointer-events: none;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__thumbs:not(:has(.home-steam-spotlight__thumb:not(.is-empty))) {
  display: none;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__thumbs:not(:has(.home-steam-spotlight__thumb:not(.is-empty) ~ .home-steam-spotlight__thumb:not(.is-empty))) .home-steam-spotlight__thumb:not(.is-empty) {
  grid-column: 1 / -1;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__thumb.is-active,
.home-steam-spotlight--vitrine .home-steam-spotlight__thumb:hover {
  border-color: hsl(var(--primary) / 0.85);
  box-shadow: 0 0 0 1px hsl(var(--primary) / 0.3);
}

.home-steam-spotlight--vitrine .home-steam-spotlight__thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.04);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Rodapé: Steam à esquerda + stack de preço à direita (layout ref, cores brand) */
.home-steam-spotlight--vitrine .home-steam-spotlight__platform-foot {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  margin-top: auto;
  padding-top: 0.25rem;
  min-height: 2.35rem;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__steam-mark {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #fff;
  opacity: 0.95;
  align-self: flex-end;
  margin-bottom: 0.1rem;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__steam-mark-img {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
  filter: none;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__steam-mark svg {
  width: 1.75rem;
  height: 1.75rem;
  color: inherit;
  fill: currentColor;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__deal {
  flex: 0 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__deal .home-steam-spotlight__price-group {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.12rem;
  text-align: right;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__deal .home-steam-spotlight__compare {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: line-through;
  text-align: right;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__deal .home-steam-spotlight__price-line {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__deal .home-steam-spotlight__price {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 800;
  line-height: 1.05;
  color: hsl(var(--primary)) !important;
  text-shadow: none;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__deal .home-steam-spotlight__discount {
  border-radius: 0.22rem;
  border: 0;
  background: hsl(var(--primary)) !important;
  color: #041018 !important;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.26rem 0.42rem;
  line-height: 1;
}

/* price-row = layout PS na vitrine Steam (badge + título + desc + preço + CTA) */
.home-steam-spotlight--vitrine .home-steam-spotlight__price-row {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  width: 100%;
  margin: 0.15rem 0 0.35rem;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__price-group {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__compare {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: line-through;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__price-line {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__price {
  margin: 0;
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  font-weight: 800;
  color: hsl(var(--primary)) !important;
  text-shadow: none;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__discount {
  border-radius: 0.22rem;
  border: 0;
  background: hsl(var(--primary)) !important;
  color: #041018 !important;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.26rem 0.42rem;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__hit {
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: var(--steam-vitrine-radius);
  grid-column: 1;
  grid-row: 1;
  width: auto;
  height: auto;
  pointer-events: auto;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__side-arrow {
  display: none;
  z-index: 50;
  pointer-events: auto !important;
  width: 2.5rem;
  height: 2.5rem;
  border-width: 1.5px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(10, 12, 20, 0.72);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.home-steam-spotlight--vitrine .home-steam-spotlight__side-arrow--prev {
  left: -3.2rem;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__side-arrow--next {
  right: -3.2rem;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__side-arrow:hover {
  border-color: hsl(var(--primary) / 0.7);
  background: rgba(14, 18, 28, 0.88);
  box-shadow: 0 0 20px hsl(var(--primary) / 0.18);
  transform: translateY(-50%) scale(1.05);
}

.home-steam-spotlight--vitrine .home-steam-spotlight__dots-wrap,
.home-cat-spotlight--presale .home-steam-spotlight__dots-wrap {
  display: none !important;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__autoplay-ring {
  display: none !important;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  border: 0;
  padding: 0;
  opacity: 1;
  transition: width 0.2s ease, background 0.2s ease;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__dot.is-active {
  width: 1.3rem;
  background: hsl(var(--primary)) !important;
  box-shadow: 0 0 12px hsl(var(--primary) / 0.45) !important;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__dot.is-active.is-progressing::after {
  display: none;
}

@media (min-width: 640px) {
  .home-steam-spotlight--vitrine {
    padding-inline: 3.35rem;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__side-arrow {
    display: inline-flex;
  }
}

/* Desktop: menos panorâmico — mais altura, painel um pouco mais estreito */
@media (min-width: 768px) {
  .home-steam-spotlight--vitrine {
    --steam-vitrine-height: clamp(22rem, 32vw, 28.5rem);
    max-width: min(100%, 92rem);
    padding-inline: 3.5rem;
    padding-bottom: 2.4rem;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__stage {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(15.5rem, 30%);
    grid-template-rows: 100%;
    flex-direction: unset;
    align-items: stretch;
    height: var(--steam-vitrine-height);
    min-height: var(--steam-vitrine-height);
    max-height: var(--steam-vitrine-height);
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__hero {
    position: relative !important;
    grid-column: 1;
    grid-row: 1;
    width: 100% !important;
    max-width: none !important;
    flex: none !important;
    aspect-ratio: auto !important;
    min-height: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    align-self: stretch;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__hero-img,
  .home-steam-spotlight--vitrine .home-steam-spotlight__hero-video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__panel {
    grid-column: 2;
    grid-row: 1;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    flex: none !important;
    min-height: 100%;
    height: 100%;
    padding: 1rem 1rem 0.95rem;
    gap: 0.5rem;
    justify-content: flex-start;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__title {
    font-size: clamp(1.05rem, 1.35vw, 1.32rem);
    flex: 0 0 auto;
    -webkit-line-clamp: 2;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__deal {
    flex: 0 1 auto;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__deal .home-steam-spotlight__compare {
    font-size: 0.92rem;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__deal .home-steam-spotlight__price {
    font-size: clamp(1.28rem, 1.7vw, 1.55rem);
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__deal .home-steam-spotlight__discount {
    font-size: 0.84rem;
    padding: 0.28rem 0.46rem;
  }

  /* Thumbs preenchem o espaço entre texto e preço */
  .home-steam-spotlight--vitrine .home-steam-spotlight__thumbs {
    flex: 1 1 auto !important;
    gap: 0.4rem;
    align-content: stretch !important;
    align-items: stretch !important;
    grid-template-rows: 1fr 1fr !important;
    grid-auto-rows: unset;
    height: auto !important;
    min-height: 0;
    width: 100%;
    margin: 0.1rem 0;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__thumb {
    aspect-ratio: auto !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__platform-foot {
    display: none;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__steam-mark {
    width: 2.15rem;
    height: 2.15rem;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__steam-mark-img,
  .home-steam-spotlight--vitrine .home-steam-spotlight__steam-mark svg {
    width: 1.9rem;
    height: 1.9rem;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__price-row {
    display: flex !important;
    margin-top: auto;
    margin-bottom: 0.15rem;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__cta {
    flex-shrink: 0;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__side-arrow--prev {
    left: -3.35rem;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__side-arrow--next {
    right: -3.35rem;
  }
}

@media (min-width: 1100px) {
  .home-steam-spotlight--vitrine {
    --steam-vitrine-height: clamp(24rem, 30vw, 30rem);
    max-width: min(100%, 96rem);
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__stage {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 29%);
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__panel {
    width: 100% !important;
    max-width: none !important;
    padding: 1.05rem 1.1rem 1rem;
    gap: 0.5rem;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__title {
    font-size: clamp(1.15rem, 1.3vw, 1.4rem);
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__deal .home-steam-spotlight__price {
    font-size: clamp(1.35rem, 1.55vw, 1.6rem);
  }
}

.home-steam-spotlight--vitrine .home-steam-spotlight__shell {
  position: relative;
}
.home-steam-spotlight--vitrine .home-steam-spotlight__stage {
  position: relative;
  overflow: hidden;
}
.home-steam-spotlight--vitrine .home-steam-spotlight__side-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.home-steam-spotlight--vitrine .home-steam-spotlight__dots-wrap,
.home-cat-spotlight--presale .home-steam-spotlight__dots-wrap {
  display: none !important;
}

.home-steam-spotlight__release {
  margin: 0.15rem 0 0.55rem;
}

.home-steam-spotlight__release-label {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.home-steam-spotlight__release-box {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 12, 20, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.home-category-block--presale {
  margin-top: 0;
}

.kb-cat-head--presale {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 0;
  margin-bottom: clamp(1.65rem, 3.2vw, 2.4rem);
  padding-inline: 0.35rem;
  text-align: center;
}

.kb-cat-head--presale .kb-cat-head__titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.kb-cat-head--presale .kb-cat-head__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  width: 100%;
}

.kb-cat-head--presale .kb-cat-head__title,
.kb-cat-head--presale .kb-cat-head__sub {
  text-align: center;
}

.kb-cat-head--presale .kb-cat-head__sub {
  width: 100%;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

.kb-cat-head--presale .kb-cat-head__cta {
  position: static;
  align-self: center;
  margin-top: 0;
  justify-content: center;
}

.home-category-block .home-category-panel + .kb-cat-head--presale,
.home-section--presale .kb-cat-head--presale {
  margin-top: 0;
}

@media (max-width: 860px) {
  .kb-cat-head--presale {
    gap: 0;
  }

  .kb-cat-head--presale .kb-cat-head__title-row {
    gap: 0.65rem 0.85rem;
  }

  .kb-cat-head--presale .kb-cat-head__cta {
    margin-top: 0;
  }
}

.home-category-block .home-cat-spotlight--presale.home-steam-spotlight--vitrine,
.home-section--presale .home-cat-spotlight--presale.home-steam-spotlight--vitrine {
  margin-top: 0.15rem;
  margin-bottom: 0;
  padding-bottom: 0.35rem;
}

.home-cat-spotlight--presale.home-steam-spotlight--vitrine .home-steam-spotlight__badge {
  gap: 0;
  border: 0;
  background: var(--platform-steam-solid, #45d1ff);
  color: #111;
  border-radius: 999px;
  padding: 0.42rem 1.05rem;
  font-family: 'Kanit', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: none;
}

.home-cat-spotlight--presale .home-steam-spotlight__badge-icon {
  display: none !important;
}

.home-cat-spotlight--presale .home-steam-spotlight__desc {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  opacity: 0.78;
}

.home-cat-spotlight--presale .home-steam-spotlight__release.hidden {
  display: none !important;
}

.home-cat-spotlight--presale .home-steam-spotlight__release:not(.hidden) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0;
}

.home-cat-spotlight--presale .home-steam-spotlight__release-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
}

.home-cat-spotlight--presale .home-steam-spotlight__release-box {
  min-height: 0;
  padding: 0.22rem 0.55rem;
  border-radius: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #45d1ff;
  border-color: rgba(69, 209, 255, 0.35);
  background: rgba(69, 209, 255, 0.08);
}

@media (min-width: 768px) {
  .home-cat-spotlight--presale.home-steam-spotlight--vitrine .home-steam-spotlight__panel {
    justify-content: flex-start;
    gap: 0.4rem;
  }

  .home-cat-spotlight--presale.home-steam-spotlight--vitrine .home-steam-spotlight__thumbs {
    flex: 1 1 auto !important;
    align-content: stretch !important;
    align-items: stretch !important;
    grid-template-rows: 1fr 1fr !important;
    grid-auto-rows: unset;
    gap: 0.4rem;
    height: auto !important;
    min-height: 0;
  }

  .home-cat-spotlight--presale.home-steam-spotlight--vitrine .home-steam-spotlight__thumb {
    height: 100% !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
  }
}

.home-steam-spotlight__hero-video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #05070c;
  pointer-events: none;
  opacity: 0;
  z-index: 2;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.home-steam-spotlight__hero.has-video .home-steam-spotlight__hero-video {
  display: block;
  opacity: 1;
}

.home-steam-spotlight__hero.has-video .home-steam-spotlight__hero-img,
.home-steam-spotlight--vitrine .home-steam-spotlight__hero.has-video .home-steam-spotlight__hero-img,
.home-steam-spotlight--vitrine .home-steam-spotlight__hero.has-video.is-loading .home-steam-spotlight__hero-img {
  opacity: 0 !important;
}

.home-steam-spotlight__mute {
  position: absolute;
  z-index: 16;
  right: 0.75rem;
  bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgb(0 0 0 / 0.55);
  backdrop-filter: blur(8px);
  cursor: pointer;
  pointer-events: auto;
}

.home-steam-spotlight__mute.hidden {
  display: none !important;
}

.home-steam-spotlight__mute [data-mute-icon].hidden {
  display: none !important;
}

.home-steam-spotlight__mute:hover {
  background: rgb(0 0 0 / 0.72);
}

.home-steam-spotlight__mute svg {
  width: 1.05rem;
  height: 1.05rem;
}

/* Hide package screenshot until trailer is playing; show only for photo-only slides */
.home-cat-spotlight--presale .home-steam-spotlight__hero-img,
.home-cat-spotlight--presale .home-steam-spotlight__hero.is-awaiting-video .home-steam-spotlight__hero-img,
.home-cat-spotlight--steam .home-steam-spotlight__hero.is-awaiting-video .home-steam-spotlight__hero-img,
.home-cat-spotlight--playstation .home-steam-spotlight__hero.is-awaiting-video .home-steam-spotlight__hero-img,
.home-cat-spotlight--xbox .home-steam-spotlight__hero.is-awaiting-video .home-steam-spotlight__hero-img,
.home-steam-spotlight--vitrine .home-steam-spotlight__hero.is-awaiting-video .home-steam-spotlight__hero-img,
.home-steam-spotlight--vitrine .home-steam-spotlight__hero.is-awaiting-video.is-loading .home-steam-spotlight__hero-img {
  opacity: 0 !important;
}

.home-cat-spotlight--presale .home-steam-spotlight__hero.is-photo .home-steam-spotlight__hero-img,
.home-cat-spotlight--steam .home-steam-spotlight__hero.is-photo .home-steam-spotlight__hero-img,
.home-cat-spotlight--playstation .home-steam-spotlight__hero.is-photo .home-steam-spotlight__hero-img,
.home-cat-spotlight--xbox .home-steam-spotlight__hero.is-photo .home-steam-spotlight__hero-img {
  opacity: 1 !important;
}

.home-cat-spotlight--presale .home-steam-spotlight__hero.has-video .home-steam-spotlight__hero-img,
.home-cat-spotlight--steam .home-steam-spotlight__hero.has-video .home-steam-spotlight__hero-img,
.home-cat-spotlight--playstation .home-steam-spotlight__hero.has-video .home-steam-spotlight__hero-img,
.home-cat-spotlight--xbox .home-steam-spotlight__hero.has-video .home-steam-spotlight__hero-img {
  opacity: 0 !important;
}

.home-cat-spotlight--presale .home-steam-spotlight__loading-label {
  display: none !important;
}

.home-cat-spotlight--presale .home-steam-spotlight__hero-fade {
  z-index: 18;
  background: #05070c;
  transition: opacity 0.34s ease;
}

.home-cat-spotlight--presale .home-steam-spotlight__panel {
  transition: opacity 0.34s ease;
}

.home-cat-spotlight--presale .home-steam-spotlight__panel.is-fading {
  opacity: 0;
}

.home-cat-spotlight--presale .home-steam-spotlight__hit {
  pointer-events: none;
  grid-column: 1;
}

.home-cat-spotlight--presale .home-steam-spotlight__side-arrow {
  z-index: 50;
  pointer-events: auto !important;
}

.home-cat-spotlight--presale .home-steam-spotlight__cta {
  pointer-events: auto;
}

/* Pré-venda mobile: esconde só arte estática (banner/capa); mantém trailer + setas */
@media (max-width: 767px) {
  /* Só a imagem estática — NÃO o bloco inteiro (que contém o vídeo) */
  .home-cat-spotlight--presale.home-steam-spotlight--vitrine .home-steam-spotlight__hero-img,
  .home-section--presale .home-cat-spotlight--presale .home-steam-spotlight__hero-img {
    display: none !important;
  }

  /* Slide só-foto (sem trailer): colapsa o hero vazio */
  .home-cat-spotlight--presale.home-steam-spotlight--vitrine .home-steam-spotlight__hero.is-photo,
  .home-section--presale .home-cat-spotlight--presale .home-steam-spotlight__hero.is-photo {
    display: none !important;
  }

  /* Trailer / aguardando vídeo: hero permanece visível */
  .home-cat-spotlight--presale.home-steam-spotlight--vitrine .home-steam-spotlight__hero:not(.is-photo),
  .home-section--presale .home-cat-spotlight--presale .home-steam-spotlight__hero:not(.is-photo) {
    display: block !important;
  }

  .home-cat-spotlight--presale.home-steam-spotlight--vitrine .home-steam-spotlight__hero-video,
  .home-section--presale .home-cat-spotlight--presale .home-steam-spotlight__hero-video {
    display: block !important;
  }

  .home-cat-spotlight--presale.home-steam-spotlight--vitrine {
    padding-inline: 0;
    padding-bottom: 0.85rem;
  }

  .home-cat-spotlight--presale.home-steam-spotlight--vitrine .home-steam-spotlight__shell {
    overflow: visible;
  }

  .home-cat-spotlight--presale.home-steam-spotlight--vitrine .home-steam-spotlight__stage {
    min-height: 0;
  }

  .home-cat-spotlight--presale.home-steam-spotlight--vitrine .home-steam-spotlight__panel {
    justify-content: flex-start;
    padding: 1.05rem 2.85rem 1rem;
    padding-bottom: 1rem;
  }

  .home-cat-spotlight--presale.home-steam-spotlight--vitrine .home-steam-spotlight__side-arrow,
  .home-section--presale .home-cat-spotlight--presale .home-steam-spotlight__side-arrow {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    top: 50%;
    transform: translateY(-50%);
    border-width: 1.5px;
    border-color: rgba(69, 209, 255, 0.55);
    background: rgba(8, 12, 20, 0.88);
    color: #9ef0ff;
    box-shadow:
      0 10px 24px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(69, 209, 255, 0.12);
  }

  .home-cat-spotlight--presale.home-steam-spotlight--vitrine .home-steam-spotlight__side-arrow--prev,
  .home-section--presale .home-cat-spotlight--presale .home-steam-spotlight__side-arrow--prev {
    left: 0.45rem;
  }

  .home-cat-spotlight--presale.home-steam-spotlight--vitrine .home-steam-spotlight__side-arrow--next,
  .home-section--presale .home-cat-spotlight--presale .home-steam-spotlight__side-arrow--next {
    right: 0.45rem;
  }

  .home-cat-spotlight--presale.home-steam-spotlight--vitrine .home-steam-spotlight__side-arrow:hover,
  .home-cat-spotlight--presale.home-steam-spotlight--vitrine .home-steam-spotlight__side-arrow:focus-visible {
    border-color: #45d1ff;
    background: rgba(69, 209, 255, 0.18);
    box-shadow: 0 0 22px rgba(69, 209, 255, 0.28);
    transform: translateY(-50%) scale(1.05);
  }
}

/* Pré-venda: GTA fixo à esquerda + rail com scroll sobe/desce */
.kb-presale-split {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  max-width: min(100%, 98rem);
  margin-inline: auto;
  padding-inline: clamp(0.35rem, 1.2vw, 0.75rem);
  box-sizing: border-box;
}
.kb-presale-split__feature {
  min-width: 0;
  width: 100%;
}
.kb-presale-split__feature .home-steam-spotlight--vitrine {
  max-width: 100% !important;
  padding-inline: 0 !important;
  padding-bottom: 0.35rem !important;
  margin-inline: 0 !important;
}
.kb-presale-split .home-steam-spotlight__thumbs,
.kb-presale-split .home-steam-spotlight__side-arrow,
.kb-presale-split .home-steam-spotlight__dots-wrap,
.kb-presale-split [data-home-steam-prev],
.kb-presale-split [data-home-steam-next] {
  display: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
.kb-presale-split__rail {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.kb-presale-split__rail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-inline: 0.1rem;
}
.kb-presale-split__rail-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.kb-presale-split__rail-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}
.kb-presale-split__rail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid hsl(var(--primary) / 0.4);
  background: hsl(var(--primary) / 0.12);
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.kb-presale-split__rail-btn:hover,
.kb-presale-split__rail-btn:focus-visible {
  background: hsl(var(--primary) / 0.22);
  outline: none;
}
.kb-presale-split__rail-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.kb-presale-split__rail-btn-icon {
  width: 1.05rem;
  height: 1.05rem;
}
/* Desktop: lista vertical → setas viram sobe/desce */
@media (min-width: 900px) {
  .kb-presale-split__rail-btn[data-kb-presale-rail-up] {
    transform: rotate(90deg);
  }
  .kb-presale-split__rail-btn[data-kb-presale-rail-down] {
    transform: rotate(90deg);
  }
}
.kb-presale-split__rail-list {
  display: flex;
  flex-direction: row;
  gap: 0.7rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.1rem 0.15rem 0.35rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}
.kb-presale-split__rail-list::-webkit-scrollbar {
  display: none;
}
.kb-presale-side-card {
  flex: 0 0 min(78vw, 16.75rem);
  display: flex;
  align-items: stretch;
  gap: 0.7rem;
  min-width: 0;
  min-height: 5.35rem;
  padding: 0.65rem 0.7rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, #171d28 0%, #121821 100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  color: inherit;
  scroll-snap-align: start;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.kb-presale-side-card:hover,
.kb-presale-side-card:focus-visible {
  border-color: hsl(var(--primary) / 0.5);
  background: #161d28;
  outline: none;
}
.kb-presale-side-card__media {
  flex: 0 0 3.65rem;
  width: 3.65rem;
  height: 4.85rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #0a0e16;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.kb-presale-side-card__media img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover;
}
.kb-presale-side-card__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  justify-content: center;
}
.kb-presale-side-card__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.14rem 0.45rem;
  border-radius: 999px;
  border: 1px solid hsl(var(--primary) / 0.45);
  background: hsl(var(--primary) / 0.14);
  color: hsl(var(--primary));
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.kb-presale-side-card__name {
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.kb-presale-side-card__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
}
.kb-presale-side-card__compare {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}
.kb-presale-side-card__price {
  font-size: 0.95rem;
  font-weight: 800;
  color: hsl(var(--primary));
}
@media (min-width: 900px) {
  .kb-presale-split {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(15.5rem, 0.5fr);
    align-items: stretch;
    gap: 0.85rem;
    padding-inline: 0.15rem clamp(0.35rem, 1vw, 0.65rem) 0.15rem 0;
  }
  .kb-presale-split__feature .home-steam-spotlight--vitrine {
    --steam-vitrine-height: clamp(20rem, 28vw, 25.5rem);
  }
  .kb-presale-split__rail {
    height: 100%;
    max-height: var(--steam-vitrine-height, 25.5rem);
  }
  .kb-presale-split__rail-list {
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    max-height: calc(var(--steam-vitrine-height, 25.5rem) - 2.35rem);
    gap: 0.55rem;
    padding: 0;
    scroll-snap-type: none;
  }
  .kb-presale-side-card {
    flex: 0 0 auto;
    width: 100%;
    min-height: 4.85rem;
    padding: 0.55rem;
    box-shadow: none;
    background: #121821;
    scroll-snap-align: none;
  }
  .kb-presale-side-card__media {
    flex: 0 0 3.35rem;
    width: 3.35rem;
    height: 4.45rem;
    box-shadow: none;
  }
  .kb-presale-side-card__name {
    font-size: 0.78rem;
  }
  .kb-presale-side-card__price {
    font-size: 0.88rem;
  }
}



