:root {
  --bg: #ffffff;
  --card: #ffffff;
  --soft: #e8eaef;
  --text: #111111;
  --muted: #8e8e93;
  --blue: #3478f6;
  --blue-soft: #e8f1ff;
  --shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
  --line: #e6eaf0;
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  height: 100%;
  overscroll-behavior: none;
  background: #fff;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  position: fixed;
  inset: 0;
  width: 100%;
}
button, a { font-family: inherit; }
button { border: 0; background: none; color: inherit; }
img { display: block; max-width: 100%; }

#app {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  padding-bottom: calc(96px + var(--safe-b));
}
.wrap { width: min(430px, 100%); margin: 0 auto; padding: 12px 16px 0; }

.page-title {
  padding-top: calc(6px + var(--safe-t));
  font-size: 28px;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.slider { margin-top: 14px; }
.slider-view {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}
.slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.45s cubic-bezier(.22, .9, .3, 1);
  will-change: transform;
}
.slide {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex: 0 0 100%;
  width: 100%;
  padding: 0;
  min-height: 0;
  background: #fff;
  display: block;
  overflow: hidden;
}
.slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}
.slider-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #d0d3db;
}
.slider-dots .dot.on {
  width: 18px;
  background: var(--blue);
}

.wallet-chip {
  flex: 0 0 auto;
  background: var(--card);
  border-radius: 16px;
  padding: 8px 12px 9px;
  text-align: right;
  box-shadow: var(--shadow);
}
.wallet-chip span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.wallet-chip strong { font-size: 15px; letter-spacing: -0.03em; }

.home-auth {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  align-items: center;
}
.home-auth .btn {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  white-space: nowrap;
}

.home-lents {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.home-lents .slider { margin-top: 0; }
.home-lent .slider-view {
  border-radius: 16px;
  background: #fff;
}
.home-lent .slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 341;
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.home-lent .slider-dots { margin-top: 8px; }

.news-rail,
.review-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.news-rail::-webkit-scrollbar,
.review-rail::-webkit-scrollbar { display: none; }
.news-card {
  position: relative;
  flex: 0 0 86%;
  min-height: 0;
  aspect-ratio: 1024 / 488;
  border-radius: 18px;
  padding: 0;
  text-align: left;
  color: #fff;
  overflow: hidden;
  background: #0b1220;
  box-shadow: var(--shadow);
}
.news-card.has-img {
  background: #0b1220;
}
.news-card.has-img img,
.news-card.has-img picture,
.news-card.has-img picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card.violet {
  background:
    linear-gradient(145deg, rgba(255,255,255,.16), transparent 42%),
    repeating-linear-gradient(-32deg, rgba(255,255,255,.06) 0 10px, transparent 10px 20px),
    linear-gradient(160deg, #7c3aed, #5b21b6 60%, #312e81);
}
.news-card.navy {
  background:
    linear-gradient(145deg, rgba(255,255,255,.14), transparent 42%),
    repeating-linear-gradient(-32deg, rgba(255,255,255,.06) 0 10px, transparent 10px 20px),
    linear-gradient(160deg, #0ea5e9, #2563eb 50%, #1e3a8a);
}
.news-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 4px 8px;
}
.news-ph {
  position: absolute;
  right: 12px; top: 14px;
  font-size: 10px;
  font-weight: 700;
  opacity: .7;
}
.news-card h4 {
  margin-top: 18px;
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.news-card p {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4;
  opacity: .88;
}
.review-card {
  flex: 0 0 78%;
  background: var(--card);
  border-radius: 20px;
  padding: 14px 14px 15px;
  box-shadow: var(--shadow);
  text-align: left;
}
.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.review-top b { font-size: 14px; }
.stars { color: #f5b400; font-size: 12px; letter-spacing: 1px; }
.review-place {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.review-card p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: #3a3a3c;
}
.home-rail .pcard { flex: 0 0 46%; max-width: 168px; }

.bank-card {
  margin-top: 14px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1.7 / 1;
  color: #fff;
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.22);
}
.bank-card img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.bank-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 42%,
    rgba(8, 22, 64, 0.18) 100%
  );
}
.bank-card .pad {
  position: relative; z-index: 1;
  height: 100%;
  padding: 16px 16px 14px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.bank-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.bank-logo {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(0, 16, 48, 0.45);
}
.bank-logo small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0.95;
  margin-top: 2px;
}
.bank-chip {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
}
.bank-id,
.bank-bal {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 8px 12px;
}
.bank-id span,
.bank-bal > span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 1;
  color: #fff;
}
.bank-id b {
  display: block;
  margin-top: 4px;
  font-size: 20px;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 16, 48, 0.35);
}
.bank-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
}
.bank-bal strong {
  display: block;
  margin-top: 2px;
  font-size: 28px;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 16, 48, 0.35);
}
.bank-mark {
  width: 46px; height: 30px;
  position: relative;
  flex: 0 0 46px;
}
.bank-mark i,
.bank-mark b {
  position: absolute; top: 3px;
  width: 24px; height: 24px; border-radius: 50%;
}
.bank-mark i { left: 0; background: rgba(255,255,255,.42); }
.bank-mark b { right: 0; background: rgba(186, 230, 253, .55); }

.holder {
  margin-top: 14px;
}
.holder .label {
  color: var(--muted);
  font-size: 13px;
  display: flex; align-items: center; gap: 6px;
}
.holder .row {
  display: flex; align-items: center; gap: 8px;
  margin-top: 4px;
}
.holder strong {
  font-size: 28px;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.plus-pill {
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
}
.mellivora {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--muted);
  white-space: nowrap;
}
.bank-bal .mellivora {
  display: inline;
  font-size: 14px;
  font-weight: 600;
  margin-left: 8px;
  vertical-align: middle;
  text-transform: none;
  letter-spacing: .02em;
  opacity: .9;
  color: #fff;
}
.balance .mellivora {
  font-size: 14px;
  font-weight: 600;
  margin-left: 8px;
  vertical-align: middle;
}

.actions-2 {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.actions-2 .btn {
  padding: 13px 10px;
  font-size: 14px;
}
.actions-2 .btn svg { width: 18px; height: 18px; }
.tile {
  background: var(--card);
  border-radius: 22px;
  padding: 18px 12px 16px;
  text-align: center;
  box-shadow: var(--shadow);
}
.tile .ico {
  width: 44px; height: 44px; margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid; place-items: center;
}
.tile .ico svg { width: 22px; height: 22px; }
.tile span { font-size: 13px; font-weight: 600; }

.section { margin-top: 22px; }
.section-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.section-head h3 { font-size: 16px; font-weight: 700; }
.see { color: var(--muted); font-size: 13px; text-decoration: none; }

.scroll {
  display: flex; gap: 14px;
  overflow-x: auto;
  padding: 2px 0 6px;
  scrollbar-width: none;
}
.scroll::-webkit-scrollbar { display: none; }

.cat-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.cat-banner {
  display: block;
  width: 100%;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.cat-banner:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  border-radius: 18px;
}
.cat-banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  background: #fff;
}
.promo-section { margin-top: 4px; }
.promo-strip {
  display: block;
  width: 100%;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.catalog-grid .promo-strip {
  grid-column: 1 / -1;
}
.promo-strip img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #fff;
  vertical-align: top;
}
.promo-slider { margin-top: 0; }
.promo-slider .slider-view {
  border-radius: 16px;
  background: #fff;
}
.promo-slider .slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.promo-slider .slider-dots { margin-top: 8px; }
.cat-item { flex: 0 0 108px; text-align: center; }
.cat-item img, .cat-item .ph {
  width: 108px; height: 108px; border-radius: 50%;
  object-fit: contain; object-position: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(17,24,39,.07);
  margin: 0 auto;
  overflow: hidden;
}
.cat-item .ph { display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); }

.panel {
  background: #eceef3;
  border-radius: 24px;
  padding: 14px 10px 12px;
}

