﻿/* Store extras â€” carregado fora do pipeline Tailwind da CentralCart */

/* ═══════════════════════════════════════════
   Destaques — Top 5 (Supra Store)
   ═══════════════════════════════════════════ */

.destaque-featured {
  position: relative;
}

.destaque-featured__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 640px) {
  .destaque-featured__header {
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
  }
}

.destaque-featured__heading {
  position: relative;
  min-width: 0;
}

.destaque-featured__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.3rem;
  color: hsl(var(--primary));
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.destaque-featured__kicker::before {
  content: '';
  width: 0.85rem;
  height: 1px;
  background: hsl(var(--primary));
}

.destaque-featured__name {
  margin: 0;
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 3.2vw, 1.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  text-transform: none;
}

.destaque-featured__subtitle {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.65rem;
  font-weight: 500;
  line-height: 1.4;
}

.destaque-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid hsl(var(--primary) / 0.55);
  background: transparent;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  white-space: nowrap;
  transition:
    color 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.15s ease;
}

.destaque-featured__cta:hover {
  color: #081018;
  border-color: hsl(var(--primary));
  background: hsl(var(--primary));
  box-shadow: 0 8px 22px hsl(var(--primary) / 0.22);
  transform: translateY(-1px);
}

.destaque-featured__viewport {
  position: relative;
}

.destaque-featured__track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.95rem;
}

@media (min-width: 1280px) {
  .destaque-featured__track {
    gap: 1.25rem;
  }
}

@media (max-width: 1023px) {
  .destaque-featured__track {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.4rem;
    padding-inline: 0.1rem 0.95rem;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }

  .destaque-featured__item {
    flex: 0 0 13rem;
    padding-left: 2rem;
    scroll-snap-align: start;
  }

  .destaque-featured__rank {
    font-size: 2.75rem;
    -webkit-text-stroke-width: 0.1rem;
  }
}

.destaque-featured__item {
  position: relative;
  display: block;
  min-width: 0;
  padding-left: 2rem;
  text-decoration: none;
  color: inherit;
}

.destaque-featured__card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: visible;
  border-radius: 0.55rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.destaque-featured__item:hover .destaque-featured__card {
  transform: translateY(-3px);
}

.destaque-featured__rank {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  font-family: 'Kanit', sans-serif;
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.55);
  paint-order: stroke fill;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.08));
  transition:
    -webkit-text-stroke-color 0.25s ease,
    filter 0.25s ease;
}

.destaque-featured__item:hover .destaque-featured__rank {
  -webkit-text-stroke-color: hsl(var(--primary));
  filter: drop-shadow(0 0 16px hsl(var(--primary) / 0.25));
}

.destaque-featured__media {
  position: relative;
  z-index: 1;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 0.55rem 0.55rem 0 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: none;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease;
}

.destaque-featured__item:hover .destaque-featured__media {
  border-color: hsl(var(--primary) / 0.22);
}

.destaque-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.45s ease;
}

.destaque-featured__item:hover .destaque-featured__img {
  transform: scale(1.05);
}

.destaque-featured__badge {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  z-index: 2;
  padding: 0.15rem 0.35rem;
  border-radius: 0.25rem;
  background: hsl(var(--primary));
  color: #081018;
  font-size: 0.5rem;
  font-weight: 800;
  line-height: 1;
}

.destaque-featured__soldout {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  font-size: 0.45rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.destaque-featured__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
  padding: 0.4rem 0.5rem 0.45rem;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: none;
  border-radius: 0 0 0.55rem 0.55rem;
  transition: border-color 0.2s ease, box-shadow 0.25s ease;
}

.destaque-featured__item:hover .destaque-featured__body {
  border-color: hsl(var(--primary) / 0.22);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.4),
    0 0 0 1px hsl(var(--primary) / 0.06);
}

.destaque-featured__title {
  position: relative;
  margin: 0;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  mask-image: linear-gradient(90deg, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 70%, transparent 100%);
}

