/* ============================================
   SINGLE GAME PAGE — DESKTOP LAYOUT
   Базовые токены и шрифты берутся из base.css
   ============================================ */

/* ===== SCREENSHOT LIGHTBOX ===== */
.ss-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  background: rgba(5,7,12,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: ss-lb-fade .15s ease-out;
}
.ss-lightbox.open { display: flex; }
@keyframes ss-lb-fade { from { opacity: 0; } to { opacity: 1; } }
.ss-lb-img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.08);
  user-select: none; pointer-events: none;
  animation: ss-lb-zoom .2s ease-out;
}
@keyframes ss-lb-zoom { from { transform: scale(0.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.ss-lb-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, transform .15s;
  font-family: inherit;
}
.ss-lb-close:hover { background: rgba(255,255,255,0.18); transform: rotate(90deg); }
.ss-lb-close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.ss-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, transform .15s;
  font-family: inherit;
}
.ss-lb-nav:hover { background: rgba(255,255,255,0.18); }
.ss-lb-nav.prev { left: 24px; }
.ss-lb-nav.next { right: 24px; }
.ss-lb-nav.prev:hover { transform: translateY(-50%) translateX(-2px); }
.ss-lb-nav.next:hover { transform: translateY(-50%) translateX(2px); }
.ss-lb-nav svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.ss-lb-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  padding: 8px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  pointer-events: none;
}
@media (max-width: 760px) {
  .ss-lightbox { padding: 16px; }
  .ss-lb-nav.prev { left: 8px; }
  .ss-lb-nav.next { right: 8px; }
  .ss-lb-nav { width: 44px; height: 44px; }
  .ss-lb-close { top: 12px; right: 12px; }
}

/* ===== BREADCRUMBS ===== */
.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 28px 0 24px;
}
.crumbs a { color: var(--text-muted); transition: color .2s; }
.crumbs a:hover { color: var(--text); }
.crumbs svg { width: 14px; height: 14px; stroke-width: 2; flex-shrink: 0; }
.crumbs span { color: var(--text-dim); }

/* ===== PRODUCT 3-COLUMN GRID ===== */
.product {
  display: grid;
  grid-template-columns: 300px 1fr 360px;
  gap: 40px;
  padding-top: 4px;
}

