:root {
  color-scheme: light;
  --page-max: 1600px;
  --page-gutter: clamp(18px, 3.4vw, 64px);
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f5f7fb;
  --surface-3: #eef2f7;
  --line: rgba(17, 24, 39, 0.12);
  --text: #111827;
  --muted: #5f6b7a;
  --blue: #0070d0;
  --blue-dark: #0070d0;
  --cyan: #0070d0;
  --red: #ff4a4f;
  --gold: #f7bf49;
  --green: #5dd878;
  --shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding-inline: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 34px rgba(16, 24, 40, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 246px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
}

.brand-mark svg {
  width: 42px;
  height: 42px;
}

.ps-store-wordmark {
  display: block;
  width: 202px;
  max-width: 22vw;
  height: auto;
  color: #111827;
  margin-top: 8px;
  fill: currentColor;
}

.ps-store-wordmark path {
  fill: currentColor;
}

.mark-main {
  fill: var(--blue);
}

.mark-key {
  fill: var(--blue-dark);
}

.brand-name {
  font-size: 18px;
  font-weight: 850;
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.top-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
}

.top-nav a:hover {
  background: rgba(0, 112, 208, 0.1);
  color: var(--blue);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.header-cart {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease;
}

.header-cart:hover {
  background: rgba(0, 112, 208, 0.1);
  color: var(--blue);
}

.header-cart svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.header-cart-count {
  position: absolute;
  top: 3px;
  right: 2px;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.header-cart-count[hidden] {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 4px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.ps-mobile-menu {
  position: fixed;
  top: 72px;
  right: 12px;
  z-index: 55;
  display: grid;
  grid-template-columns: 70px minmax(0, 280px);
  width: min(360px, calc(100vw - 24px));
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(16, 24, 40, 0.22);
}

.ps-mobile-menu[hidden] {
  display: none;
}

.mobile-menu-rail {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 10px;
  border-right: 1px solid var(--line);
  background: #f2f5f9;
}

.mobile-menu-icon {
  display: grid;
  place-items: center;
  gap: 4px;
  width: 50px;
  min-height: 58px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.mobile-menu-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.mobile-menu-icon.active {
  background: var(--blue);
  color: #fff;
}

.mobile-menu-content {
  min-width: 0;
  padding: 18px;
}

.mobile-menu-panel {
  display: none;
}

.mobile-menu-panel.active {
  display: grid;
  gap: 14px;
}

.mobile-menu-panel h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1;
}

.mobile-action-grid,
.mobile-chip-grid {
  display: grid;
  gap: 8px;
}

.mobile-action-grid {
  grid-template-columns: 1fr 1fr;
}

.mobile-chip-grid {
  max-height: 230px;
  overflow: auto;
}

.mobile-action-grid button,
.mobile-chip-grid button {
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.cart-trigger {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(74, 167, 255, 0.3);
  border-radius: 8px;
  background: rgba(0, 112, 208, 0.14);
  color: var(--blue);
}

.cart-icon {
  position: relative;
  width: 17px;
  height: 14px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 2px 2px 5px 5px;
}

.cart-icon::before {
  position: absolute;
  top: -7px;
  left: 3px;
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  content: "";
}

.cart-count {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 72px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 15, 32, 0.95) 0%, rgba(4, 15, 32, 0.72) 42%, rgba(4, 15, 32, 0.14) 100%),
    linear-gradient(0deg, rgba(4, 15, 32, 0.72) 0%, rgba(4, 15, 32, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(680px, calc(100% - 48px));
  margin-left: clamp(24px, 7vw, 96px);
  padding: 82px 0 110px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 600px;
  margin: 24px 0 0;
  color: #d7deea;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--text);
  font-weight: 800;
}

.button.primary {
  background: var(--blue);
  background-image: none;
  color: #fff;
}

.button.danger {
  background: #dc2626;
  color: #fff;
}

.button.ghost {
  border-color: rgba(16, 24, 40, 0.14);
  background: #fff;
  color: var(--text);
}

.hero .button.ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button.full {
  width: 100%;
}

.text-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.text-link-button:hover {
  color: var(--blue);
}

.legal-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.legal-check input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.legal-check a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.legal-page {
  width: min(1040px, calc(100% - (var(--page-gutter) * 2)));
  margin: clamp(22px, 3vw, 40px) auto 32px;
}

.legal-page > .breadcrumb {
  margin: 0 0 clamp(18px, 2.4vw, 28px);
}

.legal-hero {
  display: grid;
  gap: 14px;
  padding: 0 0 clamp(20px, 3vw, 32px);
}

.legal-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.legal-index,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.legal-index {
  position: sticky;
  top: calc(var(--site-header-height, 72px) + 18px);
  display: grid;
  gap: 8px;
  padding: 16px;
}

.legal-index a {
  color: var(--muted);
  font-size: 14px;
}

.legal-index a:hover {
  color: var(--blue);
}

.legal-card {
  display: grid;
  gap: 34px;
  padding: clamp(22px, 3vw, 38px);
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.08);
}

.legal-section {
  display: grid;
  gap: 14px;
}

.legal-section h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.legal-section h3 {
  margin: 8px 0 0;
  font-size: 18px;
}

.legal-section p,
.legal-section li {
  color: #344256;
  font-size: 16px;
}

.legal-section p,
.legal-section ul,
.legal-section ol {
  margin: 0;
}

.legal-section ul,
.legal-section ol {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-note {
  padding: 14px 16px;
  border: 1px solid rgba(0, 112, 208, 0.24);
  border-radius: 8px;
  background: rgba(0, 112, 208, 0.08);
  color: #173d73;
}

.legal-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-table div {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 18px;
  padding: 13px 16px;
}

.legal-table div + div {
  border-top: 1px solid var(--line);
}

.legal-table strong {
  color: var(--text);
}

.cookie-consent {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  left: max(18px, env(safe-area-inset-left));
  z-index: 220;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: min(480px, calc(100vw - 36px));
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 112, 208, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.96)),
    #fff;
  box-shadow: 0 18px 46px rgba(16, 24, 40, 0.22);
  pointer-events: auto;
  backdrop-filter: blur(18px);
}

.cookie-consent .button.primary {
  background: #0070d0;
  color: #fff;
}

.cookie-consent .button.ghost {
  border-color: rgba(0, 112, 208, 0.28);
  color: #0070d0;
}

.cookie-consent-copy {
  display: grid;
  gap: 6px;
}

.cookie-consent-copy h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.12;
}

.cookie-consent-copy p {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
}

.cookie-consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 850;
}

.cookie-consent-settings {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.cookie-consent-settings[hidden] {
  display: none;
}

.consent-toggle {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  min-height: 58px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.consent-toggle input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.consent-toggle strong,
.consent-toggle small {
  display: block;
}

.consent-toggle small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
}

.consent-toggle.is-disabled {
  opacity: 0.74;
}

.cookie-consent-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
}

.cookie-consent-actions .button {
  min-height: 38px;
  padding: 0 12px;
  font-size: 13px;
  white-space: nowrap;
}

.cookie-consent-actions .button.primary {
  grid-column: 1 / -1;
}

body .cookie-consent .button.primary,
body .cookie-consent .button.primary:hover,
body .cookie-consent .button.primary:focus,
body .cookie-consent .button.primary:active {
  border-color: #0070d0;
  background: #0070d0;
  background-image: none;
  color: #fff;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}

.hero-stats span {
  display: inline-grid;
  min-width: 146px;
  min-height: 68px;
  align-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(18, 21, 27, 0.72);
  color: #c9d4e8;
  font-size: 13px;
}

.hero-stats strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.feature-band article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  min-height: 164px;
  padding: 30px;
  background: var(--surface);
}

.feature-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: rgba(0, 112, 208, 0.18);
  color: var(--blue-dark);
  font-weight: 900;
}

.feature-band h2 {
  margin: 0;
  font-size: 20px;
}

.feature-band p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
}

.promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 34px auto 0;
}

.promo-strip {
  min-height: 176px;
  padding: 28px;
  border: 1px solid rgba(74, 167, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 112, 208, 0.2), rgba(85, 214, 190, 0.08)),
    var(--surface-2);
}

.promo-strip.warm {
  border-color: rgba(255, 93, 93, 0.26);
  background:
    linear-gradient(135deg, rgba(255, 93, 93, 0.16), rgba(240, 184, 76, 0.1)),
    var(--surface-2);
}

.promo-strip p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}

.promo-strip h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.08;
}

.catalog-section {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 72px auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

.section-copy {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
}

.shop-shell {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 18px;
}

.filters,
.catalog-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.filters {
  position: sticky;
  top: 94px;
  align-self: start;
  display: grid;
  gap: 22px;
  padding: 18px;
}

.field {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
}

.field span,
.field legend {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

input,
select {
  min-height: 42px;
  width: 100%;
  border: 1px solid rgba(16, 24, 40, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  outline: 0;
}

input[type="search"],
input[type="number"],
select {
  padding: 0 12px;
}

input[type="range"] {
  accent-color: var(--cyan);
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--surface-3);
}

.segment,
.tag {
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.segment {
  min-height: 34px;
}

.segment.is-active,
.tag.is-active {
  background: var(--blue);
  color: #fff;
}

.catalog-panel {
  min-width: 0;
  padding: 16px;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--surface-3);
}

.result-count {
  white-space: nowrap;
  color: var(--muted);
  font-size: 13px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--surface-2);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.cover {
  position: relative;
  min-height: 236px;
  overflow: hidden;
  background: var(--cover-bg, linear-gradient(135deg, #27324c, #57b69b));
}

.cover::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 74% 24%, rgba(255, 255, 255, 0.28), transparent 18%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 62%);
  content: "";
}

.cover::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 82px;
  height: 82px;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-radius: 22px;
  transform: rotate(18deg);
  content: "";
}

.cover-title {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  max-width: 12ch;
  color: #fff;
  font-size: 25px;
  font-weight: 950;
  line-height: 0.98;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

.badge-row {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(8, 9, 12, 0.76);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.badge.deal {
  background: var(--red);
}

.product-body {
  display: grid;
  gap: 13px;
  padding: 14px;
}

.product-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.product-head h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
}

.rating {
  flex: 0 0 auto;
  color: var(--gold);
  font-weight: 900;
}

.compat-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 0;
  padding: 0;
  color: var(--text);
  font-size: 13px;
  list-style: none;
}

.compat-list.compact {
  grid-template-columns: 1fr;
  gap: 7px;
}

.compat-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  min-width: 0;
}

.compat-icon {
  width: 22px;
  height: 22px;
  color: var(--blue);
  fill: currentColor;
}

.compat-panel {
  margin: 20px 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--surface-3);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.price-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.price-box div {
  min-height: 68px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: var(--surface-3);
}

.price-box span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.price-box strong {
  display: block;
  margin-top: 3px;
  font-size: 18px;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.card-actions button,
.details-button {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--surface-3);
  color: var(--text);
  font-weight: 850;
}

.card-actions button:first-child {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.details-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.empty-state {
  margin: 36px 0;
  color: var(--muted);
  text-align: center;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(420px, 100vw);
  height: 100vh;
  border-left: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 180ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.drawer-head h2 {
  margin: 0;
  font-size: 28px;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--surface-3);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
}

.cart-items {
  overflow: auto;
  padding: 16px;
}

.cart-empty {
  margin: 24px 0;
  color: var(--muted);
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.cart-thumb {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: var(--cover-bg, #27324c);
}

.cart-item h3 {
  margin: 0 0 2px;
  font-size: 15px;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.remove-item {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 93, 93, 0.14);
  color: var(--red);
  font-size: 18px;
}

.cart-footer {
  padding: 18px;
  border-top: 1px solid var(--line);
}

.total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 18px;
}

.delivery-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 60;
  border: 0;
  background: rgba(0, 0, 0, 0.55);
}

.product-modal {
  width: min(900px, calc(100vw - 32px));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
}

.product-modal::backdrop {
  background: rgba(0, 0, 0, 0.68);
}

.modal-shell {
  position: relative;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 0;
}

.modal-cover {
  min-height: 470px;
  background: var(--cover-bg, #27324c);
}

.modal-copy {
  padding: 34px;
}

.modal-copy h2 {
  margin: 0 0 14px;
  font-size: 36px;
  line-height: 1.04;
}

.modal-copy p {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.spec-list {
  display: grid;
  gap: 8px;
  margin: 22px 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.spec-list dt {
  color: var(--muted);
}

.spec-list dd {
  margin: 0;
  font-weight: 850;
}

.properties-section .spec-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
  margin-bottom: 0;
}

.properties-section .spec-list div {
  min-width: 0;
}

.compatibility-section .compat-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 28px max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer p {
  max-width: 620px;
  margin: 0;
}

.game-page {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 28px auto 72px;
}

.game-page.gta6-page {
  width: 100%;
  margin: 0 0 72px;
}

.game-page.gta6-page > .breadcrumb,
.game-page.gta6-page > .detail-layout,
.game-page.gta6-page > .content-section {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  border-radius: 0;
}

.game-page.gta6-page > .breadcrumb {
  margin-top: 28px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--blue-dark);
  font-weight: 800;
}

.breadcrumb a + a::before,
.breadcrumb strong::before {
  margin-right: 9px;
  color: var(--muted);
  content: "/";
}

.breadcrumb strong {
  color: var(--text);
}

.game-detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, 250px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: end;
  width: 100vw;
  min-height: min(720px, calc(100vh - 72px));
  margin-left: calc(50% - 50vw);
  padding: clamp(34px, 5vw, 78px) max(var(--page-gutter), calc((100vw - var(--page-max)) / 2)) clamp(34px, 5vw, 64px);
  overflow: hidden;
  background: var(--hero-bg);
  color: #fff;
}

.game-cover,
.buy-panel,
.content-section {
/*  border: 1px sol id var(--line);*/
/*  border-radius: 8px;
  background: var(--surface);*/
/*  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);*/
}

.game-cover {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  align-self: end;
  border-color: rgba(255, 255, 255, 0.28);
  background: var(--cover-bg);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
}

.game-cover::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), transparent 60%);
  content: "";
  z-index: 1;
}

