/** Shopify CDN: Minification failed

Line 302:10 Expected identifier but found whitespace
Line 302:11 Unexpected "6px"
Line 1242:187 Unexpected "@keyframes"

**/
/* ============================================================
   BLOXSKINS   Roblox item store. Clean light, blue accent.
   Tokens are driven by CSS vars so the Tweaks panel can retune
   accent / radius / density / fonts / background live.
============================================================ */

:root {
  /* tweakable */
  --accent:        #2563eb;
  --accent-600:    #1d4ed8;
  --accent-050:    #eef4ff;
  --accent-100:    #dbe7ff;
  --radius:        16px;
  --font-display:  'Hanken Grotesk', system-ui, sans-serif;
  --font-body:     'Plus Jakarta Sans', system-ui, sans-serif;
  --page-bg:       #f6f7f9;
  --card-pad:      16px;
  --grid-gap:      18px;

  /* fixed */
  --ink:           #0f1421;
  --ink-2:         #3b4253;
  --ink-3:         #6b7280;
  --ink-4:         #9aa1ad;
  --surface:       #ffffff;
  --line:          #eceef2;
  --line-2:        #e2e5ea;
  --radius-sm:     calc(var(--radius) * 0.6);
  --radius-pill:   999px;
  --shadow-sm:     0 1px 2px rgba(16,20,33,.04), 0 1px 3px rgba(16,20,33,.06);
  --shadow-md:     0 4px 14px rgba(16,20,33,.06), 0 2px 6px rgba(16,20,33,.04);
  --shadow-lg:     0 18px 50px -20px rgba(16,20,33,.22);

  /* rarity */
  --r-common:    #94a3b8;
  --r-uncommon:  #22c55e;
  --r-rare:      #3b82f6;
  --r-epic:      #a855f7;
  --r-legendary: #fff;
  --r-secret:    #ec4899;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background-color: var(--page-bg);
  background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), var(--bg-page-img, none);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
#root { min-height: 100vh; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; -webkit-user-drag: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
/* banners: no text/image selection or dragging anywhere on them */
.announce, .announce *, .mkt-banner, .mkt-banner *, .mkt-bn-slide, .mkt-bn-slide *, .hero-panel, .hero-panel * { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-user-drag: none; }
::selection { background: var(--accent-100); }

h1,h2,h3,h4 { font-family: var(--font-display); margin: 0; letter-spacing: -.02em; line-height: 1.05; }

.shell { max-width: 1300px; margin: 0 auto; padding: 0 28px; }