/* --- Cover column --- */
.cover-col .cover {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  background-size: cover;
  background-position: center;
  background-color: var(--bg-elevated);
  border: 1px solid var(--border-strong);
}
.cover-col .platforms {
  position: absolute;
  bottom: 12px; left: 12px;
  display: flex; gap: 6px;
  z-index: 2;
}
.pl-badge {
  padding: 5px 10px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

/* --- Info column --- */
.info-col h1 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-bottom: 8px;
}
.edition-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 20px;
}
.stats-bar {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 26px;
}
.stats-bar .seg {
  flex: 1;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
}
.stats-bar .seg + .seg { border-left: 1px solid rgba(255,255,255,0.06); }
.stats-bar .seg .n {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stats-bar .seg .n.gold { color: var(--gold-bright); }
.stats-bar .seg .l {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-list .row .lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.info-list .row .val {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

/* --- Price column --- */
.price-col {
  align-self: start;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.price-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-top-color: rgba(255,255,255,0.18);
  border-radius: var(--radius-xl);
  padding: 24px 26px;
}

/* PS Plus toggle */
.psplus-toggle {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: linear-gradient(160deg, rgba(255,255,255,0.065) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.005) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-top-color: rgba(255,255,255,0.18);
  border-bottom-color: rgba(0,0,0,0.3);
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow:
    0 4px 16px rgba(0,0,0,0.25),
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 -1px 0 rgba(0,0,0,0.12) inset;
}
.psplus-opt {
  flex: 1;
  padding: 9px 10px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all .25s;
  text-align: center;
}
.psplus-opt:hover { color: var(--text); }
.psplus-toggle.ps .psplus-opt.active {
  background: linear-gradient(135deg, #ffcc00 0%, #e8a800 100%);
  color: #0a0c12;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(255,204,0,0.25);
}
.psplus-toggle.ea .psplus-opt.active {
  background: linear-gradient(135deg, #ff4654 0%, #d63445 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(255,70,84,0.3);
}

/* Sale countdown timer */
.sale-timer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(122,88,203,0.14) 0%, rgba(26,148,255,0.10) 100%);
  border: 1px solid rgba(122,88,203,0.32);
  border-top-color: rgba(122,88,203,0.55);
  border-radius: 12px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.sale-timer::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(26,148,255,0.18), transparent 70%);
  pointer-events: none;
}
.sale-timer .st-ic {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7a58cb 0%, #1a94ff 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(122,88,203,0.4);
}
.sale-timer .st-ic svg { width: 18px; height: 18px; color: #fff; }
.sale-timer .st-text {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  line-height: 1.25;
}
.sale-timer .st-vals {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.sale-timer .st-unit {
  text-align: center;
  background: rgba(0,0,0,0.32);
  border-radius: 8px;
  padding: 6px 10px 4px;
  min-width: 48px;
}
.sale-timer .st-num {
  font-family: 'Geist', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  font-feature-settings: "tnum";
}
.sale-timer .st-lbl {
  font-size: 8px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-top: 3px;
}

/* Price row */
.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.price-unavailable {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}
.price-now {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-feature-settings: "tnum";
  line-height: 1;
}
.price-now .currency { margin-left: 3px; }
.price-discount {
  display: inline-flex; align-items: center;
  padding: 5px 9px;
  background: rgba(74,124,255,0.18);
  color: var(--blue-bright);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}
.price-was {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: line-through;
  width: 100%;
  margin-top: -6px;
}

/* CTA buttons */
.price-ctas {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.price-ctas .fav-btn {
  flex: 0 0 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: all .2s;
}
.price-ctas .fav-btn:hover { color: #ff7878; border-color: rgba(255,120,120,0.35); background: rgba(255,120,120,0.06); }
.price-ctas .fav-btn svg { width: 22px; height: 22px; }
.price-ctas .fav-btn.is-active {
  color: #ff7878;
  border-color: rgba(255,120,120,0.5);
  background: rgba(255,120,120,0.12);
}
.price-ctas .fav-btn.is-active svg { fill: currentColor; }
.price-ctas .fav-btn.is-loading { opacity: 0.7; cursor: progress; }
.price-ctas .cart-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 22px;
  background: linear-gradient(135deg, #7a5dff 0%, #4a7cff 100%);
  color: #fff;
  font-family: inherit; font-size: 14px; font-weight: 700;
  border: none; border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(122,93,255,0.3);
  transition: all .15s;
}
.price-ctas .cart-btn:hover { transform: translateY(-1px); box-shadow: 0 14px 36px rgba(122,93,255,0.45); }
.price-ctas .cart-btn svg { width: 18px; height: 18px; }
.price-ctas .fav-btn[disabled],
.price-ctas .fav-btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
}
.price-ctas .fav-btn[disabled]:hover,
.price-ctas .fav-btn[aria-disabled="true"]:hover {
  color: rgba(255,255,255,0.55);
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}
.price-ctas .cart-btn[disabled],
.price-ctas .cart-btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
}
.price-ctas .cart-btn[disabled]:hover,
.price-ctas .cart-btn[aria-disabled="true"]:hover {
  transform: none;
  box-shadow: none;
}
.price-ctas .cart-btn.is-loading {
  opacity: 0.7;
  cursor: progress;
}
.price-ctas .cart-btn.is-loading:hover {
  transform: none;
}
.price-ctas .cart-btn.is-added {
  background: linear-gradient(135deg, #3ddc84 0%, #2bb46c 100%);
  box-shadow: 0 10px 30px rgba(61,220,132,0.3);
}
.price-ctas .cart-btn.is-added:hover {
  box-shadow: 0 14px 36px rgba(61,220,132,0.45);
}

/* Subscription banners */
.sub-banner {
  display: flex; align-items: center; gap: 14px;
  margin-top: 12px;
  padding: 14px 16px;
  min-height: 76px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .15s;
}
.sub-banner:active { transform: scale(0.98); }
.sub-banner.ps {
  border: 1px solid rgba(245,197,24,0.22);
  box-shadow:
    0 0 16px rgba(245,197,24,0.08),
    0 0 4px rgba(245,197,24,0.12),
    0 4px 16px rgba(0,0,0,0.25),
    inset 0 0 20px rgba(245,197,24,0.03);
  animation: psplusPulse 3s ease-in-out infinite alternate;
}
@keyframes psplusPulse {
  0%   { box-shadow: 0 0 16px rgba(245,197,24,0.06), 0 0 4px rgba(245,197,24,0.10), 0 4px 16px rgba(0,0,0,0.25), inset 0 0 20px rgba(245,197,24,0.02); }
  100% { box-shadow: 0 0 24px rgba(245,197,24,0.14), 0 0 8px rgba(245,197,24,0.20), 0 4px 16px rgba(0,0,0,0.25), inset 0 0 30px rgba(245,197,24,0.05); }
}
.sub-banner.ps .ttl span { color: #f5c518; font-weight: 800; }
.sub-banner.ps .arrow { background: rgba(245,197,24,0.10); border-color: rgba(245,197,24,0.22); color: #f5c518; }
.sub-banner.ea {
  border: 1px solid rgba(255,70,84,0.24);
  box-shadow:
    0 0 16px rgba(255,70,84,0.08),
    0 0 4px rgba(255,70,84,0.12),
    0 4px 16px rgba(0,0,0,0.25),
    inset 0 0 20px rgba(255,70,84,0.03);
  animation: eaplayPulse 3s ease-in-out infinite alternate;
}
@keyframes eaplayPulse {
  0%   { box-shadow: 0 0 16px rgba(255,70,84,0.06), 0 0 4px rgba(255,70,84,0.10), 0 4px 16px rgba(0,0,0,0.25), inset 0 0 20px rgba(255,70,84,0.02); }
  100% { box-shadow: 0 0 24px rgba(255,70,84,0.16), 0 0 8px rgba(255,70,84,0.22), 0 4px 16px rgba(0,0,0,0.25), inset 0 0 30px rgba(255,70,84,0.05); }
}
.sub-banner.ea .ttl span { color: #ff4654; font-weight: 800; }
.sub-banner.ea .arrow { background: rgba(255,70,84,0.10); border-color: rgba(255,70,84,0.22); color: #ff4654; }
.sub-banner .icn {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
.sub-banner .icn img { width: 44px; height: 44px; object-fit: contain; display: block; border-radius: 10px; }
.sub-banner .body { flex: 1; min-width: 0; }
.sub-banner .ttl { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sub-banner .sub { font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 500; margin-top: 2px; }
.sub-banner .arrow {
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .15s;
}
.sub-banner .arrow svg { width: 16px; height: 16px; stroke-width: 2.5; }
.sub-banner:hover .arrow { transform: translateX(2px); }

/* ===== EDITIONS STRIP ===== */
.editions-strip {
  margin-top: 32px;
  display: flex;
  align-items: stretch;
  gap: 10px;
  position: relative;
  z-index: 20;
}
.ed-track {
  flex: 1;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  /* Strictly hidden on Y: source .ed-contents-tip sits absolute-positioned below
     each .ed-card and would otherwise grow scrollHeight. Floating tooltip clone
     (.ed-contents-tip.is-floating, position:fixed appended to <body>) is
     unaffected by this clip. With overflow-x:auto and overflow-y:visible,
     browsers compute visible → auto on the other axis — that was the bug. */
  overflow-y: hidden;
  scrollbar-width: none;
  min-width: 0;
  touch-action: pan-x;
  overscroll-behavior-inline: contain;
}
.ed-track::-webkit-scrollbar { display: none; }
.ed-arrow {
  width: 38px;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: 14px;
  background: rgba(14,18,30,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: all .15s;
}
.ed-arrow:hover:not(:disabled) { color: #fff; background: rgba(14,18,30,0.85); border-color: rgba(255,255,255,0.2); }
.ed-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.ed-arrow svg { width: 16px; height: 16px; }
.editions-strip .ed-arrow.is-hidden { display: none; }
.ed-card {
  flex: 0 0 calc((100% - 28px) / 3);
  min-width: 260px;
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px;
  background: linear-gradient(160deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.005) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none; color: inherit;
  position: relative;
}
.ed-card:hover { border-color: var(--gold); }
.ed-card.selected {
  border-color: #7a5dff;
  background: linear-gradient(160deg, rgba(122,93,255,0.12) 0%, rgba(74,124,255,0.04) 100%);
  box-shadow: 0 0 0 1px rgba(122,93,255,0.4), 0 10px 30px rgba(122,93,255,0.15);
  z-index: 30;
}
.ed-thumb {
  width: 78px; height: 106px; border-radius: 8px;
  background-size: cover; background-position: center;
  background-color: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
  transition: transform .4s cubic-bezier(0.2, 0.8, 0.25, 1);
}
.ed-card:hover .ed-thumb { transform: scale(1.08) rotate(-1deg); }
.ed-body { flex: 1; min-width: 0; }
.ed-name { font-size: 16px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 6px; }
.ed-price-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.ed-price { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }
.ed-price .currency { margin-left: 2px; }
.ed-badge { padding: 3px 7px; border-radius: 5px; font-size: 11px; font-weight: 700; background: rgba(122,93,255,0.2); color: #a78bfa; }

/* Edition contents tooltip */
.ed-contents-wrap {
  position: relative;
  display: inline-block;
  z-index: 40;
}
.ed-contents-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px 4px 4px;
  font-family: inherit;
  font-size: 11px; font-weight: 600;
  color: var(--text);
  background: rgba(74,124,255,0.1);
  border: 1px solid rgba(74,124,255,0.3);
  border-radius: 8px;
  cursor: help;
  transition: background .15s;
}
.ed-contents-btn:hover { background: rgba(74,124,255,0.2); }
.ed-contents-btn .i {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 900; line-height: 1;
  flex-shrink: 0;
}
.ed-contents-tip {
  position: absolute;
  left: 50%; top: calc(100% + 10px);
  transform: translate(-50%, 8px);
  width: 240px;
  padding: 12px 14px;
  background: rgba(14,18,30,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 13px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  font-size: 11px; line-height: 1.5;
  color: var(--text);
  opacity: 0; pointer-events: none;
  transition: opacity .15s, transform .15s;
  z-index: 1200;
}
.ed-contents-tip::after {
  content: '';
  position: absolute;
  left: 50%; top: -6px;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: rgba(14,18,30,0.96);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-left: 1px solid rgba(255,255,255,0.12);
}
.ed-contents-tip strong {
  display: block;
  color: var(--gold-bright);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  font-weight: 700;
}
.ed-contents-tip ul { list-style: none; }
.ed-contents-tip li {
  padding: 3px 0 3px 12px;
  position: relative;
  color: var(--text-muted);
}
.ed-contents-tip li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-bright);
  opacity: 0.6;
}
.ed-contents-wrap:hover .ed-contents-tip,
.ed-contents-wrap:focus-within .ed-contents-tip {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
}
.ed-contents-tip.is-floating {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%);
  z-index: 3000;
}
.ed-contents-tip.is-floating.is-above::after {
  top: auto;
  bottom: -6px;
  border-top: 0;
  border-left: 0;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* ===== SCREENSHOTS ===== */
.screenshots-section {
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.screenshots-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.screenshots-head h2 {
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
}
.screenshots-arrows { display: flex; gap: 8px; }
.ss-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  cursor: pointer; transition: all .2s;
}
.ss-arrow:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.2); }
.ss-arrow:disabled { opacity: 0.35; cursor: not-allowed; }
.ss-arrow svg { width: 16px; height: 16px; }
.screenshots-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding-top: 6px;
  padding-bottom: 4px;
}
.screenshots-track::-webkit-scrollbar { display: none; }
.ss-item {
  flex: 0 0 calc((100% - 32px) / 3);
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover; background-position: center 35%;
  background-color: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.06);
  cursor: zoom-in;
  scroll-snap-align: start;
  transition: transform .2s, border-color .2s;
}
.ss-item:hover { transform: scale(1.02); border-color: rgba(255,255,255,0.2); }

/* ===== DESCRIPTION + INFO GRID ===== */
.details-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  padding: 48px 0 16px;
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 16px;
}
.details-section h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.description-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 640px;
}
.description-text p { margin-top: 14px; }
.description-text p:first-child { margin-top: 0; }
.details-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}
.details-info .row .lbl {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.details-info .row .val {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.details-info .row .val.no { color: var(--text-muted); font-weight: 500; }

/* ===== ADDONS ===== */
.addons-section { padding: 56px 0 0; }
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.addon-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color .2s;
}
.addon-card:hover { border-color: var(--border-blue); }
.addon-thumb {
  width: 80px; height: 50px;
  border-radius: 8px;
  background-size: cover; background-position: center;
  background-color: rgba(255,255,255,0.06);
  flex-shrink: 0;
  border: 1px solid var(--border-strong);
}
.addon-info { flex: 1; min-width: 0; }
.addon-name { font-size: 13px; font-weight: 600; line-height: 1.3; }
.addon-type { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.addon-price { font-size: 15px; font-weight: 700; font-feature-settings: "tnum"; flex-shrink: 0; }

/* ===== SIMILAR GAMES ===== */
.similar-section { padding: 56px 0 0; }
.similar-section .section-head { align-items: center; }
.similar-section .section-head .right {
  display: inline-flex; align-items: stretch; height: 38px;
  border-radius: 12px; overflow: hidden;
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), inset 0 -1px 0 rgba(0,0,0,0.25), 0 4px 14px rgba(0,0,0,0.25);
}
.similar-section .carousel-arrows { display: contents; }
.similar-section .carr-btn {
  width: 40px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: none;
  border-left: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.similar-section .carr-btn svg { width: 14px; height: 14px; }
.similar-section .carr-btn:hover { background: rgba(255,255,255,0.08); color: #fff; }
.similar-section .carr-btn:disabled { opacity: 0.35; cursor: not-allowed; background: transparent !important; }

.game-carousel {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-top: 4px;
}
.game-carousel::-webkit-scrollbar { display: none; }
.game-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
}
.game-card {
  flex: 0 0 calc((100% - 80px) / 6);
  display: flex; flex-direction: column;
  color: inherit; text-decoration: none;
  transition: transform .25s cubic-bezier(0.22, 1, 0.36, 1);
  scroll-snap-align: start;
}
.game-card:hover { transform: scale(0.97); }
.game-cover {
  aspect-ratio: 2/3;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  background-color: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: border-color .25s, box-shadow .25s;
}
.game-card:hover .game-cover {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 0 24px 4px rgba(212,175,106,0.35), 0 16px 40px rgba(0,0,0,0.45);
}
.game-card:hover .game-name { color: var(--gold-bright); }
.game-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,0.3));
}
.game-sub-float {
  position: absolute; top: 0; left: 0;
  padding: 5px 6px 5px 5px;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  border-radius: 13px 0 13px 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 3;
}
.game-sub-float img { width: 29px; height: 29px; object-fit: contain; display: block; }
.game-platforms {
  position: absolute;
  bottom: 8px; left: 8px;
  display: flex; gap: 4px; z-index: 2;
}
.game-platform {
  padding: 3.3px 6.6px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3.3px;
  font-size: 9.9px; font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff; line-height: 1;
}
.game-info {
  padding: 10px 2px 0;
  display: flex; flex-direction: column; flex: 1;
}
.game-name {
  font-size: 14px; font-weight: 600; line-height: 1.2;
  letter-spacing: -0.015em;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .25s ease;
}
.game-edition {
  font-size: 12px; font-weight: 500;
  color: var(--text-muted);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  margin-top: 3px; margin-bottom: 2px;
}
.game-prices {
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap;
  padding-top: 6px;
}
.game-discount-inline {
  display: inline-flex; align-items: center;
  padding: 4px 6px;
  background: var(--blue); color: #fff;
  font-size: 10px; font-weight: 700;
  border-radius: 4px; letter-spacing: -0.02em; line-height: 1;
  box-shadow: 0 2px 8px rgba(74,124,255,0.3);
}
.game-price {
  font-size: 16px; font-weight: 800;
  color: var(--text); letter-spacing: -0.02em;
  font-feature-settings: "tnum";
}
.game-price .currency { color: inherit; margin-left: 2px; }
.psplus-price-line {
  display: flex; align-items: center; gap: 6px;
  margin-top: 3px;
}
.psplus-price {
  font-family: 'Geist', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--gold-bright); letter-spacing: -0.02em;
  font-feature-settings: "tnum";
}
.psplus-price .currency { color: inherit; margin-left: 1px; }
.psplus-label {
  font-size: 10px; font-weight: 600;
  color: var(--gold);
  padding: 3px 6px;
  background: rgba(212,175,106,0.12);
  border: 1px solid rgba(212,175,106,0.18);
  border-radius: 4px; line-height: 1;
}
@keyframes pulseIcon { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.9); } }
.game-deadline-inline {
  display: inline-flex; align-items: center; gap: 3px;
  margin-top: 3px;
  font-size: 11px; font-weight: 600;
  color: var(--red-bright);
  letter-spacing: -0.005em;
}
.game-deadline-inline svg {
  width: 11px; height: 11px; stroke-width: 2.2;
  animation: pulseIcon 2s ease-in-out infinite;
}
.game-deadline-inline.last { color: var(--red); font-weight: 700; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1280px) {
  .product { grid-template-columns: 280px 1fr 340px; gap: 32px; }
  .game-card { flex: 0 0 calc((100% - 64px) / 5); }
}
@media (max-width: 1100px) {
  .product { grid-template-columns: 260px 1fr; }
  .price-col { grid-column: 1 / -1; position: static; }
  .game-card { flex: 0 0 calc((100% - 48px) / 4); }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .details-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 820px) {
  .product { grid-template-columns: 1fr; }
  .info-col h1 { font-size: 28px; }
  .game-card { flex: 0 0 calc((100% - 32px) / 3); }
  .addons-grid { grid-template-columns: 1fr; }
  .ed-card { min-width: 220px; }
}

/* ===== MOBILE FOUNDATION (B2) ===== */
@media (max-width: 600px) {
  .crumbs { padding: 18px 0 14px; gap: 6px; font-size: 12px; }
  .crumbs svg { width: 12px; height: 12px; }

  .product { gap: 24px; padding-top: 8px; }
  .cover-col { max-width: 260px; margin: 0 auto; width: 100%; }
  .cover-col .platforms { bottom: 10px; left: 10px; gap: 5px; }

  .info-col h1 { font-size: 24px; }
  .edition-label { font-size: 13px; margin-bottom: 16px; }
  .stats-bar { margin-bottom: 22px; }
  .stats-bar .seg { padding: 12px 8px; }
  .stats-bar .seg .n { font-size: 17px; }
  .stats-bar .seg .l { font-size: 10px; letter-spacing: 0.04em; }
  .info-list { gap: 14px; }

  .sub-banner { padding: 12px 14px; gap: 12px; min-height: 64px; }
  .sub-banner .icn,
  .sub-banner .icn img { width: 38px; height: 38px; }
  .sub-banner .arrow { width: 28px; height: 28px; }

  .price-card { padding: 18px 16px; }
  .psplus-opt { padding: 9px 8px; font-size: 11px; }
  .sale-timer { padding: 12px; gap: 10px; margin-bottom: 14px; }
  .sale-timer .st-ic { width: 34px; height: 34px; }
  .sale-timer .st-unit { min-width: 40px; padding: 4px 6px 3px; }
  .sale-timer .st-num { font-size: 14px; }
  .sale-timer .st-text { font-size: 11px; }

  .price-row { margin-bottom: 18px; }
  .price-now { font-size: 28px; }
  .price-ctas { gap: 8px; }
  .price-ctas .fav-btn { flex: 0 0 48px; border-radius: 12px; }
  .price-ctas .fav-btn svg { width: 20px; height: 20px; }
  .price-ctas .cart-btn {
    padding: 14px;
    font-size: 13px;
    gap: 8px;
    min-width: 0;
    border-radius: 12px;
  }
  .price-ctas .cart-btn svg { width: 16px; height: 16px; }
  .cart-btn-label { white-space: normal; line-height: 1.2; }

  /* Editions strip: hide arrows (touch swipe replaces them), card peeks next */
  .editions-strip { gap: 6px; margin-top: 22px; }
  .editions-strip .ed-arrow { display: none; }
  .ed-track { gap: 10px; }
  .ed-card {
    flex: 0 0 86%;
    min-width: 0;
    padding: 14px 16px;
    gap: 12px;
  }
  .ed-thumb { width: 64px; height: 86px; }
  .ed-name { font-size: 14px; }
  .ed-price { font-size: 16px; }
  .ed-contents-tip { width: min(240px, calc(100vw - 48px)); }

  /* Screenshots: hide arrows, peek next */
  .screenshots-section { margin-top: 32px; padding: 16px 0; }
  .screenshots-head { margin-bottom: 14px; }
  .screenshots-head h2 { font-size: 18px; }
  .screenshots-arrows { display: none; }
  .screenshots-track { gap: 12px; }
  .ss-item { flex: 0 0 86%; }

  /* Description + info grid */
  .details-grid { padding: 32px 0 8px; gap: 24px; margin-top: 8px; }
  .details-section h2 { font-size: 20px; margin-bottom: 16px; }
  .description-text { font-size: 13px; line-height: 1.6; }
  .details-info { grid-template-columns: 1fr; gap: 18px; }

  /* Addons list (already 1fr from 820): tighten */
  .addons-section { padding: 40px 0 0; }
  .addon-card { padding: 12px; gap: 12px; }
  .addon-thumb { width: 72px; height: 46px; }
  .addon-name { font-size: 13px; }
  .addon-price { font-size: 14px; }

  /* Similar games carousel: 2 cards per row + hide arrows */
  .similar-section { padding: 40px 0 0; }
  .similar-section .section-head .right { height: 34px; }
  .similar-section .section-head .right .carr-btn { display: none; }
  .game-track { gap: 12px; }
  .game-card { flex: 0 0 calc((100% - 12px) / 2); }
  .game-info { padding: 8px 2px 0; }
  .game-name { font-size: 13px; }
  .game-edition { font-size: 11px; }
  .game-price { font-size: 14px; }
  .psplus-price { font-size: 11px; }
}