.game-cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-cover .badge-row {
  z-index: 2;
}

.game-summary {
  display: grid;
  align-content: end;
  gap: 20px;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.game-summary h1 {
  max-width: 13ch;
  color: #fff;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.52);
}

.game-summary p {
  max-width: 690px;
  margin: 0;
  color: #e6edf8;
  font-size: 17px;
}

.game-summary .eyebrow {
  color: #8ec8ff;
}

.rating-pill {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  align-items: center;
  justify-self: start;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 16, 34, 0.72);
  color: #fff;
}

.rating-pill strong,
.score-card strong {
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.rating-pill span,
.score-card span,
.review-card span {
  color: var(--gold);
  white-space: nowrap;
}

.rating-pill small,
.score-card small {
  color: var(--muted);
}

.game-summary .rating-pill small {
  color: #d8e2f0;
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-chips span {
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(7, 16, 34, 0.68);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.buy-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 18px;
  align-self: end;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
}

.inline-buy-panel {
  width: min(620px, 100%);
  margin-top: 2px;
  align-self: start;
}

.price-stack {
  display: grid;
  gap: 10px;
}

.price-stack div {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-3);
}

.price-stack span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.price-stack strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 24px;
}

.offer-selector {
  display: grid;
  gap: 8px;
}

.offer-selector > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.offer-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-3);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.offer-option strong,
.offer-option small {
  min-width: 0;
  overflow-wrap: anywhere;
}

.offer-option strong {
  font-size: 13px;
}

.offer-option small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.offer-option.active {
  border-color: rgba(0, 112, 208, 0.64);
  background: rgba(0, 112, 208, 0.12);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 18px;
}

.detail-layout-single {
  max-width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin-right: auto;
  margin-left: auto;
}

.detail-main {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.detail-main.full-width {
  width: 100%;
}

.content-section {
  padding: 0;
}

.content-section h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.content-section p {
  color: var(--muted);
}

.section-heading.tight {
  margin-bottom: 18px;
}

.video-stage {
  position: relative;
  display: grid;
  min-height: 777px;
  overflow: hidden;
  align-items: end;
  padding: 22px;
  border-radius: 8px;
  background: var(--media-bg);
}

.video-embed {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-block {
  display: grid;
  gap: 10px;
}

.video-fallback {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(0, 112, 208, 0.24);
  border-radius: 8px;
  background: rgba(0, 112, 208, 0.1);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 850;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-player {
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-player video {
  display: block;
  width: 100%;
  height: 100%;
}

.media-caption {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.video-stage::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.12));
  content: "";
}

.video-stage > * {
  position: relative;
  z-index: 1;
}

.video-stage div {
  display: grid;
  gap: 4px;
  color: #fff;
}

.video-stage strong {
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1;
}

.video-stage span {
  color: #d6deec;
}

.play-button {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(0, 112, 208, 0.82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.play-button::before {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 21px solid #fff;
  content: "";
}

.media-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.screenshot {
  position: relative;
  min-height: 258px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--media-bg);
  color: #fff;
  text-align: left;
}

.screenshot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 60%);
  content: "";
}

.screenshot span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 1;
  font-weight: 850;
}

.media-video::after {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #fff;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.7));
  content: "";
}

.gta6-scroll-cinema {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: none;
  height: 440vh;
  min-height: 2400px;
  margin: 0 0 0 -50vw;
  background: #02030a;
  isolation: isolate;
  --gta6-scroll-progress: 0;
  --gta6-copy-opacity: 0.1;
  --gta6-copy-x: -88px;
  --gta6-copy-y: 42px;
  --gta6-card-left-opacity: 0;
  --gta6-card-left-x: -120px;
  --gta6-card-left-y: -22px;
  --gta6-card-right-opacity: 0;
  --gta6-card-right-x: 132px;
  --gta6-card-right-y: 30px;
  --gta6-progress-width: 0%;
  --gta6-hold-progress: 0;
  --gta6-hold-label-y: 8px;
  --gta6-final-scale: 0.96;
  --gta6-final-shine-x: -70%;
}

.gta6-scroll-cinema-sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100vw;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 3, 10, 0.28), rgba(2, 3, 10, 0.08)),
    var(--gta6-cinema-poster) center / cover no-repeat,
    #02030a;
}

.gta6-scroll-cinema-sticky::before,
.gta6-scroll-cinema-sticky::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.gta6-scroll-cinema-sticky::before {
  inset: 0;
  z-index: 1;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 5px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.34));
  mix-blend-mode: screen;
  opacity: 0.16;
}

.gta6-scroll-cinema-sticky::after {
  inset: clamp(16px, 2.2vw, 34px);
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.28);
}

.gta6-scroll-cinema-video {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 220ms ease;
}

.gta6-scroll-cinema.is-video-ready .gta6-scroll-cinema-video {
  opacity: 1;
}

.gta6-scroll-cinema-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 3, 10, 0.78) 0%, rgba(2, 3, 10, 0.05) 22%, rgba(2, 3, 10, 0.04) 68%, rgba(2, 3, 10, 0.86) 100%),
    linear-gradient(90deg, rgba(2, 3, 10, 0.62), transparent 36%, rgba(2, 3, 10, 0.42));
}

.gta6-scroll-cinema-copy,
.gta6-scroll-cinema-card,
.gta6-scroll-cinema-final,
.gta6-scroll-cinema-progress {
  position: absolute;
  z-index: 2;
}

.gta6-scroll-cinema-copy,
.gta6-scroll-cinema-card,
.gta6-scroll-cinema-progress {
  pointer-events: none;
}

.gta6-scroll-cinema-copy {
  left: max(24px, calc((100vw - var(--page-max)) / 2 + var(--page-gutter)));
  bottom: clamp(72px, 11vh, 138px);
  width: min(560px, calc(100vw - 48px));
  color: #fff;
  opacity: var(--gta6-copy-opacity);
  transform: translate3d(var(--gta6-copy-x), var(--gta6-copy-y), 0);
  transition: opacity 120ms linear;
}

.gta6-scroll-cinema-logo {
  display: block;
  width: min(210px, 46vw);
  height: auto;
  margin: 0 0 16px;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.62));
}

.gta6-scroll-cinema-copy span,
.gta6-scroll-cinema-card span {
  display: block;
  color: rgba(234, 242, 255, 0.76);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gta6-scroll-cinema-copy h2 {
  margin: 8px 0 10px;
  color: #fff;
  font-size: clamp(46px, 7.2vw, 112px);
  line-height: 0.92;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.62);
}

.gta6-scroll-cinema-copy p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 750;
  line-height: 1.35;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
}

.gta6-scroll-cinema-card {
  display: grid;
  gap: 6px;
  width: min(270px, 30vw);
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(10, 16, 30, 0.78), rgba(18, 24, 38, 0.4)),
    rgba(8, 11, 20, 0.54);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.gta6-scroll-cinema-card strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.15;
}

.gta6-scroll-cinema-card-left {
  top: clamp(104px, 18vh, 180px);
  left: max(22px, calc((100vw - var(--page-max)) / 2 + var(--page-gutter)));
  opacity: var(--gta6-card-left-opacity);
  transform: translate3d(var(--gta6-card-left-x), var(--gta6-card-left-y), 0);
}

.gta6-scroll-cinema-card-right {
  right: max(22px, calc((100vw - var(--page-max)) / 2 + var(--page-gutter)));
  bottom: clamp(96px, 18vh, 178px);
  opacity: var(--gta6-card-right-opacity);
  transform: translate3d(var(--gta6-card-right-x), var(--gta6-card-right-y), 0);
}

.gta6-scroll-cinema-progress {
  right: max(22px, calc((100vw - var(--page-max)) / 2 + var(--page-gutter)));
  bottom: 34px;
  left: max(22px, calc((100vw - var(--page-max)) / 2 + var(--page-gutter)));
  height: 26px;
  overflow: visible;
}

.gta6-scroll-cinema-progress::before,
.gta6-scroll-cinema-progress::after {
  position: absolute;
  top: 12px;
  right: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  content: "";
}

.gta6-scroll-cinema-progress::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 60%, transparent 60%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0 8px, rgba(255, 255, 255, 0.1) 8px 15px);
}

.gta6-scroll-cinema-progress::after {
  width: var(--gta6-progress-width);
  background: linear-gradient(90deg, #ff4ea3, #ffd166, #2dd4bf);
  box-shadow: 0 0 22px rgba(255, 121, 198, 0.55);
}

.gta6-scroll-cinema-progress span {
  position: absolute;
  top: 7px;
  left: 60%;
  z-index: 2;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: #02030a;
  box-shadow: 0 0 18px rgba(45, 212, 191, 0.55);
  transform: translateX(-50%);
}

.gta6-scroll-cinema-progress i {
  position: absolute;
  top: 5px;
  right: 0;
  z-index: 1;
  width: 40%;
  height: 16px;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.16);
  box-shadow: inset 0 0 0 1px rgba(45, 212, 191, 0.28);
  transform: scaleX(var(--gta6-hold-progress));
  transform-origin: right center;
}

.gta6-scroll-cinema-final {
  left: 50%;
  top: clamp(116px, 18vh, 180px);
  display: grid;
  gap: 12px;
  width: min(620px, calc(100vw - 48px));
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: center;
  text-shadow: 0 16px 48px rgba(0, 0, 0, 0.74);
  opacity: var(--gta6-hold-progress);
  pointer-events: auto;
  transform: translate3d(-50%, var(--gta6-hold-label-y), 0) scale(var(--gta6-final-scale));
  transform-origin: center top;
}

.gta6-scroll-cinema-final span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gta6-scroll-cinema-final strong {
  color: #fff;
  font-size: clamp(30px, 4.1vw, 62px);
  line-height: 1;
}

.gta6-final-offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 34px);
  margin-top: 4px;
}

.gta6-final-offers a {
  display: grid;
  gap: 5px;
  min-height: 88px;
  align-content: center;
  padding: 0 clamp(14px, 2vw, 22px);
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  text-decoration: none;
}

.gta6-final-offers em {
  color: #fff;
  font-size: clamp(18px, 2vw, 26px);
  font-style: normal;
  font-weight: 950;
}

.gta6-final-offers small {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 850;
}

@media (max-width: 820px) {
  .gta6-scroll-cinema {
    height: 340vh;
    min-height: 1640px;
  }

  .gta6-scroll-cinema-sticky {
    min-height: 100svh;
  }

  .gta6-scroll-cinema-video {
    object-position: 54% center;
    transform: scale(1.16);
  }

  .gta6-scroll-cinema-copy {
    bottom: 76px;
  }

  .gta6-scroll-cinema-card {
    width: min(230px, calc(100vw - 44px));
    padding: 12px 13px;
  }

  .gta6-scroll-cinema-card-left {
    top: 92px;
  }

  .gta6-scroll-cinema-card-right {
    right: 22px;
    bottom: 190px;
  }

  .gta6-scroll-cinema-final {
    top: 116px;
    width: min(340px, calc(100vw - 44px));
  }

  .gta6-final-offers {
    gap: 10px;
  }

  .gta6-final-offers a {
    min-height: 76px;
    padding: 0 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gta6-scroll-cinema {
    height: 100vh;
    min-height: 620px;
  }

  .gta6-scroll-cinema-sticky {
    position: relative;
  }
}

.gta6-special-section {
  position: relative;
  width: 100%;
  margin: 0;
  padding-right: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  padding-left: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(160deg, rgba(18, 9, 35, 0.96) 0%, rgba(75, 39, 92, 0.9) 42%, rgba(21, 81, 92, 0.9) 100%),
    #13091f;
  color: #fff;
}

.gta6-special-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 7, 20, 0.9), rgba(10, 7, 20, 0.62) 44%, rgba(10, 7, 20, 0.38)),
    var(--gta6-special-bg) center / cover no-repeat;
  opacity: 0.34;
  content: "";
}

