/* BloxSkins marketplace theme (adapted) */
:root {
  /* tweakable */
  --accent:        #4d8dff;
  --accent-600:    #2563eb;
  --accent-050:    rgba(77, 141, 255, 0.12);
  --accent-100:    rgba(77, 141, 255, 0.22);
  --radius:        16px;
  --font-display:  'Hanken Grotesk', system-ui, sans-serif;
  --font-body:     'Plus Jakarta Sans', system-ui, sans-serif;
  --page-bg:       #f8fafc;
  --card-pad:      13px;
  --grid-gap:      15px;

  /* fixed */
  --ink:           #0f172a;
  --ink-2:         #334155;
  --ink-3:         #64748b;
  --ink-4:         #94a3b8;
  --surface:       #ffffff;
  --line:          #e2e8f0;
  --line-2:        #cbd5e1;
  --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: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(37, 99, 235, 0.05), transparent 55%), 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-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; }
}

/* ---------- 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; }

.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); }
.grid.grid-gamebg { align-items: start; }

.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%; }
/* Super / Legendary / Mythic = animated gradients */
.card[data-rarity="super"] .rarity-strip,
.card[data-rarity="legendary"] .rarity-strip,
.card[data-rarity="mythic"] .rarity-strip,
.pp-rarity-badge[data-rarity="super"]::before,
.pp-rarity-badge[data-rarity="legendary"]::before,
.pp-rarity-badge[data-rarity="mythic"]::before,
.detail-media-wrap[data-rarity="super"] .detail-rarity-strip,
.detail-media-wrap[data-rarity="legendary"] .detail-rarity-strip,
.detail-media-wrap[data-rarity="mythic"] .detail-rarity-strip {
  background-size: var(--super-rainbow-size);
  animation: super-rainbow-shift var(--super-rainbow-duration) linear infinite;
}

.card[data-rarity="super"] .rarity-strip,
.pp-rarity-badge[data-rarity="super"]::before,
.detail-media-wrap[data-rarity="super"] .detail-rarity-strip {
  background: var(--super-rainbow-gradient);
}

.card[data-rarity="legendary"] .rarity-strip,
.pp-rarity-badge[data-rarity="legendary"]::before,
.detail-media-wrap[data-rarity="legendary"] .detail-rarity-strip {
  background: var(--legendary-gradient);
}

.card[data-rarity="mythic"] .rarity-strip,
.pp-rarity-badge[data-rarity="mythic"]::before,
.detail-media-wrap[data-rarity="mythic"] .detail-rarity-strip {
  background: var(--mythic-gradient);
}

.card[data-rarity="super"] .rdot2,
.rrow[data-rarity="super"] .rdot,
.feat-rarity[data-rarity="super"] .rdot2,
.card[data-rarity="legendary"] .rdot2,
.rrow[data-rarity="legendary"] .rdot,
.feat-rarity[data-rarity="legendary"] .rdot2,
.card[data-rarity="mythic"] .rdot2,
.rrow[data-rarity="mythic"] .rdot,
.feat-rarity[data-rarity="mythic"] .rdot2 {
  animation: super-rainbow-hue var(--super-rainbow-duration) linear infinite;
}

