/* PlayStation store theme — gold #FFC800 + illuminated dark #1a1a1a */

:root {
  --ps-black: #1a1a1a;
  --ps-black-elevated: #242424;
  --ps-black-surface: #2c2c2c;
  --ps-gold: #ffc800;
  --ps-gold-hover: #e6b400;
  --ps-gold-bright: #ffd633;
  --ps-gold-light: #ffe566;
  --ps-gold-glow: rgba(255, 200, 0, 0.55);
  --ps-gold-glow-soft: rgba(255, 200, 0, 0.22);
  --ps-gold-glow-strong: rgba(255, 200, 0, 0.38);
  --ps-gold-soft: rgba(255, 200, 0, 0.14);
  --ps-gold-border: rgba(255, 200, 0, 0.32);
  --ps-border-width: 0.5px;
  --ps-border-color: rgba(255, 255, 255, 0.16);
  --ps-border-color-hover: rgba(255, 200, 0, 0.75);
  --ps-radius: 1rem;
  --ps-radius-sm: 0.75rem;
  --ps-radius-xs: 0.5rem;
  --ps-shadow-glow: 0 0 40px rgba(255, 200, 0, 0.12);
  --ps-shadow-card: 0 4px 24px rgba(0, 0, 0, 0.28), 0 0 20px rgba(255, 200, 0, 0.06);
  --ps-shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.32), 0 0 32px rgba(255, 200, 0, 0.18);
}

body {
  background-color: var(--ps-black);
}

.ps-backdrop .size-\[30rem\] {
  display: none;
}

.ps-backdrop .hidden.sm\:block.size-\[45rem\] {
  display: none;
}

/* Fundo — iluminação dourada estilo Phaze */
.ps-backdrop {
  background: var(--ps-black);
}

.ps-backdrop__base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 60% at 50% -5%, var(--ps-gold-glow-strong) 0%, transparent 58%),
    radial-gradient(ellipse 55% 50% at 0% 45%, rgba(255, 200, 0, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 100% 55%, rgba(255, 200, 0, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 80% 45% at 50% 105%, rgba(255, 200, 0, 0.16) 0%, transparent 58%),
    linear-gradient(180deg, #222 0%, var(--ps-black) 35%, var(--ps-black) 100%);
}

.ps-backdrop__glow {
  position: absolute;
  pointer-events: none;
  filter: blur(60px);
}

.ps-backdrop__glow--top {
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: min(90vw, 56rem);
  height: 22rem;
  background: radial-gradient(circle, rgba(255, 200, 0, 0.35) 0%, transparent 70%);
  opacity: 0.85;
}

.ps-backdrop__glow--left {
  top: 28%;
  left: -8%;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(255, 200, 0, 0.18) 0%, transparent 70%);
  opacity: 0.7;
}

.ps-backdrop__glow--right {
  top: 45%;
  right: -8%;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(255, 200, 0, 0.15) 0%, transparent 70%);
  opacity: 0.65;
}

.ps-backdrop__glow--center {
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(95vw, 70rem);
  height: 32rem;
  background: radial-gradient(ellipse, rgba(255, 200, 0, 0.1) 0%, transparent 68%);
  opacity: 0.55;
}

.ps-backdrop__grid {
  position: relative;
  opacity: 0.55;
}

.ps-backdrop__grid::after {
  content: none;
}

.ps-backdrop .grid-background::after {
  content: none;
}

.ps-backdrop__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 95% 85% at 50% 50%, transparent 50%, rgba(26, 26, 26, 0.18) 100%);
}

.text-secondary {
  color: hsl(var(--primary));
}

.btn-primary {
  color: #000 !important;
  box-shadow: 0 0 20px rgba(255, 200, 0, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 0 28px rgba(255, 200, 0, 0.5);
}

.bg-primary:not(.btn-primary) {
  color: #000;
}

/* Games showcase hero — capas animadas + painel central */
.ps-games-showcase {
  position: relative;
  padding: 0.75rem 0 0.25rem;
}

.ps-games-showcase__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--ps-radius);
  border: var(--ps-border-width) solid rgba(255, 200, 0, 0.22);
  background: var(--ps-black-elevated);
  min-height: 15rem;
  box-shadow: var(--ps-shadow-card), inset 0 0 60px rgba(255, 200, 0, 0.04);
}

.ps-games-showcase__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% 50%, rgba(255, 200, 0, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.ps-games-showcase__marquees {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 1.1rem 0;
  opacity: 0.55;
  filter: saturate(0.65) brightness(0.72);
}

.ps-games-showcase__marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.ps-games-showcase__track {
  display: flex;
  width: max-content;
  gap: 0.55rem;
  animation-duration: var(--ps-showcase-dur, 36s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

.ps-games-showcase__track--left {
  animation-name: ps-games-marquee-left;
}

.ps-games-showcase__track--right {
  animation-name: ps-games-marquee-right;
}

@keyframes ps-games-marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes ps-games-marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.ps-games-showcase__cover {
  flex-shrink: 0;
  width: 4.25rem;
  aspect-ratio: 187 / 250;
  border-radius: var(--ps-radius-xs);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
  background: #111;
}

@media (min-width: 640px) {
  .ps-games-showcase__cover {
    width: 5.25rem;
  }
}

.ps-games-showcase__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ps-games-showcase__cover-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255, 200, 0, 0.45);
}

.ps-games-showcase__cover-fallback i {
  width: 1.35rem;
  height: 1.35rem;
}

.ps-games-showcase__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.55) 0%, rgba(26, 26, 26, 0.15) 38%, rgba(26, 26, 26, 0.15) 62%, rgba(26, 26, 26, 0.55) 100%),
    radial-gradient(ellipse 85% 70% at 50% 50%, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.55) 55%, transparent 100%);
}