.gta6-special-section::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 12, 0.84), rgba(5, 5, 12, 0.12) 58%, rgba(5, 5, 12, 0.56));
  content: "";
}

.gta6-special-section > * {
  position: relative;
  z-index: 1;
}

.gta6-special-section .eyebrow,
.gta6-special-section p {
  color: rgba(255, 255, 255, 0.76);
}

.gta6-special-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  margin-top: 32px;
}

.gta6-vi-mark {
  display: grid;
  width: 58px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, #ff4ea3, #ffbc52 52%, #32d2c3);
  color: #16071e;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.gta6-special-head h2 {
  margin-bottom: 0;
  color: #fff;
}

.gta6-story {
  max-width: 840px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.65;
}

.gta6-edition-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.gta6-edition-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.gta6-edition-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gta6-edition-tab {
  display: grid;
  gap: 5px;
  min-height: 88px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.gta6-edition-tab strong,
.gta6-edition-tab span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.gta6-edition-tab strong {
  font-size: 15px;
  font-weight: 920;
}

.gta6-edition-tab span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 760;
}

.gta6-edition-tab.active {
  border-color: rgba(255, 196, 88, 0.92);
  background: rgba(255, 196, 88, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 196, 88, 0.2);
}

.gta6-edition-description {
  margin: 0;
  min-height: 52px;
  line-height: 1.55;
}

.gta6-content {
  display: grid;
  gap: 10px;
}

.gta6-content h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
}

.gta6-content-list {
  display: grid;
  gap: 8px;
}

.gta6-content-list[hidden] {
  display: none;
}

.gta6-content-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(7, 9, 20, 0.48);
}

.gta6-content-item.active {
  border-color: rgba(255, 196, 88, 0.52);
  background: rgba(7, 9, 20, 0.68);
}

.gta6-content-item h4 {
  margin: 0;
}

.gta6-content-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.gta6-content-trigger span {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 15px;
  font-weight: 900;
}

.gta6-content-trigger em {
  flex: 0 1 auto;
  min-width: 0;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(50, 210, 195, 0.18);
  color: #a7fff4;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.gta6-content-trigger svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.86);
  transition: transform 0.18s ease;
}

.gta6-content-trigger svg path {
  fill: currentColor;
}

.gta6-content-item.active .gta6-content-trigger svg {
  transform: rotate(180deg);
}

.gta6-content-panel {
  display: grid;
  gap: 14px;
  padding: 0 14px 14px;
}

.gta6-content-panel[hidden] {
  display: none;
}

.gta6-content-panel p {
  max-width: 980px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}

.gta6-panel-media {
  display: grid;
  gap: 10px;
}

.gta6-panel-image {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #050508;
  aspect-ratio: 16 / 9;
  cursor: zoom-in;
}

.gta6-panel-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gta6-thumb-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 8px;
}

.gta6-thumb {
  position: relative;
  min-height: 64px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  aspect-ratio: 16 / 9;
}

.gta6-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gta6-thumb.active {
  border-color: #ffc458;
  box-shadow: 0 0 0 2px rgba(255, 196, 88, 0.22);
}

.gta6-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gta6-content li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(7, 9, 20, 0.42);
}

.gta6-content li span,
.gta6-content li em {
  min-width: 0;
  overflow-wrap: anywhere;
}

.gta6-content li span {
  color: #fff;
  font-weight: 820;
}

.gta6-content li em {
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(50, 210, 195, 0.18);
  color: #a7fff4;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.gta6-feature-frame {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.gta6-feature-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.gta6-feature-frame figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 6px;
  padding: 22px;
  background: linear-gradient(0deg, rgba(3, 3, 10, 0.9), rgba(3, 3, 10, 0));
}

.gta6-feature-frame strong {
  color: #fff;
  font-size: 24px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.gta6-feature-frame span {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 740;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.gta6-bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.gta6-bonus-tile {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
}

.gta6-bonus-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gta6-bonus-tile::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(3, 3, 10, 0.92), rgba(3, 3, 10, 0.08) 62%);
  content: "";
}

.gta6-bonus-tile div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 5px;
  padding: 14px;
}

.gta6-bonus-tile span {
  justify-self: start;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(255, 196, 88, 0.18);
  color: #ffd887;
  font-size: 11px;
  font-weight: 900;
}

.gta6-bonus-tile h3 {
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.gta6-bonus-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 12px;
  padding: 26px;
  background: rgba(2, 8, 20, 0.92);
}

.media-lightbox[hidden] {
  display: none;
}

.media-lightbox figure {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 0;
  margin: 0;
}

.media-lightbox img {
  display: block;
  max-width: min(1180px, 100%);
  max-height: calc(100vh - 110px);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
}

.media-lightbox figcaption {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  font-size: 30px;
  line-height: 1;
}

.lightbox-nav {
  display: grid;
  width: 56px;
  height: 78px;
  place-items: center;
  border-radius: 8px;
  font-size: 48px;
  line-height: 1;
}

.lightbox-nav.prev {
  justify-self: end;
}

.lightbox-nav.next {
  justify-self: start;
}

body.lightbox-open {
  overflow: hidden;
}

.review-summary {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.score-card {
  display: grid;
  justify-items: end;
  min-width: 160px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--surface-3);
}

.rating-bars {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.rating-bar {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
}

.rating-bar i {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.rating-bar b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.review-list {
  display: grid;
  gap: 10px;
}

.review-card {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--surface-3);
}

.review-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-card p {
  margin: 10px 0 0;
}

.side-specs {
  position: sticky;
  top: 94px;
  align-self: start;
  display: grid;
  gap: 18px;
}

.catalog-page {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 42px auto 72px;
}

.catalog-hero {
  max-width: 780px;
  margin-bottom: 26px;
}

.catalog-hero h1 {
  max-width: none;
}

.catalog-hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
}

.catalog-plain-heading {
  max-width: 900px;
  margin-top: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.catalog-plain-heading h1 {
  margin: 0 0 8px;
  color: #111827;
}

.catalog-plain-heading p {
  margin: 0;
  color: #5f6b7a;
  font-size: 17px;
}

.catalog-search-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.08);
}

.catalog-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 220px);
  gap: 12px;
  align-items: end;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.08);
}

.catalog-filter-group {
  display: grid;
  gap: 9px;
}

.catalog-filter-group p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
}

.catalog-filter-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 240px);
  gap: 12px;
}

.price-range-field output {
  color: var(--blue);
  font-weight: 900;
}

.price-range-field input[type="range"] {
  min-height: 28px;
  padding: 0;
  accent-color: var(--blue);
}

.catalog-filter-toggles {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.check-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
}

.check-filter input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--blue);
}

.catalog-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.catalog-game-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  box-shadow: none;
  transition: transform 160ms ease;
}

.catalog-game-card:hover {
  transform: translateY(-2px);
}

.catalog-game-cover {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-3);
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.12);
}

.catalog-cover-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-game-title {
  min-width: 0;
  padding: 0 2px;
}

.catalog-game-title h2 {
  display: -webkit-box;
  min-height: 40px;
  margin: 0;
  overflow: hidden;
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-card-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  min-height: 18px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.catalog-card-price strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
}

.catalog-card-price span {
  white-space: nowrap;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.directory-link {
  display: grid;
  min-height: 68px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
}

.directory-link span {
  font-weight: 850;
}

.catalog-game-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-game-meta strong {
  color: #fff;
  font-size: 21px;
}

.catalog-game-meta span {
  color: var(--muted);
  font-size: 12px;
}

.load-more,
.catalog-load-actions {
  grid-column: 1 / -1;
}

.catalog-load-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 20px 0 40px;
}

.fact-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.source-list.compact {
  margin-top: 14px;
}

.source-list a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(74, 167, 255, 0.22);
  border-radius: 8px;
  background: rgba(0, 112, 208, 0.12);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.empty-state.compact {
  margin: 0;
  text-align: left;
}

.rawg-attribution {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.rawg-attribution a {
  color: var(--blue-dark);
  font-weight: 800;
}

.admin-body {
  background: #f3f6fa;
}

.admin-shell {
  display: grid;
  gap: 20px;
  width: min(1440px, calc(100% - 40px));
  margin: 26px auto 44px;
}

.admin-head,
.admin-editor,
.admin-list-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(16, 24, 40, 0.08);
}

.admin-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}

.admin-head h1,
.admin-editor h2 {
  margin: 0;
}

.admin-head [data-admin-status] {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-head [data-admin-status].error {
  color: var(--red);
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.admin-list-panel {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
  max-height: calc(100vh - 112px);
  padding: 16px;
}

.admin-game-list {
  display: grid;
  gap: 8px;
  overflow: auto;
  padding-right: 3px;
}

.admin-game-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 2px 10px;
  min-height: 58px;
  align-items: center;
  padding: 7px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  text-align: left;
}

.admin-game-row:hover,
.admin-game-row.active {
  border-color: rgba(0, 112, 208, 0.22);
  background: rgba(0, 112, 208, 0.08);
}

.admin-game-row img,
.admin-game-row > span {
  grid-row: 1 / 3;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--surface-3);
  object-fit: cover;
}