.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pcard {
  background: var(--card);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: left;
}
.pcard .pic {
  position: relative;
  aspect-ratio: 1;
  height: auto;
  background: #eef1f6;
}
.pcard .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.pcard.game {
  position: relative;
  border-radius: 18px;
  background: #111;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.18);
}
.pcard.game .pic {
  position: relative;
  aspect-ratio: 1;
  background: #1c1c1e;
}
.pcard.game .pic img { object-fit: contain; }
.pcard.game .shade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 68%;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 10, 16, 0.55) 38%, rgba(8, 10, 16, 0.94) 100%);
  pointer-events: none;
}
.pcard.game .flags {
  position: absolute;
  top: 7px; left: 7px; right: 7px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  z-index: 1;
}
.flag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(20, 20, 22, 0.72);
  color: #fff;
}
.flag.plat { background: rgba(52, 120, 246, 0.92); }
.flag.hot { background: #3478f6; }
.flag.po { background: #ff9f0a; color: #111; }
.flag.new { background: #32d74b; color: #0b1a0d; }
.flag.vr { background: #bf5af2; }
.pcard.game .onpic {
  position: absolute;
  left: 8px; right: 8px; bottom: 8px;
  z-index: 1;
  color: #fff;
}
.pcard.game .genre-line {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pcard.game .onpic h4 {
  font-size: 12px;
  font-weight: 750;
  min-height: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pcard.game .onpic-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px;
  margin-top: 5px;
}
.pcard.game .onpic .price { color: #fff; font-size: 12px; font-weight: 800; }
.pcard.game .lang { font-size: 10px; color: rgba(255,255,255,.78); font-weight: 600; }
.pic-tag {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 1;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: rgba(17, 17, 17, 0.72);
  border-radius: 999px;
  padding: 4px 8px;
  max-width: calc(100% - 16px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sale-badge {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: #e11d48;
  border-radius: 999px;
  padding: 4px 8px;
  letter-spacing: .02em;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(225, 29, 72, .28);
}
.price-old {
  color: var(--muted);
  font-weight: 700;
  text-decoration: line-through;
  margin-right: 6px;
}
.price-sale { color: #e11d48; }
.pcard.shop .short { min-height: 2.4em; }
.hero-prod .pic { position: relative; }
.hero-prod.game {
  background: #16171c;
  color: #fff;
}
.hero-prod.game .pic {
  aspect-ratio: 1;
  background: #111;
}
.hero-prod.game .pic img { object-fit: contain; }
.hero-prod.game .muted { color: rgba(255,255,255,.62); }
.hero-prod.game .flags {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.prod-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.prod-specs {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.prod-specs div {
  background: var(--card);
  border-radius: 16px;
  padding: 10px 10px 11px;
  box-shadow: var(--shadow);
}
.prod-specs span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
}
.prod-specs svg { flex: 0 0 13px; color: var(--blue); }
.prod-specs b { font-size: 12px; line-height: 1.25; }
.search-more {
  margin: 10px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}
.shelf-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.shelf-row::-webkit-scrollbar { display: none; }
.shelf-row .pcard { flex: 0 0 46%; max-width: 168px; }
.pcard .body { padding: 10px 11px 12px; }
.pcard .meta { color: var(--muted); font-size: 11px; margin-bottom: 3px; }
.pcard h4 { font-size: 13px; line-height: 1.25; min-height: 2.4em; }
.pcard .short {
  color: var(--muted); font-size: 11px; margin: 5px 0 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pcard .row {
  display: flex; justify-content: space-between; align-items: center;
}
.price { font-weight: 800; font-size: 13px; color: var(--blue); }
.buy {
  background: var(--blue); color: #fff;
  border-radius: 999px; padding: 6px 10px; font-size: 11px; font-weight: 700;
}

.search-wrap { margin-top: 12px; }
.search {
  background: var(--card);
  border-radius: 16px;
  padding: 8px 8px 8px 12px;
  display: flex; gap: 8px; align-items: center;
  box-shadow: var(--shadow);
  color: var(--muted);
}
.search svg { flex: 0 0 auto; opacity: .55; }
.search input {
  flex: 1; border: 0; outline: 0; background: transparent;
  color: var(--text); font-size: 15px;
  min-width: 0;
}
.search input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
.search-clear {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--soft);
  color: #6e6e73;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
}
.search-go {
  flex: 0 0 auto;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
}

.search-live { margin-top: 12px; }
.search-rail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 4px;
  margin: 0 -2px 10px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.search-rail::-webkit-scrollbar { display: none; }
.search-cover {
  position: relative;
  flex: 0 0 92px;
  width: 92px;
  text-align: left;
  scroll-snap-align: start;
}
.search-cover.game { flex-basis: 84px; width: 84px; }
.search-cover img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  background: #eceef3;
  box-shadow: var(--shadow);
}
.search-cover.game img { aspect-ratio: 3 / 4; }
.search-cover b {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 6px;
  min-height: 2.5em;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
  color: #111;
}
.search-cover span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-hits { display: grid; gap: 8px; }
.hit {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  text-align: left;
  background: var(--card);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow);
}
.hit-pic {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: #eceef3;
}
.hit.game .hit-pic {
  width: 56px;
  height: 74px;
}
.hit-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hit-body { flex: 1; min-width: 0; }
.hit-body h4 {
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hit-body p {
  margin-top: 3px;
  font-size: 12px;
  color: var(--muted);
}
.hit-price {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
}

.chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto;
  background: var(--card);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  color: #3a3a3c;
}
.chip.on { background: var(--blue); color: #fff; }

.banner {
  margin-top: 18px;
  background: var(--blue);
  color: #fff;
  border-radius: 22px;
  padding: 16px;
  display: flex; gap: 12px; align-items: center;
  box-shadow: var(--shadow);
}
.banner .ico {
  width: 44px; height: 44px; border-radius: 14px;
  background: rgba(255,255,255,.16);
  display: grid; place-items: center; flex: 0 0 44px;
}
.banner b { display: block; font-size: 14px; }
.banner span { font-size: 12px; opacity: .86; }

.btn, .button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--blue); color: #fff;
  border-radius: 16px; padding: 14px 16px;
  font-weight: 700; font-size: 15px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
.btn.wide, .button.wide { width: 100%; }
.btn.ghost, .button.secondary { background: var(--soft); color: var(--text); }
.button.small { min-height: 42px; padding: 8px 17px; border-radius: 12px; font-size: 14px; }
.btn:disabled, .button:disabled { opacity: .45; }

.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }

.back {
  margin: calc(6px + var(--safe-t)) 0 10px;
  color: var(--muted); font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
}
.back svg { width: 16px; height: 16px; }
.back-chip {
  margin: calc(6px + var(--safe-t)) 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: var(--card);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px 8px 8px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.back-chip svg { width: 18px; height: 18px; }

.hero-prod {
  background: var(--card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-prod .pic { position: relative; aspect-ratio: 1; height: auto; background: #3478f6; }
.hero-prod.shop .pic {
  aspect-ratio: 16 / 10;
  background: #eef1f6;
}
.hero-prod .pic img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.hero-prod .body { padding: 16px 16px 18px; }
.hero-prod h2 { font-size: 24px; letter-spacing: -.04em; font-weight: 800; line-height: 1.15; }
.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.lead { margin-top: 8px; color: #3a3a3c; font-size: 14px; line-height: 1.45; }
.hero-prod.game .pic {
  aspect-ratio: 1;
  background: #111;
}
.hero-prod.game .pic img { object-fit: contain; }
.hero-prod.game .shade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 58%;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 10, 16, 0.92) 100%);
  pointer-events: none;
}
.hero-prod.game .muted,
.hero-prod.game .kicker { color: rgba(255,255,255,.72); }
.hero-prod.game .flags {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 1;
}
.hero-on {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 18px 16px 16px;
  color: #fff;
}
.hero-on h2 { color: #fff; font-size: 22px; }
.hero-price {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.desc { margin-top: 12px; color: #3a3a3c; font-size: 14px; line-height: 1.5; white-space: pre-wrap; }
.muted { color: var(--muted); font-size: 13px; }

.section > h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.plans { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 4px; }
.plan {
  background: var(--card);
  border-radius: 18px;
  padding: 12px 14px;
  text-align: left;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.plan.on { outline: 2px solid var(--blue); background: #f3f8ff; }
.plan-main { display: flex; align-items: center; gap: 10px; min-width: 0; }
.plan-copy { min-width: 0; }
.plan-copy b { display: block; font-size: 14px; line-height: 1.25; }
.plan-copy small { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; font-weight: 600; }
.plan-price { color: var(--blue); font-size: 15px; font-weight: 800; white-space: nowrap; }
.plan-price .price-old { font-size: 12px; font-weight: 700; }
.tier-badge {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 10px;
  padding: 6px 8px;
  line-height: 1;
}
.tier-badge.p3 { background: #3478f6; color: #fff; }
.tier-badge.p2 { background: #ff9f0a; color: #111; }

.tier-explain { display: grid; gap: 8px; }
.tier-card {
  background: var(--card);
  border-radius: 20px;
  padding: 14px 14px 12px;
  box-shadow: var(--shadow);
}
.tier-card.p3 { outline: 1px solid rgba(52, 120, 246, .22); }
.tier-card.p2 { outline: 1px solid rgba(255, 159, 10, .28); }
.tier-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.tier-head b { font-size: 15px; }
.tier-card p { font-size: 13px; line-height: 1.45; color: #3a3a3c; }
.tier-card ul { margin: 10px 0 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.tier-card li {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 650; color: #1d1d1f;
}
.tier-card li svg { flex: 0 0 16px; color: var(--blue); }
.faq-note {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}

.faq {
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-top: 8px;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i {
  flex: 0 0 8px;
  width: 8px; height: 8px;
  border-right: 2px solid #c7c7cc;
  border-bottom: 2px solid #c7c7cc;
  transform: rotate(45deg);
  margin-top: -4px;
}
.faq[open] summary i { transform: rotate(225deg); margin-top: 4px; }
.faq p {
  padding: 0 14px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #3a3a3c;
}
.faq-body { padding: 0 14px 6px; }
.faq-body p {
  padding: 0 0 12px;
  font-size: 13px;
  line-height: 1.55;
  color: #3a3a3c;
}
.faq-head p, .faq-group h4 { margin: 0; }

.how-lead {
  margin: -4px 0 12px;
  font-size: 13px;
  line-height: 1.45;
  color: #3a3a3c;
}
.how-list { display: grid; gap: 8px; }
.how-step {
  background: var(--card);
  border-radius: 20px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  text-align: left;
}
.how-step span {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin: 0;
}
.how-step h4 { font-size: 15px; letter-spacing: -0.02em; margin-bottom: 4px; }
.how-step p { font-size: 13px; line-height: 1.45; color: #3a3a3c; }

.how {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.how div {
  background: var(--card);
  border-radius: 16px;
  padding: 12px 10px 13px;
  box-shadow: var(--shadow);
  text-align: left;
}
.how span {
  display: grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 8px;
}
.how b { display: block; font-size: 13px; }
.how small { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; line-height: 1.35; }

.list { display: grid; gap: 8px; }
.line {
  background: var(--card);
  border-radius: 18px;
  padding: 13px 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow);
  text-decoration: none; color: inherit;
}
.line .ico {
  width: 36px; height: 36px; border-radius: 12px;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center; flex: 0 0 36px;
}
.line .ico svg { width: 18px; height: 18px; }
.line h4 { font-size: 14px; }
.line .grow { flex: 1; }
.chev { color: var(--muted); }

.profile-head { text-align: center; padding-top: calc(10px + var(--safe-t)); }
.profile-head h2 { margin-top: 10px; font-size: 22px; }
.avatar {
  width: 84px; height: 84px; border-radius: 50%;
  margin: 0 auto 10px;
  background: var(--blue);
  color: #fff; display: grid; place-items: center;
  font-weight: 800; font-size: 28px;
  overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.id-badge {
  display: inline-flex; align-items: center;
  border-radius: 999px; overflow: hidden;
  font-size: 12px; font-weight: 700;
}
.id-badge .left { background: var(--blue); color: #fff; padding: 6px 8px; }
.id-badge .right { background: var(--soft); padding: 6px 10px; }
.settings {
  position: absolute; right: 16px; top: calc(12px + var(--safe-t));
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--card); display: grid; place-items: center;
  box-shadow: var(--shadow); color: var(--muted);
}

.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.mini {
  border-radius: 20px; padding: 14px;
  min-height: 96px;
  text-align: left;
}
.mini.plus {
  background: linear-gradient(135deg, #7a5cff, #3478f6);
  color: #fff;
}
.mini.plain { background: var(--soft); }
.mini label { font-size: 12px; opacity: .8; display: block; margin-bottom: 16px; }
.mini b { font-size: 16px; }

.balance {
  margin-top: 12px;
  background: var(--soft);
  border-radius: 20px;
  padding: 16px;
  text-align: left;
}
.balance label { color: var(--muted); font-size: 12px; }
.balance strong { display: block; font-size: 28px; margin-top: 4px; }

.empty { text-align: center; padding: 40px 10px; color: var(--muted); }
.actions { display: grid; gap: 8px; margin-top: 16px; }
.total { display: flex; justify-content: space-between; margin-top: 14px; font-weight: 800; }

.tabbar {
  position: fixed; left: 50%; bottom: calc(12px + var(--safe-b));
  transform: translateX(-50%);
  width: min(360px, calc(100% - 28px));
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(17,24,39,.12);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 8px 10px;
}
.tab {
  position: relative;
  text-align: center;
  color: #c7c7cc;
  text-decoration: none;
  font-size: 10px;
  padding: 6px 0 2px;
}
.tab.on { color: var(--blue); }
.tab svg { width: 22px; height: 22px; display: block; margin: 0 auto 2px; }

.m-bar {
  position: sticky;
  top: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(430px, 100%);
  margin: 0 auto;
  min-height: 56px;
  padding: calc(8px + var(--safe-t)) 16px 8px;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid #e8eaef;
  backdrop-filter: blur(16px);
}
.m-logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.06em;
  text-decoration: none;
  color: inherit;
  margin-right: auto;
}
.m-logo span { color: #111; }
.hdr-auth {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}
.hdr-login,
.hdr-cabinet {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  padding: 8px 6px;
  white-space: nowrap;
}
.hdr-register {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: #111;
  border-radius: 10px;
  padding: 8px 10px;
  text-decoration: none;
  white-space: nowrap;
}
.hdr-cabinet {
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 10px;
  padding: 8px 10px;
}
.m-burger {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  background: #111;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(17, 24, 39, .18);
}
.m-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.m-burger[aria-expanded="true"] {
  background: var(--blue);
}
@media (max-width: 380px) {
  .m-logo { font-size: 17px; }
  .hdr-login { padding: 8px 4px; font-size: 12px; }
  .hdr-register, .hdr-cabinet { padding: 8px 8px; font-size: 11px; }
}
.m-drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
}
.m-drawer[hidden] { display: none; }
.m-drawer-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  background: rgba(17, 24, 39, .46);
}
.m-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 86vw);
  background: #fff;
  padding: calc(20px + var(--safe-t)) 16px calc(28px + var(--safe-b));
  overflow-y: auto;
  box-shadow: -18px 0 40px rgba(17, 24, 39, .12);
}
.m-drawer-title {
  margin: 14px 12px 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.m-drawer-title:first-child { margin-top: 0; }
.m-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 12px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 750;
  text-decoration: none;
  color: inherit;
}
.m-link.on, .m-link:active { background: var(--blue-soft); color: var(--blue); }
.m-link-blog { color: var(--blue); }
body.menu-open #app { overflow: hidden; }

.toast {
  position: fixed; left: 50%; bottom: calc(88px + var(--safe-b));
  transform: translateX(-50%);
  background: #1c1c1e; color: #fff;
  padding: 12px 16px; border-radius: 14px; font-size: 14px; font-weight: 650;
  z-index: 80;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}

.nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  vertical-align: middle;
}
.tab .nav-badge {
  position: absolute;
  top: 2px;
  left: calc(50% + 8px);
  margin: 0;
}
.nav-badge.pulse { animation: badge-pop .45s ease; }
@keyframes badge-pop {
  0% { transform: scale(.6); }
  55% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.cart-toast {
  position: fixed;
  left: 50%;
  bottom: calc(92px + var(--safe-b));
  transform: translateX(-50%) translateY(16px);
  width: min(420px, calc(100% - 24px));
  background: #111;
  color: #fff;
  border-radius: 18px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 90;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease;
}
.cart-toast.in { opacity: 1; transform: translateX(-50%) translateY(0); }
.cart-toast-pic {
  width: 56px; height: 56px; border-radius: 12px;
  overflow: hidden; background: #2a2a2e; flex: 0 0 56px;
}
.cart-toast-pic img, .cart-toast-pic svg {
  width: 100%; height: 100%; object-fit: cover;
}
.cart-toast-text { flex: 1; min-width: 0; text-align: left; }
.cart-toast-text b { display: block; font-size: 14px; }
.cart-toast-text span {
  display: block; margin-top: 3px; font-size: 12px; color: #c7c7cc;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-toast button {
  flex: 0 0 auto;
  background: var(--blue); color: #fff;
  border-radius: 12px; padding: 10px 12px;
  font-size: 13px; font-weight: 800;
}

.shop-layout { display: grid; gap: 12px; margin-top: 14px; }
.shop-main { display: grid; gap: 10px; }
.shop-box, .shop-sum, .cart-row, .empty-shop {
  background: var(--card);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.shop-box {
  padding: 16px;
  border: 1px solid #eceef3;
}
.shop-box h3, .shop-sum h3 { font-size: 17px; letter-spacing: -0.03em; }
.shop-hint { margin-top: 6px; color: var(--muted); font-size: 13px; line-height: 1.4; }
.shop-box .field span { color: #3a3a3c; }
.checkout-note {
  background: #f3f8ff;
  border: 1px solid #d7e6ff;
  border-radius: 20px;
  padding: 16px;
}
.checkout-note b { display: block; font-size: 15px; margin-bottom: 8px; }
.checkout-note ul {
  margin: 0;
  padding-left: 18px;
  color: #3a3a3c;
  font-size: 13px;
  line-height: 1.5;
  display: grid;
  gap: 6px;
}
.shop-sum { padding: 16px; }
.shop-sum .cart-row { box-shadow: none; padding: 10px 0; border-radius: 0; border-bottom: 1px solid var(--soft); }
.shop-sum .cart-row:last-of-type { border-bottom: 0; }
.sum-line, .sum-total {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  margin-top: 12px;
}
.sum-line { color: var(--muted); font-size: 14px; }
.sum-total { font-size: 15px; }
.sum-total b { font-size: 22px; letter-spacing: -0.04em; }
.shop-sum .btn { margin-top: 14px; }
.pay-legal { margin-top: 10px; font-size: 12px; line-height: 1.4; }
.pay-legal a { color: var(--blue); }

.cart-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
}
.cart-row.compact { grid-template-columns: 64px minmax(0, 1fr) auto; padding: 8px 0; }
.cart-pic {
  display: block; width: 88px; height: 88px;
  border-radius: 14px; overflow: hidden; background: var(--soft);
}
.cart-row.compact .cart-pic { width: 64px; height: 64px; border-radius: 12px; }
.cart-pic img { width: 100%; height: 100%; object-fit: cover; }
.cart-info h4 { font-size: 16px; letter-spacing: -0.03em; line-height: 1.25; }
.cart-info a { color: inherit; text-decoration: none; }
.cart-info p { margin-top: 4px; color: var(--muted); font-size: 13px; }
.cart-side { text-align: right; }
.cart-side strong { display: block; font-size: 16px; }
.qty-box {
  display: inline-flex; align-items: center; gap: 0;
  margin-top: 10px; background: var(--soft); border-radius: 12px; overflow: hidden;
}
.qty-box button {
  width: 36px; height: 36px; font-size: 18px; font-weight: 700; color: var(--text);
}
.qty-box b { min-width: 28px; text-align: center; font-size: 15px; }

.empty-shop { padding: 36px 20px; text-align: center; }
.empty-shop b { display: block; font-size: 20px; }
.empty-shop p { margin: 8px 0 18px; color: var(--muted); font-size: 14px; line-height: 1.45; }
.empty-shop .btn { max-width: 240px; margin: 0 auto; }

.checkout-steps {
  display: flex; align-items: center; gap: 8px;
  margin: 8px 0 4px; color: var(--muted); font-size: 12px; font-weight: 700;
}
.checkout-steps i {
  flex: 1; height: 2px; background: var(--soft); border-radius: 2px;
}
.checkout-steps span.on { color: var(--blue); }

.pay-list { display: grid; gap: 8px; margin-top: 12px; }
.pay-card {
  display: flex; align-items: center; gap: 12px;
  width: 100%; text-align: left;
  background: #f7f8fb;
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 14px;
}
.pay-card.on {
  background: var(--blue-soft);
  border-color: var(--blue);
}
.pay-radio {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid #c7c7cc;
  display: grid; place-items: center; flex: 0 0 22px;
  color: #fff;
}
.pay-card.on .pay-radio {
  background: var(--blue); border-color: var(--blue);
}
.pay-radio svg { width: 14px; height: 14px; }
.pay-ico {
  width: 40px; height: 40px; border-radius: 12px;
  background: #fff; color: var(--blue);
  display: grid; place-items: center; flex: 0 0 40px;
}
.pay-ico svg { width: 20px; height: 20px; }
.pay-ico-brand {
  background: transparent;
  overflow: hidden;
}
.pay-ico-brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: block;
}
.pay-card-banks { align-items: flex-start; }
.pay-sbp-banner {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin-top: 8px;
  border-radius: 12px;
  background: #fff;
}
.pay-card b { display: block; font-size: 15px; }
.pay-card small { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; line-height: 1.35; }
.pay-card em {
  margin-left: auto;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  background: #fff;
  border-radius: 999px;
  padding: 4px 8px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
  background: var(--card);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
}
.shop-box .field {
  background: #f7f8fb;
  box-shadow: none;
  padding: 14px 16px;
  border-radius: 16px;
}
.field.big { margin-top: 12px; }
.field span { font-size: 13px; color: var(--muted); font-weight: 700; }
.field input,
.field textarea {
  border: 0; outline: 0; background: transparent;
  color: var(--text);
  font-size: 18px;
  line-height: 1.35;
  min-height: 44px;
  width: 100%;
  font-family: inherit;
}
.field textarea {
  min-height: 64px; resize: vertical;
}

.auth-box {
  margin-top: 12px;
  background: var(--card);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.auth-box h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
.auth-box .actions { margin-top: 12px; }
.auth-tg {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 16px;
  padding: 14px 16px;
}
.auth-tg span { font-size: 13px; opacity: .72; }
.auth-tg b { font-size: 16px; }
.auth-box [hidden] { display: none !important; }
.auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.auth-tabs button {
  flex: 1;
  border: 0;
  background: #f3f4f8;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}
.auth-tabs button.on {
  background: #111;
  color: #fff;
}
.auth-forgot {
  display: block;
  margin: 10px auto 0;
  border: 0;
  background: none;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}

.any-price {
  margin: 14px 4px 0;
  font-size: 22px;
  font-weight: 800;
}

.copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding: 14px 16px;
  background: #f7f8fb;
  border-radius: 16px;
}
.copy-row span { display: block; font-size: 12px; font-weight: 700; color: var(--muted); }
.copy-row b { display: block; margin-top: 4px; font-size: 18px; letter-spacing: -0.03em; word-break: break-all; }
.copy-row button {
  flex: 0 0 auto;
  background: #fff;
  color: var(--blue);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.shop-box.preferred { outline: 2px solid var(--blue); }
.shop-box .btn { margin-top: 14px; }
.pay-ok { text-align: left; }
.pay-ok .btn { max-width: 280px; }
.pay-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 10000 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 24, 39, .55);
  pointer-events: auto;
}
.pay-modal[hidden] { display: none !important; }
.pay-modal-card {
  width: min(420px, 100%);
  background: #fff;
  border-radius: 22px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.pay-modal-card h2 { margin: 16px 0 8px; font-size: 20px; }
.pay-modal-card p { margin: 0; color: var(--muted); line-height: 1.5; }
.pay-spinner {
  width: 42px;
  height: 42px;
  margin: 0 auto;
  border: 4px solid var(--soft);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: pay-spin .8s linear infinite;
}
.pay-modal[data-state="ok"] .pay-modal-card { outline: 2px solid #12b76a; }
.pay-modal[data-state="fail"] .pay-modal-card { outline: 2px solid #f04438; }
@keyframes pay-spin { to { transform: rotate(360deg); } }

.pay-prep {
  min-height: 52vh;
  display: grid;
  place-items: center;
  padding: 12px 0 40px;
}
.pay-prep-card {
  width: min(440px, 100%);
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
}
.pay-prep-kicker {
  margin: 18px 0 8px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--muted);
}
.pay-prep-card h2 { margin: 0 0 8px; font-size: 22px; letter-spacing: -.03em; }
.pay-prep-card p { margin: 0; color: var(--muted); line-height: 1.5; }
.pay-invoice {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 20px 20px;
  box-shadow: var(--shadow);
}
.pay-invoice-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--soft);
}
.pay-invoice-brand {
  margin: 0 0 4px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--blue);
}
.pay-invoice-head h2 { margin: 0; font-size: 22px; letter-spacing: -.03em; }
.pay-invoice-id { text-align: right; }
.pay-invoice-id span { display: block; font-size: 11px; color: var(--muted); font-weight: 600; }
.pay-invoice-id b { font-size: 14px; }
.pay-invoice-lead { margin: 14px 0 0; color: var(--muted); line-height: 1.5; font-size: 14px; }
.pay-req { margin-top: 16px; display: grid; gap: 10px; }
.pay-req-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--soft);
}
.pay-req-row span { display: block; font-size: 12px; color: var(--muted); font-weight: 600; }
.pay-req-row b { font-size: 18px; letter-spacing: -.02em; }
.pay-card-num {
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
  font-size: 17px !important;
}
.pay-copy {
  flex-shrink: 0;
  border: 0;
  background: #111827;
  color: #fff;
  border-radius: 10px;
  padding: 9px 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.pay-steps {
  margin: 16px 0 18px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}
.pay-invoice-note { margin: 12px 0 0; font-size: 12px; color: var(--muted); line-height: 1.45; }
.pay-invoice .btn, .pay-invoice .button { margin-top: 4px; }
@media (max-width: 420px) {
  .pay-req-row { flex-wrap: wrap; }
  .pay-card-num { font-size: 15px !important; letter-spacing: .04em; }
}

.pay-page #app { padding-bottom: 32px; }
.pay-page .list { margin-top: 8px; }

.kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}
.kpi {
  background: var(--card);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.kpi span { display: block; color: var(--muted); font-size: 12px; font-weight: 600; }
.kpi b { display: block; margin-top: 6px; font-size: 18px; letter-spacing: -0.03em; }

.wallet-addr {
  font-size: 13px;
  word-break: break-all;
  line-height: 1.35;
}

.legal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 18px 0 10px;
  font-size: 12px;
}
.legal-strip a { color: var(--muted); text-decoration: none; }
.legal-strip a:hover { color: var(--blue); }
.site-foot { margin: 18px 0 10px; }
.site-foot .foot-grid { display: none; }
.site-foot .foot-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 12px;
}
.site-foot .foot-bottom span { display: none; }
.site-foot .foot-bottom a { color: var(--muted); text-decoration: none; }
.site-foot .foot-bottom a:hover { color: var(--blue); }
.desk-aside { display: none; }
.prod-crumb { display: none; }

.doc-page { background: var(--bg); }
.doc-page .wrap {
  width: min(760px, 100%);
  padding: 24px 18px 48px;
}
.doc-brand { font-weight: 700; margin-bottom: 10px; }
.doc-brand a { color: inherit; text-decoration: none; }
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 18px;
  font-size: 13px;
}
.legal-nav a { color: var(--blue); text-decoration: none; }
.doc-page h1 {
  font-size: 28px;
  letter-spacing: -0.04em;
  margin: 0 0 8px;
}
.doc-page h2 {
  font-size: 18px;
  margin: 22px 0 8px;
}
.doc p, .doc li {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 10px;
}
.doc a { color: var(--blue); }
.doc-foot { margin-top: 28px; }
.price-wrap { overflow-x: auto; margin: 8px 0 20px; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 14px;
}
.price-table th, .price-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--soft);
}
.price-table th { color: var(--muted); font-size: 12px; font-weight: 600; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td:last-child { font-weight: 700; white-space: nowrap; }

@media (min-width: 980px) {
  html, body {
    height: auto;
    min-height: 100%;
    overflow: auto;
    overflow-x: hidden;
    position: static;
    inset: auto;
    width: auto;
    overscroll-behavior: auto;
  }
  html, body.is-pc {
    height: auto;
    overflow: auto;
  }
  body.is-pc {
    position: static;
    width: auto;
  }
  body.is-pc #app,
  #app {
    height: auto;
    min-height: 100vh;
    overflow: visible;
    padding-bottom: 48px;
    overscroll-behavior: auto;
  }
  body.is-pc .wrap {
    width: min(1280px, calc(100% - 56px));
    padding: 18px 0 0;
  }
  body.is-pc .tabbar,
  body.is-pc .m-bar,
  body.is-pc .m-drawer { display: none; }

  .pc-bar {
    position: sticky;
    top: 0;
    z-index: 40;
    background:
      radial-gradient(1200px 180px at 12% -40%, rgba(255,255,255,.18), transparent 55%),
      linear-gradient(180deg, #163ed4 0%, #0d2ea8 100%);
    border-bottom: 0;
    box-shadow: 0 16px 40px rgba(8, 24, 90, 0.38);
  }
  .pc-bar-inner {
    width: min(1280px, calc(100% - 56px));
    margin: 0 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 0 14px;
  }
  .pc-bar-top {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .pc-logo {
    flex: 0 0 auto;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.07em;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 2px 10px rgba(0,0,0,.25);
  }
  .pc-search-wrap {
    flex: 1;
    min-width: 0;
    margin: 0;
  }
  .pc-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 0;
    border-radius: 16px;
    padding: 8px 8px 8px 16px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    min-height: 56px;
  }
  .pc-search svg { width: 20px; height: 20px; color: #64748b; flex: 0 0 auto; opacity: 1; }
  .pc-search input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 15px;
    min-width: 0;
    color: var(--text);
  }
  .pc-search .search-go {
    background: #0a2c96;
    color: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 4px 12px rgba(8, 30, 110, 0.35);
  }
  .pc-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
  }
  .pc-nav a {
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
  }
  .pc-nav-actions a {
    color: #0d2ea8;
    background: #fff;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  }
  .pc-nav-actions a.on,
  .pc-nav-actions a:hover {
    color: #fff;
    background: #071f78;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  }
  .pc-nav-cats {
    flex-wrap: wrap;
    gap: 8px;
  }
  .pc-nav-cats a {
    color: #fff;
    background: transparent;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.38);
  }
  .pc-nav-cats a.on,
  .pc-nav-cats a:hover {
    color: #0d2ea8;
    background: #fff;
    border-color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  }
  .pc-nav .nav-badge {
    background: #0a2c96;
    color: #fff;
  }
  .pc-nav-actions a.on .nav-badge,
  .pc-nav-actions a:hover .nav-badge {
    background: #fff;
    color: #0a2c96;
  }

  body.is-pc .slider { margin-top: 4px; }
  body.is-pc .slider-view { border-radius: 16px; }
  body.is-pc .slide img { width: 100%; }
  body.is-pc .pc-mosaic {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
  }
  body.is-pc .pc-hero {
    display: grid;
    grid-template-columns: minmax(0, 16fr) minmax(0, 6.75fr) minmax(0, 6.75fr);
    gap: 8px;
    align-items: stretch;
    height: auto;
    margin-top: 0;
  }
  body.is-pc .pc-hero > * {
    min-width: 0;
    min-height: 0;
  }
  body.is-pc .pc-hero-main,
  body.is-pc .pc-hero-side,
  body.is-pc .pc-hero-color {
    position: relative;
    margin: 0;
  }
  body.is-pc .pc-hero-main { aspect-ratio: 16 / 9; }
  body.is-pc .pc-hero-side { height: 100%; }
  body.is-pc .pc-hero-main .slider-view,
  body.is-pc .pc-hero-side .slider-view,
  body.is-pc .pc-hero-color .slider-view {
    position: absolute;
    inset: 0;
    height: auto;
    border-radius: 16px;
    box-shadow: none;
    background: #fff;
    overflow: hidden;
  }
  body.is-pc .pc-hero-main .slider-track,
  body.is-pc .pc-hero-side .slider-track,
  body.is-pc .pc-hero-color .slider-track {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
  }
  body.is-pc .pc-hero-row {
    display: flex;
    gap: 8px;
    height: auto;
    margin-top: 0;
  }
  body.is-pc .pc-mosaic-strips { margin: 0; }
  body.is-pc .pc-hero-color {
    flex: 1 1 0%;
    aspect-ratio: 16 / 9;
  }
  body.is-pc .pc-hero-main .slide,
  body.is-pc .pc-hero-side .slide,
  body.is-pc .pc-hero-color .slide {
    height: 100%;
    background: #fff;
  }
  body.is-pc .pc-hero-main .slide img,
  body.is-pc .pc-hero-side .slide img,
  body.is-pc .pc-hero-color .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #fff;
  }
  body.is-pc .pc-hero-main .slider-dots,
  body.is-pc .pc-hero-side .slider-dots,
  body.is-pc .pc-hero-color .slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    margin: 0;
    z-index: 2;
  }
  body.is-pc .pc-hero-tile {
    display: block;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
  }

  body.is-pc .cat-stack {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
  body.is-pc .cat-banner { border-radius: 18px; }
  body.is-pc .cat-banner:last-child:nth-child(odd) { grid-column: auto; }
  body.is-pc .cat-banner img {
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    object-position: center;
    background: #fff;
  }

  body.is-pc .promo-section { margin-top: 16px; }
  body.is-pc .promo-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  body.is-pc .promo-strip { border-radius: 18px; }
  body.is-pc .promo-strip img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 1;
    object-fit: contain;
    object-position: center;
    background: #fff;
  }

  body.is-pc .news-rail { gap: 14px; }
  body.is-pc .news-card {
    flex: 0 0 360px;
    height: 190px;
    aspect-ratio: auto;
    border-radius: 18px;
  }

  body.is-pc .grid,
  body.is-pc .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
  body.is-pc .home-rail .pcard,
  body.is-pc .shelf-row .pcard {
    flex: 0 0 200px;
    max-width: 200px;
  }
  body.is-pc .review-card { flex: 0 0 320px; }

  body.is-pc .prod-layout {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    margin-top: 8px;
  }
  body.is-pc .prod-layout .hero-prod { margin: 0; }
  body.is-pc .hero-prod.shop .pic,
  body.is-pc .hero-prod.game .pic {
    aspect-ratio: 1;
    max-height: 380px;
  }
  body.is-pc .prod-side .section { margin-top: 16px; }
  body.is-pc .actions { max-width: 420px; }

  body.is-pc .page-title { padding-top: 0; }
  body.is-pc .toast { bottom: 24px; }
  body.is-pc .cart-toast { bottom: 28px; width: min(460px, calc(100% - 48px)); }
  body.is-pc .shop-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
    gap: 22px;
    margin-top: 18px;
  }
  body.is-pc .shop-sum { position: sticky; top: 88px; }
  body.is-pc .cart-row { grid-template-columns: 104px minmax(0, 1fr) auto; padding: 14px; }
  body.is-pc .cart-pic { width: 104px; height: 104px; }
  body.is-pc .pc-nav a { display: inline-flex; align-items: center; }
  body.is-pc .pc-nav .nav-badge { position: static; }
  body.is-pc .pcard,
  body.is-pc .cat-banner,
  body.is-pc .promo-strip { cursor: pointer; }
  body.is-pc .pcard:hover,
  body.is-pc .cat-banner:hover,
  body.is-pc .promo-strip:hover { transform: translateY(-2px); }
  body.is-pc .pcard,
  body.is-pc .cat-banner,
  body.is-pc .promo-strip { transition: transform .15s ease; }

  /* Shop homepage: banners + product rails, not a landing page. */
  body.is-pc #live-main { padding-bottom: 16px; }
  body.is-pc #live-main > .section:not(.promo-section) { margin-top: 22px; }
  body.is-pc .section-head { margin-bottom: 12px; }
  body.is-pc .section-head h3,
  body.is-pc .section > h3 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.03em;
  }

  body.is-pc .home-lents {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
  }
  body.is-pc .home-lents .slider { margin-top: 0; }
  body.is-pc .home-lent .slider-view {
    border-radius: 16px;
    transition: transform .15s ease;
  }
  body.is-pc .home-lent:hover .slider-view { transform: translateY(-2px); }

  body.is-pc .shelf-row.home-rail {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    overflow: visible;
    padding: 0;
  }
  body.is-pc .home-rail .pcard,
  body.is-pc .shelf-row .pcard {
    width: 100%;
    max-width: none;
    min-width: 0;
  }
  body.is-pc .pcard .body { padding: 12px 13px 14px; }
  body.is-pc .pcard h4 { font-size: 14px; }
  body.is-pc .pcard .price { font-size: 14px; }

  body.is-pc .home-news .news-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    padding: 0;
  }
  body.is-pc .home-news .news-card {
    width: 100%;
    height: auto;
    min-width: 0;
    aspect-ratio: 1024 / 488;
    border-radius: 16px;
  }

  body.is-pc .home-categories .cat-stack {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
  }
  body.is-pc .home-categories .cat-banner {
    border-radius: 16px;
  }
  body.is-pc .home-categories .cat-banner:nth-child(-n+2) { grid-column: span 3; }
  body.is-pc .home-categories .cat-banner:nth-child(n+3),
  body.is-pc .home-categories .cat-banner:last-child:nth-child(odd) {
    grid-column: span 2;
  }
  body.is-pc .home-categories .cat-banner img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    background: #fff;
  }

  body.is-pc .home-service-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
  }

  body.is-pc .promo-section { margin-top: 18px; }
  body.is-pc .promo-strip { border-radius: 18px; }
  body.is-pc .promo-strip img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 1;
    object-fit: contain;
    object-position: center;
    background: #fff;
  }

  body.is-pc .home-how .how-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }
  body.is-pc .home-reviews .review-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    padding: 0;
  }
  body.is-pc .home-reviews .review-card { min-width: 0; }
  body.is-pc .home-faq {
    display: block;
    margin-top: 36px;
    padding: 32px 0 8px;
  }
  body.is-pc .faq-head { max-width: 720px; margin-bottom: 22px; }
  body.is-pc .faq-head h3 {
    margin: 0 0 8px;
    font-size: 28px;
    letter-spacing: -.04em;
  }
  body.is-pc .faq-head p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
  }
  body.is-pc .faq-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 28px;
    align-items: start;
  }
  body.is-pc .faq-group h4 {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted);
  }
  body.is-pc .home-faq .faq {
    margin-top: 8px;
    border: 1px solid #e7e9ef;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(20, 34, 66, .04);
  }
  body.is-pc .home-faq .faq summary {
    min-height: 58px;
    padding: 16px 18px;
    font-size: 15px;
    line-height: 1.35;
  }
  body.is-pc .home-faq .faq-body { padding: 0 18px 8px; }
  body.is-pc .home-faq .faq-body p {
    font-size: 14px;
    line-height: 1.65;
    color: #3a3a3c;
  }

  body.is-pc .site-foot {
    margin: 48px 0 0;
    padding: 42px 0 28px;
    background: #111827;
    color: #98a2b3;
  }
  body.is-pc .foot-inner {
    width: min(1280px, calc(100% - 56px));
    margin: 0 auto;
  }
  body.is-pc .site-foot .foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  body.is-pc .foot-brand b {
    display: block;
    color: #fff;
    font-size: 20px;
    letter-spacing: -.04em;
  }
  body.is-pc .foot-brand p {
    margin: 10px 0 14px;
    max-width: 340px;
    line-height: 1.55;
    font-size: 14px;
  }
  body.is-pc .foot-tg {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }
  body.is-pc .foot-grid h4 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  body.is-pc .foot-grid a {
    display: block;
    margin: 0 0 8px;
    color: #98a2b3;
    text-decoration: none;
    font-size: 14px;
  }
  body.is-pc .foot-grid a:hover,
  body.is-pc .foot-tg:hover { color: #fff; }
  body.is-pc .site-foot .foot-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    font-size: 13px;
  }
  body.is-pc .site-foot .foot-bottom span { display: block; }
  body.is-pc .site-foot .foot-bottom nav { display: flex; flex-wrap: wrap; gap: 8px 16px; }
  body.is-pc .site-foot .foot-bottom a { color: #98a2b3; text-decoration: none; }
  body.is-pc .site-foot .foot-bottom a:hover { color: #fff; }

  body.is-pc .hide-on-pc { display: none !important; }
  body.is-pc .desk-shop {
    display: grid;
    grid-template-columns: 232px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    margin-top: 6px;
  }
  body.is-pc .desk-aside {
    display: block;
    position: sticky;
    top: 88px;
    align-self: start;
    max-height: calc(100vh - 112px);
    overflow: auto;
    padding: 20px 18px 22px;
    border: 1px solid #e7e9ef;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(20, 34, 66, .05);
  }
  body.is-pc .desk-aside h2 {
    font-size: 20px;
    letter-spacing: -.04em;
    margin-bottom: 14px;
  }
  body.is-pc .desk-aside h3 {
    margin: 18px 0 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted);
  }
  body.is-pc .desk-nav { display: grid; gap: 4px; }
  body.is-pc .desk-nav-link {
    display: block;
    padding: 8px 10px;
    border-radius: 12px;
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 650;
  }
  body.is-pc .desk-nav-link:hover { background: #f4f6fb; }
  body.is-pc .desk-nav-link.on {
    color: var(--blue);
    background: var(--blue-soft);
  }
  body.is-pc .desk-main .section-head h3 { font-size: 22px; }
  body.is-pc .catalog-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
  }
  body.is-pc .shelf-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    overflow: visible;
    padding: 0;
  }
  body.is-pc .shelf-row .pcard,
  body.is-pc .home-rail .pcard {
    flex: none;
    width: 100%;
    max-width: none;
    min-width: 0;
  }
  body.is-pc .desk-main > .section.home-shelf { margin-top: 28px; }
  body.is-pc .desk-main > .section.home-shelf:first-of-type { margin-top: 0; }

  body.is-pc .prod-crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 8px 0 16px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
  }
  body.is-pc .prod-crumb a { color: var(--muted); text-decoration: none; }
  body.is-pc .prod-crumb a:hover { color: var(--blue); }
  body.is-pc .prod-crumb b { color: var(--text); font-weight: 750; }
  body.is-pc .back-chip,
  body.is-pc button.back { display: none; }
  body.is-pc .prod-layout {
    display: grid;
    grid-template-columns: minmax(400px, 460px) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
    margin-top: 4px;
  }
  body.is-pc .hero-prod { border-radius: 28px; }
  body.is-pc .hero-prod.shop .pic,
  body.is-pc .hero-prod.game .pic {
    aspect-ratio: 1;
    max-height: none;
    height: auto;
  }
  body.is-pc .hero-on h2 { font-size: 28px; }
  body.is-pc .prod-side {
    position: sticky;
    top: 88px;
    padding: 24px;
    border: 1px solid #e7e9ef;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(20, 34, 66, .055);
  }
  body.is-pc .prod-side .section { margin-top: 18px; }
  body.is-pc .prod-side .section > h3 { font-size: 18px; }
  body.is-pc .prod-side .field { margin-top: 12px; }
  body.is-pc .prod-side .any-price { margin-top: 12px; font-size: 22px; font-weight: 800; }
  body.is-pc .plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  body.is-pc .actions {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
  }
  body.is-pc .prod-extra { margin-top: 42px; }
  body.is-pc .prod-extra .tier-explain {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  body.is-pc .prod-extra .how { gap: 12px; }
  body.is-pc .prod-extra .section:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    align-items: start;
  }
  body.is-pc .prod-extra .section:last-child > h3 { grid-column: 1 / -1; }
  body.is-pc .related-shelf { margin-top: 42px; }
  body.is-pc .shop-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    margin-top: 18px;
  }
  body.is-pc .shop-sum {
    position: sticky;
    top: 88px;
    padding: 22px;
    border: 1px solid #e7e9ef;
    border-radius: 24px;
  }
  body.is-pc .shop-box {
    padding: 22px;
    border: 1px solid #e7e9ef;
    border-radius: 24px;
  }
  body.is-pc .page-title { font-size: 32px; }
  body.is-pc .checkout-steps { max-width: 520px; margin: 10px 0 8px; }
  body.is-pc .empty-shop { padding: 56px 32px; }
  body.is-pc .profile-desk {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
    margin-top: 8px;
  }
  body.is-pc .profile-head {
    display: flex;
    text-align: left;
    align-items: center;
    gap: 16px;
    padding-top: 8px;
  }
  body.is-pc .profile-head h2 { margin: 0; font-size: 26px; }
  body.is-pc .avatar { margin: 0; }
  body.is-pc .profile-side {
    position: sticky;
    top: 88px;
  }
  body.is-pc .search-live { margin-top: 8px; }
  body.is-pc .search-rail {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    margin: 0 0 18px;
    padding: 0;
  }
  body.is-pc .search-cover,
  body.is-pc .search-cover.game {
    width: auto;
    flex: none;
  }
  body.is-pc .search-hits {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* ASA marketplace header */
.asa-market {
  position: sticky;
  top: 0;
  z-index: 60;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
  color: #111;
  border-bottom: 1px solid #e5e7eb;
  box-shadow:
    0 1px 0 #fff inset,
    0 8px 18px rgba(17, 24, 39, .06),
    0 18px 40px rgba(17, 24, 39, .10);
  font: 500 13px/1.3 Arial, Helvetica, sans-serif;
}
.asa-market * { box-sizing: border-box; }
.asa-market button,
.asa-market input { font: inherit; }
.asa-market button { cursor: pointer; }
.asa-market button:focus-visible,
.asa-market a:focus-visible,
.asa-market input:focus-visible {
  outline: 3px solid #e11d2e;
  outline-offset: 4px;
}
.asa-market a { color: inherit; text-decoration: none; }
.asa-market svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.asa-market .asa-wrap {
  position: relative;
  max-width: 1600px;
  margin: auto;
  padding: 8px 40px 0;
}
.asa-market.is-compact .asa-wrap { padding-bottom: 8px; }
.asa-market .asa-utility {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  font-size: 12px;
}
.asa-market .asa-utility div { display: flex; gap: 26px; }
.asa-market .asa-utility a,
.asa-market .asa-utility button {
  border: 0;
  background: none;
  color: #e11d2e;
  font-weight: 800;
  padding: 4px;
}
.asa-market .asa-mainrow {
  display: flex;
  align-items: center;
  gap: 14px;
}
.asa-market .asa-brand {
  font-weight: 900;
  font-size: 38px;
  line-height: .72;
  letter-spacing: -1.8px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 108px;
  color: #111;
  text-shadow: 0 2px 0 #fff, 0 8px 16px rgba(17, 24, 39, .12);
}
.asa-market .asa-brand span {
  font-size: 15px;
  letter-spacing: 4.5px;
  line-height: 1.2;
  margin-top: 4px;
  color: #111;
}
.asa-market .asa-catalog {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 16px;
  border: 0;
  border-radius: 20px;
  background: #e11d2e;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(225, 29, 46, .28);
}
.asa-market .asa-catalog svg {
  fill: currentColor;
  stroke-width: 0;
  width: 17px;
}
.asa-market .asa-search {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 160px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  height: 36px;
  padding: 4px 12px;
  color: #e11d2e;
  box-shadow: 0 1px 0 #fff inset, 0 6px 14px rgba(17, 24, 39, .08);
}
.asa-market .asa-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  background: none;
  color: #111;
  font-size: 14px;
  outline: 0;
}
.asa-market .asa-search input::placeholder { color: #9ca3af; opacity: 1; }
.asa-market .asa-search button {
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  padding: 4px;
  color: #e11d2e;
}
.asa-market .asa-search .search-clear {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  background: #f3f4f6;
  color: #e11d2e;
  font-size: 14px;
}
.asa-market .asa-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.asa-market .asa-actions a,
.asa-market .asa-actions button {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: none;
  color: #e11d2e;
  font-weight: 800;
  padding: 4px 0;
  white-space: nowrap;
}
.asa-market .asa-actions svg { width: 23px; height: 23px; stroke-width: 2.5; color: #e11d2e; }
.asa-market .asa-actions .nav-badge {
  position: static;
  background: #e11d2e;
  color: #fff;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  display: inline-grid;
  place-items: center;
}
.asa-market .asa-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 8px 0 0;
  padding: 2px 0 4px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #d1d5db transparent;
}
.asa-market .asa-nav a,
.asa-market .asa-nav button {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  border: 0;
  background: none;
  color: #e11d2e;
  font-weight: 800;
  padding: 4px 3px;
  border-radius: 10px;
  font-size: 13px;
}
.asa-market .asa-nav svg { width: 19px; height: 19px; color: #e11d2e; }
.asa-market .asa-nav a.on,
.asa-market .asa-utility a.on,
.asa-market .asa-actions a.on {
  background: #ffe4e6;
  border-radius: 10px;
  padding: 4px 6px;
}
.asa-market .asa-catalog.on {
  background: #c8101e;
}
.asa-market a,
.asa-market button { transition: transform .18s, background .18s; }
.asa-market .asa-utility a:hover,
.asa-market .asa-actions a:hover,
.asa-market .asa-nav a:hover,
.asa-market .asa-catalog:hover,
.asa-market .asa-cta a:hover { transform: translateY(-2px); }
.asa-market .asa-promo {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr .65fr;
  gap: 4px;
  align-items: center;
  min-height: 120px;
}
.asa-market .asa-copy { position: relative; z-index: 2; padding: 12px 0 14px; }
.asa-market .asa-copy h1 {
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.05;
  letter-spacing: -.8px;
  margin: 0 0 6px;
  font-weight: 800;
}
.asa-market .asa-copy p {
  margin: 0;
  font-size: clamp(12px, 1.1vw, 15px);
  white-space: nowrap;
}
.asa-market .asa-art {
  position: relative;
  height: 128px;
  align-self: end;
  pointer-events: none;
}
.asa-market .asa-art img {
  position: absolute;
  width: 124%;
  max-width: none;
  height: 120%;
  object-fit: contain;
  left: -13%;
  bottom: -13%;
  animation: asa-float 7s ease-in-out infinite;
}
.asa-market .asa-cta {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-left: 8px;
}
.asa-market .asa-cta a,
.asa-market .asa-cta button {
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 20px;
  background: #e11d2e;
  color: #fff;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(225, 29, 46, .28);
}
.asa-market .asa-cta a span,
.asa-market .asa-cta button span { margin-left: 8px; }
.asa-market .asa-bubble {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  background: #e5e7eb;
}
.asa-market .asa-b1 { width: 90px; height: 90px; top: 4px; left: 28%; }
.asa-market .asa-b2 { width: 44px; height: 44px; top: 0; right: 30%; }
.asa-market .asa-b3 { width: 76px; height: 76px; top: 70px; left: -36px; }
.asa-market .asa-ribbon {
  position: absolute;
  z-index: -1;
  width: 140px;
  height: 210px;
  right: -90px;
  top: 50px;
  border: 24px solid #e5e7eb;
  border-radius: 48%;
  transform: rotate(-28deg);
  pointer-events: none;
}
@keyframes asa-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-7px) rotate(1deg); }
}
@media (min-width: 1600px) {
  .asa-market .asa-promo { min-height: 136px; }
  .asa-market .asa-art { height: 144px; }
}
@media (max-width: 1250px) {
  .asa-market .asa-wrap { padding: 8px 25px 0; }
  .asa-market.is-compact .asa-wrap { padding-bottom: 8px; }
  .asa-market .asa-mainrow { gap: 10px; }
  .asa-market .asa-brand { font-size: 32px; width: 92px; }
  .asa-market .asa-brand span { font-size: 13px; }
  .asa-market .asa-catalog { padding: 0 12px; }
  .asa-market .asa-actions { gap: 12px; }
  .asa-market .asa-actions a,
  .asa-market .asa-actions button { flex-direction: column; gap: 2px; font-size: 11px; }
  .asa-market .asa-nav { margin-left: 0; gap: 8px 16px; }
  .asa-market .asa-nav a,
  .asa-market .asa-nav button { gap: 4px; font-size: 12px; }
  .asa-market .asa-promo { grid-template-columns: 1.05fr 1fr .65fr; }
  .asa-market .asa-cta a,
  .asa-market .asa-cta button { font-size: 13px; padding: 8px 12px; }
  .asa-market .asa-art { height: 116px; }
}
@media (max-width: 950px) {
  .asa-market .asa-mainrow { flex-wrap: wrap; }
  .asa-market .asa-brand { margin-right: auto; }
  .asa-market .asa-search { order: 4; flex-basis: 100%; height: 34px; }
  .asa-market .asa-actions a,
  .asa-market .asa-actions button { flex-direction: row; }
  .asa-market .asa-nav { margin: 6px 0 0; justify-content: flex-start; gap: 12px; }
  .asa-market .asa-promo { grid-template-columns: 1.2fr 1fr; min-height: 128px; }
  .asa-market .asa-copy { align-self: start; padding-bottom: 0; }
  .asa-market .asa-copy h1 { font-size: 22px; }
  .asa-market .asa-copy p { font-size: 13px; white-space: normal; }
  .asa-market .asa-art { grid-column: 2; grid-row: 1 / 3; height: 124px; }
  .asa-market .asa-cta { grid-column: 1; grid-row: 2; text-align: left; padding: 0 0 12px; }
  .asa-market .asa-cta a,
  .asa-market .asa-cta button { padding: 8px 14px; }
}
@media (max-width: 540px) {
  .asa-market { border-radius: 0 0 16px 16px; }
  .asa-market .asa-wrap { padding: 6px 14px 0; }
  .asa-market.is-compact .asa-wrap { padding-bottom: 8px; }
  .asa-market .asa-utility { font-size: 10px; gap: 8px; margin-bottom: 6px; }
  .asa-market .asa-utility div { gap: 8px; }
  .asa-market .asa-utility div a:first-child { display: none; }
  .asa-market .asa-mainrow { gap: 8px; }
  .asa-market .asa-brand { font-size: 26px; width: 72px; }
  .asa-market .asa-brand span { font-size: 11px; letter-spacing: 3px; }
  .asa-market .asa-catalog { min-height: 32px; padding: 0 10px; font-size: 11px; gap: 5px; }
  .asa-market .asa-catalog svg { width: 14px; }
  .asa-market .asa-actions { gap: 10px; }
  .asa-market .asa-actions a > span:not(.nav-badge) { display: none; }
  .asa-market .asa-actions svg { width: 20px; height: 20px; }
  .asa-market .asa-nav { gap: 12px; }
  .asa-market .asa-nav a,
  .asa-market .asa-nav button { flex-direction: column; font-size: 10px; gap: 2px; }
  .asa-market .asa-nav svg { width: 16px; height: 16px; }
  .asa-market .asa-search { height: 34px; padding: 4px 10px; }
  .asa-market .asa-search input { font-size: 16px; }
  .asa-market .asa-search input::placeholder { font-size: 12px; }
  .asa-market .asa-promo { min-height: 112px; grid-template-columns: 1.1fr 1fr; }
  .asa-market .asa-copy h1 { font-size: 16px; letter-spacing: -.4px; }
  .asa-market .asa-copy p { font-size: 11px; max-width: 160px; }
  .asa-market .asa-art { height: 104px; }
  .asa-market .asa-art img { width: 150%; left: -30%; bottom: -7%; }
  .asa-market .asa-cta a,
  .asa-market .asa-cta button { font-size: 11px; padding: 7px 12px; }
  .asa-market .asa-cta a span,
  .asa-market .asa-cta button span { margin-left: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  .asa-market * { animation: none !important; transition: none !important; }
}

.gta-app { display: grid; gap: 16px; }
.gta-app-hero {
  overflow: hidden;
  border-radius: 22px;
  background: #111827;
  color: #fff;
}
.gta-app-hero .pic { position: relative; }
.gta-app-hero .pic img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.gta-app-hero .body { padding: 16px 16px 18px; }
.gta-app-hero .kicker { color: #3de0d0; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.gta-app-hero h2 { margin: 6px 0 8px; font-size: 28px; letter-spacing: -.04em; }
.gta-app-hero .lead { margin: 0; color: rgba(255,255,255,.74); line-height: 1.5; }
.gta-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.gta-pills span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 750;
}
.gta-chips { flex-wrap: wrap; overflow: visible; }
.gta-app-grid { display: grid; gap: 8px; }
.gta-offer {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line, #e6eaf0);
  border-radius: 16px;
  background: #fff;
  text-align: left;
  font: inherit;
  color: inherit;
}
.gta-offer.on { border-color: #3478f6; background: #f3f8ff; box-shadow: 0 0 0 3px rgba(52,120,246,.12); }
.gta-offer-top { display: flex; align-items: center; gap: 8px; }
.gta-offer-top em {
  margin-left: auto;
  color: #c01048;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}
.gta-offer small { color: #667085; }
@media (min-width: 980px) {
  .gta-app-grid { grid-template-columns: 1fr 1fr; }
}

html:has(body.is-site),
body.is-site {
  height: auto;
  overflow: auto;
  overscroll-behavior: auto;
}
body.is-site {
  position: static;
  inset: auto;
  width: auto;
}
body.is-site #app {
  height: auto;
  min-height: 100vh;
  overflow: visible;
  padding-bottom: calc(96px + var(--safe-b));
}
body.is-site.is-pc #app { padding-bottom: 48px; }
body.is-site a.pcard { display: block; color: inherit; text-decoration: none; cursor: pointer; }
body.is-site .crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin: 4px 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
body.is-site .crumbs a { color: var(--muted); text-decoration: none; }
body.is-site .crumbs a:hover { color: var(--blue); }
body.is-site .site-cats { flex-wrap: wrap; overflow: visible; margin: 12px 0 4px; }
body.is-site .chip { text-decoration: none; }
body.is-site .buy-box .plan { cursor: pointer; position: relative; }
body.is-site .buy-box .plan input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
body.is-site .buy-box .plan:has(input:checked) {
  outline: 2px solid var(--blue);
  background: #f3f8ff;
}
body.is-site .hint { margin-top: 10px; color: var(--muted); font-size: 12px; line-height: 1.4; }
body.is-site .pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
body.is-site .pagination a,
body.is-site .pagination span {
  min-width: 36px;
  padding: 8px 10px;
  border-radius: 12px;
  background: var(--card);
  box-shadow: var(--shadow);
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
body.is-site .pagination a[aria-current="page"],
body.is-site .pagination span[aria-current="page"] { outline: 2px solid var(--blue); }
body.is-site .hero-prod h1 {
  font-size: 24px;
  letter-spacing: -.04em;
  font-weight: 800;
  line-height: 1.15;
}
body.is-site .hero-on h1 { color: #fff; font-size: 22px; }
body.is-site .gta-store .chips { flex-wrap: wrap; overflow: visible; }
body.is-site .shop-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #111827;
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  z-index: 80;
}
@media (min-width: 980px) {
  body.is-site.is-pc .hero-on h1 { font-size: 28px; }
}

body.is-site #shop-app { padding-bottom: 28px; }
body.is-site #shop-app .page-title { padding-top: 8px; }
body.is-site .back { margin-top: 0; }
body.is-site .shop-sum a.btn { text-align: center; }
body.is-site .shop-sum .btn + .btn,
body.is-site .shop-sum .btn + a.btn { margin-top: 8px; }
body.is-site .shop-card,
body.is-site .shop-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  margin: 16px 0;
  box-shadow: var(--shadow);
}
body.is-site .shop-field { display: grid; gap: 8px; margin: 14px 0; font-weight: 700; color: var(--text); }
body.is-site .shop-field input,
body.is-site .shop-field select {
  height: 48px;
  border: 1px solid #d7dbe3;
  border-radius: 14px;
  padding: 0 14px;
  font: inherit;
  background: #f7f8fb;
}
body.is-site .shop-field input:focus {
  outline: 2px solid var(--blue);
  border-color: var(--blue);
  background: #fff;
}
body.is-site .shop-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 10px 0 4px; }
body.is-site .shop-choice {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #d7dbe3;
  border-radius: 14px;
  background: #f7f8fb;
  cursor: pointer;
  font-weight: 700;
}
body.is-site .shop-choice:has(input:checked) {
  border-color: var(--blue);
  background: #f3f8ff;
  color: #1857d8;
}
body.is-site .shop-choices.pay-methods { grid-template-columns: 1fr; }
body.is-site .shop-choice-pay { align-items: flex-start; min-height: 0; padding: 14px; position: relative; }
body.is-site .shop-choice-pay > input { position: absolute; opacity: 0; pointer-events: none; }
body.is-site .pay-method { display: grid; gap: 10px; width: 100%; }
body.is-site .pay-method-head { display: flex; align-items: center; gap: 10px; font-size: 17px; letter-spacing: -.03em; }
body.is-site .pay-brand { width: 36px; height: 36px; border-radius: 10px; display: block; flex: 0 0 36px; }
body.is-site .pay-sbp-banner { display: block; width: 100%; max-width: 560px; height: auto; border-radius: 12px; background: #fff; }
body.is-site .checkout-note {
  background: #f3f8ff;
  border: 1px solid #d7e6ff;
  border-radius: 20px;
  padding: 18px 20px;
  margin: 4px 0 18px;
}
body.is-site .checkout-note b { display: block; font-size: 16px; margin-bottom: 8px; }
body.is-site .checkout-note ul { margin: 0; padding-left: 18px; color: #3a3a3c; font-size: 14px; line-height: 1.5; display: grid; gap: 6px; }
body.is-site .checkout-legal { margin: 12px 0 0; font-size: 12px; line-height: 1.45; text-align: center; }
body.is-site .checkout-legal a { color: var(--blue); }
body.is-site .shop-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
body.is-site .shop-line:last-child { border-bottom: 0; }
body.is-site .shop-line h3 { margin: 0 0 4px; font-size: 17px; }
body.is-site .shop-line-meta { display: flex; align-items: center; gap: 10px; }
body.is-site .shop-line-meta input { width: 64px; height: 38px; border: 1px solid var(--line); border-radius: 10px; padding: 0 8px; }
body.is-site .shop-total { display: flex; justify-content: space-between; margin-top: 12px; font-size: 18px; }
body.is-site .shop-note { background: var(--soft); border-radius: 16px; padding: 18px; }
body.is-site .text-btn {
  border: 0;
  background: none;
  color: var(--blue);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}
body.is-site .checkout-block h2 { margin: 0 0 6px; font-size: 20px; letter-spacing: -.03em; }
body.is-site .eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body.is-site .blog-index,
body.is-site .article { max-width: 820px; padding-bottom: 28px; }
body.is-site .blog-index h1,
body.is-site .article h1 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: -.04em;
  font-weight: 800;
  line-height: 1.15;
}
body.is-site .blog-list,
body.is-site .related-grid { display: grid; gap: 14px; }
body.is-site .blog-card,
body.is-site .related-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow);
}
body.is-site .blog-card img { width: 100%; height: auto; border-radius: 14px; display: block; }
body.is-site .blog-card h2 { margin: 6px 0 10px; font-size: 22px; letter-spacing: -.03em; }
body.is-site .blog-card h2 a { color: inherit; text-decoration: none; }
body.is-site .article-meta,
body.is-site .toc p { color: var(--muted); font-size: 13px; }
body.is-site .article-cover { margin: 20px 0 8px; max-width: 560px; }
body.is-site .article-cover img,
body.is-site .article-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
body.is-site .toc {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--soft);
  margin: 8px 0 24px;
}
body.is-site .toc ol { margin: 8px 0 0; padding-left: 20px; line-height: 1.8; }
body.is-site .toc a { color: var(--blue); }
body.is-site .article-body { font-size: 16px; line-height: 1.7; color: #1d2939; }
body.is-site .article-body h2 { margin: 36px 0 12px; font-size: clamp(22px, 3vw, 28px); letter-spacing: -.03em; }
body.is-site .article-body h3 { margin: 24px 0 8px; font-size: 20px; }
body.is-site .article-body p { margin: 0 0 14px; }
body.is-site .article-body a { color: var(--blue); font-weight: 650; }
body.is-site .article-body ul,
body.is-site .article-body ol { margin: 0 0 16px; padding-left: 22px; }
body.is-site .article-body li { margin: 0 0 8px; }
body.is-site .article-figure { margin: 22px 0 26px; max-width: 560px; }
body.is-site .article-figure figcaption { margin-top: 10px; color: var(--muted); font-size: 13px; line-height: 1.5; }
body.is-site .article-note,
body.is-site .article-quote {
  margin: 18px 0 24px;
  padding: 16px 18px;
  border-left: 4px solid var(--blue);
  border-radius: 0 16px 16px 0;
  background: #f8faff;
  color: #344054;
}
body.is-site .article-note p,
body.is-site .article-quote p { margin: 0; }
body.is-site .table-wrap { overflow-x: auto; margin: 8px 0 28px; }
body.is-site .article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: #fff;
}
body.is-site .article-table th,
body.is-site .article-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
body.is-site .article-table th { background: #f8faff; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: #475467; }
body.is-site .article-steps { list-style: none; padding: 0; margin: 8px 0 28px; counter-reset: article-step; }
body.is-site .article-steps li {
  position: relative;
  margin: 0 0 14px;
  padding: 16px 18px 16px 64px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
body.is-site .article-steps li::before {
  counter-increment: article-step;
  content: counter(article-step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--soft);
  color: var(--blue);
  font-weight: 800;
}
body.is-site .faq-list { display: grid; gap: 10px; margin: 8px 0 28px; }
body.is-site .article-faq {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 4px 16px;
}
body.is-site .article-faq summary { cursor: pointer; font-weight: 750; padding: 14px 0; }
body.is-site .article-faq p { margin: 0 0 14px; color: #344054; }
body.is-site .article-cta {
  display: grid;
  gap: 18px;
  margin: 28px 0 8px;
  padding: 20px;
  border-radius: 22px;
  background: #111827;
  color: #fff;
}
body.is-site .article-cta-title { margin: 6px 0 10px; font-size: clamp(22px, 3vw, 28px); letter-spacing: -.03em; font-weight: 800; }
body.is-site .article-cta p { color: #d0d5dd; }
body.is-site .article-cta .button.secondary { background: #fff; }
body.is-site .article-cta img { width: 100%; height: auto; border-radius: 12px; }
body.is-site .related-shelf { margin: 28px 0 16px; }
body.is-site .related-posts { margin: 28px 0 16px; }
body.is-site .related-posts h2,
body.is-site .related-shelf h2 { margin: 0 0 12px; font-size: 22px; }
body.is-site .related-card { color: inherit; text-decoration: none; min-height: 110px; }
body.is-site .related-card span { display: block; margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.45; }
body.is-site .asa-utility a.on { color: #fff; font-weight: 800; }
@media (min-width: 720px) {
  body.is-site .blog-card { grid-template-columns: minmax(180px, 280px) 1fr; align-items: start; }
  body.is-site .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.is-site .article-cta { grid-template-columns: 1.05fr .95fr; align-items: center; }
}
@media (max-width: 560px) {
  body.is-site .shop-choices { grid-template-columns: 1fr; }
}