.ps-games-showcase__center {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.25rem 1.25rem 2rem;
  animation: ps-games-float 5s ease-in-out infinite;
}

@keyframes ps-games-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.ps-games-showcase__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 200, 0, 0.12);
  border: 1px solid rgba(255, 200, 0, 0.35);
  box-shadow: 0 0 20px rgba(255, 200, 0, 0.12);
}

.ps-games-showcase__badge-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--ps-gold);
  box-shadow: 0 0 10px var(--ps-gold-glow);
  animation: ps-games-pulse 1.8s ease-in-out infinite;
}

@keyframes ps-games-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.ps-games-showcase__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 4.5vw, 2.15rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 20ch;
}

.ps-games-showcase__title-accent {
  background: linear-gradient(90deg, var(--ps-gold), var(--ps-gold-bright), var(--ps-gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: ps-games-shimmer 3s linear infinite;
}

@keyframes ps-games-shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.ps-games-showcase__desc {
  margin: 0 0 1rem;
  max-width: 28rem;
  font-size: clamp(0.8125rem, 2.2vw, 0.9375rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.ps-games-showcase__pills {
  margin-bottom: 1.1rem;
}

.ps-games-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.ps-games-showcase__cta,
.ps-games-showcase__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ps-games-showcase__icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ps-games-showcase__icon {
  position: absolute;
  width: 1.35rem;
  height: 1.35rem;
  color: rgba(255, 200, 0, 0.28);
}

.ps-games-showcase__icon--1 {
  top: 18%;
  left: 8%;
  animation: ps-games-icon-drift 7s ease-in-out infinite;
}

.ps-games-showcase__icon--2 {
  top: 22%;
  right: 10%;
  animation: ps-games-icon-drift 6s ease-in-out infinite reverse;
}

.ps-games-showcase__icon--3 {
  bottom: 16%;
  left: 14%;
  animation: ps-games-icon-drift 8s ease-in-out infinite;
  animation-delay: -2s;
}

@keyframes ps-games-icon-drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.35; }
  50% { transform: translate(6px, -8px) rotate(8deg); opacity: 0.65; }
}

.ps-games-showcase__frame:hover .ps-games-showcase__track {
  animation-play-state: paused;
}

@media (min-width: 768px) {
  .ps-games-showcase__frame {
    min-height: 16.5rem;
  }

  .ps-games-showcase__center {
    padding: 2.75rem 2rem 2.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ps-games-showcase__track {
    animation: none !important;
    transform: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0 1rem;
  }

  .ps-games-showcase__cover--clone {
    display: none;
  }

  .ps-games-showcase__marquees {
    position: relative;
    opacity: 0.4;
    padding: 0.75rem 0;
  }

  .ps-games-showcase__center,
  .ps-games-showcase__badge-dot,
  .ps-games-showcase__title-accent,
  .ps-games-showcase__icon {
    animation: none !important;
  }
}

.navbar-catalog-btn {
  display: none !important;
}

/* Cart drawer — tema PlayStation */
.ps-cart-drawer__panel {
  background: var(--ps-black-elevated);
  border-left: var(--ps-border-width) solid rgba(255, 200, 0, 0.22);
  color: #fff;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.45), -4px 0 24px rgba(255, 200, 0, 0.06);
}

.ps-cart-drawer__title {
  color: #fff;
}

.ps-cart-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.15s ease;
}

.ps-cart-drawer__close:hover {
  color: var(--ps-gold);
}

.ps-cart-drawer__empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 200, 0, 0.1);
  border: 1px solid rgba(255, 200, 0, 0.28);
  color: var(--ps-gold);
  box-shadow: 0 0 24px rgba(255, 200, 0, 0.12);
}

.ps-cart-drawer__total {
  background: var(--ps-black-surface);
  border: var(--ps-border-width) solid rgba(255, 200, 0, 0.18);
  color: rgba(255, 255, 255, 0.72);
}

.ps-cart-drawer__total-value {
  color: var(--ps-gold);
  text-shadow: 0 0 16px rgba(255, 200, 0, 0.25);
}

#cart-drawer .btn-primary {
  width: 100%;
  box-shadow: 0 0 20px rgba(255, 200, 0, 0.3);
}

#cart-drawer-wrapper [data-package-id] {
  padding: 0.65rem;
  border-radius: var(--ps-radius-sm);
  border: var(--ps-border-width) solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

#cart-drawer-wrapper [data-package-id] h5 {
  color: #fff;
}

#cart-drawer-wrapper [data-package-id] .text-muted-foreground {
  color: var(--ps-gold) !important;
  font-weight: 700;
}

#cart-drawer-wrapper [data-package-id] button.border {
  border-color: rgba(255, 255, 255, 0.14) !important;
  border-radius: var(--ps-radius-xs);
  background: var(--ps-black-surface);
  color: rgba(255, 255, 255, 0.9);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

#cart-drawer-wrapper [data-package-id] button.border:hover:not(:disabled) {
  border-color: rgba(255, 200, 0, 0.4) !important;
  color: var(--ps-gold);
}