.admin-game-row b {
  min-width: 0;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-game-row small {
  color: var(--muted);
  font-size: 12px;
}

.admin-editor {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 20px;
}

.admin-editor-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-form-grid .span-2 {
  grid-column: 1 / -1;
}

.admin-form-grid textarea {
  min-height: 0;
  resize: vertical;
}

.admin-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 1600px) {
  .catalog-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .shop-shell {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .game-detail-hero {
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  }

  .buy-panel {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }

  .price-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-selector {
    grid-column: 1 / -1;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .gta6-edition-layout {
    grid-template-columns: 1fr;
  }

  .gta6-feature-frame img {
    min-height: 360px;
  }

  .gta6-bonus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-specs {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 16px;
  }

  .brand {
    min-width: 0;
  }

  .ps-store-wordmark {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
  }

  .top-nav {
    display: none;
  }

  .cart-label {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 15, 32, 0.92), rgba(4, 15, 32, 0.48)),
      linear-gradient(0deg, rgba(4, 15, 32, 0.76), rgba(4, 15, 32, 0.1));
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding: 72px 0 80px;
  }

  h1 {
    max-width: 10ch;
    font-size: 46px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .feature-band,
  .promo-grid,
  .shop-shell,
  .section-heading,
  .site-footer,
  .modal-shell {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .site-footer {
    display: grid;
  }

  .feature-band article {
    min-height: 132px;
    padding: 22px 18px;
  }

  .promo-grid,
  .catalog-section {
    width: calc(100% - 32px);
  }

  .filters {
    position: static;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .catalog-page {
    width: calc(100% - 32px);
  }

  .catalog-controls {
    grid-template-columns: 1fr;
  }

  .catalog-search-panel {
    grid-template-columns: 1fr;
  }

  .catalog-filter-grid {
    grid-template-columns: 1fr;
  }

  .catalog-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .compat-list {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    display: grid;
  }

  .modal-cover {
    min-height: 260px;
  }

  .game-page {
    width: calc(100% - 32px);
    margin-top: 18px;
  }

  .game-detail-hero,
  .price-stack,
  .media-strip {
    grid-template-columns: 1fr;
  }

  .game-detail-hero {
    min-height: auto;
    padding: 34px 16px 38px;
  }

  .game-detail-hero > *,
  .buy-panel,
  .price-stack,
  .price-stack div,
  .gta6-special-section,
  .gta6-edition-copy,
  .gta6-edition-tabs,
  .gta6-edition-tab,
  .gta6-feature-frame,
  .gta6-bonus-tile {
    min-width: 0;
  }

  .buy-panel {
    grid-template-columns: 1fr;
  }

  .buy-panel {
    grid-column: auto;
  }

  .game-cover {
    width: min(230px, 62vw);
    min-height: 0;
  }

  .gta6-edition-tabs,
  .gta6-bonus-grid {
    grid-template-columns: 1fr;
  }

  .gta6-content li {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gta6-content li em {
    justify-self: start;
    white-space: normal;
  }

  .properties-section .spec-list,
  .compatibility-section .compat-list {
    grid-template-columns: 1fr;
  }

  .video-stage {
    min-height: 300px;
  }

  .media-lightbox {
    grid-template-columns: 1fr 1fr;
    align-content: center;
    padding: 18px;
  }

  .media-lightbox figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .media-lightbox img {
    max-height: calc(100vh - 150px);
  }

  .lightbox-nav {
    width: 100%;
    height: 48px;
    font-size: 34px;
  }

  .lightbox-nav.prev,
  .lightbox-nav.next {
    justify-self: stretch;
  }

  .review-summary {
    display: grid;
  }

  .score-card {
    justify-items: start;
  }

  .admin-shell {
    width: calc(100% - 24px);
  }

  .admin-head,
  .admin-editor-head {
    display: grid;
    align-items: start;
  }

  .admin-layout,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-list-panel {
    position: static;
    max-height: 420px;
  }

  .admin-actions {
    justify-content: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    display: flex;
    grid-template-columns: none;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 0 12px;
  }

  .site-header .header-actions {
    display: contents;
  }

  .home-page .header-actions,
  body:not(.home-page) .header-actions {
    justify-content: space-between;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 1px;
  }

  .site-header .login-button {
    order: 1;
  }

  .site-header .header-icon-button[href$="catalog.html"] {
    order: 2;
  }

  .site-header .brand {
    order: 3;
    flex: 0 0 auto;
    justify-content: center;
  }

  .site-header .header-icon-button[href*="popular"] {
    order: 4;
  }

  .site-header .header-cart {
    order: 5;
  }

  .site-header .brand-mark,
  .site-header .brand-mark svg,
  .site-header .header-icon-button,
  .site-header .header-cart,
  .site-header .login-button {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .site-header .login-button span {
    display: none;
  }
}

@media (max-width: 460px) {
  .hero-stats {
    display: grid;
  }

  .hero-stats span {
    width: 100%;
  }

  .promo-strip,
  .modal-copy {
    padding: 20px;
  }

  .price-box,
  .card-actions {
    grid-template-columns: 1fr;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .rating-pill {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 10px 12px;
  }

  .content-section {
    padding: 18px;
  }

  .gta6-special-head {
    align-items: flex-start;
  }

  .gta6-edition-tabs,
  .gta6-bonus-grid {
    grid-template-columns: 1fr;
  }

  .gta6-content li {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gta6-content li em {
    justify-self: start;
    white-space: normal;
  }

  .gta6-feature-frame img {
    min-height: 300px;
  }

  .gta6-feature-frame figcaption {
    padding: 16px;
  }

  .gta6-content-trigger {
    grid-template-columns: minmax(0, 1fr) 22px;
    padding: 12px;
  }

  .gta6-content-panel {
    padding: 0 12px 12px;
  }

  .gta6-thumb-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* PSKey Store home redesign */
.home-page {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f5f7fb;
  --surface-3: #eef2f7;
  --line: rgba(17, 24, 39, 0.12);
  --text: #111827;
  --muted: #5f6b7a;
  --blue: #0070d0;
  --blue-dark: #0070d0;
  --cyan: #0070d0;
  --red: #ff4a4f;
  --gold: #f7bf49;
  background: #fff;
  color: var(--text);
  overflow-x: hidden;
}

.home-page .site-header {
  min-height: 76px;
  padding-inline: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(20px);
}

.home-page .brand {
  min-width: 260px;
  gap: 12px;
}

.home-page .brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .brand-mark svg {
  width: 46px;
  height: 46px;
}

.home-page .brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: #111827;
  font-size: 24px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
}

.home-page .brand-name span {
  color: #5f6b7a;
  font-size: 18px;
  font-weight: 650;
}

.home-page .top-nav {
  justify-content: center;
  gap: 18px;
}

.home-page .top-nav a {
  min-height: 40px;
  padding: 0 4px;
  border-radius: 0;
  color: #4b5563;
  font-size: 14px;
  font-weight: 700;
}

.home-page .top-nav a:hover,
.home-page .top-nav a.is-active {
  background: transparent;
  color: #0070d0;
}

.home-page .header-actions {
  gap: 14px;
}

.home-page .header-icon-button,
.home-page .header-cart {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #111827;
  transition: background 160ms ease, color 160ms ease;
}

.home-page .header-icon-button:hover,
.home-page .header-cart:hover {
  background: rgba(0, 112, 208, 0.08);
  color: #0070d0;
}

.home-page .header-icon-button svg,
.home-page .header-cart svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.home-page .header-cart-count {
  border-color: #fff;
}

.home-page .login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 8px;
  background: #0070d0;
  background-image: none;
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(0, 112, 208, 0.34);
}

.home-page .home-hero-slider {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: #000;
}

.home-page .home-hero-track {
  display: flex;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-page .home-hero-track::-webkit-scrollbar {
  display: none;
}

.home-page .home-hero-slide {
  position: relative;
  flex: 0 0 100%;
  display: grid;
  min-height: min(720px, calc(100vh - 76px));
  overflow: hidden;
  scroll-snap-align: start;
  color: #fff;
}

.home-page .home-hero-picture,
.home-page .home-hero-picture img,
.home-page .home-hero-gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-page .home-hero-picture img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.home-page .gta-slide .home-hero-picture img {
  object-position: center;
}

.home-page .wolverine-slide .home-hero-picture img {
  object-position: center top;
}

.home-page .home-hero-gradient {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.62) 32%, rgba(0, 0, 0, 0.1) 66%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 46%, rgba(0, 0, 0, 0.38) 100%);
}

.home-page .home-hero-copy-block {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(520px, calc(100% - (var(--page-gutter) * 2)));
  margin-left: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  padding: 96px 0;
}

.home-page .home-hero-copy-block h1,
.home-page .home-hero-copy-block h2 {
  max-width: 11ch;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: none;
}

.home-page .home-hero-copy-block p {
  max-width: 500px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1.55vw, 21px);
  line-height: 1.45;
}

.home-page .hero-preorder-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 22px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 15px;
  font-weight: 850;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease, background 160ms ease;
}

.home-page .hero-preorder-button:hover {
  transform: translateY(-1px);
  background: #e9f3ff;
}

.home-page .home-hero-nav {
  position: absolute;
  right: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  bottom: 24px;
  z-index: 5;
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
}

.home-page .home-hero-nav a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.home-page .home-hero-nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.home-page .home-hero-nav a.active {
  background: #fff;
  color: #111827;
}

.home-page .home-hero {
  min-height: 610px;
  border-bottom: 1px solid rgba(140, 162, 194, 0.14);
  background: #02050a;
}

.home-page .home-hero .hero-media {
  inset: 0 0 0 auto;
  width: min(62vw, 760px);
  height: 100%;
  opacity: 0.95;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.03);
}

.home-page .home-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 5, 10, 0.98) 0%, rgba(3, 8, 16, 0.88) 35%, rgba(3, 8, 16, 0.26) 70%, rgba(3, 8, 16, 0.64) 100%),
    linear-gradient(180deg, rgba(6, 13, 25, 0.2) 0%, rgba(3, 7, 13, 0.82) 100%);
}

.home-page .hero-content {
  width: min(570px, calc(100% - (var(--page-gutter) * 2)));
  margin-left: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  padding: 92px 0 80px;
}

.home-page .console-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 26px;
  color: #fff;
  font-size: 31px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.home-page .console-tag::before {
  display: none;
  content: none;
}

.home-page h1 {
  max-width: 600px;
  color: #fff;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.home-page h1 span {
  color: #148dff;
}

.home-page .hero-copy {
  max-width: 520px;
  margin-top: 22px;
  color: #f2f6ff;
  font-size: 18px;
  line-height: 1.45;
}

.home-page .hero-actions {
  gap: 16px;
  margin-top: 34px;
}

.home-page .button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 850;
}

.home-page .button.primary {
  background: #0070d0;
  background-image: none;
}

.home-page .button.ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.home-page .hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.home-page .hero-benefits li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  width: min(210px, 100%);
  color: #d6e1f1;
  font-size: 13px;
}

.home-page .hero-benefits svg {
  width: 26px;
  height: 26px;
  color: #0070d0;
  fill: currentColor;
}

.home-page .hero-benefits strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.15;
}

.home-page .ps-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  pointer-events: none;
}

.home-page .shape {
  position: absolute;
  display: block;
  opacity: 0.46;
  filter: drop-shadow(0 0 16px rgba(0, 112, 208, 0.58));
}

.home-page .shape.triangle {
  top: 22%;
  left: 53%;
  width: 42px;
  height: 38px;
  border-right: 6px solid #0070d0;
  border-bottom: 6px solid #0070d0;
  transform: rotate(44deg) skew(-12deg);
}

.home-page .shape.circle {
  top: 25%;
  left: 63%;
  width: 54px;
  height: 54px;
  border: 7px solid #0070d0;
  border-radius: 50%;
}

.home-page .shape.cross {
  top: 38%;
  left: 57%;
  width: 66px;
  height: 66px;
  transform: rotate(28deg);
}

.home-page .shape.cross::before,
.home-page .shape.cross::after {
  position: absolute;
  inset: 28px 0;
  height: 8px;
  background: #0070d0;
  content: "";
}

.home-page .shape.cross::after {
  transform: rotate(90deg);
}

.home-page .shape.square {
  right: 7%;
  bottom: 22%;
  width: 58px;
  height: 58px;
  border: 7px solid #0070d0;
  transform: rotate(27deg);
}

.home-page .home-section,
.home-page .service-panel {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  max-width: calc(100vw - (var(--page-gutter) * 2));
  margin: 0 auto;
}

.home-page .categories-section {
  padding-top: 36px;
}

.home-page .catalog-section {
  padding-top: 48px;
  margin-bottom: 42px;
}

.home-page .section-heading {
  align-items: center;
  margin-bottom: 18px;
}

.home-page .section-heading.compact {
  display: flex;
}

.home-page .section-heading h2 {
  color: #111827;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: 0;
}

.home-page .section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0070d0;
  font-size: 15px;
  font-weight: 800;
}

.home-page .section-link::after {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  content: "";
}

.home-page .category-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

.home-page .category-card {
  position: relative;
  display: grid;
  min-height: 122px;
  overflow: hidden;
  align-items: end;
  padding: 16px;
  border: 1px solid rgba(166, 190, 222, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(9, 16, 29, 0.05), rgba(4, 8, 15, 0.88)),
    var(--category-image) center / cover;
  box-shadow: inset 0 -54px 48px rgba(0, 0, 0, 0.55);
  transition: transform 160ms ease, border-color 160ms ease;
}

.home-page .category-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 112, 208, 0.62);
}

.home-page .category-card span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
}

.home-page .home-catalog-list {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.home-page .catalog-game-card {
  gap: 10px;
  color: #111827;
}

.home-page .catalog-game-cover {
  border: 0вот solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  background: #eef2f7;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.1);
}

.home-page .catalog-game-cover::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.28));
  content: "";
}

.home-page .home-discount {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border-radius: 5px;
  background: #0070d0;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.home-page .catalog-game-title {
  display: grid;
  gap: 7px;
  padding: 0;
}

.home-page .platform-badge {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 0 8px;
  border-radius: 5px;
  background: #111827;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.home-page .catalog-game-title h2 {
  min-height: 38px;
  color: #111827;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
}

.home-page .home-price {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: baseline;
  min-height: 25px;
  margin: 0;
}

.home-page .home-price strong {
  color: #111827;
  font-size: 17px;
  line-height: 1;
}

.home-page .home-price span {
  color: #667085;
  font-size: 13px;
  font-weight: 750;
}

.home-page .home-price s {
  color: #7f8aa0;
  font-size: 13px;
}

.home-page .service-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
  margin-bottom: 30px;
  overflow: hidden;
  padding: 22px 32px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
}

.home-page .service-panel article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-width: 0;
  min-height: 60px;
  padding: 0;
}

.home-page .service-panel article + article {
  border-left: 0;
}

.home-page .service-panel h2 {
  margin: 0 0 5px;
  color: #111827;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.14;
}

.home-page .service-panel p {
  margin: 0;
  color: #667085;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.home-page .service-icon {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #0e83ff;
}

.home-page .store-footer {
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) minmax(150px, 0.7fr) minmax(190px, 0.8fr) minmax(260px, 1fr);
  gap: 46px;
  padding: 36px max(var(--page-gutter), calc((100vw - var(--page-max)) / 2)) 28px;
  border-top: 1px solid rgba(140, 162, 194, 0.14);
  background: linear-gradient(180deg, #0b1626, #07101d);
  color: #b5c1d3;
}

.home-page .footer-brand {
  margin-bottom: 16px;
}

.home-page .store-footer p {
  max-width: 360px;
  color: #aebbd0;
  font-size: 14px;
  line-height: 1.55;
}

.home-page .store-footer nav,
.home-page .subscribe-form {
  display: grid;
  align-content: start;
  gap: 10px;
}

.home-page .store-footer h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 15px;
}

.home-page .store-footer nav a {
  color: #b5c1d3;
  font-size: 14px;
}

.home-page .store-footer nav a:hover {
  color: #0070d0;
}

.home-page .social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.home-page .social-row a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #d9e3f4;
  font-size: 12px;
  font-weight: 850;
}

