/* ============================================
   Site subscription page — v5 layout
   Adapted from backdoor-site-beta/shared/subscription.css
   ============================================ */

/* ─── BREADCRUMBS ─── */
.crumbs {
  font-size: 13px;
  color: var(--text-muted);
  margin: 24px 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.crumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .15s;
}
.crumbs a:hover { color: var(--text); }
.crumbs span { color: rgba(255,255,255,0.25); }

/* ─── V05 PRODUCT LAYOUT ─── */
.sub-product.v5-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 36px;
  align-items: start;
  margin-bottom: 48px;
}
.v5-info {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.v5-h-block { padding-top: 4px; }
.v5-h-block h1 {
  font-size: 36px; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 12px;
}

/* Tier-name highlight inside h1 */
.tier-mark { }
.t-essential { color: #c8c8d0; }
.t-extra     { color: var(--gold-bright); }
.t-deluxe    { color: #c8aa64; }
.t-eaplay    { color: #ff4654; }

.sub-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 22px;
}

/* Duration heading */
.sub-dur-h {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

/* Duration cards */
.dur-cards { display: flex; gap: 8px; max-width: 480px; }
.dur-cards .b {
  flex: 1;
  padding: 10px 14px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-top-color: rgba(255,255,255,0.16);
  border-radius: 11px;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
  color: inherit;
}
.dur-cards .b:hover:not(.unavailable):not(:disabled) {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
}
.dur-cards .b.active {
  background: linear-gradient(160deg, rgba(74,124,255,0.16), rgba(74,124,255,0.04));
  border-color: rgba(74,124,255,0.45);
}
.dur-cards .b .l {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 600;
}
.dur-cards .b.active .l { color: var(--blue-bright); }
.dur-cards .b .v {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  font-feature-settings: "tnum";
}
.dur-cards .b.unavailable,
.dur-cards .b:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

/* ─── PRICE COL ─── */
.sub-price-col {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.price-card-base {
  padding: 22px 24px;
  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: 18px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.price-now {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  font-feature-settings: "tnum";
}
.price-now .currency { margin-left: 3px; font-weight: 700; }
.price-now.price-unavailable {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0;
}

.price-cta-row { display: flex; gap: 10px; }

.fav-btn {
  flex: 0 0 52px;
  height: 52px;
  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: 13px;
  color: rgba(255,255,255,0.45);
  cursor: not-allowed;
  transition: all .2s;
}
.fav-btn:disabled,
.fav-btn[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; }
.fav-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.cart-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #7a5dff 0%, #4a7cff 100%);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 13px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(122,93,255,0.28);
  transition: opacity .2s, transform .2s, box-shadow .2s, background .2s;
}
.cart-btn:not(:disabled):hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(122,93,255,0.42); }
.cart-btn:disabled,
.cart-btn[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; box-shadow: none; }
.cart-btn.is-loading { opacity: 0.7; cursor: progress; }
.cart-btn.is-loading:hover { transform: none; box-shadow: 0 8px 24px rgba(122,93,255,0.28); }
.cart-btn.is-added {
  background: linear-gradient(135deg, #3ddc84 0%, #2bb46c 100%);
  box-shadow: 0 8px 24px rgba(61,220,132,0.28);
}
.cart-btn.is-added:hover { box-shadow: 0 12px 28px rgba(61,220,132,0.42); }
.cart-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ─── MINI MAIN COVER (V05) ─── */
.v5-cover-mini {
  width: 420px;
  aspect-ratio: 1200 / 630;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 16px 32px rgba(0,0,0,0.55);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  container-type: inline-size;
}
.v5-cover-mini::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.v5-cover-mini .sc-bg-num {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; line-height: 0.78; letter-spacing: -0.03em;
  user-select: none; pointer-events: none; z-index: 1;
  font-size: 40cqw;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.v5-cover-mini .sc-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 1.5cqw;
}
.v5-cover-mini .ps-logo-wrap {
  position: relative; display: inline-block;
  height: 7cqw; min-height: 16px; line-height: 0;
}
.v5-cover-mini .ps-logo-wrap .tinted-img {
  height: 100%; width: auto; display: block;
}
.v5-cover-mini .ps-logo-wrap .crest {
  position: absolute; left: 0; top: 0; height: 100%; width: auto; display: block;
}
.v5-cover-mini .ps-logo {
  height: 7cqw; min-height: 16px; width: auto; display: block;
}
.v5-cover-mini .sc-tier {
  font-weight: 900; font-size: 13cqw; line-height: 1; letter-spacing: 0.03em;
  text-transform: uppercase;
}
.v5-cover-mini .ea-wordmark {
  font-family: 'Geist', sans-serif;
  font-weight: 900; font-size: 22cqw;
  letter-spacing: -0.02em; line-height: 1;
  color: #fff;
}

/* ─── COVER GRADIENTS (sc-essential / sc-extra / sc-deluxe / sc-eaplay) ─── */
.v5-cover-mini.sc-essential, .tier-card-thumb.sc-essential { background: #c0c0c6; }
.v5-cover-mini.sc-essential::before, .tier-card-thumb.sc-essential::before {
  background:
    radial-gradient(ellipse 70% 80% at 30% 20%, rgba(255,255,255,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 75% 80%, rgba(160,160,175,0.5) 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 50% 50%, rgba(220,220,228,0.3) 0%, transparent 70%),
    linear-gradient(155deg, #d6d6dc 0%, #b5b5be 40%, #a0a0ac 70%, #c0c0c8 100%);
}
.v5-cover-mini.sc-essential .sc-bg-num, .tier-card-thumb.sc-essential .sc-bg-num {
  background: linear-gradient(180deg, #ebebf0 0%, #6d6d78 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
.v5-cover-mini.sc-essential .sc-tier, .tier-card-thumb.sc-essential .sc-tier { color: #1a1a20; }

.v5-cover-mini.sc-extra, .tier-card-thumb.sc-extra { background: #c9a035; }
.v5-cover-mini.sc-extra::before, .tier-card-thumb.sc-extra::before {
  background:
    radial-gradient(ellipse 65% 75% at 25% 25%, rgba(255,230,140,0.45) 0%, transparent 55%),
    radial-gradient(ellipse 55% 65% at 80% 75%, rgba(160,120,20,0.4) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(230,195,80,0.25) 0%, transparent 65%),
    linear-gradient(155deg, #e2c560 0%, #caa530 35%, #a88520 65%, #dbb845 100%);
}
.v5-cover-mini.sc-extra .sc-bg-num, .tier-card-thumb.sc-extra .sc-bg-num {
  background: linear-gradient(180deg, #f4da80 0%, #5c4510 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
.v5-cover-mini.sc-extra .sc-tier, .tier-card-thumb.sc-extra .sc-tier { color: #000; }

.v5-cover-mini.sc-deluxe, .tier-card-thumb.sc-deluxe {
  background: #000;
  --accent: #f5c518;
}
.v5-cover-mini.sc-deluxe::before, .tier-card-thumb.sc-deluxe::before {
  background:
    radial-gradient(ellipse 60% 65% at 35% 30%, rgba(200,170,100,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 55% at 70% 70%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(200,170,100,0.05) 0%, transparent 65%),
    linear-gradient(155deg, #0e0e0e 0%, #050505 40%, #000 70%, #0a0a0a 100%);
}
.v5-cover-mini.sc-deluxe .sc-bg-num, .tier-card-thumb.sc-deluxe .sc-bg-num {
  background: linear-gradient(180deg, #d6b85a 0%, #000 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
.v5-cover-mini.sc-deluxe .sc-tier, .tier-card-thumb.sc-deluxe .sc-tier { color: var(--accent); }
.v5-cover-mini.sc-deluxe .ps-logo-wrap .tinted-img {
  clip-path: inset(0 0 0 25.5%);
  filter: brightness(0) saturate(100%) invert(78%) sepia(68%) saturate(2000%) hue-rotate(358deg) brightness(105%) contrast(101%);
}

.v5-cover-mini.sc-eaplay { background: #1a1a3e; --accent: #ff4654; }
.v5-cover-mini.sc-eaplay::before {
  background:
    radial-gradient(ellipse 55% 65% at 80% 15%, rgba(220,50,80,0.3) 0%, transparent 55%),
    radial-gradient(ellipse 45% 50% at 90% 40%, rgba(180,40,100,0.2) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 15% 85%, rgba(40,40,120,0.35) 0%, transparent 55%),
    linear-gradient(155deg, #22224a 0%, #1a1a40 30%, #14142e 60%, #1e1e48 100%);
}
.v5-cover-mini.sc-eaplay .sc-bg-num {
  background: linear-gradient(180deg, #4c4c8c 0%, #0d0d24 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
.v5-cover-mini.sc-eaplay .sc-tier { color: var(--accent); font-size: 16cqw; }

/* ─── TIER STRIP ─── */
.tier-strip-wrap { margin-top: 48px; }

.tier-strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.tier-strip-head h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.tier-strip { display: flex; align-items: stretch; gap: 14px; }

.tier-card {
  flex: 1;
  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: border-color .22s, background .22s;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.tier-card:hover { border-color: var(--gold); }
.tier-card.selected {
  border-color: #7a5dff;
  background: linear-gradient(160deg, rgba(122,93,255,0.1) 0%, rgba(74,124,255,0.03) 100%);
  box-shadow: 0 0 0 1px rgba(122,93,255,0.4), 0 10px 30px rgba(122,93,255,0.12);
  cursor: default;
}

/* Tier-strip mini cover */
.tier-card .tier-card-thumb.sc-cover {
  width: 130px;
  height: auto;
  aspect-ratio: 1200 / 630;
  border-radius: 8px;
  padding: 0;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  container-type: inline-size;
  transition: transform .4s cubic-bezier(0.2, 0.8, 0.25, 1);
}
.tier-card:hover .tier-card-thumb.sc-cover { transform: scale(1.06) rotate(-1deg); }
.tier-card-thumb.sc-cover::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.tier-card-thumb.sc-cover .sc-bg-num {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; line-height: 0.78; letter-spacing: -0.03em;
  user-select: none; pointer-events: none; z-index: 1;
  font-size: 56cqw;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.tier-card-thumb.sc-cover .sc-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.tier-card-thumb.sc-cover .ps-logo {
  height: 9cqw; min-height: 8px; width: auto; display: block;
}
.tier-card-thumb.sc-cover .sc-tier {
  font-weight: 900; font-size: 11cqw;
  line-height: 1; letter-spacing: 0.03em; text-transform: uppercase;
}
.tier-card-thumb.sc-deluxe .ps-logo-wrap {
  position: relative; display: inline-block;
  height: 9cqw; min-height: 8px; line-height: 0;
}
.tier-card-thumb.sc-deluxe .ps-logo-wrap .tinted-img {
  height: 100%; width: auto; display: block;
  clip-path: inset(0 0 0 25.5%);
  filter: brightness(0) saturate(100%) invert(78%) sepia(68%) saturate(2000%) hue-rotate(358deg) brightness(105%) contrast(101%);
}
.tier-card-thumb.sc-deluxe .ps-logo-wrap .crest {
  position: absolute; left: 0; top: 0; height: 100%; width: auto; display: block;
}

.tier-card-body { flex: 1; min-width: 0; }

.tier-card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.tier-card.selected .tier-card-name { color: var(--text); }

.tier-card-price {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  font-feature-settings: "tnum";
}
.tier-card-price .currency { margin-left: 2px; font-weight: 700; }
.tier-card-price.price-unavailable {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0;
}

/* ─── "Что входит" tooltip on tier-card (beta parity) ─── */
.tier-card:hover,
.tier-card:focus-within {
  z-index: 5;
}
.tier-strip .ed-contents-wrap {
  position: relative;
  display: inline-block;
  margin-top: 10px;
}
.tier-strip .ed-contents-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  cursor: help;
  transition: border-color .2s, color .2s, background .2s;
}
.tier-strip .ed-contents-btn:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}
.tier-strip .ed-contents-btn svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .2s;
}
.tier-strip .ed-contents-btn:hover svg { transform: translateX(3px); }

.tier-strip .ed-contents-tip {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translate(-50%, 8px);
  width: 280px;
  padding: 14px 16px;
  background: rgba(12,15,26,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 13px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
  font-size: 13px;
  line-height: 1.55;
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s, transform .15s;
  z-index: 20;
  text-align: left;
}
.tier-strip .ed-contents-tip::after {
  content: '';
  position: absolute;
  left: 50%; top: -6px;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: rgba(12,15,26,0.97);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-left: 1px solid rgba(255,255,255,0.12);
}
.tier-strip .ed-contents-tip strong {
  display: block;
  color: var(--gold-bright);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  font-weight: 700;
}
.tier-strip .ed-contents-tip ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
  padding: 0;
}
.tier-strip .ed-contents-tip li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
  padding: 0;
}
.tier-strip .ed-contents-tip li svg {
  width: 14px; height: 14px;
  stroke: var(--blue-bright); fill: none;
  stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}
.tier-strip .ed-contents-wrap:hover .ed-contents-tip,
.tier-strip .ed-contents-wrap:focus-within .ed-contents-tip {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

/* ─── FEATURES GRID ─── */
.features-section { margin-top: 56px; }
.features-section h2 {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.feat-item {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  align-items: flex-start;
  transition: border-color .2s, background .2s;
}
.feat-item:hover {
  border-color: var(--gold);
  background: rgba(212,175,106,0.04);
}
.feat-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feat-icon svg {
  width: 18px; height: 18px;
  color: var(--blue-bright);
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.feat-icon.gold svg { color: var(--gold-bright); }
.feat-icon.green svg { color: var(--green-bright); }
.feat-icon.purple svg { color: var(--purple-bright, #a877ff); }
.feat-icon.red svg { color: var(--red-bright, #ff7878); }
.feat-text { flex: 1; min-width: 0; }
.feat-title {
  font-size: 15px; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.feat-desc {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.45;
}

/* ─── MARQUEE (included_games) ─── */
.mq-section {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.mq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.mq-head h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mq-tape-wrap {
  overflow: hidden;
  padding: 18px 0;
  cursor: grab;
  mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.mq-tape-wrap.dragging { cursor: grabbing; }
.mq-tape-wrap.dragging a { pointer-events: none; }

.mq-tape {
  display: flex;
  gap: 14px;
  user-select: none;
  will-change: transform;
}
.mq-card {
  flex: 0 0 160px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s cubic-bezier(0.22, 1, 0.36, 1);
}
.mq-card:hover { transform: scale(1.08); z-index: 5; position: relative; }
.mq-card .cv {
  position: relative;
  width: 160px;
  height: 200px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 8px;
  transition: border-color .25s, box-shadow .25s;
  overflow: hidden;
}
.mq-card:hover .cv {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.mq-card:hover .name { color: var(--gold-bright); }
.mq-card .name {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mq-card .platforms {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: flex;
  gap: 4px;
  z-index: 2;
}
.mq-card .platforms span {
  padding: 3.3px 6.6px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  -webkit-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;
}

/* Empty state for marquee */
.mq-section.mq-empty .mq-empty-msg {
  font-size: 14px;
  color: var(--text-muted);
  padding: 18px 0;
}

/* ===== MOBILE FOUNDATION (B3) =====
   No @media rules existed; subscription pages were desktop-only.
   Cascade: 900 (sidebar collapse) → 700 (v5-info stack) → 600 (compact) → 480 (smallest phones). */

@media (max-width: 900px) {
  /* Sidebar collapses below content; sticky has nothing to anchor to */
  .sub-product.v5-product { grid-template-columns: 1fr; gap: 24px; }
  .sub-price-col { position: static; top: auto; }

  /* Tier strip: 3 cards horizontally fit on 1100+; below that, stack */
  .tier-strip { flex-direction: column; gap: 12px; }
  .tier-card { padding: 16px 18px; gap: 16px; }
  .tier-card .tier-card-thumb.sc-cover { width: 110px; }
}

@media (max-width: 700px) {
  /* Cover + h-block stack inside info column */
  .v5-info { grid-template-columns: 1fr; gap: 18px; }
  .v5-cover-mini { width: 100%; max-width: 420px; margin: 0 auto; }
  .v5-h-block { padding-top: 0; }
  .v5-h-block h1 { font-size: 30px; }

  .tier-strip-wrap { margin-top: 36px; }
  .features-section { margin-top: 40px; }
  .features-section h2 { font-size: 20px; margin-bottom: 16px; }
  .mq-section { margin-top: 40px; padding-top: 28px; }
  .mq-head h2 { font-size: 20px; }
}

@media (max-width: 600px) {
  .crumbs { margin: 18px 0 14px; font-size: 12px; gap: 6px; }
  .sub-product.v5-product { margin-bottom: 36px; gap: 20px; }

  .v5-h-block h1 { font-size: 26px; margin-bottom: 10px; }
  .sub-desc { font-size: 13px; margin-bottom: 18px; line-height: 1.55; }
  .sub-dur-h { font-size: 10px; margin-bottom: 8px; }
  .dur-cards { max-width: none; gap: 6px; }
  .dur-cards .b { padding: 9px 8px; }
  .dur-cards .b .l { font-size: 10px; margin-bottom: 3px; }
  .dur-cards .b .v { font-size: 13px; }

  .price-card-base { padding: 18px 16px; }
  .price-row { margin-bottom: 16px; }
  .price-now { font-size: 30px; }
  .price-now.price-unavailable { font-size: 16px; }

  .price-cta-row { gap: 8px; }
  .fav-btn { flex: 0 0 48px; height: 48px; border-radius: 12px; }
  .fav-btn svg { width: 18px; height: 18px; }
  .cart-btn {
    padding: 14px 16px;
    font-size: 14px;
    gap: 8px;
    min-width: 0;
    border-radius: 12px;
  }
  .cart-btn svg { width: 15px; height: 15px; }
  /* Allow long Russian labels to wrap inside cart button */
  .cart-btn-label { white-space: normal; line-height: 1.2; }

  /* Tier strip stacked already (from 900); now tighten contents */
  .tier-strip-head h2 { font-size: 18px; }
  .tier-card { padding: 14px; gap: 14px; }
  .tier-card .tier-card-thumb.sc-cover { width: 96px; }
  .tier-card-name { font-size: 13px; }
  .tier-card-price { font-size: 20px; }
  .tier-strip .ed-contents-wrap { margin-top: 8px; }
  .tier-strip .ed-contents-btn { padding: 8px 12px; font-size: 12px; }
  /* Tooltip must stay inside viewport (was 280px fixed) */
  .tier-strip .ed-contents-tip { width: min(280px, calc(100vw - 40px)); }

  /* Features: 2-col grid stacks (icon 42px + text squeezed at 360px otherwise) */
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feat-item { padding: 14px 16px; gap: 12px; }
  .feat-icon { width: 38px; height: 38px; border-radius: 10px; }
  .feat-icon svg { width: 16px; height: 16px; }
  .feat-title { font-size: 14px; }
  .feat-desc { font-size: 12.5px; }

  /* Included-games marquee: shrink card so 2.5 fit on 360px */
  .mq-section { margin-top: 32px; padding-top: 22px; }
  .mq-head { margin-bottom: 16px; }
  .mq-head h2 { font-size: 18px; }
  .mq-tape-wrap { padding: 14px 0; }
  .mq-tape { gap: 10px; }
  .mq-card { flex: 0 0 130px; }
  .mq-card .cv { width: 130px; height: 162px; }
  .mq-card .name { max-width: 130px; font-size: 11px; }
}

@media (max-width: 480px) {
  .v5-h-block h1 { font-size: 22px; }
  .price-card-base { padding: 16px 14px; }
  .price-now { font-size: 26px; }
  .tier-card { padding: 12px; gap: 12px; }
  .tier-card .tier-card-thumb.sc-cover { width: 84px; }
  .mq-card { flex: 0 0 120px; }
  .mq-card .cv { width: 120px; height: 150px; }
  .mq-card .name { max-width: 120px; }
}