#cart-drawer-wrapper [data-package-id] button[data-cart-action="remove"] {
  background: rgba(239, 68, 68, 0.85) !important;
  border-color: rgba(239, 68, 68, 0.5) !important;
  color: #fff;
}

#cart-drawer-wrapper [data-package-id] input[data-cart-action="input"] {
  background: var(--ps-black);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Top announce — estilo Phaze (dourado) */
.ps-top-announce {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.6rem 1rem;
  background: var(--ps-gold);
  color: #000;
  text-decoration: none;
  position: relative;
  z-index: 21;
}

.ps-top-announce__text {
  margin: 0;
  font-size: clamp(0.6875rem, 2vw, 0.8125rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.35;
  text-align: center;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.ps-top-announce__code {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  margin: 0 0.2rem;
  border-radius: 999px;
  background: var(--ps-black);
  color: var(--ps-gold);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.ps-header {
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255, 200, 0, 0.08), 0 4px 24px rgba(0, 0, 0, 0.2);
}

/* Navbar — estilo Phaze */
.ps-navbar {
  background: transparent;
  border-bottom: none;
}

.ps-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
  padding: 0.75rem 0;
}

.ps-navbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  text-decoration: none;
  color: #fff;
}

.ps-navbar__logo {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  flex-shrink: 0;
}

.ps-navbar__name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 5.5rem;
}

@media (min-width: 640px) {
  .ps-navbar__name {
    max-width: 14rem;
    font-size: 1.125rem;
  }
}

@media (max-width: 639px) {
  .ps-navbar__inner {
    gap: 0.5rem;
  }

  .ps-navbar__actions {
    gap: 0.35rem;
  }

  .ps-navbar__search-wrap {
    margin: 0 0.5rem;
  }
}

.ps-navbar__verified {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}

.ps-navbar__verified-check {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ps-navbar__search-wrap {
  position: relative;
  flex: 1;
  max-width: 36rem;
  margin: 0 1.25rem;
}

.ps-navbar__search {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.28rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--ps-radius);
  overflow: hidden;
  gap: 0.35rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ps-navbar__search:focus-within {
  border-color: var(--ps-gold);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px var(--ps-gold);
}

.ps-navbar__search-icon {
  display: none;
}

.ps-navbar__search-wrap .ps-navbar__search,
.ps-navbar__mobile-search .ps-navbar__search {
  position: relative;
}

.ps-navbar__search-input {
  flex: 1;
  min-width: 0;
  height: 2.2rem;
  padding: 0 0.85rem;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #fff;
  font-size: 0.875rem;
  outline: none !important;
  box-shadow: none !important;
  --tw-ring-shadow: 0 0 #0000 !important;
  --tw-ring-offset-shadow: 0 0 #0000 !important;
}

.ps-navbar__search-input:focus,
.ps-navbar__search-input:focus-visible {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  --tw-ring-shadow: 0 0 #0000 !important;
  --tw-ring-offset-shadow: 0 0 #0000 !important;
}

.ps-navbar__search-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.ps-navbar__search-btn {
  flex-shrink: 0;
  height: 2.2rem;
  padding: 0 1.35rem;
  border: none;
  border-radius: calc(var(--ps-radius) - 0.28rem);
  background: var(--ps-gold);
  color: #000;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 0 16px rgba(255, 200, 0, 0.35);
}

.ps-navbar__search-btn:hover {
  background: var(--ps-gold-bright);
  box-shadow: 0 0 22px rgba(255, 200, 0, 0.5);
}

.ps-navbar__search-results {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  z-index: 60;
  max-height: 24rem;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--ps-radius-sm);
  background: var(--ps-black-elevated);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

.ps-navbar__search-results--mobile {
  position: relative;
  top: auto;
  margin-top: 0.45rem;
}

.ps-navbar__mobile-search {
  padding-bottom: 0.75rem;
}

.ps-navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  --ps-nav-btn-h: 2.65rem;
  --ps-nav-btn-radius: var(--ps-radius-sm);
  --ps-nav-btn-border: rgba(255, 255, 255, 0.35);
}

/* Botões da navbar — mesma borda fina, espessura e raio */
.ps-navbar__cart,
.ps-navbar__profile,
.ps-navbar__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: var(--ps-nav-btn-h);
  min-height: var(--ps-nav-btn-h);
  border: var(--ps-border-width) solid var(--ps-nav-btn-border);
  border-radius: var(--ps-nav-btn-radius);
  background: transparent;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
  box-sizing: border-box;
}

.ps-navbar__cart:hover,
.ps-navbar__profile:hover,
.ps-navbar__icon-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #fff;
}

.ps-navbar__cart {
  padding: 0 0.85rem;
}

.ps-navbar__profile-wrap,
.ps-navbar__support-wrap {
  position: relative;
}

.ps-navbar__profile {
  padding: 0 0.7rem;
  text-decoration: none;
  max-width: 11rem;
}

.ps-navbar__profile--guest {
  padding: 0 0.85rem;
  gap: 0.5rem;
}

@media (max-width: 639px) {
  .ps-navbar__profile--guest,
  .ps-navbar__profile-wrap > .ps-navbar__profile {
    width: auto;
    min-width: var(--ps-nav-btn-h);
    padding: 0 0.65rem;
  }

  .ps-navbar__profile--guest .ps-navbar__avatar--guest,
  .ps-navbar__profile-wrap .ps-navbar__avatar {
    width: 1.65rem;
    height: 1.65rem;
  }
}