.home-page .subscribe-form {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.home-page .subscribe-form h2,
.home-page .subscribe-form p {
  grid-column: 1 / -1;
}

.home-page .subscribe-form label {
  min-width: 0;
}

.home-page .subscribe-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.home-page .subscribe-form input {
  height: 48px;
  border: 1px solid rgba(166, 190, 222, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.home-page .subscribe-form input::placeholder {
  color: #aebbd0;
}

.home-page .subscribe-form .button {
  min-height: 48px;
}

.home-page .subscribe-form .legal-check,
body:not(.home-page) .subscribe-form .legal-check {
  grid-column: 1 / -1;
}

.home-page .subscribe-form .legal-check span,
body:not(.home-page) .subscribe-form .legal-check span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  color: #aebbd0;
  font-size: 12px;
}

.home-page .subscribe-form .legal-check input,
body:not(.home-page) .subscribe-form .legal-check input {
  width: 18px;
  height: 18px;
  border: 0;
  background: transparent;
}

.home-page .subscribe-form .legal-check a,
body:not(.home-page) .subscribe-form .legal-check a {
  color: #dceaff;
}

.home-page .subscribe-form .text-link-button,
body:not(.home-page) .subscribe-form .text-link-button {
  grid-column: 1 / -1;
  color: #aebbd0;
}

.home-page .subscribe-form .text-link-button:hover,
body:not(.home-page) .subscribe-form .text-link-button:hover {
  color: #0070d0;
}

.home-page .legal-line {
  grid-column: 1 / -1;
  max-width: none;
  margin: 8px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(140, 162, 194, 0.14);
  font-size: 12px;
}

@media (max-width: 1180px) {
  .home-page .site-header {
    grid-template-columns: auto 1fr;
  }

  .home-page .top-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .home-page .home-hero {
    min-height: 580px;
  }

  .home-page .category-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-page .home-catalog-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page .service-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 28px;
  }

  .home-page .service-panel article:nth-child(3) {
    border-left: 0;
    border-top: 0;
  }

  .home-page .service-panel article:nth-child(4) {
    border-top: 0;
  }

  .home-page .store-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-page .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 18px;
  }

  .home-page .brand {
    min-width: 0;
  }

  .home-page .header-actions {
    justify-content: start;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 2px;
  }

  .home-page .top-nav {
    display: none;
  }

  .home-page .login-button {
    min-width: 82px;
  }

  .home-page .home-hero {
    min-height: auto;
  }

  .home-page .home-hero-slide {
    min-height: min(680px, calc(100vh - 88px));
  }

  .home-page .home-hero-picture img {
    object-position: center top;
  }

  .home-page .home-hero-gradient {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.56) 48%, rgba(0, 0, 0, 0.92) 100%);
  }

  .home-page .home-hero-copy-block {
    align-self: end;
    width: calc(100% - 36px);
    margin: 0 18px;
    padding: 0 0 96px;
    text-align: center;
  }

  .home-page .home-hero-copy-block h1,
  .home-page .home-hero-copy-block h2 {
    max-width: none;
    font-size: clamp(34px, 10vw, 48px);
  }

  .home-page .home-hero-copy-block p {
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
    font-size: 16px;
  }

  .home-page .home-hero-nav {
    right: 18px;
    bottom: 14px;
    left: 18px;
    justify-content: center;
    overflow-x: auto;
  }

  .home-page .home-hero .hero-media {
    width: 100%;
    opacity: 0.26;
    object-position: center;
  }

  .home-page .home-hero .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 5, 10, 0.98), rgba(2, 5, 10, 0.7)),
      linear-gradient(180deg, rgba(2, 5, 10, 0.2), rgba(2, 5, 10, 0.9));
  }

  .home-page .hero-content {
    width: calc(100% - 36px);
    max-width: calc(100vw - 36px);
    margin: 0 18px;
    padding: 58px 0 62px;
  }

  .home-page .console-tag {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .home-page h1 {
    font-size: 38px;
  }

  .home-page .hero-copy {
    font-size: 16px;
  }

  .home-page .hero-actions {
    display: grid;
  }

  .home-page .hero-benefits {
    display: grid;
    gap: 14px;
  }

  .home-page .hero-benefits li {
    width: 100%;
  }

  .home-page .ps-shapes {
    display: none;
  }

  .home-page .home-section,
  .home-page .service-panel {
    width: calc(100% - 36px);
    max-width: calc(100vw - 36px);
  }

  .home-page .category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .category-card {
    min-height: 104px;
  }

  .home-page .home-catalog-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .home-page .section-heading {
    display: flex;
  }

  .home-page .section-heading h2 {
    font-size: 23px;
  }

  .home-page .service-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .home-page .service-panel article,
  .home-page .service-panel article + article,
  .home-page .service-panel article:nth-child(3),
  .home-page .service-panel article:nth-child(4) {
    border-left: 0;
    border-top: 0;
  }

  .home-page .service-panel article:first-child {
    border-top: 0;
  }

  .home-page .store-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 18px 24px;
  }

  .home-page .subscribe-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  body:not(.home-page) .site-header {
    gap: 10px;
    padding: 0 16px;
  }

  body:not(.home-page) .brand {
    min-width: 0;
    gap: 8px;
  }

  body:not(.home-page) .brand-mark,
  body:not(.home-page) .brand-mark svg {
    width: 36px;
    height: 36px;
  }

  body:not(.home-page) .brand-name {
    font-size: 15px;
  }

  body:not(.home-page) .brand-name span {
    font-size: 11px;
  }

  body:not(.home-page) .header-actions {
    gap: 4px;
  }

  body:not(.home-page) .header-icon-button,
  body:not(.home-page) .header-cart {
    width: 36px;
    height: 36px;
  }

  body:not(.home-page) .login-button {
    min-height: 36px;
    padding: 0 12px;
  }

  .home-page .brand-name {
    font-size: 21px;
  }

  .home-page .brand-name span {
    font-size: 15px;
  }

  .home-page h1 {
    font-size: 34px;
  }

  .home-page .header-icon-button,
  .home-page .header-cart {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 520px) {
  .home-page .home-section,
  .home-page .service-panel {
    width: calc(100% - 36px);
    max-width: calc(100vw - 36px);
    margin-left: 18px;
    margin-right: auto;
  }

  .home-page h1 {
    max-width: none;
    font-size: 34px;
  }

  .home-page .hero-copy {
    max-width: 330px;
  }

  .home-page .home-hero-copy-block h1,
  .home-page .home-hero-copy-block h2 {
    font-size: clamp(32px, 10vw, 42px);
  }
}

@media (max-width: 760px) {
  .site-header,
  .home-page .site-header,
  body:not(.home-page) .site-header {
    display: flex;
    grid-template-columns: none;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 64px;
    padding: 10px 12px;
  }

  .site-header .header-actions,
  .home-page .site-header .header-actions,
  body:not(.home-page) .site-header .header-actions {
    display: contents;
  }

  .site-header .login-button {
    order: 1;
  }

  .site-header .header-icon-button[href$="catalog.html"] {
    order: 2;
  }

  .site-header .brand {
    order: 3;
    flex: 0 0 auto;
    justify-content: center;
    min-width: 0;
  }

  .site-header .header-icon-button[href*="popular"] {
    order: 4;
  }

  .site-header .header-cart {
    order: 5;
  }

  .site-header .brand-mark,
  .site-header .brand-mark svg,
  .site-header .header-icon-button,
  .site-header .header-cart,
  .site-header .login-button {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .site-header .login-button {
    padding: 0;
  }

  .site-header .login-button span,
  .site-header .ps-store-wordmark,
  .site-header .top-nav {
    display: none;
  }
}

/* Site-wide light shell for catalog and inner pages */
body:not(.home-page) .site-header {
  padding-inline: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(20px);
}

body:not(.home-page) .brand-mark {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body:not(.home-page) .brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: #111827;
}

body:not(.home-page) .brand-name span {
  color: #5f6b7a;
  font-size: 0.82em;
  font-weight: 650;
}

body:not(.home-page) .top-nav a {
  color: #4b5563;
  font-weight: 750;
}

body:not(.home-page) .top-nav a:hover {
  background: rgba(0, 112, 208, 0.08);
  color: #0070d0;
}

body:not(.home-page) .header-icon-button,
body:not(.home-page) .header-cart {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #111827;
  transition: background 160ms ease, color 160ms ease;
}

body:not(.home-page) .header-icon-button:hover,
body:not(.home-page) .header-cart:hover {
  background: rgba(0, 112, 208, 0.08);
  color: #0070d0;
}

body:not(.home-page) .header-icon-button svg,
body:not(.home-page) .header-cart svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

body:not(.home-page) .login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 8px;
  background: #0070d0;
  background-image: none;
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(0, 112, 208, 0.28);
}

.home-page .login-button,
body:not(.home-page) .login-button {
  display: grid;
  width: 42px;
  height: 42px;
  min-width: 0;
  min-height: 0;
  place-items: center;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  color: #111827;
  box-shadow: none;
  transition: background 160ms ease, color 160ms ease;
}

.home-page .login-button:hover,
body:not(.home-page) .login-button:hover {
  background: rgba(0, 112, 208, 0.08);
  color: #0070d0;
}

.login-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.login-button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.header-cart svg path,
.header-cart svg circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

body:not(.home-page) input,
body:not(.home-page) select,
body:not(.home-page) textarea {
  border-color: rgba(17, 24, 39, 0.14);
  background: #fff;
  color: #111827;
}

body:not(.home-page) input::placeholder {
  color: #8a94a6;
}

body:not(.home-page) .button.ghost {
  border-color: rgba(17, 24, 39, 0.14);
  background: #fff;
  color: #111827;
}

body:not(.home-page) .catalog-page {
  margin-top: 34px;
}

body:not(.home-page) .seo-catalog-page {
  margin-top: clamp(22px, 3vw, 40px);
  margin-bottom: 32px;
}

body:not(.home-page) .seo-catalog-page > .breadcrumb {
  margin: 0 0 clamp(18px, 2.4vw, 28px);
}

body:not(.home-page) .catalog-hero {
  max-width: none;
  min-height: 220px;
  margin-bottom: 18px;
  padding: 34px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 26%, rgba(0, 112, 208, 0.12), transparent 28%),
    linear-gradient(180deg, #fff, #f5f7fb);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
}

body:not(.home-page) .seo-catalog-page .catalog-hero {
  min-height: 0;
  padding: clamp(24px, 3vw, 34px);
}

body:not(.home-page) .catalog-hero h1 {
  color: #111827;
}

body:not(.home-page) .catalog-hero p {
  color: #5f6b7a;
}

body:not(.home-page) .catalog-search-panel,
body:not(.home-page) .catalog-controls,
body:not(.home-page) .filters,
body:not(.home-page) .catalog-panel,
body:not(.home-page) .directory-link,
body:not(.home-page) .content-section,
body:not(.home-page) .buy-panel,
body:not(.home-page) .product-modal,
body:not(.home-page) .cart-drawer {
  border-color: rgba(17, 24, 39, 0.1);
  background: #fff;
/*  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.1);*/
}

body:not(.home-page) .gta6-special-section {
  border: 0;
  background:
    linear-gradient(160deg, rgba(18, 9, 35, 0.96) 0%, rgba(75, 39, 92, 0.9) 42%, rgba(21, 81, 92, 0.9) 100%),
    #13091f;
  color: #fff;
  box-shadow: 0 22px 70px rgba(20, 14, 42, 0.24);
  padding-bottom: 32px;
}

body:not(.home-page) .field span,
body:not(.home-page) .field legend,
body:not(.home-page) .catalog-filter-group p {
  color: #111827;
}

body:not(.home-page) .check-filter,
body:not(.home-page) .segment,
body:not(.home-page) .tag,
body:not(.home-page) .mobile-action-grid button,
body:not(.home-page) .mobile-chip-grid button {
  border-color: rgba(17, 24, 39, 0.12);
  background: #fff;
  color: #111827;
}

body:not(.home-page) .catalog-game-card {
  color: #111827;
}

body:not(.home-page) .catalog-game-cover {
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: #eef2f7;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.1);
}

body:not(.home-page) .catalog-game-title h2 {
  color: #111827;
}

body:not(.home-page) .catalog-card-price {
  color: #667085;
}

body:not(.home-page) .catalog-card-price strong {
  color: #111827;
}

body:not(.home-page) .directory-link {
  color: #111827;
}

body:not(.home-page) .directory-link:hover,
body:not(.home-page) .catalog-game-card:hover .catalog-game-cover {
  border-color: rgba(0, 112, 208, 0.62);
}

body:not(.home-page) .breadcrumb a,
body:not(.home-page) .source-list a,
body:not(.home-page) .rawg-attribution a {
  color: #0070d0;
}