@media (min-width: 640px) {
  .destaque-featured__title {
    font-size: 0.7rem;
  }
}

@media (min-width: 1024px) {
  .destaque-featured__title {
    font-size: 0.7rem;
  }
}

.destaque-featured__pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem;
}

.destaque-featured__compare {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.55rem;
  text-decoration: line-through;
}

.destaque-featured__price {
  color: hsl(var(--primary));
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .destaque-featured__price {
    font-size: 0.85rem;
  }
}

@media (min-width: 1024px) {
  .destaque-featured__price {
    font-size: 0.85rem;
  }
}

.category-carousel {
  overflow: visible;
}

/* Categorias *-franquia: capas na vertical */
.category-carousel--vertical .package-list {
  grid-auto-columns: calc((100% - 0.75rem) / 2) !important;
}

@media (min-width: 640px) {
  .category-carousel--vertical .package-list {
    grid-auto-columns: calc((100% - 3rem) / 4) !important;
  }
}

@media (min-width: 1024px) {
  .category-carousel--vertical .package-list {
    grid-auto-columns: calc((100% - 4rem) / 5) !important;
  }
}

@media (min-width: 1280px) {
  .category-carousel--vertical .package-list {
    grid-auto-columns: calc((100% - 5rem) / 6) !important;
  }
}

.category-carousel--vertical .king-card-media,
.category-carousel--vertical .king-card-offer-img,
.category-carousel--vertical .king-card-media > picture,
.category-carousel--vertical .king-card-media > picture img,
.category-carousel--vertical .king-card-media > img,
.package-grid--vertical .king-card-media,
.package-grid--vertical .king-card-offer-img,
.package-grid--vertical .king-card-media > picture,
.package-grid--vertical .king-card-media > picture img,
.package-grid--vertical .king-card-media > img {
  aspect-ratio: 3 / 4 !important;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.category-carousel--vertical .king-card-media > picture,
.package-grid--vertical .king-card-media > picture {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4 !important;
}

.category-carousel--vertical .king-card-media > picture img,
.package-grid--vertical .king-card-media > picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Título próprio das categorias *-franquia */
.king-section-heading--franquia {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.king-section-heading__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #c4a574;
  font-family: 'Geist', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.king-section-heading__kicker::before {
  content: '';
  width: 0.7rem;
  height: 1px;
  background: #c4a574;
}

.king-section-title--franquia {
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f4f1ea;
}

.king-section-title--franquia::before {
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #c4a574 0%, rgba(196, 165, 116, 0.25) 100%);
  box-shadow: 0 0 12px rgba(196, 165, 116, 0.2);
}

.category-carousel-viewport-wrap {
  position: relative;
  overflow: visible;
}

.category-carousel-btn {
  z-index: 8;
  width: 1.5rem;
  height: 1.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 14, 18, 0.55);
  color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 0.85rem rgba(0, 0, 0, 0.28);
  cursor: pointer;
  opacity: 0.72;
  transition:
    color 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    opacity 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
  display: none !important;
}

@media (min-width: 768px) {
  .category-carousel-btn:not(.hidden) {
    display: inline-flex !important;
  }

  .category-carousel-btn:hover:not(:disabled) {
    opacity: 1;
    color: hsl(var(--primary));
    border-color: hsl(var(--primary) / 0.35);
    background: rgba(12, 14, 18, 0.78);
    box-shadow: 0 0.35rem 18px rgba(0, 0, 0, 0.35);
  }

  .category-carousel-btn:active:not(:disabled) {
    transform: translateY(-50%) scale(0.94) !important;
  }
}

.category-carousel-btn.hidden {
  display: none !important;
}

.category-carousel-btn:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  filter: grayscale(0.35);
}

.category-carousel-btn i,
.category-carousel-btn svg {
  width: 0.7rem;
  height: 0.7rem;
}

.category-carousel-viewport {
  touch-action: pan-x pan-y;
}

.king-card-media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.king-card-media .king-card-gallery-fade {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.45s ease, transform 0.3s ease;
  display: block;
  will-change: opacity, transform;
}