.ps-navbar__icon-btn {
  width: var(--ps-nav-btn-h);
  padding: 0;
  flex-shrink: 0;
}

.ps-navbar__avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.ps-navbar__avatar {
  display: block;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  object-fit: cover;
}

.ps-navbar__avatar--initials,
.ps-navbar__avatar--guest {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ps-navbar__online-dot {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #ffc800;
  border: 2px solid var(--ps-black);
}

.ps-navbar__profile-text {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  max-width: 7.5rem;
  line-height: 1.25;
  flex-shrink: 0;
}

.ps-navbar__profile-name {
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.ps-navbar__profile-sub {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  line-height: 1.2;
}

.ps-navbar__profile-label {
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Category bar — estilo Phaze */
.ps-navbar-cats {
  background: rgba(36, 36, 36, 0.85);
  border-top: 1px solid rgba(255, 200, 0, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ps-navbar-cats__inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 2.85rem;
}

.ps-navbar-cats__menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--ps-gold);
  cursor: pointer;
  border-radius: var(--ps-radius-xs);
  transition: background 0.15s ease, color 0.15s ease;
}

.ps-navbar-cats__menu:hover {
  background: rgba(255, 200, 0, 0.1);
  color: var(--ps-gold-bright);
}

.ps-navbar-cats__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.75rem);
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.35rem 0;
}

.ps-navbar-cats__links::-webkit-scrollbar {
  display: none;
}

.ps-navbar-cats__link {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.ps-navbar-cats__link:hover {
  color: #fff;
}

/* Store hero (headline area) */
.ps-store-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 200, 0, 0.15);
  border: 1px solid rgba(255, 200, 0, 0.35);
  margin-bottom: 1rem;
}

.ps-store-hero__badge-dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 9999px;
  background: #ffc800;
}

.ps-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}

@media (min-width: 640px) {
  .ps-trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.ps-trust-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 0.5rem;
  border-radius: var(--ps-radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.ps-trust-grid__item i {
  color: #ffc800;
}

.ps-trust-grid__item span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.2;
}

.ps-store-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.ps-store-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 200, 0, 0.25);
  border: 1px solid rgba(255, 200, 0, 0.25);
}

/* Product cards — portrait cover + compact footer */
.ps-package-card {
  background: var(--ps-black-elevated);
  border-radius: var(--ps-radius);
  border: var(--ps-border-width) solid var(--ps-border-color) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--ps-shadow-card);
}

.ps-package-card:hover {
  border-color: var(--ps-border-color-hover) !important;
  box-shadow: var(--ps-shadow-card-hover);
}

.ps-package-card__img-wrap {
  aspect-ratio: 187 / 250;
  width: 100%;
}

.ps-package-card__body {
  background: var(--ps-black-elevated);
}

.ps-package-card__title {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.ps-package-card:hover .ps-package-card__title {
  color: #ffc800;
}

.ps-package-card__divider {
  border: none;
  height: var(--ps-border-width);
  margin: 0.45rem 0 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease;
}

.ps-package-card:hover .ps-package-card__divider {
  background: rgba(255, 255, 255, 0.14);
}

.ps-package-card__prices {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

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

@media (min-width: 640px) {
  .ps-package-card__compare {
    font-size: 0.6875rem;
  }
}

.ps-package-card__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
}

.ps-package-card__price {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffc800;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  transition: color 0.2s ease;
  text-shadow: 0 0 18px rgba(255, 200, 0, 0.35);
}

@media (min-width: 640px) {
  .ps-package-card__price {
    font-size: 1rem;
  }
}

.ps-package-card:hover .ps-package-card__price {
  color: #ffd633;
}

.ps-package-card__discount {
  font-size: 0.5625rem;
  font-weight: 700;
  padding: 0.1rem 0.35rem;
  border-radius: var(--ps-radius-xs);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
}

.ps-package-card:hover .ps-package-card__discount {
  background: rgba(255, 200, 0, 0.15);
  color: #ffc800;
}

.ps-package-card__cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--ps-radius-sm);
  background: transparent;
  border: var(--ps-border-width) solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.ps-package-card__cart:hover {
  background: rgba(255, 200, 0, 0.18);
  border-color: rgba(255, 200, 0, 0.4);
  color: #ffc800;
}

/* Digital tag on cards */
.ps-digital-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.45rem;
  border-radius: var(--ps-radius-xs);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffe566;
  background: rgba(255, 200, 0, 0.15);
  border: 1px solid rgba(255, 200, 0, 0.35);
}

.ps-platform-badge {
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.55rem;
  border-radius: var(--ps-radius-xs);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #000;
  background: rgba(255, 200, 0, 0.92);
  border: 1px solid rgba(255, 200, 0, 0.6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.ps-platform-badge--ps5 {
  background: rgba(255, 200, 0, 1);
  color: #000;
}

.ps-platform-badge--inline {
  position: static;
  display: inline-flex;
  box-shadow: none;
}

.ps-package-card__inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.ps-package-card__inner--row {
  flex-direction: row;
}

/* Platform bar — estilo oficial PS5 (branco) / PS4 (azul) */
.ps-card-platform-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  height: 1.85rem;
  flex-shrink: 0;
}

.ps-card-platform-bar__logo {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
}

.ps-card-platform-bar__label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  font-style: italic;
}