.card[data-rarity="super"] .rdot2,
.rrow[data-rarity="super"] .rdot,
.feat-rarity[data-rarity="super"] .rdot2 { background: #ff2bd6; }

.card[data-rarity="legendary"] .rdot2,
.rrow[data-rarity="legendary"] .rdot,
.feat-rarity[data-rarity="legendary"] .rdot2 { background: #facc15; }

.card[data-rarity="mythic"] .rdot2,
.rrow[data-rarity="mythic"] .rdot,
.feat-rarity[data-rarity="mythic"] .rdot2 { background: #e11d48; }

.card[data-rarity="super"] .card-rarity,
.rrow[data-rarity="super"] .rname,
.feat-rarity[data-rarity="super"],
.card[data-rarity="legendary"] .card-rarity,
.rrow[data-rarity="legendary"] .rname,
.feat-rarity[data-rarity="legendary"],
.card[data-rarity="mythic"] .card-rarity,
.rrow[data-rarity="mythic"] .rname,
.feat-rarity[data-rarity="mythic"] {
  background-size: var(--super-rainbow-size);
  animation: super-rainbow-shift var(--super-rainbow-duration) linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.card[data-rarity="super"] .card-rarity,
.rrow[data-rarity="super"] .rname,
.feat-rarity[data-rarity="super"] {
  background-image: var(--super-rainbow-gradient);
}

.card[data-rarity="legendary"] .card-rarity,
.rrow[data-rarity="legendary"] .rname,
.feat-rarity[data-rarity="legendary"] {
  background-image: var(--legendary-gradient);
}

.card[data-rarity="mythic"] .card-rarity,
.rrow[data-rarity="mythic"] .rname,
.feat-rarity[data-rarity="mythic"] {
  background-image: var(--mythic-gradient);
}

.detail-media-wrap[data-rarity="super"] .detail-rarity-strip,
.detail-media-wrap[data-rarity="legendary"] .detail-rarity-strip,
.detail-media-wrap[data-rarity="mythic"] .detail-rarity-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: block;
  height: 4px;
}
/* nothing on banners/hero can be selected; images can't be dragged (img rule already blocks drag) */
.mkt-banner, .mkt-bn-slide, .announcement-bar, .hero-panel, .hpv-card, .game-card, .bn-inner { -webkit-user-select: none; -moz-user-select: none; user-select: none; }
.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; }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 7px; }
.card-cat {
  display: inline-flex; align-items: center; gap: 5px; flex: none;
  font-size: 10.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: #334155; background: #eef2f7; border: 1px solid #d7dee8;
  border-radius: var(--radius-pill); padding: 4px 9px; white-space: nowrap; max-width: 55%; overflow: hidden; text-overflow: ellipsis;
}
.card-cat svg { color: var(--accent); flex: none; }

/* 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: 6px; }
.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); }
/* light-theme text contrast (strip/dot keep --rc from inline style) */
.card[data-rarity="common"] .card-rarity { color: #64748b; }
.card[data-rarity="uncommon"] .card-rarity { color: #16a34a; }
.card[data-rarity="rare"] .card-rarity { color: #2563eb; }
.card[data-rarity="epic"] .card-rarity { color: #9333ea; }
.pp-rarity-badge[data-rarity="common"] { color: #475569; background: #f1f5f9; border-color: #e2e8f0; }
.card-name { font-size: 13px; font-weight: 700; letter-spacing: -.01em; }
.card-bundle-desc {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink-4);
}
.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; padding-top: 2px; gap: 6px; flex-wrap: nowrap; min-height: 34px; }
.price-wrap { display: flex; flex-direction: column; line-height: 1.05; flex-shrink: 1; min-width: 0; }
.price-old { font-size: 12px; color: var(--price-old); text-decoration: line-through; font-weight: 600; white-space: nowrap; }
.price-now { font-size: 19px; font-weight: 800; font-family: var(--font-display); letter-spacing: -.02em; color: var(--price-now); white-space: nowrap; line-height: 1.1; }
.price-pack-hint {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #5c5c62;
  white-space: nowrap;
}
.card-oos .price-pack-hint { color: var(--ink-4); }
.price-disc {
  display: inline-flex; align-items: center; align-self: flex-start; margin-top: 3px;
  padding: 2px 8px; border-radius: var(--radius-pill);
  background: #fef2f2; color: #dc2626; border: 1px solid #fecaca;
  font-size: 10.5px; font-weight: 800; line-height: 1.25; letter-spacing: -.01em;
}
.sale-chip {
  position: absolute; top: 12px; right: 12px; z-index: 11;
  padding: 4px 9px; border-radius: var(--radius-pill);
  background: #ef4444; color: #fff; font-size: 11px; font-weight: 800;
  letter-spacing: 0.03em; line-height: 1.2;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
}
.pack-badge {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: #1d1d1f;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 18px rgba(16, 20, 33, 0.14);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  backdrop-filter: saturate(160%) blur(10px);
  white-space: nowrap;
  pointer-events: none;
}
.card-oos .pack-badge { opacity: 0.72; }
.add-btn {
  display: inline-flex; align-items: center; justify-content: center; height: 34px; padding: 0 14px; flex-shrink: 0; margin-left: auto;
  font-family: var(--font-display); font-size: 12.5px; font-weight: 800; letter-spacing: -.01em; white-space: nowrap;
  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: 20px; }

/* ============================================================
   MARKETPLACE
============================================================ */
.mkt-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 50px -28px rgba(0, 0, 0, 0.55);
}
.mkt-bn-track { display: flex; transition: transform .55s cubic-bezier(.45,0,.2,1); }
.mkt-bn-slide {
  flex: 0 0 100%;
  position: relative;
  min-height: 190px;
  padding: 40px 56px 40px 44px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.mkt-bn-slide.mkt-bn-game {
  background: linear-gradient(90deg, #0f1012 0%, #2a2a2e 38%, #8f9096 72%, #c4c5ca 100%);
}
.mkt-bn-slide.mkt-bn-delivery {
  background: linear-gradient(90deg, #0a1018 0%, #152238 42%, #4a6080 78%, #8ea0b8 100%);
}
.mkt-bn-slide.mkt-bn-seeds {
  background: linear-gradient(90deg, #0a1410 0%, #123020 40%, #3d7058 72%, #7aa892 100%);
}
.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: rgba(255,255,255,.95); color: #111;
  font-family: inherit; font-size: 13.5px; font-weight: 800; cursor: pointer; transition: .15s; text-decoration: none; }
.mkt-bn-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -10px rgba(0,0,0,.5); background: #fff; }
.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(0, 0, 0, 0.28); border: 1px solid rgba(255,255,255,.18); color: #fff;
  backdrop-filter: blur(8px); cursor: pointer; transition: .15s;
}
.mkt-bn-arrow:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.35); }
.mkt-bn-arrow.left { left: 14px; }
.mkt-bn-arrow.right { right: 14px; }
.mkt-bn-dots { position: absolute; z-index: 6; bottom: 16px; right: 22px; display: flex; gap: 7px; align-items: center; }
.mkt-bn-dot {
  width: 8px; height: 8px; padding: 0; border: none; border-radius: 50%;
  background: rgba(255,255,255,.35); cursor: pointer; transition: .2s ease;
}
.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: 640px; padding-left: 4px; }
.mkt-banner .eb {
  color: rgba(255,255,255,.82);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mkt-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.18;
  margin: 10px 0 8px;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.22);
}
.mkt-banner .sub {
  margin: 0;
  max-width: 520px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.84);
}

.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; min-width: 18px; border-radius: 6px; border: 2px solid transparent; background: transparent; display: grid; place-items: center; transition: .14s; flex-shrink: 0; }
.rrow.on .rbox, .rrow.active .rbox { background: var(--rc); border-color: var(--rc); }
.rrow.on .rbox svg, .rrow.active .rbox svg { color: #fff; opacity: 1; }
.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, .rrow.active .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; }