.king-card-media .king-card-gallery-fade.is-visible {
  opacity: 1;
  transform: scale(1.05);
}

.king-store-offer-card.is-gallery-playing .king-card-offer-img,
.king-store-offer-card.is-gallery-playing .king-card-media > picture img,
.king-store-offer-card.is-gallery-playing .king-card-media > img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Brilho dos cards desativado */
.king-card-shine {
  display: none !important;
  animation: none !important;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Package buy card
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.package-buy-card {
  overflow: hidden;
}

.package-buy-card__cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.03);
}

.package-buy-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.package-buy-card:hover .package-buy-card__cover img {
  transform: scale(1.03);
}

.package-buy-card__cover.is-unavailable img {
  filter: blur(2px);
  opacity: 0.75;
}

.package-buy-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem 0.85rem;
}

.package-buy-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.package-buy-card__badge {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.package-buy-card__viewers {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
  white-space: nowrap;
}

.package-buy-card__dot {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 999px;
  background: #43db7f;
  box-shadow: 0 0 0 3px rgba(67, 219, 127, 0.18);
  animation: package-buy-pulse 1.6s ease-in-out infinite;
}

@keyframes package-buy-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.package-buy-card__title {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.package-buy-card__platform {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.package-buy-card__label {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-buy-card__platform-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.package-buy-card #variation-list {
  margin: 0;
}

.package-buy-card #variation-list .package-buy-card__label {
  margin-bottom: 0.3rem;
  display: block;
}

.package-buy-card #edition-trigger {
  height: 2rem;
  padding: 0 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.package-buy-card #edition-trigger:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.4);
}

.package-buy-card #edition-menu {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #141416;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.package-buy-card__pricing {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 0.1rem;
}

.package-buy-card__compare {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.125rem;
  line-height: 1;
  text-decoration: line-through;
}

.package-buy-card__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.5rem;
}

.package-buy-card__price {
  margin: 0;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.package-buy-card__off {
  color: #43db7f;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.package-buy-card__pix {
  margin: 0.1rem 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  font-weight: 500;
}

.package-buy-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.1rem;
}

.package-buy-card__actions .package-buy-card__btn {
  height: 3rem;
  border-radius: 11px;
  font-size: 1.0625rem;
  font-weight: 800;
  gap: 0.5rem;
}

.package-buy-card__actions .package-buy-card__btn svg {
  width: 1.125rem;
  height: 1.125rem;
}

.package-buy-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  height: 2rem;
  border: 0;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
}

.package-buy-card__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.package-buy-card__btn--cart {
  background: rgba(255, 255, 255, 0.94);
  color: #0a0a0a;
}

.package-buy-card__btn--cart:hover:not(:disabled) {
  background: #fff;
  transform: translateY(-1px);
}

.package-buy-card__btn--buy {
  --package-buy-green-soft: #7ee8a8;
  --package-buy-green-strong: #43db7f;
  background-color: #43db7f;
  background-image: linear-gradient(
    135deg,
    var(--package-buy-green-soft) 0%,
    var(--package-buy-green-strong) 100%
  );
  color: #052e16;
  box-shadow: 0 8px 22px rgba(67, 219, 127, 0.22);
}

.package-buy-card__btn--buy:hover:not(:disabled) {
  background-color: #43db7f;
  background-image: linear-gradient(
    135deg,
    var(--package-buy-green-soft) 0%,
    var(--package-buy-green-strong) 100%
  );
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(67, 219, 127, 0.28);
}

.package-buy-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 0.4rem 0.65rem;
  margin-top: 0.1rem;
  padding: 0.5rem 0.6rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.28);
}

.package-buy-card__footer-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 500;
}

.package-buy-card__footer-item svg,
.package-buy-card__footer-item img {
  width: 0.72rem;
  height: 0.72rem;
  flex-shrink: 0;
}