.ps-card-platform-bar--ps5,
.ps-card-platform-bar--ps4 {
  height: 2.35rem;
  min-height: 2.35rem;
  max-height: 2.35rem;
  padding: 0;
  overflow: hidden;
  border-bottom: var(--ps-border-width) solid rgba(0, 0, 0, 0.08);
}

.ps-card-platform-bar--ps5 {
  background: #fff;
  color: #000;
}

.ps-card-platform-bar--page {
  border-radius: var(--ps-radius);
  border: var(--ps-border-width) solid rgba(255, 255, 255, 0.1);
  border-bottom: var(--ps-border-width) solid rgba(0, 0, 0, 0.08);
}

.ps-card-platform-bar--page.ps-card-platform-bar--ps5,
.ps-card-platform-bar--page.ps-card-platform-bar--ps4 {
  height: 3rem;
  min-height: 3rem;
  max-height: 3rem;
}

.ps5-platform-badge {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.ps4-platform-badge {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 640px) {
  .ps-card-platform-bar--ps5,
  .ps-card-platform-bar--ps4 {
    height: 2.65rem;
    min-height: 2.65rem;
    max-height: 2.65rem;
  }

  .ps-card-platform-bar--page.ps-card-platform-bar--ps5,
  .ps-card-platform-bar--page.ps-card-platform-bar--ps4 {
    height: 3.35rem;
    min-height: 3.35rem;
    max-height: 3.35rem;
  }
}

.ps-package-card--ps5:hover .ps-card-platform-bar--ps5 {
  background: #fff;
}

.ps-card-platform-bar--ps4 {
  background: transparent;
  color: #fff;
}

.ps-card-platform-bar--page.ps-card-platform-bar--ps4 {
  border: none;
  border-radius: var(--ps-radius);
  border-bottom: none;
}

.ps-package-card--ps4:hover .ps-card-platform-bar--ps4 {
  background: transparent;
}

/* Marca PS5 — logo PlayStation + texto */
.ps-ps5-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1;
}

.ps-ps5-mark__logo {
  display: block;
  flex-shrink: 0;
}

.ps-ps5-mark__label {
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1;
}

.ps-ps5-mark--bar .ps-ps5-mark__label {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.ps-ps5-mark--badge .ps-ps5-mark__logo {
  width: 0.9rem;
  height: 0.9rem;
}

.ps-ps5-mark--badge .ps-ps5-mark__label {
  font-size: 0.625rem;
  letter-spacing: 0.04em;
}

/* Category page hero */
.category-page-hero {
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--ps-radius);
  border: 1px solid rgba(255, 200, 0, 0.18);
  background: rgba(255, 200, 0, 0.06);
}

.category-page-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.category-page-hero__crumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.category-page-hero__crumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.category-page-hero__row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.category-page-hero__back {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--ps-radius-sm);
  border: 1px solid rgba(255, 200, 0, 0.25);
  background: rgba(255, 200, 0, 0.1);
  color: #fff;
  text-decoration: none;
  transition: background 0.15s;
}

.category-page-hero__back:hover {
  background: rgba(255, 200, 0, 0.25);
}

.category-page-hero__main {
  flex: 1;
  min-width: 0;
}

.category-page-hero__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

@media (min-width: 640px) {
  .category-page-hero__title {
    font-size: 1.65rem;
  }
}

.category-page-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.55rem;
}

.category-page-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.category-page-hero__chip--accent {
  color: #ffe566;
  border-color: rgba(255, 200, 0, 0.35);
  background: rgba(255, 200, 0, 0.12);
}

.category-page-hero__chip--ps {
  color: #000;
  border-color: rgba(255, 200, 0, 0.5);
  background: rgba(255, 200, 0, 0.85);
}

/* Checkout notice */
.checkout-ps-notice {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
  border-radius: var(--ps-radius);
  border: 1px solid rgba(255, 200, 0, 0.3);
  background: rgba(255, 200, 0, 0.08);
}

.checkout-ps-notice__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--ps-radius-sm);
  display: grid;
  place-items: center;
  background: rgba(255, 200, 0, 0.2);
  color: #ffc800;
}

.checkout-ps-notice__title {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
}

.checkout-ps-notice__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

/* Order info box */
.ps-info-box {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: var(--ps-radius);
  border: 1px solid rgba(255, 200, 0, 0.25);
  background: rgba(255, 200, 0, 0.06);
}

.ps-info-box__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.ps-info-box__title i {
  color: #ffc800;
}

.ps-info-box__grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .ps-info-box__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.ps-info-box__platform {
  padding: 0.75rem;
  border-radius: calc(var(--ps-radius-sm) - 0.1rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.ps-info-box__platform h4 {
  margin: 0 0 0.4rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #ffe566;
}

.ps-info-box__platform ol {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

.ps-info-box__platform li + li {
  margin-top: 0.25rem;
}

/* Package page — removed duplicate .ps-delivery-badge (see .ps-meta-platform block) */

.ps-sidebar-trust i {
  color: #ffc800 !important;
}

/* Footer disclaimer */
.ps-footer-disclaimer {
  margin-top: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--ps-radius);
  border: 1px solid rgba(255, 200, 0, 0.2);
  background: rgba(255, 200, 0, 0.05);
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  max-width: 36rem;
}

/* Login page — split layout */
.ps-login-body {
  background: var(--ps-black);
  overflow-x: hidden;
}

.ps-login-page {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
}

@media (min-width: 1024px) {
  .ps-login-page {
    grid-template-columns: 1fr 1fr;
  }
}

/* Hero panel (left) */
.ps-login-page__hero {
  position: relative;
  display: none;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--ps-black-elevated);
}

@media (min-width: 1024px) {
  .ps-login-page__hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.ps-login-page__slides {
  position: absolute;
  inset: 0;
}

.ps-login-page__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.ps-login-page__slide.is-active {
  opacity: 1;
}

.ps-login-page__slide--fallback {
  background: linear-gradient(135deg, var(--ps-black-surface) 0%, var(--ps-black-elevated) 50%, #1a1500 100%);
}

.ps-login-page__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.75) 100%
  );
  pointer-events: none;
}