body:not(.home-page) .store-footer {
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) minmax(150px, 0.7fr) minmax(190px, 0.8fr) minmax(260px, 1fr);
  gap: 46px;
  padding: 28px max(var(--page-gutter), calc((100vw - var(--page-max)) / 2)) 24px;
  border-top: 1px solid rgba(140, 162, 194, 0.14);
  background: linear-gradient(180deg, #0b1626, #07101d);
  color: #b5c1d3;
}

body:not(.home-page) .footer-brand {
  margin-bottom: 16px;
}

body:not(.home-page) .store-footer p {
  max-width: 360px;
  color: #aebbd0;
  font-size: 14px;
  line-height: 1.55;
}

body:not(.home-page) .store-footer nav,
body:not(.home-page) .subscribe-form {
  display: grid;
  align-content: start;
  gap: 10px;
}

body:not(.home-page) .store-footer h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 15px;
}

body:not(.home-page) .store-footer nav a {
  color: #b5c1d3;
  font-size: 14px;
}

body:not(.home-page) .store-footer nav a:hover {
  color: #0070d0;
}

body:not(.home-page) .social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

body:not(.home-page) .social-row a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #d9e3f4;
  font-size: 0;
}

body:not(.home-page) .social-row svg {
  width: 21px;
  height: 21px;
  fill: #d9e3f4;
}

body:not(.home-page) .subscribe-form {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

body:not(.home-page) .subscribe-form h2,
body:not(.home-page) .subscribe-form p {
  grid-column: 1 / -1;
}

body:not(.home-page) .subscribe-form label {
  min-width: 0;
}

body:not(.home-page) .subscribe-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

body:not(.home-page) .subscribe-form input {
  height: 48px;
  border: 1px solid rgba(166, 190, 222, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

body:not(.home-page) .subscribe-form input::placeholder {
  color: #aebbd0;
}

body:not(.home-page) .subscribe-form .button {
  min-height: 48px;
}

body:not(.home-page) .legal-line {
  grid-column: 1 / -1;
  max-width: none;
  margin: 8px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(140, 162, 194, 0.14);
  font-size: 12px;
}

@media (max-width: 1180px) {
  body:not(.home-page) .store-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body:not(.home-page) .store-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 18px 24px;
  }

  body:not(.home-page) .subscribe-form {
    grid-template-columns: 1fr;
  }
}

/* Cleanup for final mockup details */
.home-page .service-icon::before,
.home-page .service-icon::after {
  display: none;
  content: none;
}

.home-page .service-icon svg {
  display: block;
  width: 54px;
  height: 54px;
}

.home-page .service-icon.plus .plus-card-back,
.home-page .service-icon.plus .plus-card-front,
.home-page .service-icon.plus .plus-symbol,
.home-page .service-icon.plus .plus-mark {
  fill: #f4c342;
}

.home-page .service-icon.plus .plus-mark {
  fill: #fff;
}

.home-page .service-icon.plus .plus-card-back {
  opacity: 0.82;
}

.home-page .service-icon.plus .plus-card-front {
  fill: #f6c63f;
  filter: drop-shadow(0 10px 16px rgba(246, 198, 63, 0.18));
}

.home-page .service-icon.plus .plus-symbol {
  fill: #f4c342;
}

.home-page .service-icon.card svg {
  filter: drop-shadow(0 10px 18px rgba(0, 112, 208, 0.3));
}

.home-page .service-icon.card .store-card {
  fill: #168bff;
}

.home-page .service-icon.card .store-handle {
  fill: none;
  stroke: #f16438;
  stroke-width: 4;
  stroke-linecap: round;
}

.home-page .service-icon.card .store-logo-main,
.home-page .service-icon.card .store-logo-key {
  fill: #fff;
}

.home-page .service-icon.bolt svg {
  width: 46px;
  height: 46px;
  fill: #0070d0;
  filter: drop-shadow(0 12px 18px rgba(17, 136, 255, 0.24));
}

.home-page .service-icon.support svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: #0070d0;
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 12px 18px rgba(17, 136, 255, 0.24));
}

.home-page .social-row a {
  font-size: 0;
}

.home-page .social-row svg {
  width: 21px;
  height: 21px;
  fill: #d9e3f4;
}

/* PS Plus page */
.ps-plus-page {
  display: grid;
  gap: 20px;
}

body:not(.home-page) .ps-plus-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
}

.ps-plus-logo-card {
  display: grid;
  min-height: 220px;
  align-content: center;
  justify-items: center;
  gap: 10px;
  border: 1px solid rgba(244, 195, 66, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 20%, rgba(244, 195, 66, 0.26), transparent 34%),
    linear-gradient(180deg, rgba(17, 34, 58, 0.96), rgba(8, 17, 31, 0.98));
}

.ps-plus-logo-card svg {
  width: 96px;
  height: 96px;
  fill: #f4c342;
  filter: drop-shadow(0 18px 26px rgba(244, 195, 66, 0.22));
}