/* ---------- route transition ---------- */
.route-view { animation: routeIn .22s ease-out; transform-origin: top center; }
@keyframes routeIn {
  from { transform: translateY(7px); opacity: .6; }
  to   { transform: none; opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .route-view { animation: none; }
  .hdr-row { transition: none; }
}

/* ---------- ambient page decoration (home) ---------- */
main { position: relative; }
.home-decor { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.hd-shape { position: absolute; display: block; will-change: transform; }
.hd-shape svg { display: block; width: 100%; height: 100%; }
@keyframes hdFloatA {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%      { transform: translateY(-20px) rotate(calc(var(--r, 0deg) + 7deg)); }
}
@keyframes hdFloatB {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%      { transform: translateY(16px) rotate(calc(var(--r, 0deg) - 6deg)); }
}
@media (prefers-reduced-motion: reduce) { .hd-shape { animation: none !important; } }
@media (max-width: 900px) { .home-decor { display: none; } }

/* ---------- announcement bar ---------- */
.announce {
  background: var(--accent-050);
  color: var(--ink-2);
  font-size: 13px;
  text-align: center;
  padding: 9px 16px;
  border-bottom: 1px solid var(--line);
}
.announce b { color: var(--ink); font-weight: 700; }
.announce .lightning { color: var(--accent); }
.announce a { color: var(--accent); font-weight: 700; }

/* ---------- header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.hdr-row { display: flex; align-items: center; gap: 22px; height: 66px; transition: max-width .5s cubic-bezier(.5,0,.2,1); }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -.03em; }
.brand-logo { height: 30px; width: auto; display: block; }
.foot .brand-logo { height: 34px; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(150deg, var(--accent), var(--accent-600));
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 4px 12px -3px color-mix(in srgb, var(--accent) 60%, transparent);
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 14.5px; font-weight: 600; color: var(--ink-2);
  padding: 8px 12px; border-radius: 10px; transition: .15s;
}
.nav a:hover { color: var(--ink); background: var(--page-bg); }
.nav a.active { color: var(--accent); background: var(--accent-050); }

.search {
  width: 100%; display: flex; align-items: center; gap: 10px;
  background: var(--page-bg); border: 1px solid var(--line-2);
  border-radius: var(--radius-pill); padding: 0 16px; height: 42px;
  transition: .18s;
}
.search:focus-within { border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px var(--accent-050); }
.search.open { border-color: var(--accent); background: #fff; }
.search input { border: none; outline: none; background: none; flex: 1; font-size: 14.5px; color: var(--ink); }
.search input::placeholder { color: var(--ink-4); }
.search svg { color: var(--ink-4); flex-shrink: 0; }

/* header search wrapper + live dropdown */
.hdr-search-wrap { flex: 1; max-width: 420px; position: relative; }
.hdr-search-drop {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 200;
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 20px 50px -16px rgba(0,0,0,.28);
  border: 1px solid var(--line-2);
  overflow: hidden; animation: hdrDropIn .13s ease;
}
@keyframes hdrDropIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

.hdr-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.chip-btn {
  display: flex; align-items: center; gap: 7px; height: 42px; padding: 0 14px;
  border: 1px solid var(--line-2); border-radius: 10px;
  font-size: 14px; font-weight: 600; color: var(--ink-2); background: #fff; transition: .15s;
}
.chip-btn:hover { border-color: var(--ink-4); color: var(--ink); }
.acct { display: flex; align-items: center; gap: 9px; height: 42px; padding: 0 6px 0 6px; border: 1px solid var(--line-2); border-radius: 10px; background: #fff; }
.acct-av { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(140deg,#fb923c,#ef4444); display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 12px; position: relative; }
.acct-av::after { content:''; position:absolute; right:-1px; bottom:-1px; width:9px; height:9px; border-radius:50%; background:#22c55e; border:2px solid #fff; }
.acct-meta { line-height: 1.1; padding-right: 4px; }
.acct-meta .n { font-size: 13px; font-weight: 700; }
.acct-meta .b { font-size: 12px; color: var(--accent); font-weight: 700; }
.cart-btn {
  display: flex; align-items: center; gap: 8px; height: 42px; padding: 0 16px;
  border-radius: var(--radius-pill); background: var(--accent); color: #fff;
  font-size: 14px; font-weight: 700; transition: .15s; position: relative;
  box-shadow: 0 4px 12px -4px color-mix(in srgb, var(--accent) 70%, transparent);
}
.cart-btn:hover { background: var(--accent-600); transform: translateY(-1px); }
.cart-count { background: #fff; color: var(--accent); border-radius: 999px; min-width: 19px; height: 19px; padding: 0 5px; display: grid; place-items: center; font-size: 11.5px; font-weight: 800; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; border-radius: 10px; transition: .15s; }
.btn-primary { background: var(--accent); color: #fff; padding: 12px 22px; font-size: 15px; box-shadow: 0 4px 10px -4px color-mix(in srgb, var(--accent) 70%, transparent); }
.btn-primary:hover { background: var(--accent-600); transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--line-2); padding: 12px 20px; font-size: 15px; }
.btn-ghost:hover { border-color: var(--ink-4); }

/* ---------- eyebrow / section heads ---------- */
.eyebrow { font-size: 12.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.sec-head h2 { font-size: 30px; font-weight: 800; white-space: nowrap; }
.sec-head .viewall { flex-shrink: 0; }
.viewall { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--ink-2); padding: 9px 16px; border: 1px solid var(--line-2); border-radius: 10px; background: #fff; transition: .15s; }
.viewall:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   HERO   dark rounded panel (Cloudzy-inspired)
============================================================ */
/* ---- hero shell ---- */
.hero-shell { padding: 28px 0 0; }
.hero-panel {
  position: relative; overflow: hidden;
  border-radius: calc(var(--radius) + 12px);
  background:
    linear-gradient(180deg, rgba(12,18,36,.65), rgba(10,15,31,.8)),
    var(--bg-hero-img, none) #0c1428;
  background-size: auto, cover;
  background-position: center, center;
  padding: 64px 0 88px;
  box-shadow: 0 40px 90px -36px rgba(12,18,36,.55);
  max-width: 1400px; margin-left: auto; margin-right: auto;
}
.hp-collage { position: absolute; inset: -2px; z-index: 0; pointer-events: none;
  background: none;
  opacity: 0;
}
.hp-veil { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(80% 70% at 50% 24%, rgba(10,15,31,.05) 0%, rgba(10,15,31,.18) 52%, rgba(10,15,31,.35) 100%),
    linear-gradient(180deg, rgba(11,16,32,.1) 0%, rgba(10,15,31,.25) 70%, rgba(10,15,31,.4) 100%);
}
.hp-grid { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1.4px);
  background-size: 26px 26px; mask-image: radial-gradient(75% 70% at 50% 30%, #000 35%, transparent 80%);
}
.hp-glow { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(520px 280px at 18% 8%, color-mix(in srgb, var(--accent) 38%, transparent), transparent 70%),
    radial-gradient(480px 300px at 86% 14%, color-mix(in srgb, #7c3aed 30%, transparent), transparent 70%);
  opacity: .8;
}
/* ghost background text */
.hp-ghost { position: absolute; left: -10px; bottom: -20px; font-family: var(--font-display);
  font-size: 190px; font-weight: 800; letter-spacing: -.06em; color: rgba(255,255,255,.045);
  pointer-events: none; z-index: 0; line-height: 1; white-space: nowrap; user-select: none; }

/* 2-col layout */
.hp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 10; }
.hp-content { text-align: left; }
.hp-tag { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(8px);
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.86); }
.hp-tag .lightning { color: color-mix(in srgb, var(--accent) 60%, #fff); }
.hero-panel h1 { font-size: 68px; font-weight: 800; line-height: 1.04; letter-spacing: -.04em; margin: 16px 0 0; color: #fff; }
.hero-panel h1 .accent { background: linear-gradient(95deg, color-mix(in srgb, var(--accent) 50%, #fff), color-mix(in srgb, var(--accent) 85%, #fff)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-panel p { font-size: 16.5px; color: rgba(226,232,240,.72); line-height: 1.6; max-width: 520px; margin: 16px 0 0; }

/* game art cluster */
.hp-visual { position: relative; }
.hpv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hpv-card { position: relative; border-radius: 18px; overflow: hidden; border: 1.5px solid rgba(255,255,255,.14);
  aspect-ratio: 1/1; cursor: pointer; background: #0a0f1f; transition: transform .22s, box-shadow .22s, border-color .22s;
  box-shadow: 0 14px 30px -18px rgba(0,0,0,.6); }
.hpv-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.hpv-card:hover img { transform: scale(1.07); }
.hpv-glow-overlay { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--ga) 55%, #000) 0%, transparent 55%); }
.hpv-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 14px 14px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.hpv-name { font-size: 13.5px; font-weight: 800; color: #fff; font-family: var(--font-display); white-space: nowrap; }
.hpv-count { font-size: 11px; color: rgba(255,255,255,.55); font-weight: 600; white-space: nowrap; }
.hpv-c0, .hpv-c1, .hpv-c2, .hpv-c3 { transform: none; }
.hpv-card:hover { transform: translateY(-4px); z-index: 2; border-color: color-mix(in srgb, var(--ga) 55%, rgba(255,255,255,.14)); box-shadow: 0 24px 48px -14px rgba(0,0,0,.6); }

/* social proof */
.hp-proof { display: flex; align-items: center; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.hp-proof-chip { display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px 7px 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); border-radius: 999px; backdrop-filter: blur(4px); }
.hp-av-row { display: flex; }
.hp-av { width: 28px; height: 28px; border-radius: 50%; border: 2px solid rgba(255,255,255,.35);
  display: grid; place-items: center; font-size: 10.5px; font-weight: 800; color: #fff; position: relative;
  background: linear-gradient(140deg, var(--accent), var(--accent-600)); flex-shrink: 0; }
.hp-proof-txt { font-size: 13px; color: rgba(226,232,240,.8); font-weight: 600; }
.hp-proof-txt b { color: #fff; }
.hp-proof-sep { color: rgba(255,255,255,.25); }
.hp-proof-stars { color: #fff; font-size: 12.5px; letter-spacing: .06em; }
.hp-proof-rating { font-size: 13px; color: rgba(226,232,240,.8); font-weight: 600; }
.hp-proof-rating b { color: #fff; }

.hp-search-wrap { position: relative; max-width: 560px; margin: 26px 0 0; text-align: left; z-index: 30; }
.hp-search { display: flex; gap: 9px; margin: 0; align-items: center;
  background: #fff; border-radius: var(--radius); padding: 8px 8px 8px 18px;
  position: relative; z-index: 2; }
.hp-search svg { color: var(--ink-4); flex-shrink: 0; }
.hp-search input { flex: 1; border: none; outline: none; background: none; font-size: 16px; color: var(--ink); }
.hp-search input::placeholder { color: var(--ink-4); }
.hp-search.open { border-bottom-left-radius: 0; border-bottom-right-radius: 0; border-bottom: 1px solid var(--line-2); }

/* hero cross-product search dropdown */
.hp-results { position: absolute; top: calc(100% - 2px); left: 0; right: 0; z-index: 1;
  background: #fff; border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.55); overflow: hidden; display: flex; flex-direction: column; }
.hp-results-footer { padding: 16px 20px; border-top: 1px solid var(--line); background: var(--surface); }
.hp-games-label { font-size: 12px; font-weight: 800; color: var(--ink-3); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.hp-games-row { display: flex; gap: 8px; flex-wrap: wrap; }
.hp-game-chip { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 10px; border: 1px solid var(--line-2); background: #fff; font-size: 13px; font-weight: 700; color: var(--ink); cursor: pointer; transition: .16s; }
.hp-game-chip:hover { border-color: var(--accent); background: var(--accent-050); color: var(--accent); }
.hp-game-chip img { width: 16px; height: 16px; }
  padding: 6px; animation: hpReveal .14s ease; }
@keyframes hpReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.hp-res-head { display: flex; justify-content: space-between; align-items: center;
  font-size: 11.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-4); padding: 10px 12px 6px; }
.hp-res-head span { color: var(--ink-3); font-weight: 700; letter-spacing: 0; text-transform: none; }
.hp-res-list { display: flex; flex-direction: column; }
.hp-res { display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  padding: 9px 12px; border: none; background: none; border-radius: var(--radius-sm); cursor: pointer; transition: background .12s; }
.hp-res.active { background: var(--accent-050); }
.hp-res-thumb { flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; background: var(--ph-bg); border: 1px solid var(--line-2); }
.hp-res-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hp-res-emoji { font-size: 22px; line-height: 1; }
.hp-res-meta { flex: 1; min-width: 0; }
.hp-res-name { display: block; font-weight: 700; font-size: 15px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hp-res-sub { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--ink-3); font-weight: 600; margin-top: 2px; }
.hp-res-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.hp-res-game { display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
  font-size: 12px; font-weight: 700; color: var(--ink-3); padding: 4px 9px 4px 4px;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius-pill); }
.hp-res-game img { width: 18px; height: 18px; border-radius: 5px; object-fit: cover; }
.hp-res-price { flex-shrink: 0; font-weight: 800; font-size: 15px; color: var(--ink); min-width: 56px; text-align: right; }
.hp-res-all { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  margin-top: 4px; padding: 12px; border: none; background: none; cursor: pointer;
  font-weight: 800; font-size: 13.5px; color: var(--accent); border-top: 1px solid var(--line); border-radius: 0; transition: background .12s; }
.hp-res-all:hover { background: var(--accent-050); }
.hp-trend { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 12px 12px; }
.hp-chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius-pill);
  font-size: 13.5px; font-weight: 700; color: var(--ink-2); cursor: pointer; transition: .12s; }
.hp-chip:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-050); }
.hp-chip svg { color: var(--ink-4); }
.hp-nores { padding: 18px 14px 22px; text-align: center; }
.hp-nores-t { font-weight: 800; font-size: 15.5px; color: var(--ink); }
.hp-nores-d { font-size: 13px; color: var(--ink-3); margin-top: 5px; }

/* vault network of games */
.vault-net { position: relative; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin: 46px auto 0; max-width: 660px; }
.vn-line { position: absolute; left: 6%; right: 6%; top: 32px; height: 1px; z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16) 18%, rgba(255,255,255,.16) 82%, transparent); }
.vn-node { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 0; transition: .2s; }
.vn-thumb { width: 64px; height: 64px; border-radius: 18px; overflow: hidden; border: 2px solid rgba(255,255,255,.16);
  box-shadow: 0 10px 28px -8px color-mix(in srgb, var(--ga) 60%, #000), 0 0 0 5px rgba(255,255,255,.04); transition: .2s; }
.vn-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vn-node:hover { transform: translateY(-5px); }
.vn-node:hover .vn-thumb { border-color: color-mix(in srgb, var(--ga) 70%, #fff); box-shadow: 0 16px 36px -8px color-mix(in srgb, var(--ga) 75%, #000), 0 0 0 5px color-mix(in srgb, var(--ga) 22%, transparent); }
.vn-meta { display: flex; flex-direction: column; align-items: center; line-height: 1.2; }
.vn-name { font-size: 13.5px; font-weight: 700; color: #fff; }
.vn-count { font-size: 11.5px; color: rgba(226,232,240,.5); font-weight: 600; }

/* overlapping stats card */
.stats-card { position: relative; z-index: 5; display: flex; margin: -52px auto 0; max-width: 100%;
  background: var(--surface); border: 1px solid var(--line); border-radius: calc(var(--radius) + 2px); padding: 24px 14px;
  box-shadow: 0 24px 56px -24px rgba(16,20,33,.32); overflow: hidden; }
.stats-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 30%, #7c3aed)); opacity: .9; }
.stat { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 6px 26px; position: relative; }
.stat + .stat::before { content: ''; position: absolute; left: 0; top: 12%; height: 76%; width: 1px; background: var(--line-2); }
.stat-text { text-align: left; }
.stat .v { font-family: var(--font-display); font-size: 33px; font-weight: 800; letter-spacing: -.035em; line-height: 1;
  background: linear-gradient(140deg, var(--accent), var(--accent-600)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .v .star { color: #fff; -webkit-text-fill-color: #fff; font-size: 23px; margin-left: 2px; }
.stat .l { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-4); margin-top: 7px; white-space: nowrap; }
.stat-ic { width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0; display: grid; place-items: center;
  background: var(--accent-050); color: var(--accent); }
.stat-ic svg { width: 22px; height: 22px; }

/* ============================================================
   HOT LISTINGS   game pills + see all
============================================================ */
.hot-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 20px; }
.hot-pill { display: inline-flex; align-items: center; gap: 9px; height: 42px; padding: 0 18px 0 6px;
  border: 1px solid var(--line-2); border-radius: var(--radius-pill); background: var(--surface);
  font-size: 13.5px; font-weight: 700; color: var(--ink-2); transition: .15s; }
.hot-pill:hover { border-color: var(--ink-4); color: var(--ink); }
.hot-pill.active { background: var(--accent); border-color: var(--accent); color: #fff;
  box-shadow: 0 6px 16px -7px color-mix(in srgb, var(--accent) 75%, transparent); }
.hot-pill-ic { width: 30px; height: 30px; border-radius: 50%; overflow: hidden; display: grid; place-items: center;
  flex-shrink: 0; background: var(--page-bg); border: 1px solid var(--line); }
.hot-pill-ic img { width: 100%; height: 100%; object-fit: cover; }
.hot-pill.active .hot-pill-ic { border-color: rgba(255,255,255,.35); }
.hot-pill-all-ic { background: linear-gradient(140deg, var(--accent), var(--accent-600)); color: #fff; border: none; }
.hot-pill.active .hot-pill-all-ic { background: rgba(255,255,255,.22); color: #fff; }

.hot-foot { display: flex; justify-content: center; margin-top: 28px; }
.btn-seeall { display: inline-flex; align-items: center; gap: 9px; height: 48px; padding: 0 26px;
  border-radius: 12px; background: var(--surface); border: 1px solid var(--line-2);
  font-size: 14.5px; font-weight: 700; color: var(--ink); transition: .16s;
  box-shadow: var(--shadow-sm); }
.btn-seeall:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-seeall svg { transition: transform .16s; }
.btn-seeall:hover svg { transform: translateX(3px); }

/* ============================================================
   CATEGORY TILES
============================================================ */
.cat-tiles { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.cat-tile { display: flex; flex-direction: column; align-items: center; gap: 11px; padding: 20px 10px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: .16s; }
.cat-tile:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--line-2)); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cat-ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--accent-050); color: var(--accent); transition: .16s; }
.cat-tile:hover .cat-ic { background: var(--accent); color: #fff; }
.cat-lbl { font-size: 13.5px; font-weight: 700; color: var(--ink-2); }

/* centered section heads */
.centered-head { text-align: center; max-width: 640px; margin: 0 auto 38px; }
.centered-head h2 { font-size: 36px; font-weight: 800; letter-spacing: -.025em; margin-top: 10px; }

/* ============================================================
   HOW IT WORKS   interactive steps + mock panel
============================================================ */
.hiw-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hiw-left {}
.hiw-title { font-size: 34px; font-weight: 800; letter-spacing: -.025em; margin: 10px 0 32px; line-height: 1.15; }
.hiw-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }

.hiw-item { display: flex; gap: 16px; cursor: pointer; }
.hiw-indicator { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 28px; }
.hiw-ind-dot { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--line-2);
  background: var(--surface); display: grid; place-items: center; flex-shrink: 0;
  font-size: 12px; font-weight: 800; color: var(--ink-4); transition: .25s; z-index: 1; }
.hiw-item.hiw-active .hiw-ind-dot,
.hiw-item.hiw-done .hiw-ind-dot { border-color: var(--accent); background: var(--accent); color: #fff; }
.hiw-ind-line { flex: 1; width: 2px; background: var(--line-2); margin: 4px 0; border-radius: 2px;
  overflow: hidden; min-height: 36px; }
.hiw-ind-prog { width: 100%; height: 0; background: var(--accent); border-radius: 2px; }
.hiw-item.hiw-done .hiw-ind-prog { height: 100%; }
.hiw-item.hiw-active .hiw-ind-prog { animation: hiwFill var(--hiw-dur, 3200ms) linear forwards; }
@keyframes hiwFill { from { height: 0; } to { height: 100%; } }

.hiw-body { padding: 2px 0 28px; }
.hiw-step-t { font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: -.01em;
  color: var(--ink-4); transition: color .2s; margin: 0 0 4px; }
.hiw-item.hiw-active .hiw-step-t,
.hiw-item.hiw-done .hiw-step-t { color: var(--ink); }
.hiw-step-d { font-size: 14px; color: var(--ink-3); line-height: 1.6; margin: 0; max-height: 0; overflow: hidden;
  transition: max-height .35s ease, opacity .25s; opacity: 0; }
.hiw-item.hiw-active .hiw-step-d,
.hiw-item.hiw-done .hiw-step-d { max-height: 80px; opacity: 1; }

/* mock product panel */
.hiw-right { position: relative; }
.hiw-mock { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg); }
.hiw-mock-bar { display: flex; align-items: center; gap: 6px; padding: 12px 16px;
  background: var(--page-bg); border-bottom: 1px solid var(--line); }
.hiw-mock-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.hiw-mock-url { flex: 1; text-align: center; font-size: 11.5px; color: var(--ink-4); font-weight: 600;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 6px; padding: 3px 10px; margin: 0 8px; }
.hiw-mock-body { padding: 16px; position: relative; }
.hiw-mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hiw-mini-card { background: var(--page-bg); border: 1.5px solid var(--line); border-radius: 12px;
  padding: 12px 10px; text-align: center; transition: .15s; }
.hiw-mini-card.hiw-mini-selected { border-color: var(--accent); background: var(--accent-050);
  box-shadow: 0 0 0 3px var(--accent-100); }
.hiw-mini-img { font-size: 28px; line-height: 1.2; }
.hiw-mini-name { font-size: 11px; font-weight: 700; color: var(--ink-2); margin-top: 6px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hiw-mini-price { font-size: 12.5px; font-weight: 800; color: var(--ink); margin-top: 3px; }

.hiw-overlay { position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(255,255,255,.88); backdrop-filter: blur(6px); border-radius: 0 0 var(--radius) var(--radius);
  animation: hiwOvIn .25s ease; }
@keyframes hiwOvIn { from { opacity: 0; } to { opacity: 1; } }
.hiw-ov-inner { text-align: center; padding: 24px; }
.hiw-ov-inner svg { color: var(--accent); }
.hiw-ov-t { font-family: var(--font-display); font-size: 20px; font-weight: 800; margin: 10px 0 4px; }
.hiw-ov-sub { font-size: 13.5px; color: var(--ink-3); }
.hiw-ov-bar { height: 4px; background: var(--line-2); border-radius: 4px; margin: 16px 0 0; width: 160px; overflow: hidden; }
.hiw-ov-fill { height: 100%; background: var(--accent); border-radius: 4px; animation: hiwOvFill 1.6s ease forwards; }
@keyframes hiwOvFill { from { width: 0; } to { width: 100%; } }
.hiw-ov-check { display: inline-grid; place-items: center; width: 48px; height: 48px;
  border-radius: 50%; background: #dcfce7; color: #16a34a; }
.hiw-checkout .hiw-ov-check, .hiw-delivered .hiw-ov-t { color: #16a34a; }
@media (max-width: 1100px) { .hiw-layout { grid-template-columns: 1fr; } }

/* ============================================================
   CTA BAND
============================================================ */
.cta-band { position: relative; overflow: hidden; border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(120deg, rgba(10,15,31,.8), rgba(10,15,31,.7)), var(--bg-cta-img, none) #0a0f1f;
  background-size: cover; background-position: center;
  padding: 52px 48px; box-shadow: var(--shadow-lg); isolation: isolate; }
.cta-glow { position: absolute; inset: 0; z-index: 0; background: radial-gradient(420px 260px at 14% 110%, color-mix(in srgb, var(--accent) 34%, transparent), transparent 70%); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-copy { max-width: 600px; }
.cta-copy h2 { font-size: 36px; font-weight: 800; letter-spacing: -.025em; color: #fff; margin-top: 10px; text-wrap: balance; }
.cta-copy p { font-size: 16px; color: rgba(226,232,240,.7); line-height: 1.55; margin: 14px 0 24px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-ondark { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.16); padding: 12px 20px; font-size: 15px; }
.btn-ondark:hover { background: rgba(255,255,255,.14); }
.cta-games { display: flex; }
.cta-thumb { width: 76px; height: 76px; border-radius: 20px; overflow: hidden; border: 2px solid rgba(255,255,255,.12); margin-left: -16px; box-shadow: 0 12px 30px -10px color-mix(in srgb, var(--ga) 60%, #000); transition: .2s; }
.cta-thumb:first-child { margin-left: 0; }
.cta-thumb:hover { transform: translateY(-6px); z-index: 2; }
.cta-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   PAYMENTS BAND
============================================================ */
.pay-band { display: grid; grid-template-columns: minmax(0, 380px) 1fr; align-items: stretch;
  background: linear-gradient(135deg, rgba(255,255,255,.86), rgba(230,245,255,.8)), var(--bg-pay-img, none) #e6f5ff;
  background-size: auto, cover;
  background-position: center, center;
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 6px);
  overflow: hidden; box-shadow: var(--shadow-md); }

/* 3 vertical scrolling columns */
.pay-carousel { display: flex; flex-direction: row; gap: 12px; padding: 28px 28px; background: transparent;
  border-right: 1px solid rgba(15,23,42,.06); overflow: hidden; height: 320px; align-items: stretch; }
.pay-col { flex: 1; overflow: hidden; position: relative; }
/* fade top & bottom edges */
.pay-col::before, .pay-col::after { content: ''; position: absolute; left: 0; right: 0; z-index: 2; height: 52px; pointer-events: none; }
.pay-col::before { top: 0; background: linear-gradient(to bottom, rgba(247,250,254,.96), rgba(247,250,254,0)); }
.pay-col::after  { bottom: 0; background: linear-gradient(to top, rgba(247,250,254,.96), rgba(247,250,254,0)); }

.pay-col-track { display: flex; flex-direction: column; gap: 12px; }
.pay-col-up   { animation: scrollColUp   18s linear infinite; }
.pay-col-down { animation: scrollColDown 18s linear infinite; }
@keyframes scrollColUp   { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes scrollColDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }

.pay-tile { display: grid; place-items: center; width: 100%; height: 68px; border-radius: 14px;
  border: 1px solid var(--line-2); box-shadow: 0 2px 8px -4px rgba(16,20,33,.14); flex-shrink: 0;
  padding: 0 10px; text-align: center; }
.pay-mc { position: relative; width: 38px; height: 24px; display: block; }
.pay-mc i { position: absolute; top: 0; width: 24px; height: 24px; border-radius: 50%; }
.pay-mc i:first-child { left: 0; background: #eb001b; }
.pay-mc i:last-child  { right: 0; background: #f79e1b; mix-blend-mode: multiply; }

.pay-copy { padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; }
.pay-copy h2 { font-size: 30px; font-weight: 800; letter-spacing: -.025em; margin-top: 10px; text-wrap: balance; max-width: 460px; }
.pay-copy p  { font-size: 15.5px; color: var(--ink-3); line-height: 1.6; margin: 14px 0 24px; max-width: 480px; }
.pay-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.pay-secure  { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700; color: #16a34a; }
.pay-secure svg { color: #16a34a; }

/* ============================================================
   REVIEWS
============================================================ */
.rev-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.rev-head h2 { font-size: 32px; font-weight: 800; letter-spacing: -.025em; margin-top: 8px; line-height: 1.2; padding-bottom: 4px; }
.rev-rating { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.rev-rating-txt { font-size: 14px; color: var(--ink-3); font-weight: 600; }
.rev-rating-txt b { color: var(--ink); font-weight: 800; }
.rev-stars { display: inline-flex; gap: 4px; }
.rev-star { width: 22px; height: 22px; border-radius: 5px; background: #00b67a; display: grid; place-items: center; color: #fff; }
.rev-sec { margin-top: 86px; }
.rev-head-right { display: flex; align-items: center; gap: 22px; }
.rev-nav { display: flex; gap: 8px; }
.rev-arrow { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line-2); color: var(--ink-2); cursor: pointer; transition: .15s; }
.rev-arrow:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-1px); }

.rev-viewport { overflow: hidden; }
.rev-track { display: flex; gap: 20px; transition: transform .5s cubic-bezier(.5,0,.2,1); }
.rev-slide { flex: 0 0 auto; }

.rev-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: .16s; height: 100%; display: flex; flex-direction: column; }
.rev-card:hover { border-color: var(--line-2); box-shadow: var(--shadow-md); }
.rev-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.rev-trustpilot { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 800; color: #00b67a; }
.rev-t { font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: -.01em; }
.rev-b { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; margin: 8px 0 18px; }

/* game-bought indicator */
.rev-game { display: flex; align-items: center; gap: 11px; margin: auto 0 16px; padding: 10px 12px;
  background: var(--page-bg); border: 1px solid var(--line); border-radius: 12px; }
.rev-game img { width: 34px; height: 34px; border-radius: 9px; object-fit: cover; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(0,0,0,.05); }
.rev-game-thumb { position: relative; width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; display: grid; place-items: center; overflow: visible; box-shadow: 0 0 0 1px rgba(0,0,0,.05); }
.rev-game-thumb > img { width: 100%; height: 100%; border-radius: 10px; object-fit: cover; box-shadow: none; }
.rev-game-badge { position: absolute; right: -5px; bottom: -5px; width: 20px; height: 20px; border-radius: 6px; overflow: hidden; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.22), 0 0 0 1.5px #fff; }
.rev-game-badge img { width: 100%; height: 100%; object-fit: cover; }
.rev-game-meta { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.rev-game-item { font-size: 13px; font-weight: 800; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rev-game-name { font-size: 11.5px; font-weight: 600; color: var(--ink-3); }
.rev-game-tick { margin-left: auto; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center;
  background: #16a34a; color: #fff; flex-shrink: 0; }

.rev-by { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-3); padding-top: 14px; border-top: 1px solid var(--line); }
.rev-by b { color: var(--ink-2); font-weight: 700; }
.rev-av { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 800; color: #fff;
  background: linear-gradient(140deg, var(--accent), var(--accent-600)); }
.rev-av.rbx, .hp-av.rbx { background: none; border: none; padding: 0; overflow: hidden; }
.rbx-av { width: 100%; height: 100%; display: block; }

.rev-dots { display: flex; justify-content: center; gap: 7px; margin-top: 26px; }
.rev-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); cursor: pointer; transition: .18s; border: none; padding: 0; }
.rev-dot.on { background: var(--accent); width: 22px; border-radius: 999px; }

@media (max-width: 1100px) {
  .pay-band { grid-template-columns: 1fr; }
  .pay-grid { border-right: none; border-bottom: 1px solid var(--line); }
}
@media (max-width: 640px) {
  .rev-head-right { width: 100%; justify-content: space-between; }
}

/* ============================================================
   PRODUCT CARD
============================================================ */
.grid { display: grid; gap: var(--grid-gap); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-mkt { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; transition: .18s; display: flex; flex-direction: column;
}
.card:hover { border-color: var(--line-2); }
.rarity-strip { display: block; height: 4px; background: var(--rc); width: 100%; }
.card-media { position: relative; aspect-ratio: 1/1; background: var(--ph-bg, #f4f6f9); display: grid; place-items: center; overflow: hidden; }
.card-media img { transition: transform .45s cubic-bezier(.34,1.15,.5,1); transform: scale(.8); transform-origin: center 60%; }
.card:hover .card-media img { transform: scale(.91) rotate(4deg); }
.disc-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 4px 9px; border-radius: var(--radius-pill);
  font-size: 11.5px; font-weight: 800; color: #16a34a; background: #f0fdf4; border: 1px solid #bbf7d0;
}
.game-tag {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  width: 30px; height: 30px; border-radius: 9px; overflow: hidden;
  border: 2px solid #fff; box-shadow: var(--shadow-sm); background: #fff;
}
.game-tag img { width: 100%; height: 100%; object-fit: cover; }

/* placeholder render slot */
.ph {
  height: 86%; width: auto; max-width: 84%; aspect-ratio: 1/1; border-radius: 14px; display: grid; place-items: center; gap: 6px;
  background-image: repeating-linear-gradient(135deg, var(--ph-stripe) 0 9px, transparent 9px 18px);
  border: 1.5px dashed var(--ph-line);
}
.ph .emoji { font-size: 40px; filter: saturate(1.05); }
.ph .lbl { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 9.5px; letter-spacing: .04em; color: var(--ph-txt); text-transform: uppercase; background: #fff; padding: 2px 7px; border-radius: 5px; border: 1px solid var(--ph-line); }
.ph-img { border: none; background-image: none; background: radial-gradient(ellipse at 60% 35%, color-mix(in srgb, var(--ph-bg) 90%, #fff), color-mix(in srgb, var(--ph-bg) 60%, #f0f2f6)); }
/* per-game card background image (sits behind the product image) */
.grid-gamebg .card-media,
.card.card-hasbg .card-media { background-image: var(--card-bg); background-size: cover; background-position: center; background-repeat: no-repeat; }
.grid-gamebg .card-media .ph-img,
.card.card-hasbg .card-media .ph-img { background: none; }
/* tutorial modal video embed */
.tut-embed { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; background: #000; margin-bottom: 4px; }
.tut-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.pet-img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: drop-shadow(0 6px 16px rgba(0,0,0,.18)); }

.card-body { padding: var(--card-pad); display: flex; flex-direction: column; gap: 7px; flex: 1; }
.card-rarity { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--rc); }
.rdot2 { width: 6px; height: 6px; border-radius: 50%; background: var(--rc); }
.card-name { font-size: 15.5px; font-weight: 700; letter-spacing: -.01em; }
.card-traits { display: flex; gap: 6px; flex-wrap: wrap; min-height: 0; }
.trait { font-size: 10.5px; font-weight: 700; color: var(--ink-2); background: var(--page-bg); border: 1px solid var(--line); border-radius: 6px; padding: 3px 7px; text-transform: uppercase; letter-spacing: .03em; }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 4px; gap: 8px; flex-wrap: nowrap; min-height: 40px; }
.price-wrap { display: flex; flex-direction: column; line-height: 1.05; flex-shrink: 0; }
.price-old { font-size: 12px; color: #dc2626; text-decoration: line-through; font-weight: 700; }
.price-now { font-size: 20px; font-weight: 800; font-family: var(--font-display); letter-spacing: -.02em; color: #16a34a; }
.add-btn {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; flex-shrink: 0; margin-left: auto;
  background: var(--accent); color: #fff; border-radius: 12px; transition: background-color .16s ease, transform .15s ease;
  box-shadow: 0 4px 12px -5px color-mix(in srgb, var(--accent) 70%, transparent);
}
.add-btn:hover { background: var(--accent-600); transform: translateY(-1px); }
.add-btn:hover svg { transform: scale(1.12) rotate(18deg); transition: transform .35s cubic-bezier(.34,1.15,.5,1); }
.add-btn.added { background: #16a34a; color: #fff; box-shadow: none; }
.add-btn svg { width: 18px; height: 18px; transition: transform .35s cubic-bezier(.34,1.15,.5,1); }

/* qty ticker   shown left of green add-btn when item is in cart */
.qty-ticker {
  display: flex; align-items: center;
  background: var(--page-bg); border: 1px solid var(--line-2);
  border-radius: 10px; overflow: hidden; height: 34px;
}
.qty-ticker button {
  width: 24px; height: 34px; display: flex; align-items: center; justify-content: center;
  color: var(--ink-3); font-size: 16px; font-weight: 600; line-height: 1; padding: 0;
  transition: .14s;
}
.qty-ticker button:hover { background: var(--line); color: var(--ink); }
.qty-val {
  font-size: 13px; font-weight: 800; min-width: 20px; text-align: center;
  font-family: var(--font-display); color: var(--ink); pointer-events: none;
}

/* undraggable / unselectable card images */
.pet-img { -webkit-user-drag: none; user-select: none; pointer-events: none; }
.card-media img { -webkit-user-drag: none; user-select: none; }

/* density: compact tweaks */
body[data-density="compact"] { --card-pad: 12px; --grid-gap: 12px; }
body[data-density="compact"] .card-name { font-size: 14.5px; }
body[data-density="compact"] .price-now { font-size: 17px; }

/* ============================================================
   SUPPORTED GAMES
============================================================ */
.games-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--grid-gap); }
.game-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/12; box-shadow: var(--shadow-sm); transition: .2s; border: 1px solid var(--line); }
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.game-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: .35s; }
.game-card:hover img { transform: scale(1.05); }
.game-card-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,11,20,.86) 4%, rgba(8,11,20,.30) 42%, transparent 70%); }
.game-card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px; color: #fff; z-index: 2; }
.game-card-body .gn { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -.02em; }
.game-card-body .gc { font-size: 13px; opacity: .82; margin-top: 2px; }
.game-card-go { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,.16); backdrop-filter: blur(6px); display: grid; place-items: center; color: #fff; opacity: 0; transform: translateX(-4px); transition: .2s; z-index: 2; }
.game-card:hover .game-card-go { opacity: 1; transform: translateX(0); }

/* ============================================================
   MARKETPLACE
============================================================ */
.mkt-banner {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 178px;
  box-shadow: var(--shadow-md);
}
.mkt-bn-track { display: flex; transition: transform .5s cubic-bezier(.5,0,.2,1); }
.mkt-bn-slide { flex: 0 0 100%; position: relative; min-height: 178px; padding: 34px 36px; color: #fff;
  display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.mkt-bn-promo.mkt-bn-auto { background: radial-gradient(620px 300px at 88% -20%, #1e3a8a 0%, transparent 60%), linear-gradient(110deg, #0b1020 0%, #111a33 100%); }
.mkt-bn-promo.mkt-bn-disco { background: radial-gradient(620px 300px at 88% -20%, #4c1d95 0%, transparent 60%), linear-gradient(110deg, #120a24 0%, #1b1238 100%); }
.mkt-bn-disco.mkt-bn-hasbg { background: #140d2e; }
.mkt-bn-disco.mkt-bn-hasbg img.bg { object-position: center 24%; }
.mkt-bn-auto.mkt-bn-hasbg { background: #08101f; }
.mkt-bn-auto.mkt-bn-hasbg img.bg { object-position: center 32%; }
.mkt-bn-veil { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.mkt-bn-disco .mkt-bn-veil { background: linear-gradient(100deg, rgba(17,9,42,.94) 6%, rgba(17,9,42,.66) 42%, rgba(17,9,42,.18) 74%, rgba(17,9,42,.42) 100%); }
.mkt-bn-auto .mkt-bn-veil { background: linear-gradient(100deg, rgba(8,14,28,.95) 6%, rgba(8,14,28,.66) 42%, rgba(8,14,28,.16) 74%, rgba(8,14,28,.44) 100%); }
.mkt-bn-glow { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(380px 200px at 12% 120%, color-mix(in srgb, var(--accent) 28%, transparent), transparent 70%); }
.mkt-bn-ebic { display: inline-grid; place-items: center; vertical-align: -3px; margin-right: 5px; color: color-mix(in srgb, var(--accent) 55%, #fff); }
.mkt-bn-cta { position: relative; z-index: 5; display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; width: fit-content;
  padding: 10px 18px; border-radius: var(--radius-pill); background: #fff; color: var(--ink);
  font-family: inherit; font-size: 13.5px; font-weight: 800; cursor: pointer; transition: .15s; }
.mkt-bn-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -10px rgba(0,0,0,.5); }
/* whole-banner click link (sits above the slide, below the CTA button) */
.mkt-bn-stretch { position: absolute; inset: 0; z-index: 4; }
.mkt-bn-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); color: #fff;
  backdrop-filter: blur(6px); cursor: pointer; transition: .15s; }
.mkt-bn-arrow:hover { background: rgba(255,255,255,.26); }
.mkt-bn-arrow.left { left: 12px; }
.mkt-bn-arrow.right { right: 12px; }
.mkt-bn-dots { position: absolute; z-index: 6; bottom: 14px; right: 20px; display: flex; gap: 7px; }
.mkt-bn-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); cursor: pointer; transition: .18s; }
.mkt-bn-dot.on { background: #fff; width: 22px; border-radius: 999px; }
.mkt-banner img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.mkt-banner .hp-grid { z-index: 2; opacity: .45; mask-image: linear-gradient(90deg, #000 30%, transparent 75%); }
.mkt-banner .veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(8,11,20,.9) 12%, rgba(8,11,20,.55) 52%, rgba(8,11,20,.12) 100%), radial-gradient(420px 220px at 6% 120%, color-mix(in srgb, var(--accent) 42%, transparent), transparent 70%); }
.mkt-banner .bn-inner { position: relative; z-index: 3; max-width: 620px; padding-left: 26px; }
.mkt-banner .eb { color: rgba(255,255,255,.78); font-size: 12.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.mkt-banner h1 { font-size: 36px; font-weight: 800; margin: 8px 0 7px; }
.mkt-banner .sub { font-size: 14.5px; color: rgba(255,255,255,.82); }

.mkt-layout { display: grid; grid-template-columns: 244px 1fr; gap: 26px; align-items: start; }

.filters { position: sticky; top: 86px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 6px 18px 18px; box-shadow: var(--shadow-sm); }
.filters-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 0 6px; }
.filters-head .ttl { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 800; font-size: 16px; }
.filters-head .clr { font-size: 12.5px; font-weight: 700; color: var(--accent); }
.fgroup { border-top: 1px solid var(--line); padding: 16px 0; }
.fgroup-h { font-size: 14px; font-weight: 800; margin-bottom: 13px; font-family: var(--font-display); }
.game-filter { display: flex; flex-direction: column; gap: 6px; }
.gf-item { display: flex; align-items: center; gap: 11px; padding: 7px; border-radius: 12px; cursor: pointer; transition: .14s; border: 1px solid transparent; }
.gf-item:hover { background: var(--page-bg); }
.gf-item.active { background: var(--accent); border-color: var(--accent); }
.gf-item.active .gf-name, .gf-item.active .gf-count { color: #fff; }
.gf-item img { width: 34px; height: 24px; border-radius: 7px; object-fit: cover; }
.gf-meta { line-height: 1.15; }
.gf-name { font-size: 13.5px; font-weight: 700; }
.gf-count { font-size: 11.5px; color: var(--ink-3); font-weight: 600; }
.gf-item.active .gf-count { color: rgba(255,255,255,.85); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.fchip { font-size: 13px; font-weight: 700; color: var(--ink-2); background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-pill); padding: 7px 14px; transition: .14s; }
.fchip:hover { border-color: var(--ink-4); }
.fchip.active { background: var(--accent); color: #fff; border-color: var(--accent); }

.rarity-list { display: flex; flex-direction: column; gap: 3px; }
.rrow { display: flex; align-items: center; gap: 10px; padding: 6px 4px; border-radius: 9px; cursor: pointer; transition: .14s; }
.rrow:hover { background: var(--page-bg); }
.rbox { width: 18px; height: 18px; border-radius: 6px; border: 2px solid var(--rc); display: grid; place-items: center; transition: .14s; flex-shrink: 0; }
.rrow.on .rbox { background: var(--rc); }
.rrow.on .rbox svg { color: #fff; }
.rdot { width: 8px; height: 8px; border-radius: 50%; background: var(--rc); }
.rname { font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.rrow.on .rname { color: var(--ink); font-weight: 700; }

.price-inputs { display: flex; align-items: center; gap: 10px; }
.price-inputs .pin { flex: 1; display: flex; align-items: center; gap: 6px; border: 1px solid var(--line-2); border-radius: 10px; padding: 9px 11px; background: var(--page-bg); }
.price-inputs .pin span { color: var(--ink-4); font-size: 14px; }
.price-inputs .pin input { border: none; outline: none; background: none; width: 100%; font-size: 14px; color: var(--ink); }
.price-inputs .dash { color: var(--ink-4); }

.cat-tabs { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 16px; }
.cat-tab { display: inline-flex; align-items: center; gap: 7px; height: 40px; padding: 0 16px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--line-2); font-size: 13.5px; font-weight: 700; color: var(--ink-2); transition: .14s; }
.cat-tab:hover { border-color: var(--accent); color: var(--accent); }
.cat-tab.active { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 5px 14px -6px color-mix(in srgb, var(--accent) 70%, transparent); }

.mkt-toolbar { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.mkt-search { flex: 1; display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 0 16px; height: 46px; }
.mkt-search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-050); }
.mkt-search input { border: none; outline: none; background: none; flex: 1; font-size: 15px; }
.mkt-search svg { color: var(--ink-4); }
.count-tag { font-size: 14px; color: var(--ink-3); font-weight: 600; white-space: nowrap; }
.count-tag b { color: var(--ink); font-weight: 800; }
.sortsel { display: flex; align-items: center; gap: 8px; height: 46px; padding: 0 16px; border: 1px solid var(--line-2); border-radius: var(--radius-sm); background: var(--surface); font-size: 14px; font-weight: 700; color: var(--ink); }

.empty { grid-column: 1/-1; text-align: center; padding: 70px 20px; color: var(--ink-3); }
.empty .e1 { font-size: 40px; }
.empty .e2 { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--ink); margin-top: 12px; }
.empty .e3 { font-size: 14px; margin-top: 6px; }
.empty-btn { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; height: 44px; padding: 0 20px;
  border-radius: var(--radius-pill); border: none; cursor: pointer; background: var(--accent); color: #fff;
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  box-shadow: 0 10px 24px -10px color-mix(in srgb, var(--accent) 70%, transparent); transition: .15s; }
.empty-btn:hover { background: var(--accent-600); transform: translateY(-1px); }
.empty-btn svg { color: #fff; }

.delta { display: inline-flex; align-items: center; gap: 3px; font-size: 11px; font-weight: 800; padding: 2px 7px; border-radius: 6px; align-self: flex-start; }
.delta.down { color: #dc2626; background: #fef2f2; }
.delta.up { color: #16a34a; background: #f0fdf4; }

/* ---------- chip-btn open state ---------- */
.chip-btn.active { border-color: var(--accent); background: var(--accent-050); color: var(--accent); }

/* ---------- currency picker ---------- */
.curr-wrap { position: relative; }
.curr-drop {
  position: absolute; top: calc(100% + 6px); right: 0; z-index: 200;
  background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--line-2);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,.22); min-width: 190px; overflow: hidden;
  animation: hdrDropIn .13s ease;
}
.curr-opt {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  font-size: 14px; font-weight: 600; cursor: pointer; transition: background .12s; color: var(--ink-2);
}
.curr-opt:hover { background: var(--page-bg); color: var(--ink); }
.curr-opt.active { color: var(--accent); background: var(--accent-050); }
.curr-sym {
  width: 28px; height: 28px; border-radius: 8px; background: var(--page-bg);
  border: 1px solid var(--line-2); display: grid; place-items: center;
  font-size: 13px; font-weight: 800; flex-shrink: 0; color: var(--ink);
}
.curr-code { font-weight: 700; color: var(--ink); }
.curr-label { font-size: 12px; color: var(--ink-4); margin-left: auto; }
.curr-flag { width: 20px; height: 14px; border-radius: 3px; object-fit: cover; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(0,0,0,.07); display: inline-block; vertical-align: -2px; }
.chip-btn .curr-flag { margin-right: 1px; }

/* ---------- games nav dropdown ---------- */
.nav-games-wrap { position: relative; }
.nav-games-wrap::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 10px; }
.nav .nav-games-trigger { cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 13px; border: 1px solid var(--accent); border-radius: 11px;
  background: var(--accent); color: #fff; font-weight: 700; transition: background .14s, border-color .14s; }
.nav .nav-games-trigger > svg { color: #fff; }
.nav-gs-cur { width: 22px; height: 22px; border-radius: 6px; object-fit: cover; }
.nav-games-wrap:hover .nav-games-trigger,
.nav-games-wrap:focus-within .nav-games-trigger { background: var(--accent-600); border-color: var(--accent-600); color: #fff; }
.nav-games-drop {
  position: absolute; top: calc(100% + 6px); left: 0; z-index: 200;
  background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--line-2);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,.22); min-width: 230px; overflow: hidden;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity .18s, transform .18s;
}
.nav-games-wrap:hover .nav-games-drop,
.nav-games-wrap:focus-within .nav-games-drop { opacity: 1; pointer-events: auto; transform: none; }
.ngd-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  cursor: pointer; transition: background .12s; border-bottom: 1px solid var(--line);
}
.ngd-item:last-child { border-bottom: none; }
.ngd-item:hover { background: var(--page-bg); }
.ngd-item img { width: 40px; height: 26px; border-radius: 7px; object-fit: cover; flex-shrink: 0; }
.ngd-name { font-size: 13.5px; font-weight: 700; color: var(--ink-2); flex: 1; }
.ngd-item:hover .ngd-name { color: var(--ink); }
.ngd-item.active { background: var(--accent-050); }
.ngd-item.active .ngd-name { color: var(--accent); }
.ngd-item.active .ngd-check { color: var(--accent); }
.ngd-count { font-size: 11.5px; color: var(--ink-4); font-weight: 600; white-space: nowrap; }

/* games nav   grid mode */
.ngd-grid-mode { min-width: 0; width: 320px; padding: 10px; }
.ngd-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.ngd-grid-item {
  display: flex; flex-direction: column;
  padding: 0; border-radius: 9px; overflow: hidden;
  cursor: pointer; transition: box-shadow .15s;
  background: none; border: none;
  font-family: inherit;
}
.ngd-grid-item:hover {
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--accent);
}
.ngd-grid-img {
  width: 100%; aspect-ratio: 16/9; border-radius: 7px; overflow: hidden;
  background: var(--line); flex-shrink: 0; position: relative;
}
.ngd-grid-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ngd-grid-label {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  padding: 8px 9px;
  background: linear-gradient(to top, rgba(6,10,22,.72) 0%, transparent 60%);
  font-size: 12px; font-weight: 800; color: #fff; font-family: var(--font-display);
  letter-spacing: -.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  opacity: 0; transition: opacity .18s;
}
.ngd-grid-item:hover .ngd-grid-label { opacity: 1; }
.ngd-grid-name { font-size: 12.5px; font-weight: 700; color: var(--ink-2); line-height: 1.1; }
.ngd-grid-item:hover .ngd-grid-name { color: var(--ink); }
.ngd-grid-item.active { box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--accent); }
.ngd-grid-item.active .ngd-grid-name { color: var(--accent); }
.ngd-grid-count { font-size: 11px; color: var(--ink-4); font-weight: 600; }

/* ---------- sort dropdown ---------- */
.sort-wrap { position: relative; }
.sortsel:hover { background: var(--page-bg); }
.sortsel.open { background: var(--page-bg); border-color: var(--accent); color: var(--accent); }
.sort-drop {
  position: absolute; top: calc(100% + 6px); right: 0; z-index: 50;
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,.2); min-width: 200px; overflow: hidden;
  animation: hdrDropIn .13s ease;
}
.sort-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 16px; font-size: 14px; font-weight: 600; cursor: pointer;
  transition: background .12s; color: var(--ink-2);
}
.sort-opt:hover { background: var(--page-bg); color: var(--ink); }
.sort-opt.active { color: var(--accent); background: var(--accent-050); font-weight: 700; }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--line); margin-top: 90px; padding: 52px 0 34px; }
.foot.foot-dark {
  background: linear-gradient(180deg, rgba(10,15,31,.85), rgba(10,15,31,.95)), var(--bg-footer-img, none) #0a0f1f;
  background-size: cover;
  background-position: center;
  border-top-color: rgba(255,255,255,.08);
}
.foot.foot-dark .brand { color: #fff; }
.foot.foot-dark p { color: rgba(226,232,240,.46); }
.foot.foot-dark .foot-chip { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: rgba(226,232,240,.82); }
.foot.foot-dark .foot-col h5 { color: rgba(255,255,255,.34); }
.foot.foot-dark .foot-col a { color: rgba(226,232,240,.65); }
.foot.foot-dark .foot-col a:hover { color: #fff; }
.foot.foot-dark .foot-bar { border-top-color: rgba(255,255,255,.07); }
.foot.foot-dark .foot-legal, .foot.foot-dark .foot-copy { color: rgba(255,255,255,.3); }
.foot.foot-dark .foot-status { color: rgba(226,232,240,.55); }
.foot-row { display: flex; justify-content: space-between; gap: 56px; flex-wrap: wrap; }
.foot-brandcol { max-width: 300px; }
.foot p { color: var(--ink-3); font-size: 13.5px; line-height: 1.6; margin: 14px 0 0; }
.foot-trust { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.foot-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--ink-2);
  background: var(--page-bg); border: 1px solid var(--line-2); border-radius: var(--radius-pill); padding: 6px 12px; }
.foot-chip svg { color: #fff !important; width: 13px; height: 13px; }
.foot-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.foot-col h5 { font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; color: var(--ink-4); margin-bottom: 14px; }
.foot-col a { display: block; font-size: 14px; color: var(--ink-2); font-weight: 600; padding: 5px 0; cursor: pointer; transition: color .14s, transform .14s; }
.foot-col a:hover { color: var(--accent); transform: translateX(2px); }
.foot-bar { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.foot-legal { font-size: 12px; color: var(--ink-4); line-height: 1.6; max-width: 760px; }
.foot-meta { display: flex; align-items: center; gap: 18px; flex-shrink: 0; white-space: nowrap; }
.foot-status { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: var(--ink-3); }
.fs-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px color-mix(in srgb, #22c55e 22%, transparent); }
.foot-copy { font-size: 12.5px; color: var(--ink-4); font-weight: 600; }

/* ---------- cart drawer ---------- */
.drawer-scrim { position: fixed; inset: 0; background: rgba(10,14,24,.42); z-index: 80; opacity: 0; pointer-events: none; transition: .25s; }
.drawer-scrim.open { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 392px; max-width: 92vw; background: #fff; z-index: 81; transform: translateX(100%); transition: transform .3s cubic-bezier(.22,1,.36,1); display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-size: 19px; font-weight: 800; }
.drawer-x { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: var(--ink-2); transition: .14s; }
.drawer-x:hover { background: var(--page-bg); }
.drawer-body { flex: 1; overflow-y: auto; padding: 14px 22px; }
.citem { display: flex; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.citem-img { width: 46px; height: 46px; border-radius: 11px; flex-shrink: 0; display: grid; place-items: center; font-size: 22px; overflow: hidden; }
.citem-meta { flex: 1; line-height: 1.25; }
.citem-meta .cn { font-size: 14px; font-weight: 700; }
.citem-meta .cr { font-size: 12px; font-weight: 700; }
.citem .cp { font-size: 15px; font-weight: 800; font-family: var(--font-display); }
.citem-price { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.15; }
.cp-old { font-size: 12px; font-weight: 700; color: #dc2626; text-decoration: line-through; }
.citem .cp-new { color: #16a34a; }
.citem-rm { color: var(--ink-4); width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; }
.citem-rm:hover { background: #fef2f2; color: #dc2626; }
.citem-pet-img { width: 78%; height: 78%; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,0,0,.18)); }
.qty-ticker.citem-qty { height: 26px; margin-top: 8px; width: fit-content; }
.qty-ticker.citem-qty button { height: 26px; width: 20px; font-size: 14px; }
.qty-ticker.citem-qty .qty-val { font-size: 12px; min-width: 14px; }
.coupon-row { margin-bottom: 16px; }
.coupon-input-wrap { display: flex; height: 42px; border: 1px solid var(--line-2); border-radius: 10px; overflow: hidden; }
.coupon-input { flex: 1; border: none; outline: none; padding: 0 14px; font-size: 14px; font-family: inherit; color: var(--ink); background: var(--page-bg); }
.coupon-input::placeholder { color: var(--ink-4); }
.coupon-apply-btn { padding: 0 16px; background: var(--accent); color: #fff; font-size: 13.5px; font-weight: 700; flex-shrink: 0; transition: .14s; border-left: 1px solid color-mix(in srgb, var(--accent) 80%, #000); }
.coupon-apply-btn:hover { background: var(--accent-600); }
.coupon-msg { font-size: 12.5px; font-weight: 700; margin-top: 8px; }
.coupon-msg.ok { color: #16a34a; }
.coupon-msg.err { color: #dc2626; }
.drawer-foot { padding: 18px 22px; border-top: 1px solid var(--line); }
.cart-summary { background: var(--page-bg); border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; margin-bottom: 13px; }
.cs-row { display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; font-weight: 700; color: var(--ink-2); padding: 3px 0; }
.cs-save { color: #16a34a; }
.cs-save span:first-child { display: inline-flex; align-items: center; gap: 5px; }
.cart-summary .drawer-tot { margin: 14px 0 2px; padding-top: 14px; border-top: 1px solid var(--line-2); display: flex; align-items: center; justify-content: space-between; }
.cart-perks { display: flex; gap: 8px; margin-bottom: 12px; }
.cart-perk { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 9px 6px; border-radius: 10px; background: var(--page-bg); border: 1px solid var(--line); color: var(--ink-2); font-size: 11.5px; font-weight: 700; white-space: nowrap; }
.cart-perk svg { color: var(--accent); flex-shrink: 0; }
.cart-foot-note { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 11px; font-size: 11.5px; font-weight: 600; color: var(--ink-3); }
.cart-checkout { width: 100%; height: 54px; border-radius: 14px; font-size: 16px; font-weight: 800; letter-spacing: .01em;
  background: linear-gradient(180deg, var(--accent), var(--accent-600)); box-shadow: 0 14px 30px -10px color-mix(in srgb, var(--accent) 70%, transparent); }
.cart-checkout:hover { transform: translateY(-1px); box-shadow: 0 18px 36px -12px color-mix(in srgb, var(--accent) 75%, transparent); }
.cart-foot-note svg { color: #16a34a; }
.drawer-tot .tl { font-size: 14px; color: var(--ink-3); font-weight: 600; }
.drawer-tot .tv { font-size: 26px; font-weight: 800; font-family: var(--font-display); }
.cart-empty { text-align: center; padding: 56px 20px; color: var(--ink-3); }
.cart-empty .ce { font-size: 44px; }

/* toast */
.toast { position: fixed; bottom: 26px; left: 50%; z-index: 90; display: flex; align-items: center; gap: 13px; width: 330px; max-width: calc(100vw - 32px);
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 12px 16px 12px 12px;
  box-shadow: 0 18px 44px -16px rgba(16,20,33,.42); opacity: 0; transform: translateX(-50%) translateY(20px);
  transition: transform .42s cubic-bezier(.22,1,.36,1), opacity .3s; pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-thumb { position: relative; width: 50px; height: 50px; border-radius: 13px; flex-shrink: 0; display: grid; place-items: center; background: var(--ph-bg, #eef2f7); border: 1px solid var(--line); }
.toast-thumb img { width: 86%; height: 86%; object-fit: contain; }
.toast-emoji { font-size: 26px; }
.toast-game { position: absolute; right: -5px; bottom: -5px; width: 22px; height: 22px; border-radius: 7px; overflow: hidden; border: 2px solid var(--surface); background: var(--surface); box-shadow: var(--shadow-sm); }
.toast-game img { width: 100%; height: 100%; object-fit: cover; }
.toast-meta { min-width: 0; flex: 1; }
.toast-top { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: #16a34a; font-weight: 800; }
.toast-top svg { color: #16a34a; }
.toast-name { font-size: 15px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; margin: 1px 0 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.toast-foot { display: flex; align-items: center; gap: 8px; }
.toast-deliv { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; color: var(--accent); background: var(--accent-050); padding: 3px 8px; border-radius: 999px; }
.toast-deliv svg { color: var(--accent); }

@media (max-width: 1500px) {
  .mkt-shell .grid { grid-template-columns: repeat(5, 1fr) !important; }
}
@media (max-width: 1300px) {
  .mkt-shell .grid { grid-template-columns: repeat(4, 1fr) !important; }
}
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-mkt { grid-template-columns: repeat(3, 1fr); }
  .mkt-shell .grid { grid-template-columns: repeat(3, 1fr) !important; }
  .games-row { grid-template-columns: repeat(2, 1fr); }
  .cat-tiles { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .pp-main { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .grid-4, .grid-5, .grid-mkt { grid-template-columns: repeat(2, 1fr); }
  .mkt-shell .grid { grid-template-columns: repeat(2, 1fr) !important; }
  .mkt-layout { grid-template-columns: 1fr; }
  .hero-panel h1 { font-size: 40px; }
  .hp-split { grid-template-columns: 1fr; }
  .hp-visual { display: none; }
  .stats-card { flex-wrap: wrap; }
  .stat { flex: 1 0 45%; padding: 12px 10px; }
  .cat-tiles { grid-template-columns: repeat(3, 1fr); }
  .centered-head h2, .cta-copy h2 { font-size: 28px; }
  .nav, .search { display: none; }
  .pp-buyrow { flex-wrap: wrap; }
}

/* ============================================================
   MARKETPLACE wide shell + tutorial nav button
============================================================ */
.mkt-shell { max-width: 1800px; margin: 0 auto; padding: 0 28px; }

/* header widens to match the marketplace/product content width */
.hdr-row.hdr-wide { max-width: 1800px; }

.nav-tutorial {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent) !important; background: var(--accent-050);
  border: 1px solid var(--accent-100); font-weight: 700;
}
.nav-tutorial:hover { background: var(--accent-100) !important; color: var(--accent-600) !important; }
.nav-tutorial svg { color: currentColor; }

/* ============================================================
   TUTORIAL MODAL
============================================================ */
.tut-scrim {
  position: fixed; inset: 0; z-index: 120; background: rgba(12,18,36,.55);
  backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .22s;
}
.tut-scrim.open { opacity: 1; pointer-events: auto; }
.tut-modal {
  position: fixed; z-index: 121; left: 50%; top: 50%;
  width: min(560px, 94vw); max-height: 90vh; overflow-y: auto;
  background: var(--surface); border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 40px 90px -28px rgba(12,18,36,.6);
  padding: 22px; transform: translate(-50%, -46%) scale(.96);
  opacity: 0; pointer-events: none; transition: opacity .22s, transform .22s;
}
.tut-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.tut-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.tut-eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--accent); }
.tut-eyebrow svg { color: currentColor; }
.tut-head h3 { font-size: 24px; font-weight: 800; margin-top: 6px; letter-spacing: -.02em; white-space: nowrap; }
.tut-head > div:first-child { flex: 1; min-width: 0; }
.tut-x { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: var(--ink-3); background: var(--page-bg); border: 1px solid var(--line-2); flex-shrink: 0; }
.tut-x:hover { color: var(--ink); border-color: var(--ink-4); }
.tut-steps { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.tut-step { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; border-radius: var(--radius); background: var(--page-bg); border: 1px solid var(--line); }
.tut-step-n { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 12px; font-weight: 800; display: grid; place-items: center; flex-shrink: 0; }
.tut-step-ic { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.tut-step-t { font-size: 14.5px; font-weight: 800; color: var(--ink); }
.tut-step-d { font-size: 13px; color: var(--ink-2); line-height: 1.5; margin-top: 2px; }

/* ============================================================
   YOUTUBE-STYLE VIDEO CARD
============================================================ */
.vid-card { display: block; width: 100%; text-align: left; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-2); background: var(--surface); transition: .18s; }
.vid-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.vid-thumb {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  background:
    radial-gradient(420px 240px at 78% 22%, color-mix(in srgb, var(--accent) 45%, transparent), transparent 70%),
    linear-gradient(150deg, #16203a 0%, #0c1020 100%);
}
.vid-big .vid-thumb { aspect-ratio: 16/8.2; }
.vid-grid { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1.4px); background-size: 22px 22px; mask-image: radial-gradient(70% 70% at 70% 30%, #000 30%, transparent 80%); }
.vid-ghost { position: absolute; right: -6px; bottom: -14px; font-family: var(--font-display); font-size: 62px; font-weight: 800; letter-spacing: -.04em; color: rgba(255,255,255,.05); white-space: nowrap; }
.vid-toprow { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; align-items: center; gap: 9px; }
.vid-ch { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(150deg, var(--accent), var(--accent-600)); display: grid; place-items: center; color: #fff; flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,.3); }
.vid-chmeta { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.vid-title { font-size: 13.5px; font-weight: 800; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.4); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vid-channel { font-size: 11.5px; color: rgba(255,255,255,.66); font-weight: 600; }
.vid-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 40px; border-radius: 11px; background: #ff0000; color: #fff;
  display: grid; place-items: center; box-shadow: 0 6px 18px -4px rgba(255,0,0,.55); transition: transform .18s;
}
.vid-card:hover .vid-play { transform: translate(-50%, -50%) scale(1.08); }
.vid-yt { position: absolute; right: 12px; bottom: 11px; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.5); }
.vid-yt-mark { width: 17px; height: 12px; border-radius: 3px; background: #ff0000; display: grid; place-items: center; color: #fff; }

/* ============================================================
   PRODUCT DETAIL PAGE
============================================================ */
.pp-shell { max-width: 1300px; margin: 0 auto; padding: 22px 28px 40px; }

.pp-crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-3); font-weight: 600; flex-wrap: wrap; }
.pp-crumb a { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; transition: .14s; }
.pp-crumb a:hover { color: var(--accent); }
.pp-crumb svg { color: var(--ink-4); }
.pp-crumb span { color: var(--ink); font-weight: 800; }

.pp-cashback {
  display: flex; align-items: center; gap: 10px; margin-top: 16px;
  padding: 13px 18px; border-radius: var(--radius);
  background: linear-gradient(100deg, #ecfdf5, #f0fdf4); border: 1px solid #bbf7d0;
  font-size: 14px; font-weight: 600; color: #15803d;
}
.pp-cashback b { color: #166534; font-weight: 800; }
.pp-cb-ic { width: 26px; height: 26px; border-radius: 8px; background: #16a34a; color: #fff; font-weight: 900; font-size: 15px; display: grid; place-items: center; flex-shrink: 0; }

.pp-main { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr); gap: 38px; margin-top: 22px; align-items: start; }

/* media panel */
.pp-media {
  position: relative; aspect-ratio: 4 / 3; border-radius: calc(var(--radius) + 8px); overflow: hidden;
  background:
    radial-gradient(120% 120% at 30% 12%, color-mix(in srgb, var(--accent) 62%, #6aa6ff) 0%, transparent 60%),
    linear-gradient(158deg, color-mix(in srgb, var(--accent) 80%, #4f93ff) 0%, color-mix(in srgb, var(--accent) 92%, #1e3a8a) 100%);
  display: grid; place-items: center;
  box-shadow: 0 30px 70px -34px color-mix(in srgb, var(--accent) 70%, rgba(16,20,33,.5));
}
.pp-save {
  position: absolute; top: 16px; left: 16px; z-index: 3; display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 13px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 800; letter-spacing: .01em; color: #fff;
  background: rgba(255,255,255,.16); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 6px 16px -8px rgba(16,20,33,.5);
}
.pp-save svg { color: #fff; }
.pp-media-wm { position: absolute; font-family: var(--font-display); font-weight: 800; font-size: 38px; letter-spacing: .12em; color: rgba(255,255,255,.10); top: 22%; left: 8%; transform: rotate(-4deg); pointer-events: none; user-select: none; }
.pp-wm-2 { top: 64%; left: 52%; }
.pp-media-art { width: 52%; aspect-ratio: 1 / 1; height: auto; display: grid; place-items: center; z-index: 2; }
.pp-media-art img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 16px 30px rgba(0,0,0,.35)); -webkit-user-drag: none; user-select: none; }
.pp-media-emoji { font-size: 150px; filter: drop-shadow(0 14px 26px rgba(0,0,0,.3)); }
.pp-media-cart {
  position: absolute; right: 16px; bottom: 16px; z-index: 3; display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 18px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.96); color: var(--accent); font-size: 14px; font-weight: 700;
  box-shadow: 0 10px 24px -10px rgba(16,20,33,.55); transition: .16s;
}
.pp-media-cart svg { color: var(--accent); }
.pp-media-cart:hover { transform: translateY(-2px); background: #fff; box-shadow: 0 14px 28px -10px rgba(16,20,33,.6); }

/* buy box */
.pp-buy { display: flex; flex-direction: column; }
.pp-title { font-size: 42px; font-weight: 800; letter-spacing: -.03em; line-height: 1.02; }
.pp-variants { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.pp-variant {
  display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; border-radius: 11px;
  background: var(--surface); border: 1.5px solid var(--line-2); font-size: 13.5px; font-weight: 700; color: var(--ink-2); transition: .14s;
}
.pp-variant:hover { border-color: var(--ink-4); color: var(--ink); }
.pp-variant.active { border-color: var(--accent); background: var(--accent-050); color: var(--accent); }
.pp-var-emoji { font-size: 15px; }

.pp-price-row { display: flex; align-items: baseline; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.pp-price { font-family: var(--font-display); font-size: 40px; font-weight: 800; letter-spacing: normal; color: #16a34a; }
.pp-price-old { font-size: 19px; color: #dc2626; text-decoration: line-through; font-weight: 700; }
.pp-off { padding: 5px 11px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 800; color: #16a34a; background: #f0fdf4; border: 1px solid #bbf7d0; }
.pp-social { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 13.5px; color: var(--ink-3); font-weight: 600; }
.pp-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.18); }

.pp-buyrow { display: flex; align-items: stretch; gap: 12px; margin-top: 22px; }
.pp-qty { display: flex; align-items: center; background: var(--surface); border: 1.5px solid var(--line-2); border-radius: 14px; overflow: hidden; }
.pp-qty button { width: 46px; height: 54px; display: grid; place-items: center; color: var(--ink-3); transition: .14s; }
.pp-qty button:hover { background: var(--page-bg); color: var(--ink); }
.pp-qty span { min-width: 38px; text-align: center; font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--ink); }
.pp-add {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 54px; border-radius: 14px;
  background: var(--accent); color: #fff; font-size: 16px; font-weight: 800; letter-spacing: .01em;
  box-shadow: 0 12px 26px -10px color-mix(in srgb, var(--accent) 75%, transparent); transition: .16s;
}
.pp-add:hover { background: var(--accent-600); transform: translateY(-1px); }
.pp-add.added { background: #16a34a; }
.pp-buynow { width: 100%; margin-top: 12px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; height: 52px; border-radius: 14px; white-space: nowrap;
  background: transparent; color: var(--accent); font-family: inherit; font-size: 16px; font-weight: 800; letter-spacing: .01em; cursor: pointer; border: 2px solid var(--accent);
  box-shadow: none; transition: .16s; }
.pp-buynow:hover:not(:disabled) { background: color-mix(in srgb, var(--accent) 6%, transparent); transform: translateY(-1px); }
.pp-buynow:disabled { opacity: .6; cursor: not-allowed; }\n.pp-buynow.loading { pointer-events: none; }\n.pp-buynow .spin { display: inline-block; animation: spin .6s linear infinite; }\n@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.pp-buynow svg, .pp-buynow svg path { color: #fff !important; fill: #fff !important; }

.pp-trust { display: flex; align-items: center; flex-wrap: wrap; gap: 7px 14px; margin-top: 16px; font-size: 12.5px; font-weight: 700; color: var(--ink-3); }
.pp-trust > span { display: inline-flex; align-items: center; gap: 5px; }
.pp-trust svg { color: var(--accent); }
.pp-pay { padding: 3px 7px; border-radius: 5px; background: var(--page-bg); border: 1px solid var(--line-2); font-size: 10.5px; font-weight: 800; color: var(--ink-2); letter-spacing: .03em; }
.pp-trust-more { color: var(--ink-4); }

/* about accordion */
.pp-accordion { margin-top: 22px; border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; }
.pp-acc-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; white-space: nowrap; padding: 16px 18px; font-size: 15px; font-weight: 800; color: var(--ink); background: var(--surface); }
.pp-acc-head svg { color: var(--ink-3); transition: transform .22s; }
.pp-accordion.open .pp-acc-head svg { transform: rotate(180deg); }
.pp-acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease-out; }
.pp-accordion.open .pp-acc-body { grid-template-rows: 1fr; }
.pp-acc-clip { overflow: hidden; }
.pp-acc-clip p { padding: 0 18px; margin: 0 0 12px; font-size: 14px; color: var(--ink-2); line-height: 1.65; }
.pp-acc-list { list-style: none; padding: 0 18px 18px; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.pp-acc-list li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.pp-acc-list svg { color: var(--accent); flex-shrink: 0; }

.pp-buy .vid-card { margin-top: 18px; }

/* related carousel */
.pp-related { margin-top: 56px; }
.pp-related-head { position: relative; display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 22px; }
.pp-rel-viewall { position: absolute; right: 0; top: 50%; transform: translateY(-50%); display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: var(--radius-pill); background: var(--surface); border: 1px solid var(--line-2); color: var(--ink-2);
  font-family: inherit; font-size: 13.5px; font-weight: 800; cursor: pointer; transition: .15s; }
.pp-rel-viewall:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-50%) translateX(-1px); }
.pp-related-head h2 { font-size: 30px; font-weight: 800; letter-spacing: -.02em; white-space: nowrap; }
.pp-rel-spark { color: var(--accent); }
.pp-carousel { position: relative; }
.pp-caro-track { display: flex; gap: var(--grid-gap); overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 2px 16px; scrollbar-width: thin; scrollbar-color: color-mix(in srgb, var(--accent) 55%, var(--line-2)) transparent; }
.pp-caro-track::-webkit-scrollbar { height: 6px; }
.pp-caro-track::-webkit-scrollbar-track { background: transparent; }
.pp-caro-track::-webkit-scrollbar-thumb { background: color-mix(in srgb, var(--accent) 45%, var(--line-2)); border-radius: 999px; }
.pp-caro-track::-webkit-scrollbar-thumb:hover { background: var(--accent); }
.pp-caro-item { flex: 0 0 248px; scroll-snap-align: start; }
.pp-caro-arrow {
  position: absolute; top: 38%; transform: translateY(-50%); z-index: 5; width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line-2); color: var(--ink-2); display: grid; place-items: center;
  box-shadow: var(--shadow-md); transition: .15s;
}
.pp-caro-arrow:hover { color: var(--accent); border-color: var(--accent); }
.pp-caro-arrow.left { left: -14px; }
.pp-caro-arrow.right { right: -14px; }

@media (max-width: 620px) {
  .pp-title { font-size: 32px; }
  .pp-caro-arrow { display: none; }
}

/* ============================================================
   MARKETPLACE tutorial button (toolbar)
============================================================ */
.mkt-toolbar { flex-wrap: wrap; }
.mkt-tut-btn {
  display: inline-flex; align-items: center; gap: 8px; height: 46px; padding: 0 16px; white-space: nowrap;
  border-radius: var(--radius-sm); background: var(--accent); color: #fff; font-size: 14px; font-weight: 700;
  box-shadow: 0 6px 16px -8px color-mix(in srgb, var(--accent) 70%, transparent); transition: .15s;
}
.mkt-tut-btn:hover { background: var(--accent-600); transform: translateY(-1px); }
.mkt-tut-btn svg { color: #fff; }

/* ============================================================
   PRODUCT BUY BOX   redesigned
============================================================ */
.pp-tagrow { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pp-tut-btn { display: inline-flex; align-items: center; gap: 7px; margin-left: auto; padding: 7px 14px; border-radius: var(--radius-pill);
  background: var(--accent-050); border: 1px solid var(--accent-100); color: var(--accent);
  font-family: inherit; font-size: 13px; font-weight: 800; cursor: pointer; transition: .15s; white-space: nowrap; }
.pp-tut-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.pp-rarity-badge { display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--rc);
  background: color-mix(in srgb, var(--rc) 15%, #fff); border: 1px solid color-mix(in srgb, var(--rc) 28%, #fff); }
.pp-rb-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rc); }
.pp-gamechip { display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px 5px 6px; border-radius: var(--radius-pill);
  font-size: 12.5px; font-weight: 700; color: var(--ink-2); background: var(--page-bg); border: 1px solid var(--line-2); }
.pp-gamechip img { width: 20px; height: 20px; border-radius: 6px; object-fit: cover; }

.pp-buy .pp-title { margin-top: 14px; }

.pp-statline { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 12px; font-size: 13.5px; font-weight: 600; color: var(--ink-3); }
.pp-statline > span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.pp-statline svg { color: var(--accent); }
.pp-stars { color: var(--ink); font-weight: 800; font-size: 15px; }

.pp-varblock { margin-top: 24px; }
.pp-varlabel { font-size: 12px; font-weight: 800; color: var(--ink-3); margin-bottom: 11px; text-transform: uppercase; letter-spacing: .05em; }
.pp-varlabel span { color: var(--ink); }
.pp-swatches { display: flex; flex-wrap: wrap; gap: 9px; }
.pp-swatch { display: flex; flex-direction: column; align-items: center; gap: 5px; width: 80px; padding: 11px 6px; border-radius: 13px;
  background: var(--surface); border: 1.5px solid var(--line-2); transition: .14s; }
.pp-swatch:hover { border-color: var(--ink-4); transform: translateY(-2px); }
.pp-swatch.active { border-color: var(--accent); background: var(--accent-050); box-shadow: 0 0 0 3px var(--accent-050); }
.pp-sw-emoji { font-size: 22px; line-height: 1; }
.pp-sw-name { font-size: 11.5px; font-weight: 700; color: var(--ink-2); }
.pp-swatch.active .pp-sw-name { color: var(--accent); }

.pp-buybox { margin-top: 24px; padding: 18px; border-radius: calc(var(--radius) + 2px); border: 1px solid var(--line-2);
  background: linear-gradient(180deg, var(--surface), color-mix(in srgb, var(--accent) 4%, var(--surface))); box-shadow: var(--shadow-sm); }
.pp-price-line { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.pp-buybox .pp-buyrow { margin-top: 16px; }
.pp-deliver-note { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--ink-2); }
.pp-deliver-note svg { color: var(--accent); flex-shrink: 0; }

.pp-paywrap { display: inline-flex; align-items: center; gap: 7px; margin-left: auto; }

.pp-details { margin-top: 24px; }
.pp-details-h { font-family: var(--font-display); font-size: 17px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 10px; }
.pp-details p { font-size: 14px; color: var(--ink-2); line-height: 1.65; margin: 0 0 14px; }
.pp-detail-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.pp-video { margin-top: 32px; border-radius: calc(var(--radius) + 2px); overflow: hidden; box-shadow: var(--shadow-md); }
.pp-video iframe { display: block; width: 100%; height: auto; aspect-ratio: 16/9; }

/* collapsible tutorial */
.pp-tutc { margin-top: 26px; border: 1px solid var(--line-2); border-radius: calc(var(--radius) + 2px); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-sm); }
.pp-tutc-bar { display: flex; align-items: center; justify-content: space-between; gap: 14px; width: 100%; padding: 14px 16px; cursor: pointer; background: none; border: none; font-family: inherit; text-align: left; transition: background .14s; }
.pp-tutc-bar:hover { background: var(--accent-050); }
.pp-tutc-l { display: flex; align-items: center; gap: 12px; }
.pp-tutc-ic { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: var(--accent-050); color: var(--accent); flex-shrink: 0; }
.pp-tutc-meta { display: flex; flex-direction: column; line-height: 1.25; }
.pp-tutc-t { font-size: 15px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.pp-tutc-d { font-size: 12.5px; color: var(--ink-3); font-weight: 600; }
.pp-tutc-toggle { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 800; color: var(--accent); flex-shrink: 0; }
.pp-tutc-toggle svg { transition: transform .25s; }
.pp-tutc.open .pp-tutc-toggle svg { transform: rotate(180deg); }
.pp-tutc-reveal { padding: 0 16px; max-height: 116px; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1), padding-bottom .4s; padding-bottom: 0; }
.pp-tutc.open .pp-tutc-reveal { max-height: 520px; padding-bottom: 16px; }
.pp-tutc-clip { position: relative; border-radius: var(--radius); overflow: hidden; background: #0a0f1f; }
.pp-tutc-video { display: block; width: 100%; height: auto; aspect-ratio: 16/9; border: none; }
.pp-tutc-peek { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(0,0,0,.4); border: none; cursor: pointer; border-radius: var(--radius); transition: background .25s; z-index: 10; }
.pp-tutc-peek:hover { background: rgba(0,0,0,.55); }
.pp-tutc-peek-play { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: #fff; box-shadow: 0 12px 32px -8px rgba(0,0,0,.7); }
.pp-tutc-peek-play svg { color: var(--accent); }

/* ============================================================
   RECENT-PURCHASE SOCIAL-PROOF POPUP (bottom-left)
============================================================ */
.buy-pop {
  position: fixed; left: 22px; bottom: 22px; z-index: 70;
  display: flex; align-items: center; gap: 13px; width: 332px; max-width: calc(100vw - 44px);
  padding: 12px 26px 12px 12px; background: var(--surface); border: 1px solid var(--line-2); border-radius: 16px;
  box-shadow: 0 18px 44px -16px rgba(16,20,33,.28);
  transform: translateX(-120%); opacity: 0; pointer-events: none;
  transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .35s;
}
.buy-pop.show { transform: translateX(0); opacity: 1; }
.buy-pop-x { position: absolute; top: 7px; right: 7px; width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; color: var(--ink-4); background: transparent; border: none; cursor: pointer; transition: .14s; z-index: 2; }
.buy-pop-x:hover { background: var(--page-bg); color: var(--ink-2); }
.buy-pop-thumb { position: relative; width: 52px; height: 52px; border-radius: 13px; flex-shrink: 0; display: grid; place-items: center;
  background: var(--ph-bg, #eef2f7); border: 1px solid var(--line); }
.buy-pop-thumb img { width: 82%; height: 82%; object-fit: contain; }
.buy-pop-emoji { font-size: 26px; }
.buy-pop-game { position: absolute; right: -5px; bottom: -5px; width: 22px; height: 22px; border-radius: 7px; overflow: hidden;
  border: 2px solid var(--surface); background: var(--surface); box-shadow: var(--shadow-sm); }
.buy-pop-game img { width: 100%; height: 100%; object-fit: cover; }
.buy-pop-meta { min-width: 0; flex: 1; }
.buy-pop-top { font-size: 12.5px; color: var(--ink-3); font-weight: 600; }
.buy-pop-top b { color: var(--accent); font-weight: 800; }
.buy-pop-name { font-size: 15px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; margin: 1px 0 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.buy-pop-foot { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.buy-pop-time { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; color: var(--ink-4); font-weight: 600; }
.buy-pop-time svg { color: #22c55e; }
.buy-pop-deliv { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; color: var(--accent); background: var(--accent-050); padding: 3px 8px; border-radius: 999px; }
.buy-pop-deliv svg { color: var(--accent); }
@media (max-width: 520px) { .buy-pop { left: 12px; bottom: 12px; } }

/* ============================================================
   SUPPORT / HELP CENTER
============================================================ */
.sup { padding-bottom: 70px; }

/* hero */
.sup-hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--accent-050) 0%, #fff 100%); border-bottom: 1px solid var(--line); padding: 54px 24px 48px; }
.sup-hero-glow { position: absolute; top: -180px; left: 50%; transform: translateX(-50%); width: 760px; height: 420px; background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 22%, transparent), transparent); filter: blur(10px); pointer-events: none; }
.sup-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 38px 38px; mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, #000 30%, transparent 75%); opacity: .5; pointer-events: none; }
.sup-hero-inner { position: relative; max-width: 720px; margin: 0 auto; text-align: center; }
.sup-eyebrow { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; font-size: 13px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); background: #fff; border: 1px solid var(--accent-100); padding: 6px 13px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.sup-hero h1 { font-family: var(--font-display); font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; letter-spacing: -.025em; color: var(--ink); margin: 18px 0 10px; line-height: 1.05; }
.sup-hero p { font-size: 17px; color: var(--ink-2); margin: 0 0 26px; }
.sup-search { position: relative; display: flex; align-items: center; gap: 12px; background: #fff; border: 1.5px solid var(--line-2); border-radius: 15px; padding: 0 16px; height: 60px; box-shadow: var(--shadow-md); transition: border-color .16s, box-shadow .16s; }
.sup-search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-050), var(--shadow-md); }
.sup-search > svg { color: var(--ink-3); flex-shrink: 0; }
.sup-search input { flex: 1; border: none; outline: none; background: none; font-family: inherit; font-size: 16px; font-weight: 600; color: var(--ink); }
.sup-search input::placeholder { color: var(--ink-3); font-weight: 500; }
.sup-search-x { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; border: none; background: var(--page-bg); color: var(--ink-2); cursor: pointer; flex-shrink: 0; transition: background .14s; }
.sup-search-x:hover { background: var(--line); }
.sup-hero-tags { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 9px; margin-top: 18px; font-size: 13.5px; }
.sup-hero-tags > span { color: var(--ink-3); font-weight: 700; }
.sup-hero-tags button { border: 1px solid var(--line-2); background: #fff; color: var(--ink-2); font-family: inherit; font-size: 13px; font-weight: 700; padding: 6px 12px; border-radius: 999px; cursor: pointer; transition: all .14s; }
.sup-hero-tags button:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-050); }

/* hero stats strip */
.sup-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 30px auto 0; max-width: 640px; }
.sup-stat { flex: 1; min-width: 130px; background: rgba(255,255,255,.7); backdrop-filter: blur(6px); border: 1px solid var(--line-2); border-radius: 14px; padding: 14px 12px; display: flex; flex-direction: column; gap: 2px; }
.sup-stat-v { font-family: var(--font-display); font-size: 24px; font-weight: 800; letter-spacing: -.02em; color: var(--accent); line-height: 1; }
.sup-stat-l { font-size: 12px; font-weight: 700; color: var(--ink-3); }

/* quick categories */
.sup-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: -28px; position: relative; z-index: 2; }
.sup-cat { text-align: left; display: flex; flex-direction: column; align-items: flex-start; gap: 9px; background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius); padding: 22px; cursor: pointer; transition: transform .16s, box-shadow .16s, border-color .16s; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.sup-cat::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--tone, var(--accent)); opacity: .9; }
.sup-cat:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -22px var(--tone, var(--accent)); border-color: color-mix(in srgb, var(--tone, var(--accent)) 35%, var(--line-2)); }
.sup-cat-top { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-bottom: 4px; }
.sup-cat-ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: var(--tone-bg, var(--accent-050)); color: var(--tone, var(--accent)); }
.sup-cat-n { font-size: 12px; font-weight: 800; color: var(--tone, var(--accent)); background: var(--tone-bg, var(--accent-050)); padding: 4px 10px; border-radius: 999px; }
.sup-cat-t { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.sup-cat-d { font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.sup-cat-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13.5px; font-weight: 800; color: var(--tone, var(--accent)); margin-top: 2px; }

/* tone palette   unified to the brand accent for a cohesive look */
[data-tone] { --tone: var(--accent); --tone-bg: var(--accent-050); }

/* sections */
.sup-sec { margin-top: 52px; }
.sup-sec-head { text-align: center; max-width: 560px; margin: 0 auto 24px; }
.sup-sec-head h2 { font-family: var(--font-display); font-size: 30px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); margin: 0 0 7px; }
.sup-sec-head p { font-size: 15.5px; color: var(--ink-2); margin: 0; }

/* filters */
.sup-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-bottom: 24px; }
.sup-pill { border: 1.5px solid var(--line-2); background: #fff; color: var(--ink-2); font-family: inherit; font-size: 13.5px; font-weight: 700; padding: 8px 16px; border-radius: 999px; cursor: pointer; transition: all .14s; }
.sup-pill:hover { border-color: var(--accent); color: var(--accent); }
.sup-pill.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* faq accordion */
.sup-faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 11px; }
.sup-faq-item { background: #fff; border: 1.5px solid var(--line-2); border-radius: 14px; overflow: hidden; transition: border-color .16s, box-shadow .16s; }
.sup-faq-item.open { border-color: var(--accent-100); box-shadow: var(--shadow-sm); }
.sup-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 16px; font-weight: 700; color: var(--ink); padding: 19px 22px; letter-spacing: -.01em; }
.sup-faq-ic { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; background: var(--page-bg); color: var(--ink-2); flex-shrink: 0; transition: transform .22s, background .16s, color .16s; }
.sup-faq-item.open .sup-faq-ic { transform: rotate(180deg); background: var(--accent); color: #fff; }
.sup-faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .26s ease; }
.sup-faq-item.open .sup-faq-a { grid-template-rows: 1fr; }
.sup-faq-a-clip { overflow: hidden; }
.sup-faq-a-inner { padding: 0 22px 20px; font-size: 14.5px; color: var(--ink-2); line-height: 1.65; }
.sup-faq-a-inner b { color: var(--ink); font-weight: 800; }
.sup-faq-empty { text-align: center; padding: 44px 20px; color: var(--ink-3); }
.sup-faq-empty > svg { color: var(--ink-3); margin-bottom: 12px; }
.sup-empty-t { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.sup-empty-d { font-size: 14px; color: var(--ink-2); }
.sup-more-wrap { text-align: center; margin-top: 22px; }
.sup-more-btn { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--line-2); color: var(--ink); font-family: inherit; font-size: 14px; font-weight: 800; padding: 11px 20px; border-radius: 999px; cursor: pointer; transition: all .15s; }
.sup-more-btn:hover { border-color: var(--accent); color: var(--accent); }
.sup-more-btn svg { transition: transform .15s; }
.sup-more-btn:hover svg { transform: translateY(2px); }

/* contact channels */
.sup-help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 900px; margin: 0 auto; }
.sup-help-card { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 7px; background: #fff; border: 1.5px solid var(--line-2); border-radius: var(--radius); padding: 30px 22px 26px; cursor: pointer; transition: transform .16s, box-shadow .16s, border-color .16s; }
.sup-help-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent-100); }
.sup-help-card.primary { background: linear-gradient(170deg, var(--accent) 0%, var(--accent-600) 100%); border-color: transparent; }
.sup-help-card.primary .sup-help-t, .sup-help-card.primary .sup-help-d, .sup-help-card.primary .sup-help-cta { color: #fff; }
.sup-help-card.primary .sup-help-d { color: rgba(255,255,255,.85); }
.sup-help-ic { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 15px; background: var(--accent-050); color: var(--accent); margin-bottom: 5px; }
.sup-help-card.primary .sup-help-ic { background: rgba(255,255,255,.18); color: #fff; }
.sup-help-badge { position: absolute; top: 14px; right: 14px; font-size: 10.5px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; background: rgba(255,255,255,.22); color: #fff; padding: 4px 9px; border-radius: 999px; }
.sup-help-t { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.sup-help-d { font-size: 14px; color: var(--ink-2); }
.sup-help-sub { font-size: 13px; font-weight: 700; color: var(--accent); }
.sup-help-card.primary .sup-help-sub { color: #fff; }
.sup-help-cta { display: inline-flex; align-items: center; gap: 5px; font-size: 13.5px; font-weight: 800; color: var(--accent); margin-top: 8px; }

/* help topics */
.sup-topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 900px; margin: 0 auto; }
.sup-topic { display: flex; align-items: center; gap: 14px; text-align: left; background: #fff; border: 1.5px solid var(--line-2); border-radius: 14px; padding: 16px 18px; cursor: pointer; transition: all .15s; }
.sup-topic:hover { border-color: var(--tone, var(--accent)); background: var(--tone-bg, var(--accent-050)); transform: translateY(-2px); }
.sup-topic-ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--tone-bg, var(--page-bg)); color: var(--tone, var(--accent)); flex-shrink: 0; transition: background .15s; }
.sup-topic:hover .sup-topic-ic { background: #fff; }
.sup-topic-meta { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.sup-topic-t { font-size: 15px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.sup-topic-d { font-size: 13px; color: var(--ink-3); }
.sup-topic > svg { color: var(--ink-3); flex-shrink: 0; }

@media (max-width: 880px) {
  .sup-cats, .sup-help-grid, .sup-topic-grid { grid-template-columns: 1fr; }
  .sup-cats { margin-top: 28px; }
}