.ps-login-page__back {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.15s ease;
}

.ps-login-page__back:hover {
  color: #fff;
}

.ps-login-page__back--mobile {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 5;
}

@media (min-width: 1024px) {
  .ps-login-page__back--mobile {
    display: none;
  }
}

.ps-login-page__hero-content {
  position: relative;
  z-index: 3;
  padding: 5rem 2.5rem 2rem;
  max-width: 32rem;
}

.ps-login-page__brand {
  margin-bottom: 1.75rem;
}

.ps-login-page__logo {
  height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.ps-login-page__logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--ps-radius);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.ps-login-page__headline {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.02em;
}

.ps-login-page__highlight {
  color: #ffc800;
}

.ps-login-page__subheadline {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  max-width: 26rem;
}

.ps-login-page__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.ps-login-page__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.ps-login-page__hero-footer {
  position: absolute;
  bottom: 3.25rem;
  left: 2.5rem;
  z-index: 3;
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.ps-login-page__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.45rem;
}

.ps-login-page__dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ps-login-page__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

/* Form panel (right) */
.ps-login-page__form-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 2rem 1.25rem;
  background: var(--ps-black);
}

.ps-login-page__form-inner {
  width: 100%;
  max-width: 22rem;
}

.ps-login-page__form-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.25rem;
  border-radius: var(--ps-radius);
  background: rgba(255, 200, 0, 0.15);
  color: #ffc800;
}

.ps-login-page__form-header {
  margin-bottom: 1.75rem;
}

.ps-login-page__form-title {
  margin: 0 0 0.35rem;
  font-size: 1.625rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.ps-login-page__form-subtitle {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.ps-login-page__social {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.ps-login-page__btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  height: 2.75rem;
  border-radius: var(--ps-radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.1s ease;
  background: #fff;
  color: var(--ps-black);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ps-login-page__btn-google:hover {
  opacity: 0.92;
}

.ps-login-page__btn-google:active {
  transform: scale(0.98);
}

.ps-login-page__divider {
  position: relative;
  margin-bottom: 1.5rem;
  text-align: center;
}

.ps-login-page__divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.ps-login-page__divider span {
  position: relative;
  display: inline-block;
  padding: 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  background: var(--ps-black);
}

.ps-login-page__label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.ps-login-page__input-wrap {
  position: relative;
  margin-bottom: 1.25rem;
}

.ps-login-page__input-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.ps-login-page__input {
  width: 100%;
  height: 2.75rem;
  padding: 0 0.85rem 0 2.5rem;
  border-radius: var(--ps-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.875rem;
}

.ps-login-page__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.ps-login-page__input:focus-visible {
  outline: none;
  border-color: rgba(255, 200, 0, 0.45);
  box-shadow: 0 0 0 2px rgba(255, 200, 0, 0.15);
}

.ps-login-page__otp {
  width: 2.5rem;
  height: 2.75rem;
  text-align: center;
  border-radius: var(--ps-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.ps-login-page__submit {
  width: 100%;
  height: 2.85rem;
  border: none;
  border-radius: var(--ps-radius-sm);
  background: #ffc800;
  color: var(--ps-black);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}

.ps-login-page__submit:hover:not(:disabled) {
  background: #ffd633;
}

.ps-login-page__submit:active:not(:disabled) {
  transform: scale(0.98);
}

.ps-login-page__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ps-login-page__back-link {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ps-login-page__back-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* Trust / benefits banner — flutuante, sem caixa */
.ps-trust-banner {
  background: transparent;
  border: none;
  padding: 1.25rem 0 1.75rem;
}

.ps-trust-banner__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ps-trust-banner__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.ps-trust-banner__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: none;
  padding: 0;
}

.ps-trust-banner__icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(255, 200, 0, 0.1);
  border: 1px solid rgba(255, 200, 0, 0.22);
  box-shadow: 0 0 20px rgba(255, 200, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ps-trust-banner__icon {
  width: 1.2rem;
  height: 1.2rem;
  color: #ffc800;
  filter: drop-shadow(0 0 8px rgba(255, 200, 0, 0.9));
}

.ps-trust-banner__text {
  min-width: 0;
}

.ps-trust-banner__title {
  margin: 0 0 0.15rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.25;
}

.ps-trust-banner__desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
}

/* Category banner — dourado #FFC800 */
.ps-cat-banner {
  --cat-accent: var(--ps-gold);
  --cat-accent-glow: var(--ps-gold-glow);
  position: relative;
  overflow: hidden;
  border-radius: var(--ps-radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .ps-cat-banner {
    min-height: 7.5rem;
  }
}

.ps-cat-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(14px) brightness(0.4) saturate(1.15);
  transform: scale(1.12);
  pointer-events: none;
}

.ps-cat-banner__bg--fallback {
  background: linear-gradient(135deg, var(--ps-black-surface) 0%, var(--ps-black-elevated) 45%, #1a1500 100%);
}

.ps-cat-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.42);
  pointer-events: none;
}

.ps-cat-banner__glow {
  position: absolute;
  width: 55%;
  height: 160%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-28deg);
  background: linear-gradient(
    115deg,
    transparent 15%,
    var(--cat-accent-glow) 45%,
    var(--cat-accent-glow) 55%,
    transparent 85%
  );
  opacity: 0.62;
  pointer-events: none;
}

.ps-cat-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.65rem 1.25rem;
}

.ps-cat-banner__title {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
}

.ps-cat-banner__line {
  display: block;
  width: 2.75rem;
  height: 0.28rem;
  margin: 0.55rem auto 0;
  border-radius: 999px;
  background: var(--cat-accent);
  box-shadow: 0 0 22px var(--cat-accent-glow), 0 0 40px rgba(255, 200, 0, 0.35);
}

.ps-cat-page__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.ps-cat-page__crumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.ps-cat-page__crumb a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Product page */
.ps-package-page__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.ps-package-page__media-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 20rem;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 900px) {
  .ps-package-page__media-col {
    max-width: none;
    margin: 0;
  }
}

.ps-package-page__media {
  position: relative;
  border-radius: var(--ps-radius);
  overflow: hidden;
  border: var(--ps-border-width) solid rgba(255, 255, 255, 0.1);
  background: var(--ps-black-elevated);
  transform: none;
  perspective: none;
  aspect-ratio: 187 / 250;
}

@media (min-width: 900px) {
  .ps-package-page__layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 2rem;
  }
}

.ps-package-page__discount-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  padding: 0.3rem 0.55rem;
  border-radius: var(--ps-radius-sm);
  font-size: 0.75rem;
  font-weight: 800;
  color: #000;
  background: var(--ps-gold);
}

.ps-package-page__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: none !important;
  background: var(--ps-black-elevated);
}