.ps-plus-logo-card strong {
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.ps-plus-logo-card span {
  color: #cbd6e8;
  font-size: 14px;
  font-weight: 800;
}

.ps-plus-plans,
.ps-plus-info-grid {
  display: grid;
  gap: 16px;
}

.ps-plus-plans {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ps-plus-plans article,
.ps-plus-info-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(166, 190, 222, 0.16);
  border-radius: 8px;
  background: rgba(13, 24, 40, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.ps-plus-plans article.featured {
  border-color: rgba(0, 112, 208, 0.58);
  background: linear-gradient(180deg, rgba(17, 42, 74, 0.96), rgba(11, 24, 43, 0.96));
}

.ps-plus-plans span {
  color: #f4c342;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
}

.ps-plus-plans h2,
.ps-plus-info-grid h2 {
  margin: 0;
  color: #fff;
  font-size: 25px;
  line-height: 1.12;
}

.ps-plus-plans p,
.ps-plus-info-grid p,
.ps-plus-info-grid li {
  margin: 0;
  color: #cbd6e8;
  line-height: 1.5;
}

.ps-plus-plans strong {
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.ps-plus-plans .button,
.ps-plus-info-grid .button {
  justify-self: start;
  margin-top: 4px;
}

.ps-plus-info-grid {
  grid-template-columns: 1fr 1fr 1fr;
}

.ps-plus-info-grid ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.ps-plus-store {
  display: grid;
  gap: 16px;
}

.ps-plus-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 6px;
}

.ps-plus-section-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.ps-plus-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ps-plus-product-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ps-plus-product-grid.wallet {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ps-plus-product-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 184px;
  padding: 18px;
  border: 1px solid rgba(166, 190, 222, 0.16);
  border-radius: 8px;
  background: rgba(13, 24, 40, 0.92);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.ps-plus-product-card span {
  width: max-content;
  max-width: 100%;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0, 112, 208, 0.16);
  color: #8ec9ff;
  font-size: 12px;
  font-weight: 900;
}

.ps-plus-product-card h3 {
  min-height: 48px;
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.ps-plus-product-card strong {
  color: #fff;
  font-size: 27px;
  line-height: 1;
}

.ps-plus-product-card .button {
  width: 100%;
  margin-top: auto;
}

.ps-plus-turkey-account {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(0, 112, 208, 0.26);
  border-radius: 8px;
  background: rgba(13, 24, 40, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.ps-plus-turkey-account h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  text-transform: uppercase;
}

.ps-plus-turkey-account p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #cbd6e8;
  line-height: 1.5;
}

.ps-plus-turkey-account .button {
  min-width: 220px;
}

/* Cart, account, admin */
.cart-page,
.account-page {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 34px auto 72px;
}

.cart-hero {
  min-height: 240px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 18px;
  align-items: start;
}

.cart-page-panel,
.cart-summary-panel,
.account-card {
  border: 1px solid rgba(166, 190, 222, 0.16);
  border-radius: 8px;
  background: rgba(13, 24, 40, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.cart-page-panel,
.cart-summary-panel,
.account-card {
  padding: 20px;
}

.cart-page-list,
.account-order-list,
.account-cart-list,
.admin-order-list {
  display: grid;
  gap: 12px;
}

.cart-page-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  min-height: 112px;
  padding: 10px;
  border: 1px solid rgba(166, 190, 222, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.cart-page-thumb {
  width: 92px;
  height: 92px;
  border-radius: 8px;
  background: #101a2b center / cover;
}

.cart-page-item h2,
.account-card h2 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}

.cart-page-item p,
.account-card p {
  color: #aebbd0;
}

.cart-page-item strong {
  color: #fff;
  font-size: 20px;
}

.cart-page-empty {
  display: grid;
  gap: 12px;
  justify-items: start;
  min-height: 260px;
  align-content: center;
  padding: 28px;
}

.cart-total-card {
  display: grid;
  gap: 8px;
  margin: 14px 0 18px;
  padding: 18px;
  border: 1px solid rgba(166, 190, 222, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(15, 31, 52, 0.96), rgba(8, 17, 31, 0.96));
}

.cart-total-card span {
  color: #aebbd0;
  font-size: 13px;
}

.cart-total-card strong {
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.checkout-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  resize: vertical;
}

.cart-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  border: 1px solid rgba(166, 190, 222, 0.18);
  border-radius: 8px;
  background: #0d1727;
  color: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  font-weight: 800;
}

.account-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
}

.profile-card {
  align-self: start;
}

.account-card:last-child {
  grid-column: 2;
}

.account-order,
.account-cart-row,
.admin-order-row {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(166, 190, 222, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.account-order {
  grid-template-columns: minmax(0, 1fr) auto;
}

.account-order p,
.account-order small,
.admin-order-row p,
.admin-order-row small {
  grid-column: 1 / -1;
  margin: 0;
  color: #aebbd0;
}

.account-order span,
.admin-order-row span {
  display: block;
  color: #aebbd0;
  font-size: 13px;
}

.account-cart-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.admin-body {
  background:
    linear-gradient(180deg, #02050a 0%, #07111f 46%, #040810 100%),
    var(--bg);
}

.admin-dashboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-stat-card {
  display: grid;
  gap: 6px;
  min-height: 104px;
  align-content: center;
  padding: 20px;
  border: 1px solid rgba(166, 190, 222, 0.16);
  border-radius: 8px;
  background: rgba(13, 24, 40, 0.92);
}

.admin-stat-card span {
  color: #aebbd0;
  font-size: 13px;
  font-weight: 800;
}

.admin-stat-card strong {
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.admin-workbench {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 20px;
}

.admin-orders-panel {
  position: static;
  max-height: none;
}

.admin-order-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-site-editor {
  align-self: stretch;
}

@media (max-width: 900px) {
  body:not(.home-page) .ps-plus-hero,
  .ps-plus-plans,
  .ps-plus-info-grid,
  .ps-plus-product-grid,
  .ps-plus-product-grid.compact,
  .ps-plus-product-grid.wallet,
  .ps-plus-turkey-account {
    grid-template-columns: 1fr;
  }

  .ps-plus-section-heading,
  .ps-plus-turkey-account {
    align-items: start;
  }

  .ps-plus-section-heading {
    display: grid;
  }

  .ps-plus-turkey-account .button {
    width: 100%;
    min-width: 0;
  }

  .ps-plus-logo-card {
    min-height: 180px;
  }

  .cart-layout,
  .account-grid,
  .admin-workbench {
    grid-template-columns: 1fr;
  }

  .account-card:last-child {
    grid-column: auto;
  }

  .admin-dashboard {
    grid-template-columns: 1fr;
  }

  .cart-page-item {
    grid-template-columns: 76px minmax(0, 1fr) auto;
  }

  .cart-page-thumb {
    width: 76px;
    height: 76px;
  }

  .cart-page-item .remove-item {
    grid-column: 3;
  }
}

@media (max-width: 520px) {
  .cart-page,
  .account-page {
    width: calc(100% - 36px);
  }

  .cart-page-item {
    grid-template-columns: 1fr auto;
  }

  .cart-page-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    grid-column: 1 / -1;
  }
}

/* Game detail overlay polish */
.game-page {
  margin-top: 0;
}

.game-page > .breadcrumb {
  position: relative;
  z-index: 18;
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto -58px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.game-page.gta6-page > .breadcrumb {
  margin-top: 0;
  margin-bottom: -58px;
  max-width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin-right: auto;
  margin-left: auto;
}

.game-page > .breadcrumb a {
  color: rgba(218, 237, 255, 0.94);
}

.game-page > .breadcrumb a + a::before,
.game-page > .breadcrumb strong::before {
  color: rgba(255, 255, 255, 0.62);
}

.game-page > .breadcrumb strong {
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.game-page > .game-detail-hero {
  margin-top: 0;
  padding-top: clamp(88px, 8vw, 126px);
}

body:not(.home-page) .game-page .buy-panel.inline-buy-panel,
.game-page .buy-panel.inline-buy-panel {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(3, 7, 18, 0.98) 0%, rgba(15, 23, 42, 0.96) 58%, rgba(55, 65, 81, 0.94) 100%),
    #05070d;
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.game-page .inline-buy-panel .price-stack div,
.game-page .inline-buy-panel .offer-option {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.game-page .inline-buy-panel .price-stack span,
.game-page .inline-buy-panel .offer-selector > span,
.game-page .inline-buy-panel .offer-option small {
  color: rgba(226, 232, 240, 0.78);
}

.game-page .inline-buy-panel .price-stack strong,
.game-page .inline-buy-panel .offer-option strong {
  color: #fff;
}

.game-page .inline-buy-panel .offer-option.active {
  border-color: rgba(96, 165, 250, 0.72);
  background: linear-gradient(135deg, rgba(0, 112, 208, 0.36), rgba(0, 112, 208, 0.18));
  box-shadow: inset 0 0 0 1px rgba(147, 197, 253, 0.16);
}

@media (max-width: 820px) {
  .game-page > .breadcrumb {
    width: calc(100% - 32px);
    margin-bottom: -50px;
    padding-top: 14px;
  }

  .game-page.gta6-page > .breadcrumb {
    margin-bottom: -50px;
  }

  .game-page > .game-detail-hero {
    padding-top: 78px;
  }
}

/* Unified adaptive header */
.site-header,
.home-page .site-header,
body:not(.home-page) .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  width: 100%;
  padding-inline: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.08);
  transform: translateY(0);
  transition: transform 260ms ease, box-shadow 180ms ease, background 180ms ease;
  will-change: transform;
  backdrop-filter: blur(20px);
}

body.has-fixed-header {
  padding-top: var(--site-header-height, 76px);
}

body.has-fixed-header.gta6-fixed-header-overlay {
  padding-top: 0;
}

.site-header.is-hidden,
.home-page .site-header.is-hidden,
body:not(.home-page) .site-header.is-hidden {
  transform: translateY(calc(-1 * var(--site-header-height, 76px)));
}

.site-header .brand,
.home-page .site-header .brand,
body:not(.home-page) .site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.site-header .brand-mark,
.home-page .site-header .brand-mark,
body:not(.home-page) .site-header .brand-mark,
.site-header .brand-mark svg,
.home-page .site-header .brand-mark svg,
body:not(.home-page) .site-header .brand-mark svg {
  width: 46px;
  height: 46px;
}

.site-header .brand-mark,
.home-page .site-header .brand-mark,
body:not(.home-page) .site-header .brand-mark {
  display: grid;
  place-items: center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-header .ps-store-wordmark,
.home-page .site-header .ps-store-wordmark,
body:not(.home-page) .site-header .ps-store-wordmark {
  display: block;
  width: 202px;
  max-width: 22vw;
  height: auto;
  margin-top: 8px;
  color: #111827;
  fill: currentColor;
}

.site-header .top-nav,
.home-page .site-header .top-nav,
body:not(.home-page) .site-header .top-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}

.site-header .top-nav a,
.home-page .site-header .top-nav a,
body:not(.home-page) .site-header .top-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 4px;
  border-radius: 0;
  background: transparent;
  color: #4b5563;
  font-size: 14px;
  font-weight: 750;
}

.site-header .top-nav a:hover,
.site-header .top-nav a.is-active,
.home-page .site-header .top-nav a:hover,
.home-page .site-header .top-nav a.is-active,
body:not(.home-page) .site-header .top-nav a:hover,
body:not(.home-page) .site-header .top-nav a.is-active {
  background: transparent;
  color: #0070d0;
}

.site-header .header-actions,
.home-page .site-header .header-actions,
body:not(.home-page) .site-header .header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 14px;
}

.site-header .header-icon-button,
.site-header .header-cart,
.site-header .login-button,
.home-page .site-header .header-icon-button,
.home-page .site-header .header-cart,
.home-page .site-header .login-button,
body:not(.home-page) .site-header .header-icon-button,
body:not(.home-page) .site-header .header-cart,
body:not(.home-page) .site-header .login-button {
  display: grid;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #111827;
  box-shadow: none;
  transition: background 160ms ease, color 160ms ease;
}

.site-header .header-icon-button:hover,
.site-header .header-cart:hover,
.site-header .login-button:hover,
.home-page .site-header .header-icon-button:hover,
.home-page .site-header .header-cart:hover,
.home-page .site-header .login-button:hover,
body:not(.home-page) .site-header .header-icon-button:hover,
body:not(.home-page) .site-header .header-cart:hover,
body:not(.home-page) .site-header .login-button:hover {
  background: rgba(0, 112, 208, 0.08);
  color: #0070d0;
}

.site-header .header-icon-button svg,
.site-header .header-cart svg,
.site-header .login-button svg,
.home-page .site-header .header-icon-button svg,
.home-page .site-header .header-cart svg,
.home-page .site-header .login-button svg,
body:not(.home-page) .site-header .header-icon-button svg,
body:not(.home-page) .site-header .header-cart svg,
body:not(.home-page) .site-header .login-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.site-header .login-button,
.home-page .site-header .login-button,
body:not(.home-page) .site-header .login-button {
  display: grid;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  color: #111827;
  font-size: 0;
  font-weight: 850;
  box-shadow: none;
}

.site-header .login-button svg,
.home-page .site-header .login-button svg,
body:not(.home-page) .site-header .login-button svg {
  width: 22px;
  height: 22px;
  fill: none;
}

.site-header .login-button svg path,
.home-page .site-header .login-button svg path,
body:not(.home-page) .site-header .login-button svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header .login-button:not(:has(svg))::before,
.home-page .site-header .login-button:not(:has(svg))::before,
body:not(.home-page) .site-header .login-button:not(:has(svg))::before {
  content: "";
  width: 22px;
  height: 22px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 11.25a3.75 3.75 0 1 0 0-7.5 3.75 3.75 0 0 0 0 7.5Z'/%3E%3Cpath d='M4.75 20.25c.62-3.7 3.36-5.75 7.25-5.75s6.63 2.05 7.25 5.75'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 11.25a3.75 3.75 0 1 0 0-7.5 3.75 3.75 0 0 0 0 7.5Z'/%3E%3Cpath d='M4.75 20.25c.62-3.7 3.36-5.75 7.25-5.75s6.63 2.05 7.25 5.75'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-header .login-button span,
.home-page .site-header .login-button span,
body:not(.home-page) .site-header .login-button span {
  display: none;
}

@media (max-width: 1180px) and (min-width: 761px) {
  .site-header,
  .home-page .site-header,
  body:not(.home-page) .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-header .top-nav,
  .home-page .site-header .top-nav,
  body:not(.home-page) .site-header .top-nav {
    order: initial;
    grid-column: auto;
    justify-content: center;
    gap: 12px;
    overflow: visible;
    padding-bottom: 0;
  }
}

@media (max-width: 760px) {
  .site-header,
  .home-page .site-header,
  body:not(.home-page) .site-header {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 64px;
    padding: 10px 12px;
  }

  .site-header .header-actions,
  .home-page .site-header .header-actions,
  body:not(.home-page) .site-header .header-actions {
    display: contents;
  }

  .site-header .login-button,
  .home-page .site-header .login-button,
  body:not(.home-page) .site-header .login-button {
    order: 1;
  }

  .site-header .header-icon-button[href$="catalog.html"],
  .home-page .site-header .header-icon-button[href$="catalog.html"],
  body:not(.home-page) .site-header .header-icon-button[href$="catalog.html"] {
    order: 2;
  }

  .site-header .brand,
  .home-page .site-header .brand,
  body:not(.home-page) .site-header .brand {
    order: 3;
    flex: 0 0 auto;
    justify-content: center;
    min-width: 0;
    gap: 0;
  }

  .site-header .header-icon-button[href*="popular"],
  .home-page .site-header .header-icon-button[href*="popular"],
  body:not(.home-page) .site-header .header-icon-button[href*="popular"] {
    order: 4;
  }

  .site-header .header-cart,
  .home-page .site-header .header-cart,
  body:not(.home-page) .site-header .header-cart {
    order: 5;
  }

  .site-header .brand-mark,
  .site-header .brand-mark svg,
  .site-header .header-icon-button,
  .site-header .header-cart,
  .site-header .login-button,
  .home-page .site-header .brand-mark,
  .home-page .site-header .brand-mark svg,
  .home-page .site-header .header-icon-button,
  .home-page .site-header .header-cart,
  .home-page .site-header .login-button,
  body:not(.home-page) .site-header .brand-mark,
  body:not(.home-page) .site-header .brand-mark svg,
  body:not(.home-page) .site-header .header-icon-button,
  body:not(.home-page) .site-header .header-cart,
  body:not(.home-page) .site-header .login-button {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .site-header .ps-store-wordmark,
  .site-header .top-nav,
  .home-page .site-header .ps-store-wordmark,
  .home-page .site-header .top-nav,
  body:not(.home-page) .site-header .ps-store-wordmark,
  body:not(.home-page) .site-header .top-nav {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .home-page .site-header,
  body:not(.home-page) .site-header {
    transition: none;
  }
}

/* GTA VI edition selector redesign */
.gta6-scroll-cinema {
  --gta6-copy-opacity: 0;
  --gta6-progress-opacity: 0;
}

.gta6-scroll-cinema-progress {
  opacity: var(--gta6-progress-opacity);
  transition: opacity 120ms linear;
}

.gta6-special-section {
  left: 50%;
  width: 100vw;
  max-width: none;
  min-height: 100vh;
  margin-left: -50vw;
  padding: clamp(10px, 1.4vw, 18px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 72% 12%, rgba(151, 70, 133, 0.18), transparent 36%),
    linear-gradient(110deg, #100b19 0%, #0c0914 48%, #090711 100%);
  color: #fff;
}

.gta6-special-section::before,
.gta6-special-section::after {
  display: none;
}

.gta6-special-section > * {
  position: relative;
  z-index: 1;
}

.gta6-edition-layout {
  display: grid;
  grid-template-columns: minmax(380px, 548px) minmax(0, 1fr);
  gap: clamp(28px, 4.6vw, 90px);
  align-items: stretch;
  min-height: calc(100vh - clamp(20px, 2.8vw, 36px));
}

.gta6-edition-copy {
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: calc(100vh - clamp(20px, 2.8vw, 36px));
  padding: clamp(24px, 2.8vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(255, 198, 227, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(125, 72, 120, 0.98), rgba(100, 54, 103, 0.98)),
    #71426f;
  box-shadow: 0 30px 88px rgba(3, 2, 8, 0.48);
}

.gta6-special-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 42px;
}

.gta6-vi-mark {
  display: block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 950;
  line-height: 1;
}

.gta6-special-head .eyebrow {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 238, 246, 0.88);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.gta6-special-head .eyebrow::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 238, 246, 0.72);
  content: "";
  transform: translateY(-50%);
}

.gta6-special-head h2 {
  margin: 0;
  color: #fff;
  font-size: 0;
}

.gta6-edition-title {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 920;
  line-height: 1.1;
}

.gta6-edition-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gta6-edition-tab {
  display: grid;
  gap: 10px;
  min-height: 138px;
  padding: 22px 20px;
  border: 1px solid rgba(255, 216, 238, 0.26);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-align: left;
  box-shadow: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.gta6-edition-tab strong {
  color: inherit;
  font-size: clamp(19px, 1.35vw, 24px);
  font-weight: 920;
  line-height: 1.05;
}

.gta6-edition-tab span {
  color: rgba(255, 235, 247, 0.86);
  font-size: 15px;
  font-weight: 720;
  line-height: 1.28;
}

.gta6-edition-tab.active {
  border-color: transparent;
  background: #fffafc;
  color: #372140;
  box-shadow: 0 18px 42px rgba(26, 7, 34, 0.2);
}

.gta6-edition-tab.active span {
  color: #855283;
}

.gta6-edition-description,
.gta6-story {
  max-width: 96%;
  margin: 0;
  color: rgba(255, 238, 247, 0.84);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.48;
}

.gta6-story {
  display: none;
}

.gta6-content {
  display: grid;
  gap: 14px;
}

.gta6-content h3 {
  margin: 22px 0 4px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.gta6-content-list {
  display: grid;
  gap: 8px;
}

.gta6-content-item {
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: rgba(143, 82, 139, 0.72);
  color: #fff;
}

.gta6-content-item.active {
  background: #fffafc;
  color: #11121d;
}

.gta6-content-trigger {
  min-height: 76px;
  padding: 18px 26px;
  color: inherit;
}

.gta6-content-trigger span {
  gap: 10px;
  font-size: 19px;
  font-weight: 920;
  line-height: 1.15;
}

.gta6-content-trigger em {
  padding: 7px 8px;
  border-radius: 4px;
  background: #ffd4df;
  color: #50284f;
  font-size: 11px;
  font-weight: 950;
}

.gta6-content-item:not(.active) .gta6-content-trigger em {
  background: rgba(255, 211, 224, 0.9);
}

.gta6-content-trigger svg {
  color: currentColor;
}

.gta6-content-panel {
  padding: 0 26px 26px;
}

.gta6-content-panel p {
  margin: 0;
  color: #11121d;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.34;
}

.gta6-content-item:not(.active) .gta6-content-panel p {
  color: rgba(255, 238, 247, 0.84);
}

.gta6-panel-media {
  display: none;
}

.gta6-preorder-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  margin: auto clamp(6px, 1.4vw, 30px) 0;
  padding: 0 28px;
  border-radius: 999px;
  background: #ffd19f;
  color: #17101a;
  font-size: 20px;
  font-weight: 950;
  text-align: center;
  box-shadow: 0 18px 42px rgba(31, 9, 28, 0.24);
}

.gta6-preorder-button:hover {
  background: #ffdcaf;
}

.gta6-edition-gallery {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  min-width: 0;
  min-height: calc(100vh - clamp(20px, 2.8vw, 36px));
  padding: clamp(26px, 4vw, 58px) clamp(8px, 2vw, 24px) clamp(18px, 2vw, 28px);
}

.gta6-gallery-close {
  position: absolute;
  top: clamp(12px, 2.2vw, 34px);
  right: clamp(12px, 2.2vw, 34px);
  z-index: 2;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 999px;
  background: rgba(104, 55, 112, 0.72);
  color: #ffdbe7;
  font-size: 34px;
  font-weight: 360;
  line-height: 1;
  text-decoration: none;
}

.gta6-gallery-close:hover {
  background: rgba(127, 68, 136, 0.9);
}

.gta6-edition-gallery h3 {
  align-self: start;
  margin: 0 0 clamp(24px, 5vh, 74px);
  color: #ffdbe5;
  font-size: clamp(30px, 3.2vw, 56px);
  font-weight: 950;
  line-height: 1.04;
  text-align: center;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.58);
}

.gta6-gallery-main {
  display: block;
  width: min(100%, 1220px);
  align-self: center;
  justify-self: center;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  aspect-ratio: 16 / 9;
  cursor: zoom-in;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.44);
}

.gta6-gallery-main:disabled {
  cursor: default;
}

.gta6-gallery-main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gta6-gallery-thumb-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  margin-top: clamp(26px, 7vh, 78px);
  overflow-x: auto;
  padding: 4px 4px 10px;
  scrollbar-width: thin;
}

.gta6-gallery-thumb {
  position: relative;
  display: block;
  width: clamp(118px, 10vw, 176px);
  min-width: clamp(118px, 10vw, 176px);
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  aspect-ratio: 16 / 9;
  cursor: pointer;
  opacity: 0.78;
  transition: border-color 140ms ease, opacity 140ms ease, transform 140ms ease;
}

.gta6-gallery-thumb:hover,
.gta6-gallery-thumb.active {
  border-color: #fff6ff;
  opacity: 1;
  transform: translateY(-2px);
}

.gta6-gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1080px) {
  .gta6-edition-layout {
    grid-template-columns: 1fr;
  }

  .gta6-edition-copy,
  .gta6-edition-gallery {
    min-height: auto;
  }

  .gta6-edition-copy {
    overflow: visible;
  }

  .gta6-preorder-button {
    margin-top: 10px;
  }
}

@media (max-width: 640px) {
  .gta6-special-section {
    padding: 8px;
  }

  .gta6-edition-copy {
    padding: 22px 18px;
    border-radius: 12px;
  }

  .gta6-special-head {
    margin-bottom: 24px;
  }

  .gta6-edition-tabs {
    grid-template-columns: 1fr;
  }

  .gta6-edition-tab {
    min-height: 106px;
  }

  .gta6-content-trigger {
    min-height: 64px;
    padding: 15px 18px;
  }

  .gta6-content-panel {
    padding: 0 18px 20px;
  }

  .gta6-preorder-button {
    min-height: 60px;
    margin-right: 0;
    margin-left: 0;
  }

  .gta6-edition-gallery {
    padding: 24px 0 12px;
  }

  .gta6-gallery-close {
    width: 44px;
    height: 44px;
    font-size: 26px;
  }

  .gta6-edition-gallery h3 {
    margin-bottom: 22px;
    font-size: 30px;
  }

  .gta6-gallery-thumb-row {
    justify-content: flex-start;
    margin-top: 18px;
  }
}

@font-face {
  font-family: "Helvetica Now Text";
  src: url("assets/HelveticaNowText.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* GTA VI final layout overrides */
.foundry_nu8bkp3:lang(ru),
.foundry_nu8bkp3:lang(pl),
.gta6-page,
.home-page .gta-slide {
  --foundry_nu8bkp0: "Helvetica Now Text", "Helvetica Neue LT W1G", "Helvetica Neue", Arial, sans-serif;
  --foundry_nu8bkp1: "Helvetica Now Text", "Helvetica Neue LT W1G", "Helvetica Neue", Arial, sans-serif;
  --foundry_nu8bkp2: Consolas, "Courier New", monospace;
}

.gta6-page,
.gta6-page .gta6-scroll-cinema,
.gta6-page .gta6-special-section,
.home-page .gta-slide,
.home-page .gta-slide .home-hero-copy-block {
  font-family: var(--foundry_nu8bkp0);
}

.gta6-scroll-cinema {
  --gta6-story-progress: 0;
  --gta6-story-y: 58px;
}

.gta6-scroll-cinema-story {
  position: absolute;
  bottom: clamp(76px, 12vh, 154px);
  left: max(24px, calc((100vw - var(--page-max)) / 2 + var(--page-gutter)));
  z-index: 3;
  display: grid;
  gap: clamp(16px, 2vw, 26px);
  width: min(920px, calc(100vw - 48px));
  color: #fff;
  opacity: var(--gta6-story-progress);
  pointer-events: none;
  text-shadow: 0 22px 72px rgba(0, 0, 0, 0.82);
  transform: translate3d(0, var(--gta6-story-y), 0);
}

.gta6-scroll-cinema-story strong {
  max-width: 760px;
  color: #fff;
  font-size: clamp(40px, 7vw, 116px);
  font-weight: 950;
  line-height: 0.88;
}

.gta6-scroll-cinema-story p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 760;
  line-height: 1.28;
}

.gta6-scroll-cinema[data-gta6-scene="raul"] .gta6-scroll-cinema-copy,
.gta6-scroll-cinema[data-gta6-scene="raul"] .gta6-scroll-cinema-card,
.gta6-scroll-cinema[data-gta6-scene="raul"] .gta6-scroll-cinema-progress {
  display: none;
}

.gta6-special-section {
  left: auto;
  width: auto;
  max-width: none;
  min-height: 180svh;
  margin-inline: calc(50% - 50vw);
  padding: 12px;
  overflow: clip;
}

.gta6-edition-layout {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(318px, 440px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 58px);
  align-items: stretch;
  height: 100svh;
  min-height: 620px;
}

.gta6-edition-copy {
  gap: 14px;
  min-height: 0;
  height: calc(100svh - 24px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(18px, 2vw, 28px);
  scrollbar-width: thin;
}

.gta6-special-head {
  gap: 14px;
  margin: 0 0 14px;
}

.gta6-vi-mark {
  display: grid;
  width: clamp(50px, 4.8vw, 64px);
  height: clamp(50px, 4.8vw, 64px);
  flex: 0 0 clamp(50px, 4.8vw, 64px);
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(255, 238, 247, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0;
  line-height: 0;
}

.gta6-vi-mark svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.gta6-special-head .eyebrow {
  font-size: 16px;
}

.gta6-edition-title {
  font-size: clamp(20px, 1.6vw, 26px);
}

.gta6-edition-tab {
  min-height: 96px;
  padding: 16px;
}

.gta6-edition-tab strong {
  font-size: clamp(17px, 1.18vw, 22px);
}

.gta6-edition-tab span {
  font-size: 14px;
}

.gta6-edition-description,
.gta6-story {
  font-size: 15px;
  line-height: 1.4;
}

.gta6-content {
  gap: 10px;
}

.gta6-content h3 {
  margin: 8px 0 0;
  font-size: 18px;
}

.gta6-content-list {
  gap: 7px;
}

.gta6-content-trigger {
  min-height: 54px;
  padding: 12px 16px;
}

.gta6-content-trigger span {
  gap: 8px;
  font-size: 16px;
}

.gta6-content-trigger em {
  padding: 5px 7px;
  font-size: 10px;
}

.gta6-content-panel {
  padding: 0 16px 16px;
}

.gta6-content-panel p {
  font-size: 15px;
  line-height: 1.34;
}

.gta6-preorder-button {
  position: sticky;
  bottom: 0;
  min-height: 56px;
  margin: 4px 0 0;
  font-size: 17px;
}

.gta6-edition-gallery {
  min-height: 0;
  height: calc(100svh - 24px);
  padding: clamp(18px, 3vw, 42px) clamp(6px, 1.5vw, 18px);
}

.gta6-gallery-close {
  display: none;
}

.gta6-edition-gallery h3 {
  margin-bottom: clamp(16px, 3vh, 42px);
}

.gta6-gallery-thumb-row {
  margin-top: clamp(18px, 4vh, 42px);
}

@media (max-width: 900px) {
  .gta6-special-section {
    min-height: auto;
    padding: 0;
    overflow: hidden;
  }

  .gta6-edition-layout {
    position: static;
    display: block;
    height: auto;
    min-height: 0;
  }

  .gta6-edition-copy {
    height: auto;
    min-height: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    padding: clamp(22px, 6vw, 38px);
    background:
      linear-gradient(180deg, rgba(129, 73, 124, 0.98), rgba(90, 48, 93, 0.98)),
      #71426f;
  }

  .gta6-edition-gallery {
    display: none;
  }

  .gta6-special-head {
    margin-bottom: 20px;
  }

  .gta6-edition-tabs {
    grid-template-columns: 1fr;
  }

  .gta6-content-list {
    gap: 18px;
  }

  .gta6-content-item {
    border-radius: 22px;
    background: rgba(143, 82, 139, 0.82);
  }

  .gta6-content-trigger {
    min-height: 74px;
    padding: 20px 24px;
  }

  .gta6-content-trigger span {
    font-size: clamp(25px, 6vw, 42px);
    line-height: 1.08;
  }

  .gta6-content-panel {
    padding: 0 clamp(20px, 5.2vw, 58px) clamp(24px, 5.6vw, 58px);
  }

  .gta6-content-panel p {
    font-size: clamp(22px, 4.8vw, 34px);
    line-height: 1.32;
  }

  .gta6-panel-media {
    display: grid;
    gap: 18px;
    margin-top: clamp(24px, 6vw, 52px);
  }

  .gta6-panel-image {
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    aspect-ratio: 16 / 9;
    box-shadow: none;
  }

  .gta6-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gta6-thumb-row {
    display: flex;
    gap: clamp(14px, 3.4vw, 24px);
    overflow-x: auto;
    padding: 0 0 8px;
    scrollbar-width: thin;
  }

  .gta6-thumb {
    width: min(82vw, 520px);
    min-width: min(82vw, 520px);
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    aspect-ratio: 16 / 9;
  }

  .gta6-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 820px) {
  .gta6-scroll-cinema-story {
    top: auto;
    right: 22px;
    bottom: clamp(76px, 12vh, 118px);
    left: 22px;
    width: auto;
  }

  .gta6-scroll-cinema-story strong {
    font-size: clamp(34px, 12vw, 74px);
  }

  .gta6-scroll-cinema-story p {
    font-size: clamp(16px, 4.6vw, 22px);
  }
}

@media (max-width: 820px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-index {
    position: static;
  }

  .legal-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cookie-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .cookie-consent-panel {
    grid-template-columns: 1fr;
    max-height: calc(100svh - 20px);
    overflow-y: auto;
  }

  .cookie-consent-settings {
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .cookie-consent-actions .button {
    width: 100%;
  }
}

body .cookie-consent .cookie-consent-actions .button.primary,
body .cookie-consent .cookie-consent-actions .button.primary:hover,
body .cookie-consent .cookie-consent-actions .button.primary:focus,
body .cookie-consent .cookie-consent-actions .button.primary:active {
  border: 1px solid #0070d0;
  background: #0070d0;
  background-image: none;
  color: #fff;
}

body .cookie-consent .cookie-consent-actions .button.ghost,
body .cookie-consent .cookie-consent-actions .button.ghost:hover,
body .cookie-consent .cookie-consent-actions .button.ghost:focus,
body .cookie-con sent .cookie-consent-actions .button.ghost:active {
  border: 1px solid rgba(0, 112, 208, 0.28);
  background: #fff;
  background-image: none;
  color: #000;
}

body .cookie-consent .cookie-consent-actions .button[hidden] {
  display: none !important;
}