.package-card-steam-key-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.15rem 0.35rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(125, 211, 252, 0.35);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #7dd3fc;
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .package-card-steam-key-tag {
    font-size: 0.5rem;
    padding: 0.15rem 0.4rem;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Footer
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.king-footer {
  position: relative;
}

.king-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .king-footer__grid {
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 1.5rem 2.25rem;
    align-items: start;
  }
}

.king-footer__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.king-footer__logo {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.king-footer__brand-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
}

.king-footer__desc {
  margin: 0 0 0.95rem;
  max-width: 20rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.65rem;
  line-height: 1.65;
}

.king-footer__trust-label {
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.king-footer__trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.king-footer__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.55rem;
  font-weight: 600;
}

.king-footer__trust-badge svg {
  color: hsl(var(--primary));
}

.king-footer__business {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.4rem;
}

.king-footer__business p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.6rem;
  line-height: 1.45;
}

.king-footer__business a,
.king-footer__business span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.king-footer__business a:hover {
  color: hsl(var(--primary));
}

.king-footer__heading {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.king-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.king-footer__links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.king-footer__links a:hover {
  color: #fff;
}

.king-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.king-footer__social-btn {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.king-footer__social-btn:hover {
  border-color: hsl(var(--primary) / 0.35);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.king-footer__social-icon {
  width: 0.85rem;
  height: 0.85rem;
  background-color: rgba(255, 255, 255, 0.82);
}

.king-footer__support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  max-width: 12rem;
  min-height: 2rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.4rem;
  border: 1px solid hsl(var(--primary) / 0.45);
  background: hsl(var(--primary) / 0.08);
  color: hsl(var(--primary));
  font-size: 0.65rem;
  font-weight: 650;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.king-footer__support-btn:hover {
  background: hsl(var(--primary) / 0.14);
  border-color: hsl(var(--primary) / 0.65);
  transform: translateY(-1px);
}

.king-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.king-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem 1.25rem;
  padding: 0.85rem 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.6rem;
}

.king-footer__bottom-inner p {
  margin: 0;
}

.king-footer__payments {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Package info flow (benefits + steps) */

.package-requirements__summary::-webkit-details-marker,
.package-faq__summary::-webkit-details-marker,
.package-acc__summary::-webkit-details-marker {
  display: none;
}

.package-requirements__summary::marker,
.package-faq__summary::marker,
.package-acc__summary::marker {
  content: '';
}

.package-acc__summary {
  user-select: none;
  transition: background-color 0.2s ease;
}

.package-acc__summary:hover {
  background-color: hsl(var(--primary) / 0.06);
}

.package-acc {
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.package-acc:has(.package-acc__summary:hover) {
  border-color: hsl(var(--primary) / 0.35);
}

.package-acc__panel {
  overflow: hidden;
  height: 0;
}

.package-acc__panel-inner {
  min-height: 0;
}

.package-faq__discord {
  background: #5865f2;
  box-shadow: 0 6px 16px rgba(88, 101, 242, 0.28);
}

.package-faq__discord:hover {
  background: #4752c4;
}

.package-info-flow {
  min-width: 0;
}

.package-info-flow__panel {
  min-width: 0;
}

.package-info-flow__head {
  margin-bottom: 0.95rem;
}

.package-info-flow__eyebrow {
  margin: 0 0 0.25rem;
  color: hsl(var(--primary));
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-info-flow__title {
  margin: 0;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.package-info-flow__lead {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8125rem;
  line-height: 1.45;
  max-width: 32rem;
}

.package-info-flow__benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.package-info-flow__benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(135deg, hsl(var(--primary) / 0.08), transparent 55%),
    rgba(0, 0, 0, 0.22);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.package-info-flow__benefit:hover {
  border-color: hsl(var(--primary) / 0.28);
  transform: translateY(-1px);
}

.package-info-flow__benefit-icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  border: 1px solid hsl(var(--primary) / 0.22);
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.package-info-flow__benefit-icon svg {
  width: 0.9rem;
  height: 0.9rem;
}

.package-info-flow__benefit h5 {
  margin: 0 0 0.2rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 650;
  line-height: 1.3;
}

.package-info-flow__benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.775rem;
  line-height: 1.45;
}

.package-info-flow__benefit code {
  padding: 0.1rem 0.25rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.775rem;
}

.package-info-flow__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

@media (min-width: 768px) {
  .package-info-flow__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
  }
}

.package-info-flow__step {
  position: relative;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.package-info-flow__step-index {
  position: absolute;
  top: 0.35rem;
  right: 0.65rem;
  z-index: 0;
  color: rgba(255, 255, 255, 0.08);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.package-info-flow__step-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 100%;
  min-width: 0;
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(135deg, hsl(var(--primary) / 0.08), transparent 55%),
    rgba(0, 0, 0, 0.22);
}

.package-info-flow__step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid hsl(var(--primary) / 0.35);
  background: hsl(var(--primary) / 0.12);
  color: hsl(var(--primary));
}

.package-info-flow__step-icon svg {
  width: 0.85rem;
  height: 0.85rem;
}

.package-info-flow__step h5 {
  margin: 0 0 0.2rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 650;
  line-height: 1.3;
}

.package-info-flow__step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.775rem;
  line-height: 1.45;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Global scrollbar
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

html {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) rgba(255, 255, 255, 0.04);
}

::-webkit-scrollbar {
  width: 0.55rem;
  height: 0.55rem;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-left: 1px solid rgba(255, 255, 255, 0.04);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
  border: 2px solid rgba(13, 15, 20, 0.95);
  border-radius: 999px;
  min-height: 2rem;
  transition: background 0.15s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

::-webkit-scrollbar-thumb:active {
  background: rgba(255, 255, 255, 0.92);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 0.4rem;
  height: 0.4rem;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 999px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
  border: 2px solid transparent;
  border-radius: 999px;
  transition: background 0.15s ease;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

.custom-scrollbar::-webkit-scrollbar-thumb:active {
  background: rgba(255, 255, 255, 0.92);
}

/* Sale popup (checkout) */
.king-coupon-popup {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 100;
  width: calc(100% - 2.25rem);
  max-width: 285px;
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 0.95rem, 0) scale(0.92);
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease, visibility 0.35s ease;
  will-change: transform, opacity;
}

.king-coupon-popup[data-state="open"] {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.king-coupon-popup__inner {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  padding: 0.75rem 0.75rem 0.85rem;
  background: linear-gradient(160deg, rgba(24, 27, 36, 0.98), rgba(12, 14, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.king-coupon-popup__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, hsl(var(--primary)), hsl(var(--primary) / 0.35));
}

.king-coupon-popup__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, hsl(var(--primary) / 0.45), transparent 70%);
  opacity: 0.9;
}

.king-coupon-popup__close {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: 0;
  border-radius: 0.4rem;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.king-coupon-popup__close i,
.king-coupon-popup__close svg {
  width: 0.75rem;
  height: 0.75rem;
}

.king-coupon-popup__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
}

.king-coupon-popup__link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.king-coupon-popup__media {
  position: relative;
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.65rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.king-coupon-popup__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.king-coupon-popup__link:hover .king-coupon-popup__media img {
  transform: scale(1.07);
}

.king-coupon-popup__live {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #43db7f;
  box-shadow: 0 0 0 3px rgba(67, 219, 127, 0.25);
  animation: king-popup-live-pulse 1.8s ease-in-out infinite;
}

@keyframes king-popup-live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(0.88); }
}

.king-coupon-popup__body {
  min-width: 0;
  flex: 1;
  padding-right: 1.25rem;
}

.king-coupon-popup__message {
  margin: 0 0 0.25rem;
  font-size: 0.6rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
}

.king-coupon-popup__name {
  font-weight: 700;
  color: #fff;
}

.king-coupon-popup__product {
  margin: 0 0 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.king-coupon-popup__time {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.45);
}

.king-coupon-popup__time i,
.king-coupon-popup__time svg {
  width: 0.65rem;
  height: 0.65rem;
}

.king-coupon-popup__progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform-origin: left center;
  transform: scaleX(0);
  background: hsl(var(--primary));
  opacity: 0.9;
}

.king-coupon-popup[data-state="open"] .king-coupon-popup__progress {
  animation: king-popup-progress 4.5s linear forwards;
}

@keyframes king-popup-progress {
  to {
    transform: scaleX(1);
  }
}

@media (min-width: 640px) {
  .king-coupon-popup__media {
    width: 3.5rem;
    height: 3.5rem;
  }
}

/* Lightweight CSS stars (avoids Lucide hydration for rating rows) */
.king-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
}

.king-star {
  display: inline-block;
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  background: currentColor;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.king-star--on {
  color: #facc15;
}

.king-star--off {
  color: rgba(255, 255, 255, 0.16);
}

/* Skip paint work for offscreen home sections */
.reviews-section,
.king-feedbacks-section,
.ss-discord {
  content-visibility: auto;
  contain-intrinsic-size: 1px 120px;
}

/* ═══════════════════════════════════════════
   Pré-venda banner (home)
   ═══════════════════════════════════════════ */

.prevenda-banner {
  --pv-accent: #8fa9b8;
  --pv-accent-soft: rgba(143, 169, 184, 0.14);
  --pv-accent-ink: #0b1014;
  --pv-panel: #07080b;
  --pv-panel-edge: #0a0c10;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 1px 280px;
}

.prevenda-banner__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.prevenda-banner__heading {
  min-width: 0;
}

.prevenda-banner__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
  color: var(--pv-accent);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.prevenda-banner__kicker::before {
  content: '';
  width: 0.7rem;
  height: 1px;
  background: var(--pv-accent);
}

.prevenda-banner__title {
  margin: 0;
  font-family: Kanit, sans-serif;
  font-size: clamp(1.4rem, 3.4vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  color: #f4f1ea;
}

.prevenda-banner__subtitle {
  margin: 0.35rem 0 0;
  max-width: 28rem;
  color: rgba(244, 241, 234, 0.48);
  font-size: 0.8rem;
  line-height: 1.4;
  font-weight: 500;
}

.prevenda-banner__all {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  padding: 0.4rem 0.75rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(196, 165, 116, 0.22);
  background: transparent;
  color: rgba(244, 241, 234, 0.82);
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.prevenda-banner__all:hover {
  border-color: rgba(196, 165, 116, 0.4);
  background: var(--pv-accent-soft);
  color: #f4f1ea;
}

.prevenda-banner__stage {
  position: relative;
}

.prevenda-banner__viewport {
  overflow: hidden;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  box-shadow: none;
  touch-action: pan-y;
}

.prevenda-banner.is-mobile-snap .prevenda-banner__viewport {
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.prevenda-banner.is-mobile-snap .prevenda-banner__viewport:active {
  cursor: grabbing;
}

.prevenda-banner__track {
  display: flex;
  transition: transform 0.75s cubic-bezier(0.33, 0.1, 0.25, 1);
  will-change: transform;
}

.prevenda-banner.is-mobile-snap .prevenda-banner__nav {
  display: none !important;
}

.prevenda-banner.is-mobile-snap .prevenda-banner__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  pointer-events: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 11.5rem;
}

.prevenda-banner.is-mobile-snap .prevenda-banner__media {
  min-height: 100%;
}

.prevenda-banner.is-mobile-snap .prevenda-banner__media::after {
  background: linear-gradient(90deg, transparent 45%, rgba(0, 0, 0, 0.88) 100%);
}

.prevenda-banner.is-mobile-snap .prevenda-banner__info {
  padding: 0.75rem 0.7rem 0.85rem;
  gap: 0.4rem;
  justify-content: center;
}

.prevenda-banner.is-mobile-snap .prevenda-banner__badge {
  font-size: 0.55rem;
  padding: 0.2rem 0.45rem;
}

.prevenda-banner.is-mobile-snap .prevenda-banner__name {
  font-size: 0.92rem;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prevenda-banner.is-mobile-snap .prevenda-banner__release {
  font-size: 0.68rem;
  gap: 0.25rem;
}

.prevenda-banner.is-mobile-snap .prevenda-banner__release strong {
  font-size: 0.62rem;
  padding: 0.22rem 0.5rem;
}

.prevenda-banner.is-mobile-snap .prevenda-banner__compare-row s {
  font-size: 0.68rem;
}

.prevenda-banner.is-mobile-snap .prevenda-banner__off {
  font-size: 0.65rem;
}

.prevenda-banner.is-mobile-snap .prevenda-banner__price {
  font-size: 1.2rem;
}

.prevenda-banner.is-mobile-snap .prevenda-banner__pricing {
  margin-top: 0.2rem;
  padding-right: 1.75rem;
}

.prevenda-banner.is-mobile-snap .prevenda-banner__steam {
  width: 2.35rem;
  height: 2.35rem;
  padding: 0.28rem 0.32rem;
}

.prevenda-banner.is-mobile-snap .prevenda-banner__steam-icon {
  width: 0.78rem;
  height: 0.78rem;
}

.prevenda-banner__slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 11.75rem;
  text-decoration: none;
  color: inherit;
  background: #000;
}

.prevenda-banner__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #080a0e;
}

.prevenda-banner__media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 45%, rgba(0, 0, 0, 0.88) 100%);
}

.prevenda-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prevenda-banner__info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 0.8rem 0.95rem;
  background: #000;
  overflow: hidden;
}