.ps-package-page__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.ps-meta-platform {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: var(--ps-radius-xs);
  line-height: 1;
}

.ps-meta-platform__ps5-img {
  display: block;
  width: auto;
  height: 0.95rem;
  max-width: 3.4rem;
  object-fit: contain;
  object-position: center;
}

.ps-meta-platform__ps4-img {
  display: block;
  width: auto;
  height: 0.95rem;
  max-width: 3.4rem;
  object-fit: contain;
  object-position: center;
  border-radius: var(--ps-radius-xs);
}

@media (min-width: 640px) {
  .ps-meta-platform__ps5-img,
  .ps-meta-platform__ps4-img {
    height: 1.05rem;
    max-width: 3.75rem;
  }
}

.ps-meta-platform--ps5 {
  padding: 0.2rem 0.55rem;
  background: #fff;
  border: none;
}

.ps-meta-platform--ps4 {
  padding: 0;
  background: transparent;
  border: none;
  overflow: hidden;
}

.ps-delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.22rem 0.6rem;
  border-radius: var(--ps-radius-xs);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  background: linear-gradient(135deg, #ffc800 0%, #e6b400 100%);
  border: 1px solid rgba(255, 200, 0, 0.45);
}

.ps-package-page__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-break: break-word;
}

.ps-package-page__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-bottom: 1.15rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.ps-package-page__stat {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.ps-package-page__pricing {
  margin-bottom: 1.15rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ps-package-page__compare-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
}

.ps-package-page__compare {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 120, 120, 0.85);
  text-decoration: line-through;
}

.ps-package-page__off-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.15rem 0.45rem;
  border-radius: var(--ps-radius-xs);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--ps-gold);
  background: var(--ps-gold-soft);
  border: 1px solid var(--ps-gold-border);
}

.ps-package-page__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.65rem;
}

.ps-package-page__price {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
  color: var(--ps-gold);
}

.ps-package-page__pix {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.ps-package-page__savings {
  margin: 0.55rem 0 0;
  display: inline-flex;
  padding: 0.35rem 0.65rem;
  border-radius: var(--ps-radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ps-gold-light);
  border: 1px solid var(--ps-gold-border);
  background: var(--ps-gold-soft);
}

.ps-package-benefits {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.85rem;
}

@media (max-width: 520px) {
  .ps-package-benefits {
    grid-template-columns: 1fr;
  }
}

.ps-package-benefits__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}

.ps-package-benefits__check {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.3rem;
  color: #000;
  background: linear-gradient(135deg, var(--ps-gold) 0%, var(--ps-gold-hover) 100%);
  box-shadow: 0 1px 4px rgba(255, 200, 0, 0.25);
}

.ps-package-benefits__check i {
  stroke-width: 3;
}

/* legacy store box — mantido caso algum template ainda referencie */
.ps-package-store-box {
  margin-bottom: 1.15rem;
  padding: 1rem 1.1rem;
  border-radius: var(--ps-radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.ps-package-store-box__title {
  margin: 0 0 0.45rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
}

.ps-package-store-box__text {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
}

.ps-package-store-box__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.ps-package-store-box__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.72);
}

.ps-package-store-box__list i {
  color: var(--ps-gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.ps-package-page #variation-list button {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.ps-package-page #variation-list button[data-selected="true"] {
  border-color: rgba(255, 200, 0, 0.45);
  background: rgba(255, 200, 0, 0.1);
}

.ps-package-page #variation-list .text-green-500 {
  color: var(--ps-gold) !important;
}