/* ---------- 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-drop[hidden] { display: none !important; }
.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-promo { position: relative; overflow: hidden; max-width: 460px; flex: 1 1 360px; padding: 22px 24px; border-radius: var(--radius); background: linear-gradient(150deg, #0f1421, #1a2236); border: 1px solid rgba(255,255,255,.08); }
.foot-promo::before { content: ""; position: absolute; top: -60%; right: -20%; width: 60%; height: 200%; background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 40%, transparent), transparent); pointer-events: none; }
.foot-promo-tag { position: relative; display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: .18em; color: #fff; background: linear-gradient(150deg, var(--accent), var(--accent-600)); border-radius: var(--radius-pill); padding: 5px 11px; }
.foot-promo-title { position: relative; font-family: var(--font-display); font-size: 19px; font-weight: 800; color: #fff; letter-spacing: -.02em; margin: 12px 0 7px; }
.foot-promo-desc { position: relative; font-size: 13px; line-height: 1.6; color: rgba(226,232,240,.62); margin: 0 0 16px; }
.foot-promo-row { position: relative; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.foot-promo-price { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -.01em; }
.foot-promo-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-pill); padding: 9px 16px; text-decoration: none; transition: .16s; }
.foot-promo-cta:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); }
.foot-promo-cta svg { color: currentColor; }

.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; }

@media (max-width: 1500px) {
  .mkt-shell .grid { grid-template-columns: repeat(6, 1fr) !important; }
}
@media (min-width: 1301px) {
  .mkt-shell .grid { grid-template-columns: repeat(7, 1fr) !important; }
}

@media (max-width: 1300px) {
  .mkt-shell .grid { grid-template-columns: repeat(5, 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(4, 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; }

/* Free Items — amber pill (desktop) + gift-icon-only (mobile) */
.nav-free {
  display: inline-flex; align-items: center; gap: 6px;
  color: #d97706 !important; background: #fff7ed;
  border: 1px solid #fed7aa; font-weight: 700;
}
.nav-free:hover { background: #ffedd5 !important; color: #b45309 !important; }
.nav-free.active { background: #d97706 !important; color: #fff !important; border-color: #d97706; }
.nav-free svg { color: currentColor; }

/* mobile gift icon lives in hdr-right; hidden on desktop */
.hdr-free-mob {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 11px;
  background: #fff7ed; border: 1px solid #fed7aa; color: #d97706; transition: .15s;
}
.hdr-free-mob:hover { background: #ffedd5; color: #b45309; }
.hdr-free-mob.active { background: #d97706; color: #fff; border-color: #d97706; }
@media (max-width: 900px) { .hdr-free-mob { display: inline-flex; } }

.card-oos .price-old { color: var(--price-old); opacity: 0.75; }

.card{position:relative}.card-stretch{position:absolute;top:0;right:0;bottom:0;left:0;z-index:2;border-radius:inherit}.card-body{position:relative;z-index:3}.card-name{display:block;color:inherit}.card-add-form{display:contents}.add-btn{position:relative;z-index:3}.add-btn-check,.add-btn.added .add-btn-plus{display:none}.add-btn.added .add-btn-check{display:inline-flex}.ph .ph-svg{width:56%;height:56%;opacity:.5}.hdr-search-drop[hidden],.hp-results[hidden]{display:none!important}.hdr-gs-drop{display:none}.hdr-gs.open .hdr-gs-drop{display:block}.hdr-gs.open .hdr-gs-btn{border-color:var(--accent);color:var(--accent)}.hdr-gs.open .hdr-gs-btn>svg{color:var(--accent)}.curr-drop{display:none}.curr-wrap.open .curr-drop{display:block}.pp-add.added .pp-add-ic{display:none}.pp-add.added .pp-add-check,.pp-add.added .pp-add-check[hidden]{display:inline-flex}.pp-variants{display:flex;flex-direction:column;gap:12px;margin:4px 0 14px}.pp-variant-label{display:block;font-size:12px;font-weight:700;color:var(--ink-3);text-transform:uppercase;letter-spacing:.04em;margin-bottom:6px}.pp-variant-chips{display:flex;flex-wrap:wrap;gap:8px}.pp-variant-chip{position:relative;display:inline-flex;align-items:center;padding:8px 14px;border:1px solid var(--line-2);border-radius:var(--radius-sm);font-size:13.5px;font-weight:650;color:var(--ink-2);cursor:pointer;transition:.15s;background:var(--surface)}.pp-variant-chip:hover{border-color:var(--ink-4)}.pp-variant-chip.active{border-color:var(--accent);background:var(--accent-050);color:var(--accent)}.pp-variant-chip input{position:absolute;opacity:0;pointer-events:none}.pp-buynow .spin svg{animation:ppSpin .8s linear infinite}@keyframes ppSpin{to{transform:rotate(360deg)}}@media(prefers-reduced-motion:reduce){.pp-buynow .spin svg{animation:none}}body{display:flex;flex-direction:column;min-height:100vh}#MainContent{flex:1 0 auto}.foot{flex-shrink:0}.visually-hidden{position:absolute!important;overflow:hidden;width:1px;height:1px;margin:-1px;padding:0;border:0;clip:rect(0 0 0 0);white-space:nowrap}.skip-to-content-link{position:absolute;left:-9999px;top:0;z-index:1000}.skip-to-content-link:focus{left:8px;top:8px;width:auto;height:auto;clip:auto;padding:10px 16px;background:var(--surface);color:var(--ink);border:1px solid var(--line-2);border-radius:var(--radius-sm);box-shadow:var(--shadow-md);font-weight:700}.js #MainContent>.shopify-section{opacity:0;transform:translateY(22px);transition:opacity .6s cubic-bezier(.2,.7,.2,1),transform .6s cubic-bezier(.2,.7,.2,1)}.js #MainContent>.shopify-section.is-in{opacity:1;transform:none}@media(prefers-reduced-motion:reduce){.js #MainContent>.shopify-section{opacity:1!important;transform:none!important;transition:none}}.js .grid .card{opacity:0;transform:translateY(16px);transition:opacity .5s ease,transform .5s ease,border-color .18s ease}.js .shopify-section.is-in .grid .card{opacity:1;transform:none}.js .shopify-section.is-in .grid .card:nth-child(1){transition-delay:.03s}.js .shopify-section.is-in .grid .card:nth-child(2){transition-delay:.07s}.js .shopify-section.is-in .grid .card:nth-child(3){transition-delay:.11s}.js .shopify-section.is-in .grid .card:nth-child(4){transition-delay:.15s}.js .shopify-section.is-in .grid .card:nth-child(5){transition-delay:.19s}.js .shopify-section.is-in .grid .card:nth-child(6){transition-delay:.23s}.js .shopify-section.is-in .grid .card:nth-child(7){transition-delay:.27s}.js .shopify-section.is-in .grid .card:nth-child(8){transition-delay:.31s}.js .shopify-section.is-in .grid .card:nth-child(n+9){transition-delay:.35s}@media(prefers-reduced-motion:reduce){.js .grid .card{opacity:1!important;transform:none!important;transition:none}}.no-js .hiwp-reveal{opacity:1!important;transform:none!important}.no-js [data-requires-js]{display:none!important}.toast{z-index:120}.drawer>form,.drawer [data-cart-contents]{display:flex;flex-direction:column;flex:1 1 auto;min-height:0}.drawer .drawer-body{flex:1 1 auto}.pp-media-art img{width:100%;height:100%;object-fit:contain}.rbox svg{display:none}.rrow.on .rbox svg{display:block;color:#fff}.pp-related{max-width:1300px;margin-left:auto;margin-right:auto;padding-left:28px;padding-right:28px}.cart-checkout{background:var(--accent)!important;box-shadow:none!important;transition:background .15s}.cart-checkout:hover{transform:none!important;box-shadow:none!important;background:var(--accent-600)!important}.cart-checkout.is-loading{pointer-events:none;opacity:.92}.mkt-bn-veil{background:linear-gradient(100deg,#080e1ceb 6%,#080e1c9e 45%,#080e1c47 82%,#080e1c80)}.mkt-bn-slide .bn-inner h1{text-shadow:0 2px 18px rgba(0,0,0,.45)}.mkt-bn-slide .bn-inner .sub{text-shadow:0 1px 12px rgba(0,0,0,.4)}.blox-spinner{display:inline-block;width:16px;height:16px;border:2px solid rgba(255,255,255,.45);border-top-color:#fff;border-radius:50%;animation:bloxspin .6s linear infinite;vertical-align:-3px;margin-right:8px}@keyframes bloxspin{to{transform:rotate(360deg)}}@media(prefers-reduced-motion:reduce){.blox-spinner{animation:none}}body.filters-lock{overflow:hidden}.hp-res,.hp-chip{color:inherit}.qty-ticker input.qty-val,.pp-qty input{width:34px;text-align:center;border:none;background:none;font:inherit;color:inherit;-moz-appearance:textfield}.qty-ticker input.qty-val::-webkit-outer-spin-button,.qty-ticker input.qty-val::-webkit-inner-spin-button,.pp-qty input::-webkit-outer-spin-button,.pp-qty input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
/*# sourceMappingURL=/cdn/shop/t/75/assets/shopify.css.map?v=125408095788500219981781593013 */


.card-oos .card-media{background:#eceef2}.card-oos .pet-img{filter:grayscale(1);opacity:.32}.card-oos .game-tag{filter:grayscale(1);opacity:.6}.card-oos .card-name,.card-oos .price-now{color:var(--ink-3)}.card-oos .price-old,.card-oos .card-rarity{color:var(--ink-4)}.card-oos .card-rarity .rdot2{background:var(--ink-4)!important}.oos-badge{position:absolute;top:12px;left:12px;z-index:10;padding:4px 9px;border-radius:999px;font-size:11.5px;font-weight:800;line-height:1;color:#b42318;background:#fef3f2;border:1px solid #fecdca}.notify-btn{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;flex-shrink:0;margin-left:auto;border-radius:11px;cursor:pointer;color:var(--ink-3);background:var(--page-bg);border:1px solid var(--line-2);transition:color .15s,background .15s,border-color .15s,transform .15s}.notify-btn:hover{color:var(--accent);background:#fff;border-color:var(--accent);transform:translateY(-1px)}.notify-btn svg{width:18px;height:18px}.ntf-modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:130;display:none}.ntf-modal.open{display:block}.ntf-scrim{position:absolute;top:0;right:0;bottom:0;left:0;background:#0c12248c;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);animation:ntfFade .18s ease}.ntf-dialog{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:min(440px,94vw);background:#fff;border-radius:20px;box-shadow:0 30px 80px -20px #0c122480;padding:24px;animation:ntfPop .2s cubic-bezier(.34,1.2,.5,1)}@keyframes ntfFade{0%{opacity:0}to{opacity:1}}@keyframes ntfPop{0%{opacity:0;transform:translate(-50%,-46%) scale(.96)}to{opacity:1;transform:translate(-50%,-50%) scale(1)}}.ntf-head{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:16px}.ntf-eyebrow{display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--accent)}.ntf-eyebrow svg{width:12px;height:12px}.ntf-title{font-family:var(--font-display);font-size:24px;font-weight:800;letter-spacing:-.02em;margin-top:6px}.ntf-x{width:36px;height:36px;border-radius:10px;display:grid;place-items:center;cursor:pointer;color:var(--ink-3);background:var(--page-bg);border:1px solid var(--line-2);transition:.15s;flex-shrink:0}.ntf-x:hover{color:var(--ink);border-color:var(--ink-4)}.ntf-x svg{width:18px;height:18px}.ntf-product{display:flex;align-items:center;gap:14px;padding:12px;border-radius:16px;background:var(--page-bg);border:1px solid var(--line);margin-bottom:16px}.ntf-thumb{width:64px;height:64px;border-radius:12px;border:1px solid var(--line-2);display:grid;place-items:center;overflow:hidden;flex-shrink:0;background:linear-gradient(150deg,#f8fafc,#fff)}.ntf-thumb img{width:80%;height:80%;object-fit:contain}.ntf-pmeta{min-width:0}.ntf-prarity{font-size:11px;font-weight:800;letter-spacing:.04em;text-transform:uppercase}.ntf-pname{font-size:16px;font-weight:800;letter-spacing:-.02em}.ntf-pprice{font-size:14px;font-weight:600;color:var(--ink-2)}.ntf-blurb{font-size:13.5px;color:var(--ink-2);line-height:1.5;margin-bottom:14px}.ntf-label{display:flex;flex-direction:column;gap:6px;margin-bottom:14px}.ntf-label span{font-size:12.5px;font-weight:700;color:var(--ink-2)}.ntf-input{height:46px;padding:0 14px;border-radius:12px;border:1.5px solid var(--line-2);background:#fff;font-size:14.5px;font-family:var(--font-body);transition:.15s}.ntf-input:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px var(--accent-050)}.ntf-submit{width:100%;height:50px;border-radius:13px;cursor:pointer;background:var(--accent);color:#fff;font-size:15px;font-weight:800;font-family:var(--font-body);display:inline-flex;align-items:center;justify-content:center;gap:8px;border:none;box-shadow:0 10px 24px -10px color-mix(in srgb,var(--accent) 60%,transparent);transition:.15s}.ntf-submit:hover{background:var(--accent-600)}.ntf-submit:disabled{opacity:.4;box-shadow:none;cursor:not-allowed}.ntf-submit svg{width:15px;height:15px}.ntf-success,.ntf-modal.is-success .ntf-form-state{display:none}.ntf-modal.is-success .ntf-success{display:block}.ntf-success-in{display:flex;flex-direction:column;align-items:center;text-align:center;gap:14px;padding:8px 0}.ntf-check{width:52px;height:52px;border-radius:50%;display:grid;place-items:center;background:#f0fdf4;color:#16a34a;border:1px solid #bbf7d0}.ntf-check svg{width:22px;height:22px}.ntf-success p{font-size:14px;color:var(--ink-2);line-height:1.5}.ntf-success p b{color:var(--ink)}.ntf-done{width:100%;height:50px;border-radius:13px;background:var(--accent);color:#fff;font-size:15px;font-weight:800;border:none;cursor:pointer;transition:.15s;margin-top:4px}.ntf-done:hover{background:var(--accent-600)}.ntf-err{font-size:13px;font-weight:600;color:#dc2626;margin-bottom:10px;display:none}.ntf-err.show{display:block}
/*# sourceMappingURL=/cdn/shop/t/75/assets/notify.css.map?v=173046473243242423541781593013 */



.mkt-filter-btn { display: none; }
.filters-x, .filters-apply { display: none; }
.filters-scrim { display: none; }
.filters-apply {
  width: 100%; margin-top: 8px; height: 48px; border-radius: 12px;
  background: var(--accent); color: #fff; font-size: 15px; font-weight: 800;
  font-family: var(--font-display); border: none; cursor: pointer;
}
.bs-body .container { max-width: none; padding: 0; }
.bs-body .flash { max-width: 1800px; margin: 16px auto 0; padding: 12px 28px; border-radius: 12px; background: #fff8e8; border: 1px solid #f6ddb0; color: #9a6700; }
.bs-body .presence-badge { display: inline-flex; align-items: center; gap: 8px; height: 42px; padding: 0 14px; border: 1px solid var(--line-2); border-radius: 10px; background: #fff; font-size: 13px; }
.bs-body .presence-name { font-weight: 700; color: var(--ink); }
.bs-body .presence-label { color: var(--ink-3); font-size: 12px; }


@media(max-width:900px){.mkt-layout{grid-template-columns:1fr}.mkt-filter-btn{display:inline-flex;align-items:center;gap:8px;height:46px;padding:0 16px;border-radius:var(--radius-sm);background:var(--surface);border:1px solid var(--line-2);font-family:var(--font-display);font-size:14px;font-weight:700;color:var(--ink);position:relative;cursor:pointer;flex-shrink:0}.mkt-filter-btn svg{color:var(--ink-2)}.mkt-filter-dot{width:8px;height:8px;border-radius:50%;background:var(--accent)}.filters-scrim{display:block;position:fixed;top:0;right:0;bottom:0;left:0;z-index:96;background:#080c1880;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);opacity:0;pointer-events:none;transition:opacity .25s ease}.filters-scrim.show{opacity:1;pointer-events:auto}.filters{position:fixed;left:0;right:0;bottom:0;top:auto;z-index:97;margin:0;border:none;border-radius:22px 22px 0 0;max-height:85vh;overflow-y:auto;padding:0 18px 18px;transform:translateY(101%);transition:transform .3s cubic-bezier(.4,0,.2,1);box-shadow:0 -26px 64px -26px #080c188c;-webkit-overflow-scrolling:touch}.filters.open{transform:none}.filters-head{position:sticky;top:0;z-index:2;background:var(--surface);padding:16px 0 10px;margin:0;border-bottom:1px solid var(--line)}.filters-x{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:9px;flex-shrink:0;border:1px solid var(--line-2);color:var(--ink-2);background:#fff}.filters-x:active{background:var(--page-bg)}.filters-apply{display:flex;position:sticky;bottom:0;align-items:center;justify-content:center;gap:8px;width:100%;height:50px;margin-top:10px;border:none;border-radius:13px;background:var(--accent);color:#fff;font-family:var(--font-display);font-weight:700;font-size:15px;cursor:pointer;box-shadow:0 8px 22px -10px color-mix(in srgb,var(--accent) 70%,transparent)}.filters-apply:active{background:var(--accent-600)}body.filters-lock{overflow:hidden}.mkt-banner,.mkt-bn-slide{min-height:132px}.mkt-bn-slide{padding:20px}.mkt-banner .bn-inner{padding-left:6px;max-width:100%}.mkt-banner h1{font-size:23px;margin:6px 0 5px}.mkt-banner .sub{font-size:12.5px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.mkt-bn-cta{margin-top:12px}.mkt-bn-arrow{display:none}.mkt-banner .bn-inner{padding-right:6px}}
/*# sourceMappingURL=/cdn/shop/t/75/assets/mobile.css.map?v=144221734310081866751781593013 */


/* product 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: var(--price-old); text-decoration: line-through; font-weight: 700; }
.pp-price-chip {
  display: inline-flex; align-items: center; padding: 5px 10px; border-radius: var(--radius-pill);
  background: #fef2f2; color: #dc2626; border: 1px solid #fecaca;
  font-size: 13px; font-weight: 800; line-height: 1;
}
.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; }
.pp-buynow.loading { pointer-events: none; }
.pp-buynow .spin { display: inline-block; animation: spin .6s linear infinite; }
@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; }


/* layout fixes: card price/button spacing + buy form action button */
.bs-body .card-foot { gap: 10px; align-items: flex-end; }
.bs-body .price-wrap { min-width: 0; flex: 1 1 auto; overflow: visible; }
.bs-body .price-now { font-size: 20px; white-space: nowrap; }
.bs-body .price-old { font-size: 12px; white-space: nowrap; }
.bs-body .add-btn { flex: 0 0 auto; }
.bs-body .notify-btn.notify-btn-text { width: auto; padding: 0 16px; font-family: var(--font-display); font-size: 14px; font-weight: 800; flex: 0 0 auto; }
.bs-body .market-buy-form .pp-add { width: 100%; flex: none; margin-top: 4px; }
.bs-body .market-buy-form .pp-buynow { margin-top: 10px; }


.mkt-feature { margin: 0 0 26px; display: flex; flex-direction: column; gap: 20px; }
.feat-card { display: grid; grid-template-columns: 300px 1fr; gap: 26px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.feat-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: linear-gradient(180deg, var(--rc), color-mix(in srgb, var(--rc) 60%, #fff)); }
.feat-media { position: relative; display: grid; place-items: center; padding: 28px; background: radial-gradient(420px 280px at 50% 30%, color-mix(in srgb, var(--rc) 16%, #fff), var(--page-bg) 72%); }
.feat-tag { position: absolute; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 800; color: #fff; background: linear-gradient(150deg, var(--accent), var(--accent-600)); border-radius: var(--radius-pill); padding: 6px 12px; box-shadow: 0 6px 16px -6px color-mix(in srgb, var(--accent) 70%, transparent); }
.feat-tag svg { color: #ffd23f; }
.feat-art { width: 100%; max-width: 200px; aspect-ratio: 1/1; display: grid; place-items: center; }
.feat-art img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 14px 22px rgba(16,20,33,.18)); }
.feat-info { padding: 26px 28px 26px 0; display: flex; flex-direction: column; }
.feat-rarity { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 800; color: var(--rc); }
.feat-rarity .rdot2 { width: 8px; height: 8px; border-radius: 50%; background: var(--rc); }
.feat-name { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; margin: 8px 0 6px; }
.feat-desc { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); margin: 0 0 16px; }
.feat-items-h { font-size: 12px; font-weight: 800; letter-spacing: .04em; color: var(--ink-3); text-transform: uppercase; margin-bottom: 9px; }
.feat-items { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.feat-item { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--ink-2); background: var(--page-bg); border: 1px solid var(--line-2); border-radius: var(--radius-pill); padding: 7px 13px; }
.feat-item svg { color: var(--accent); }
.feat-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; }
.feat-price-wrap { display: flex; flex-direction: column; }
.feat-price { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: #16a34a; line-height: 1; }
.feat-price-old { font-size: 14px; color: var(--price-old); text-decoration: line-through; font-weight: 700; line-height: 1.2; }
.feat-price-disc {
  display: inline-flex; align-items: center; margin-top: 4px; padding: 2px 8px; border-radius: var(--radius-pill);
  background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; font-size: 11px; font-weight: 800;
}
.feat-price-sub { font-size: 12px; font-weight: 600; color: var(--ink-3); margin-top: 4px; }
.feat-buy { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 800; color: #fff; background: linear-gradient(150deg, var(--accent), var(--accent-600)); border-radius: var(--radius-pill); padding: 13px 26px; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease; box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--accent) 70%, transparent); }
.feat-buy:hover { transform: translateY(-1px); box-shadow: 0 12px 26px -8px color-mix(in srgb, var(--accent) 70%, transparent); }
.feat-buy-off { background: #9aa1ad; box-shadow: none; pointer-events: none; }

@media (max-width: 760px) {
  .feat-card { grid-template-columns: 1fr; gap: 0; }
  .feat-media { padding: 24px 24px 8px; }
  .feat-art { max-width: 150px; }
  .feat-info { padding: 4px 22px 24px; }
  .feat-name { font-size: 23px; }
}
@media (max-width: 460px) {
  .feat-foot { flex-direction: column; align-items: stretch; gap: 12px; }
  .feat-buy { justify-content: center; }
}

.how-shell { max-width: 1080px; margin: 0 auto; padding: 30px 28px 72px; }
.how-kicker { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .14em; color: var(--accent); background: var(--accent-050); border-radius: var(--radius-pill); padding: 6px 12px; }

.btn-primary { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 15px; font-weight: 700; color: #fff; background: linear-gradient(150deg, var(--accent), var(--accent-600)); border: none; border-radius: var(--radius-pill); padding: 13px 24px; cursor: pointer; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease; box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--accent) 70%, transparent); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 26px -8px color-mix(in srgb, var(--accent) 70%, transparent); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--ink-2); background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-pill); padding: 12px 22px; cursor: pointer; text-decoration: none; transition: .15s; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.how-hero { display: grid; grid-template-columns: 1fr 320px; gap: 36px; align-items: center; padding: 8px 0 48px; }
.how-hero--solo { grid-template-columns: 1fr; }
.how-hero-title { font-family: var(--font-display); font-size: 38px; line-height: 1.18; font-weight: 800; color: var(--ink); letter-spacing: -.02em; margin: 16px 0 14px; }
.how-hero-lead { font-size: 16.5px; line-height: 1.6; color: var(--ink-2); margin: 0 0 24px; max-width: 540px; }
.how-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.how-live { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-md); }
.how-live-head { display: flex; align-items: center; gap: 9px; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.how-live-title { font-size: 13.5px; font-weight: 800; color: var(--ink); letter-spacing: .02em; }
.how-live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-4); flex: none; }
.how-live-dot.online, .how-live-dot.ingame, .how-live-dot.studio { background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.18); }
.how-live-dot.offline { background: #ef4444; }
.how-live-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 14px; color: var(--ink-3); padding: 7px 0; }
.how-live-row strong { color: var(--ink); font-weight: 700; font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.how-live-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 12px 0 4px; }
.how-live-pill { background: var(--page-bg); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px; text-align: center; }
.how-live-pill span { display: block; font-size: 22px; font-weight: 800; color: var(--accent); line-height: 1; }
.how-live-pill small { font-size: 12px; color: var(--ink-3); font-weight: 600; }
.how-live-foot { font-size: 11.5px; color: var(--ink-4); margin: 12px 0 0; }

.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 56px; }
.how-step-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px 22px; box-shadow: var(--shadow-sm); transition: .18s; }
.how-step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.how-step-n { position: absolute; top: 18px; right: 20px; font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--accent-100); line-height: 1; }
.how-step-ic { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--accent-050); color: var(--accent); margin-bottom: 16px; }
.how-step-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--ink); margin: 0 0 8px; }
.how-step-card p { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); margin: 0; }

.how-pay { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; margin-bottom: 56px; box-shadow: var(--shadow-sm); }
.how-pay-copy h2 { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--ink); margin: 14px 0 10px; }
.how-pay-copy p { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); margin: 0; }
.how-pay-card { display: flex; flex-direction: column; gap: 10px; }
.how-pay-row { display: flex; align-items: center; gap: 12px; background: var(--page-bg); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 13px 16px; }
.how-pay-key { font-size: 13px; font-weight: 700; color: var(--ink-3); width: 64px; flex: none; }
.how-pay-val { font-size: 15px; font-weight: 700; color: var(--ink); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.how-copy { font-size: 12.5px; font-weight: 700; color: var(--accent); background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-pill); padding: 6px 14px; cursor: pointer; flex: none; transition: .14s; }
.how-copy:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

.how-faq { margin-bottom: 56px; }
.how-faq-head { text-align: center; margin-bottom: 24px; }
.how-faq-head h2 { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--ink); margin: 14px 0 0; }
.how-acc-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin: 0 auto; }
.how-acc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .16s; }
.how-acc.open { border-color: var(--accent); }
.how-acc-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-family: var(--font-body); font-size: 15.5px; font-weight: 700; color: var(--ink); background: none; border: none; padding: 18px 20px; cursor: pointer; text-align: left; }
.how-acc-head svg { color: var(--ink-4); flex: none; transition: transform .22s ease; }
.how-acc.open .how-acc-head svg { transform: rotate(180deg); color: var(--accent); }
.how-acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .24s ease; }
.how-acc.open .how-acc-body { grid-template-rows: 1fr; }
.how-acc-clip { overflow: hidden; }
.how-acc-clip p { font-size: 14.5px; line-height: 1.65; color: var(--ink-2); margin: 0; padding: 0 20px 18px; }