.prevenda-banner__info::before {
  display: none;
}

.prevenda-banner__badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 0.22rem 0.5rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(143, 169, 184, 0.35);
  background: rgba(143, 169, 184, 0.18);
  color: #d5e3eb;
  font-family: 'Geist', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.prevenda-banner__name {
  margin: 0;
  font-family: 'Geist', sans-serif;
  font-size: clamp(0.95rem, 2.8vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.prevenda-banner__release {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: 'Geist', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
}

.prevenda-banner__release strong {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.68rem;
  font-weight: 600;
}

.prevenda-banner__pricing {
  margin-top: 0.35rem;
  padding-right: 2rem;
}

.prevenda-banner__compare-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.15rem;
}

.prevenda-banner__compare-row s {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  font-weight: 400;
}

.prevenda-banner__off {
  color: #86efac;
  font-family: 'Geist', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.prevenda-banner__price {
  display: block;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: clamp(1.2rem, 3.4vw, 2.25rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}

.prevenda-banner__steam {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0.32rem 0.38rem;
  background: #9bb3c2;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.prevenda-banner__steam-icon {
  width: 0.85rem;
  height: 0.85rem;
  background-color: var(--pv-accent-ink);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11.979 0C5.678 0 .511 4.86.022 11.037l6.432 2.658a3.387 3.387 0 0 1 1.91-.56c.045 0 .088.004.132.005l2.867-4.163V9.02a4.57 4.57 0 0 1 4.566-4.566 4.57 4.57 0 0 1 4.566 4.566 4.57 4.57 0 0 1-4.566 4.566h-.105l-4.094 2.91c0 .036.004.071.004.107a3.39 3.39 0 0 1-3.39 3.39 3.39 3.39 0 0 1-3.31-2.66L.424 16.58C2.211 21.023 6.689 24 11.979 24c6.627 0 12-5.373 12-12s-5.373-12-12-12z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11.979 0C5.678 0 .511 4.86.022 11.037l6.432 2.658a3.387 3.387 0 0 1 1.91-.56c.045 0 .088.004.132.005l2.867-4.163V9.02a4.57 4.57 0 0 1 4.566-4.566 4.57 4.57 0 0 1 4.566 4.566 4.57 4.57 0 0 1-4.566 4.566h-.105l-4.094 2.91c0 .036.004.071.004.107a3.39 3.39 0 0 1-3.39 3.39 3.39 3.39 0 0 1-3.31-2.66L.424 16.58C2.211 21.023 6.689 24 11.979 24c6.627 0 12-5.373 12-12s-5.373-12-12-12z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.prevenda-banner__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  background: rgba(10, 12, 16, 0.78);
  color: rgba(244, 241, 234, 0.88);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.prevenda-banner__nav:hover {
  background: rgba(16, 18, 24, 0.92);
  border-color: rgba(143, 169, 184, 0.4);
  color: #fff;
}

.prevenda-banner__nav--prev {
  left: 0.55rem;
}

.prevenda-banner__nav--next {
  right: 0.55rem;
}

.prevenda-banner__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.05rem;
  min-height: 0.7rem;
}

.prevenda-banner__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(244, 241, 234, 0.28);
  cursor: pointer;
  transition: width 0.35s cubic-bezier(0.33, 0.1, 0.25, 1), background 0.35s ease;
}

.prevenda-banner__dot.is-active {
  width: 1.55rem;
  background: var(--pv-accent);
}

@media (min-width: 768px) {
  .prevenda-banner__header {
    margin-bottom: 1.15rem;
  }

  .prevenda-banner__slide {
    grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.95fr);
    min-height: 13.75rem;
  }

  .prevenda-banner__media {
    min-height: 100%;
  }

  .prevenda-banner__media::after {
    background: linear-gradient(90deg, transparent 55%, rgba(0, 0, 0, 0.85) 100%);
  }

  .prevenda-banner__info {
    padding: 1.2rem 1.35rem 1.3rem;
    gap: 0.65rem;
  }

  .prevenda-banner__badge {
    font-size: 0.68rem;
    padding: 0.28rem 0.65rem;
  }

  .prevenda-banner__name {
    font-size: 1.75rem;
  }

  .prevenda-banner__release {
    font-size: 0.88rem;
    gap: 0.4rem;
  }

  .prevenda-banner__release strong {
    font-size: 0.82rem;
    padding: 0.35rem 0.75rem;
  }

  .prevenda-banner__compare-row s {
    font-size: 0.9rem;
  }

  .prevenda-banner__off {
    font-size: 0.85rem;
  }

  .prevenda-banner__price {
    font-size: 2.05rem;
  }

  .prevenda-banner__pricing {
    padding-right: 3.25rem;
  }

  .prevenda-banner__steam {
    width: 4.25rem;
    height: 4.25rem;
    padding: 0.55rem 0.6rem;
  }

  .prevenda-banner__steam-icon {
    width: 1.35rem;
    height: 1.35rem;
  }

  .prevenda-banner__nav--prev {
    left: -0.25rem;
  }

  .prevenda-banner__nav--next {
    right: -0.25rem;
  }
}

@media (min-width: 1024px) {
  .prevenda-banner__slide {
    grid-template-columns: minmax(0, 1.45fr) minmax(18.5rem, 0.9fr);
    min-height: 14.5rem;
  }

  .prevenda-banner__info {
    padding: 1.35rem 1.55rem 1.45rem;
  }

  .prevenda-banner__name {
    font-size: 2.05rem;
  }

  .prevenda-banner__price {
    font-size: 2.35rem;
  }

  .prevenda-banner__steam {
    width: 4.75rem;
    height: 4.75rem;
    padding: 0.6rem 0.7rem;
  }

  .prevenda-banner__steam-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .prevenda-banner__nav--prev {
    left: -0.75rem;
  }

  .prevenda-banner__nav--next {
    right: -0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .prevenda-banner__track {
    transition: none;
  }
}

/* ═══════════════════════════════════════════
   Terms page
   ═══════════════════════════════════════════ */

#termos-condicoes details[id],
#termos-condicoes article[id] {
  scroll-margin-top: 5.5rem;
}

@media (min-width: 640px) {
  #termos-condicoes details[id],
  #termos-condicoes article[id] {
    scroll-margin-top: 6rem;
  }
}

#termos-condicoes details > summary::-webkit-details-marker {
  display: none;
}

#termos-condicoes .terms-toc a.is-active {
  color: hsl(var(--primary));
  font-weight: 600;
}