.ps-package-page__actions {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}

.ps-package-page__btn-buy,
.ps-package-page__btn-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 2.85rem;
  border-radius: var(--ps-radius-sm);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.ps-package-page__btn-buy {
  border: none;
  background: var(--ps-gold);
  color: #000;
}

.ps-package-page__btn-buy:hover:not(:disabled) {
  background: var(--ps-gold-bright);
}

.ps-package-page__btn-cart {
  border: 1px solid rgba(255, 200, 0, 0.45);
  background: transparent;
  color: var(--ps-gold);
}

.ps-package-page__btn-cart:hover:not(:disabled) {
  background: var(--ps-gold-soft);
}

.ps-package-page__btn-buy:disabled,
.ps-package-page__btn-cart:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Store intro — acima dos cards PS4/PS5 */
.ps-store-intro {
  margin: 1.15rem 0 1rem;
  padding: 1rem 1.05rem 1.05rem;
  border-radius: var(--ps-radius-sm);
  border: 1px solid rgba(255, 200, 0, 0.32);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 200, 0, 0.08);
}

.ps-store-intro__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.ps-store-intro__icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  color: var(--ps-gold);
}

.ps-store-intro__title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
  overflow-wrap: break-word;
}

.ps-store-intro__body {
  display: grid;
  gap: 0.65rem;
}

.ps-store-intro__body p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
}

/* Platform info cards (PS4 / PS5) */
.ps-platform-info {
  margin-top: 0.25rem;
}

.ps-platform-info__title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
}

.ps-platform-info__title i {
  color: var(--ps-gold);
}

.ps-platform-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

@media (max-width: 520px) {
  .ps-platform-info__grid {
    grid-template-columns: 1fr;
  }
}

.ps-platform-info__card {
  padding: 0.75rem 0.8rem;
  border-radius: var(--ps-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.ps-platform-info__icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--ps-gold);
  margin-bottom: 0.35rem;
}

.ps-platform-info__label {
  margin: 0 0 0.2rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
}

.ps-platform-info__text {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.52);
}

.ps-package-page__description {
  margin-top: 2rem;
}

.ps-package-page__section-title {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.ps-package-page__description-body {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.ps-package-page__feedbacks {
  margin-top: 1.25rem;
}

/* Support block */
.ps-package-support {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #121212;
}

.ps-package-support__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.ps-package-support__head-icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgba(255, 200, 0, 0.12);
  color: var(--ps-gold);
  flex-shrink: 0;
}

.ps-package-support__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.ps-package-support__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .ps-package-support__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

.ps-package-support__item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.ps-package-support__item--full {
  grid-column: 1 / -1;
}

.ps-package-support__item-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
}

.ps-package-support__brand {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.ps-package-support__brand--whatsapp {
  background: rgba(37, 211, 102, 0.18);
}

.ps-package-support__brand--email {
  background: rgba(255, 200, 0, 0.15);
  color: var(--ps-gold);
}

.ps-package-support__brand-svg {
  width: 1.1rem;
  height: 1.1rem;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.ps-package-support__brand--whatsapp .ps-package-support__brand-svg {
  color: #25d366;
}

.ps-package-support__item h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.ps-package-support__item p {
  margin: 0 0 1rem;
  flex: 1;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.ps-package-support__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 2.65rem;
  padding: 0.65rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
  color: #000;
  background: linear-gradient(135deg, var(--ps-gold) 0%, var(--ps-gold-hover) 100%);
  border: 1px solid rgba(255, 200, 0, 0.45);
  transition: background 0.15s ease, transform 0.15s ease;
}

.ps-package-support__btn:hover {
  background: linear-gradient(135deg, var(--ps-gold-bright) 0%, var(--ps-gold) 100%);
  transform: translateY(-1px);
}

/* Loja — iluminação ambiente nas seções */
#store {
  position: relative;
}

#store::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 72rem);
  height: 100%;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(255, 200, 0, 0.1) 0%, transparent 65%);
  z-index: 0;
}

#store > * {
  position: relative;
  z-index: 1;
}

footer.bg-background {
  border-top: 1px solid rgba(255, 200, 0, 0.1) !important;
  box-shadow: 0 -12px 48px rgba(255, 200, 0, 0.06);
}

footer .border-t {
  border-color: rgba(255, 200, 0, 0.08) !important;
}

/* Categorias populares — sem azul do tema antigo */
.ps-category-pop-card {
  background: var(--ps-black-elevated);
  border: var(--ps-border-width) solid rgba(255, 255, 255, 0.1);
}

.ps-category-pop-card:hover {
  background: rgba(255, 200, 0, 0.08);
  border-color: rgba(255, 200, 0, 0.35);
  box-shadow: 0 0 24px rgba(255, 200, 0, 0.1);
}

/* Footer — ícones sociais dourados */
.ps-footer-social {
  background: rgba(255, 200, 0, 0.1);
  border: 1px solid rgba(255, 200, 0, 0.28);
  color: var(--ps-gold);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.ps-footer-social:hover {
  background: rgba(255, 200, 0, 0.18);
  border-color: rgba(255, 200, 0, 0.45);
  color: var(--ps-gold-bright);
}

@media (max-width: 480px) {
  .ps-games-showcase__title {
    max-width: none;
  }

  .ps-package-page__media-col {
    max-width: 100%;
  }
}