.how-bottom { text-align: center; background: linear-gradient(150deg, var(--accent), var(--accent-600)); border-radius: var(--radius); padding: 44px 28px; color: #fff; }
.how-bottom h2 { font-family: var(--font-display); font-size: 26px; font-weight: 800; margin: 0 0 8px; color: #fff; }
.how-bottom p { font-size: 15px; opacity: .9; margin: 0 0 22px; }
.how-bottom .btn-primary { background: #fff; color: var(--accent); box-shadow: 0 10px 26px -10px rgba(0,0,0,.4); }
.how-bottom .btn-primary:hover { background: #f1f5ff; }

.how-toast { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(14px); background: var(--ink); color: #fff; font-size: 13.5px; font-weight: 700; padding: 11px 20px; border-radius: var(--radius-pill); box-shadow: var(--shadow-lg); opacity: 0; transition: opacity .22s ease, transform .22s ease; z-index: 90; pointer-events: none; }
.how-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.live-feed { position: fixed; left: 18px; bottom: 18px; z-index: 80; display: flex; flex-direction: column-reverse; gap: 15px; pointer-events: none; max-width: 480px; }
.lf-card { display: flex; align-items: center; gap: 17px; padding: 17px 23px 17px 18px; border-radius: 21px; background: rgba(255,255,255,.92); -webkit-backdrop-filter: saturate(160%) blur(12px); backdrop-filter: saturate(160%) blur(12px); border: 1px solid var(--line); box-shadow: 0 14px 34px -16px rgba(16,20,33,.4); opacity: 0; transform: translateX(-120%) scale(.96); transition: opacity .4s cubic-bezier(.22,1,.36,1), transform .4s cubic-bezier(.22,1,.36,1); will-change: transform, opacity; }
.lf-card.show { opacity: 1; transform: translateX(0) scale(1); }
.lf-card.hide { opacity: 0; transform: translateX(-120%) scale(.96); }
.lf-ic { flex: none; width: 51px; height: 51px; border-radius: 15px; display: grid; place-items: center; color: var(--accent); background: var(--accent-050); }
.lf-cat-pet .lf-ic { color: #a855f7; background: color-mix(in srgb, #a855f7 12%, #fff); }
.lf-cat-gear .lf-ic { color: #0ea5e9; background: color-mix(in srgb, #0ea5e9 12%, #fff); }
.lf-body { min-width: 0; }
.lf-top { font-size: 17px; color: var(--ink-3); font-weight: 600; line-height: 1.2; }
.lf-top b { color: var(--ink); font-weight: 800; }
.lf-name { font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; line-height: 1.25; margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lf-qty { color: var(--accent); font-weight: 800; }

@media (max-width: 560px) {
  .live-feed { left: 10px; bottom: 10px; max-width: 360px; gap: 12px; }
  .lf-card { padding: 14px 18px 14px 15px; gap: 14px; }
  .lf-ic { width: 45px; height: 45px; }
  .lf-name { font-size: 19px; }
}

@media (max-width: 900px) {
  .how-hero { grid-template-columns: 1fr; gap: 26px; padding-bottom: 36px; }
  .how-hero-title { font-size: 32px; }
  .how-live { max-width: 460px; }
  .how-steps { grid-template-columns: 1fr; gap: 14px; margin-bottom: 44px; }
  .how-step-card { padding: 22px 20px; }
  .how-pay { grid-template-columns: 1fr; gap: 20px; padding: 26px 22px; }
}

@media (max-width: 560px) {
  .how-shell { padding: 22px 16px 56px; }
  .how-hero-title { font-size: 26px; line-height: 1.25; }
  .how-hero-lead { font-size: 15px; }
  .how-hero-actions { flex-direction: column; align-items: stretch; }
  .how-hero-actions .how-cta { justify-content: center; }
  .how-pay-row { flex-wrap: wrap; }
  .how-pay-val { flex: 1 0 100%; order: 3; }
  .how-acc-head { font-size: 14.5px; padding: 16px; }
  .how-bottom { padding: 36px 20px; }
  .how-bottom h2 { font-size: 22px; }
}

@media (max-width: 860px) {
  .announce { font-size: 12px; padding: 7px 14px; text-align: center; }
  .hdr-row { height: 58px; gap: 12px; }
  .brand { font-size: 17px; gap: 7px; }
  .brand-logo { height: 26px; }
  .mkt-shell { padding: 0 16px; }
  .bs-body .flash { padding: 12px 16px; }
  .hdr-search-wrap { display: none; }
  .nav { gap: 2px; }
  .nav a { font-size: 13px; padding: 7px 9px; }
}

@media (max-width: 720px) {
  .hdr-right { gap: 8px; }

  .cat-tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: 8px; margin: 0 -16px 14px; padding: 2px 16px; }
  .cat-tabs::-webkit-scrollbar { display: none; }
  .cat-tab { flex: 0 0 auto; height: 38px; }

  .mkt-toolbar { flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
  .mkt-filter-btn { order: 1; height: 44px; }
  .sort-wrap { order: 2; margin-left: auto; }
  .sortsel { height: 44px; }
  .mkt-search { order: 4; flex: 1 1 100%; height: 44px; }
  .count-tag { order: 3; }
  .sort-drop { min-width: 170px; }

  .mkt-shell .grid { gap: 12px; }

  .pp-shell { padding: 16px 16px 36px; }
  .pp-main { display: flex; flex-direction: column; gap: 16px; margin-top: 14px; }
  .pp-media { aspect-ratio: 5 / 4; border-radius: var(--radius); max-height: 280px; }
  .pp-media-art { width: 52%; }
  .pp-save { top: 12px; left: 12px; font-size: 12px; padding: 6px 11px; }
  .pp-buy { width: 100%; }
  .pp-title { font-size: 26px; line-height: 1.1; }
  .pp-social { margin-top: 8px; }
  .pp-price-row { margin-top: 12px; }
  .pp-price { font-size: 29px; }
  .market-buy-form { margin-top: 16px !important; display: flex; flex-direction: column; }
  .market-buy-form .ntf-label { width: 100%; margin-bottom: 13px; }
  .market-buy-form .ntf-input { width: 100%; }
  .bs-body .market-buy-form .pp-add { width: 100%; height: 52px; font-size: 15.5px; }
  .bs-body .market-buy-form .pp-buynow { width: 100%; margin-top: 10px; }
  .pp-trust { gap: 6px 12px; margin-top: 14px; }
  .pp-accordion { margin-top: 18px; }

  .foot { margin-top: 52px; padding: 36px 0 28px; }
  .foot-row { gap: 28px; }
  .foot-bar { margin-top: 28px; gap: 14px; }
}

@media (max-width: 420px) {
  .hdr-row { gap: 8px; }
  .brand { font-size: 15.5px; }
  .brand span { display: none; }
  .presence-meta { display: none; }
  .presence-badge { padding: 0 8px; gap: 0; }

  .mkt-shell .grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  .bs-body .card-foot { flex-wrap: wrap; min-height: auto; row-gap: 8px; }
  .bs-body .price-wrap { flex: 1 1 100%; width: 100%; }
  .bs-body .price-now { font-size: 18px; }
  .bs-body .price-old { font-size: 11px; }
  .price-pack-hint { font-size: 10.5px; margin-top: 1px; }
  .bs-body .add-btn,
  .bs-body .notify-btn.notify-btn-text { margin-left: auto; }
  .pack-badge { bottom: 8px; left: 8px; right: 8px; padding: 7px 10px; font-size: 12.5px; }
  .price-old { font-size: 11px; }
  .price-disc { font-size: 9.5px; padding: 2px 6px; }
  .sale-chip { top: 8px; right: 8px; font-size: 10px; padding: 3px 7px; }
  .card-body { padding: 12px; gap: 6px; }
  .card-name { font-size: 13.5px; }
  .cat-tab { font-size: 13px; padding: 0 13px; }
  .mkt-search input { font-size: 14px; }

  .pp-shell { padding: 14px 14px 32px; }
  .pp-media { aspect-ratio: 5 / 4; max-height: 240px; }
  .pp-media-art { width: 56%; }
  .pp-title { font-size: 22px; }
  .pp-price { font-size: 25px; }
  .pp-acc-head { font-size: 14px; padding: 14px 16px; }
  .pp-acc-list { padding: 0 16px 16px; }
  .feat-media { padding: 20px 18px 4px; }
  .feat-name { font-size: 21px; }
  .feat-item { font-size: 12px; padding: 6px 11px; }
}

.hdr-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  color: var(--ink);
  flex-shrink: 0;
  cursor: pointer;
  transition: 0.15s;
}

.hdr-menu-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hdr-nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(8, 12, 24, 0.45);
  backdrop-filter: blur(2px);
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.hdr-nav-scrim.show {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.hdr-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  width: min(320px, 88vw);
  background: var(--surface);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  transform: translateX(102%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 0 0 24px;
}

.hdr-nav-drawer.open {
  transform: none;
}

.hdr-nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
}

.hdr-nav-close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid var(--line-2);
  background: var(--page-bg);
  color: var(--ink-2);
  cursor: pointer;
}

.hdr-nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  overflow-y: auto;
}

.hdr-nav-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-2);
  transition: 0.14s;
}

.hdr-nav-link:hover,
.hdr-nav-link.active {
  color: var(--accent);
  background: var(--accent-050);
}

.hdr-nav-link.nav-notice-link {
  color: #d97706;
}

.hdr-nav-link.nav-notice-link:hover,
.hdr-nav-link.nav-notice-link.active {
  color: #b45309;
  background: #fff7ed;
}

body.nav-lock {
  overflow: hidden;
}

@media (max-width: 900px) {
  .hdr-menu-btn {
    display: inline-flex;
  }

  .hdr-nav-desktop {
    display: none !important;
  }

  .hdr-row {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    height: 48px;
  }

  .hdr-brand {
    min-width: 0;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hdr-menu-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .hdr-right {
    margin-left: 0;
    gap: 6px;
  }

  .bs-body .presence-badge,
  .market-body .presence-badge {
    height: 38px;
    width: auto;
    padding: 0 8px 0 4px;
    justify-content: center;
  }

  .presence-meta {
    display: none;
  }

  .shell,
  .mkt-shell {
    padding-left: 12px;
    padding-right: 12px;
  }

  .mkt-shell[data-collection] {
    padding-top: 16px !important;
  }

  #MainContent {
    padding-bottom: 76px;
  }

  body.market-order #MainContent {
    padding-bottom: 88px;
  }

  .foot {
    margin-top: 36px;
    padding: 28px 0 20px;
  }

  .foot-row {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .foot-brandcol {
    max-width: none;
  }

  .foot-brandcol .brand {
    font-size: 16px;
  }

  .foot-brandcol p {
    font-size: 13px;
    margin-top: 10px;
  }

  .foot-promo {
    max-width: none;
    flex: none;
    width: 100%;
    padding: 18px 18px;
  }

  .foot-promo-title {
    font-size: 17px;
    margin-top: 10px;
  }

  .foot-promo-desc {
    font-size: 12.5px;
    margin-bottom: 14px;
  }

  .foot-promo-price {
    font-size: 20px;
  }

  .foot-promo-row {
    gap: 10px;
  }

  .foot-promo-cta {
    font-size: 12.5px;
    padding: 8px 14px;
  }

  .foot-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 22px;
    padding-top: 18px;
  }

  .foot-legal {
    font-size: 11.5px;
    max-width: none;
    line-height: 1.5;
  }

  .foot-meta {
    white-space: normal;
  }

  .live-feed {
    left: 10px;
    bottom: 72px;
    max-width: min(360px, calc(100vw - 88px));
  }
}

@media (max-width: 420px) {
  .announce {
    font-size: 11.5px;
    padding: 7px 10px;
    line-height: 1.45;
  }

  .hdr-brand {
    font-size: 14px;
  }

  .hdr-brand span {
    display: none;
  }

  .foot-brandcol p {
    display: none;
  }

  .foot-promo-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .live-feed {
    bottom: 68px;
    max-width: min(330px, calc(100vw - 84px));
  }
}
