/* ================================
   MARKETBLOX V3 — GREEN & WHITE
   ================================ */
:root {
  --green: #00c853;
  --green-dark: #00a846;
  --green-light: #e8f9ef;
  --green-glow: rgba(0, 200, 83, 0.25);
  --bg: #ffffff;
  --white: #ffffff;
  --navy: #111815;
  --text: #1a1f1b;
  --text2: #5a6b5e;
  --text3: #9aab9e;
  --border: #e2e8e4;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 2px 16px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 60px rgba(0,0,0,0.13);
  --shadow-green: 0 8px 30px rgba(0,200,83,0.3);
  --font-display: 'Plus Jakarta Sans', 'Nunito', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Space Grotesk', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

#particles {
  display: none;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 5px; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 max(1.5rem, calc((100vw - 1440px) / 2));
  height: 68px;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
  transition: transform 0.2s;
  justify-self: start;
}
.logo:hover { transform: scale(1.03); }
.logo b { color: var(--green); }
.logo-icon { transition: transform 0.4s; }
.logo:hover .logo-icon { transform: rotate(90deg); }

.nav-center { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }


.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: end;
}
/* 3D NAV ICONS */
.ni-wrap {
  display: inline-block;
  vertical-align: -6px;
  margin-right: 5px;
  filter: drop-shadow(0 3px 7px rgba(0,200,83,.55));
  transition: filter 0.2s, transform 0.2s;
}
.ni-svg { display: block; }
.nav-link:hover .ni-wrap {
  filter: drop-shadow(0 5px 12px rgba(0,200,83,.75));
  transform: translateY(-2px);
}

.nav-link {
  color: var(--text2);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: color 0.2s;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.2s;
  border-radius: 2px;
}
.nav-link:hover { color: var(--green); }
.nav-link:hover::after { transform: scaleX(1); }

/* Auth Login/Account nav button */
.nav-link-account {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--text2);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  padding: .45rem .85rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  transition: border-color .2s, color .2s, background .2s;
}
.nav-link-account:hover {
  border-color: var(--green);
  color: var(--green);
}
.nav-link-account.auth-logged-in {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}
.auth-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.auth-nav-chevron {
  transition: transform .28s cubic-bezier(.34,1.56,.64,1);
  opacity: .55;
  flex-shrink: 0;
}
.auth-nav-wrap.open .auth-nav-chevron { transform: rotate(180deg); }

/* ---- Auth dropdown ---- */
.auth-nav-wrap { position: relative; }

@keyframes authDropIn {
  from { opacity:0; transform: translateY(-10px) scale(.94) perspective(400px) rotateX(-6deg); }
  to   { opacity:1; transform: translateY(0)     scale(1)   perspective(400px) rotateX(0deg); }
}

.auth-nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 248px;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid rgba(0,200,83,.15);
  padding: 6px;
  z-index: 9999;
  box-shadow:
    0 24px 64px rgba(0,0,0,.13),
    0 8px 24px rgba(0,200,83,.07),
    0 2px 0  rgba(0,200,83,.08),
    inset 0 1px 0 rgba(255,255,255,1);
}
.auth-nav-dropdown.open {
  display: block;
  animation: authDropIn .28s cubic-bezier(.22,1,.36,1) both;
}

.auth-dd-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 12px;
}
.auth-dd-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c853, #00a846);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,200,83,.35);
}
.auth-dd-info { min-width: 0; }
.auth-dd-name {
  font-weight: 800;
  font-size: .88rem;
  color: #0a2e14;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.auth-dd-email {
  font-size: .72rem;
  color: #8aab92;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.auth-dd-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,200,83,.15), transparent);
  margin: 3px 6px;
}

.auth-dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 700;
  color: #1a3a20;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background .15s, transform .18s cubic-bezier(.34,1.56,.64,1), color .15s;
}
.auth-dd-item:hover {
  background: #f0faf2;
  transform: translateX(3px);
}
.auth-dd-icon {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: #f0faf2;
  border: 1px solid rgba(0,200,83,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #00a846;
  transition: background .15s, box-shadow .15s;
}
.auth-dd-item:hover .auth-dd-icon {
  background: #00c853;
  color: #fff;
  box-shadow: 0 3px 10px rgba(0,200,83,.35);
  border-color: transparent;
}
.auth-dd-logout { color: #d32f2f; }
.auth-dd-logout .auth-dd-icon { color: #d32f2f; background: #fff3f3; border-color: rgba(211,47,47,.12); }
.auth-dd-logout:hover { background: #fff3f3; transform: translateX(3px); }
.auth-dd-logout:hover .auth-dd-icon { background: #d32f2f; color: #fff; box-shadow: 0 3px 10px rgba(211,47,47,.3); border-color: transparent; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--navy);
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.3rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.nav-cta:hover {
  background: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  grid-column: 3;
  justify-self: end;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Mobile menu — full-screen overlay ───────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 9999;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: flex; }

.mm-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0;
  background: var(--white); z-index: 1;
  flex-shrink: 0;
}
.mm-close {
  background: none; border: none; cursor: pointer;
  color: var(--text); padding: 6px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.mm-close:hover { background: var(--bg); }

.mm-account-btn {
  display: flex; align-items: center; justify-content: center; gap: .65rem;
  margin: 1rem 1.25rem .5rem;
  padding: .85rem 1.25rem;
  background: var(--green);
  color: #fff; text-decoration: none;
  border-radius: 14px;
  font-weight: 700; font-size: .95rem;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}
.mm-account-btn:hover { background: var(--green-dark); transform: translateY(-1px); }

.mm-section-label {
  padding: 1rem 1.25rem .4rem;
  font-size: .68rem; font-weight: 800;
  letter-spacing: .12em; color: var(--green);
  text-transform: uppercase; flex-shrink: 0;
}

.mm-game-link {
  display: flex; align-items: center; gap: .9rem;
  padding: .65rem 1rem;
  text-decoration: none; color: var(--text);
  font-weight: 600; font-size: .95rem;
  transition: background .15s;
  border-radius: 12px;
  margin: 0 .5rem;
  flex-shrink: 0;
}
.mm-game-link:active { background: var(--green-light); }
.mm-game-thumb {
  width: 46px; height: 46px;
  border-radius: 10px; object-fit: cover; flex-shrink: 0;
}
.mm-game-name { flex: 1; }
.mm-game-arrow {
  color: var(--text3); flex-shrink: 0;
  transition: transform .2s;
}
.mm-game-link:hover .mm-game-arrow { transform: translateX(3px); color: var(--green); }

.mm-link-row {
  display: flex; align-items: center; gap: .75rem;
  padding: .8rem 1.25rem;
  text-decoration: none; color: var(--text2);
  font-weight: 600; font-size: .92rem;
  transition: background .15s, color .15s;
  border-radius: 12px;
  margin: 0 .5rem;
  flex-shrink: 0;
}
.mm-link-row:hover { background: var(--green-light); color: var(--green); }

.mobile-divider { height: 1px; background: var(--border); margin: .5rem 1.25rem; flex-shrink: 0; }

/* ── Mobile nav: show currency + cart ────────────────────── */
@media (max-width: 800px) {
  .nav-center { display: none; }
  .nav-right {
    display: flex; align-items: center; gap: .4rem;
  }
  .nav-right .nav-link,
  .nav-right .nav-cta,
  .nav-right .auth-nav-wrap { display: none; }
  .nav-right #currencyPickerSlot { display: flex; }
  .nav-right .cart-nav-btn { display: flex; }
  .hamburger { display: flex; }
  /* Compact currency button on mobile */
  .cp-btn { padding: 8px 12px; font-size: .82rem; border-radius: 10px; }
  .cp-dropdown { right: auto; left: 50%; transform: translateX(-50%); min-width: 210px; }
}

/* ===================== HERO ===================== */
@keyframes heroGlowFloat {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 1; }
  33%       { transform: scale(1.12) translate(18px, -24px); opacity: 0.7; }
  66%       { transform: scale(0.92) translate(-14px, 16px); opacity: 0.9; }
}
@keyframes heroGlowFloat2 {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.8; }
  40%       { transform: scale(1.18) translate(-20px, -18px); opacity: 1; }
  75%       { transform: scale(0.88) translate(12px, 22px); opacity: 0.6; }
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  z-index: 1;
  background-color: #f5fdf7;
  background-image:
    linear-gradient(rgba(0,0,0,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.045) 1px, transparent 1px),
    linear-gradient(155deg, #edf9f2 0%, #f5fdf7 40%, var(--bg) 75%);
  background-size: 44px 44px, 44px 44px, auto;
  overflow: hidden;
}

@keyframes dotFloat {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  85%  { opacity: 0.4; }
  100% { transform: translateY(-580px) scale(0.6); opacity: 0; }
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-particles span {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: rgba(0,200,83,0.55);
  animation: dotFloat linear infinite;
}
.hero-particles span:nth-child(1)  { left:5%;  width:4px; height:4px; animation-duration:9s;  animation-delay:0s;   }
.hero-particles span:nth-child(2)  { left:12%; width:3px; height:3px; animation-duration:11s; animation-delay:1.8s; }
.hero-particles span:nth-child(3)  { left:22%; width:5px; height:5px; animation-duration:8s;  animation-delay:3.2s; }
.hero-particles span:nth-child(4)  { left:33%; width:3px; height:3px; animation-duration:13s; animation-delay:0.5s; }
.hero-particles span:nth-child(5)  { left:42%; width:4px; height:4px; animation-duration:10s; animation-delay:5s;   }
.hero-particles span:nth-child(6)  { left:53%; width:3px; height:3px; animation-duration:12s; animation-delay:2.4s; }
.hero-particles span:nth-child(7)  { left:63%; width:5px; height:5px; animation-duration:9s;  animation-delay:4.1s; }
.hero-particles span:nth-child(8)  { left:72%; width:3px; height:3px; animation-duration:11s; animation-delay:1s;   }
.hero-particles span:nth-child(9)  { left:82%; width:4px; height:4px; animation-duration:8s;  animation-delay:6.5s; }
.hero-particles span:nth-child(10) { left:91%; width:3px; height:3px; animation-duration:14s; animation-delay:3.7s; }
.hero::before {
  content: '';
  position: absolute;
  top: -280px; right: -180px;
  width: 820px; height: 820px;
  background: radial-gradient(circle, rgba(0,200,83,0.12) 0%, transparent 65%);
  pointer-events: none;
  animation: heroGlowFloat 10s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,200,83,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: heroGlowFloat2 13s ease-in-out infinite;
}

.hero-stars { display: none; }

.hero-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-left { flex: 1; max-width: 580px; }

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, #ffffff 0%, #f7fdf9 100%);
  border: 1.5px solid rgba(0,200,83,0.18);
  padding: 0.5rem 1.1rem 0.5rem 0.85rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text2);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,200,83,0.12), 0 1px 3px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
  animation: fadeUp 0.6s ease both, ratingPulse 3s ease-in-out 1.2s infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-decoration: none !important;
}
.hero-rating:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(0,200,83,0.2), 0 2px 6px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
@keyframes ratingPulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(0,200,83,0.12), 0 1px 3px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9); }
  50%       { box-shadow: 0 4px 18px rgba(0,200,83,0.28), 0 1px 3px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9); }
}
.stars-row {
  background: linear-gradient(135deg, #ffcc00, #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  filter: drop-shadow(0 1px 2px rgba(255,180,0,0.35));
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-accent { color: var(--green); position: relative; }

.hero-sub {
  color: var(--text2);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.6s 0.3s ease both;
}

/* BUTTONS */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: visible;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  border: none;
  padding: 0;
}
.btn-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #00dd5e 0%, #00c853 50%, #00b548 100%);
  border-radius: 100px;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), filter 0.35s;
}
/* 3D highlight shine on top of button */
.btn-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 45%;
  border-radius: 100px 100px 60% 60%;
  background: linear-gradient(180deg, rgba(255,255,255,0.28) 0%, transparent 100%);
  pointer-events: none;
}
.btn-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 1rem 2.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.btn-primary {
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(0,200,83,0.4);
  transition: transform 0.18s cubic-bezier(.22,1,.36,1), box-shadow 0.18s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,200,83,0.5);
}
.btn-primary:hover .btn-bg { filter: brightness(1.06); }
.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 4px 12px rgba(0,200,83,0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 0.85rem 1.6rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero-trust {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 0.42rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text2);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s;
}
.trust-pill:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }

/* Trust pill SVG icons */
.tp-bolt {
  filter: drop-shadow(0 1px 2px rgba(255,140,0,0.5));
  animation: tpBoltFlash 2.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes tpBoltFlash {
  0%,68%,100% { opacity:1; filter:drop-shadow(0 1px 2px rgba(255,140,0,0.5)); }
  73%          { opacity:.2; filter:drop-shadow(0 0 6px rgba(255,140,0,1)); }
  78%          { opacity:1; filter:drop-shadow(0 1px 5px rgba(255,200,0,0.9)); }
}
.tp-shield {
  filter: drop-shadow(0 1px 2px rgba(0,200,83,0.4));
  animation: tpShieldPulse 3.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes tpShieldPulse {
  0%,100% { transform:scale(1); filter:drop-shadow(0 1px 2px rgba(0,200,83,0.4)); }
  50%      { transform:scale(1.15); filter:drop-shadow(0 2px 7px rgba(0,200,83,0.75)); }
}
.tp-chat {
  filter: drop-shadow(0 1px 2px rgba(111,66,193,0.35));
  flex-shrink: 0;
}
.tp-dot1,.tp-dot2,.tp-dot3 { transform-box: fill-box; transform-origin: center; }
.tp-dot1 { animation: tpDot 1.7s ease-in-out infinite; }
.tp-dot2 { animation: tpDot 1.7s ease-in-out 0.22s infinite; }
.tp-dot3 { animation: tpDot 1.7s ease-in-out 0.44s infinite; }
@keyframes tpDot {
  0%,55%,100% { transform:scale(1); opacity:.65; }
  28%          { transform:scale(1.7); opacity:1; }
}

.hero-right {
  flex-shrink: 0;
  animation: fadeUp 0.6s 0.35s ease both;
}
.hero-game-cards { display: flex; flex-direction: column; gap: 1rem; }

.hgc {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #fff;
  border: 1.5px solid rgba(0,200,83,0.14);
  border-radius: 20px;
  padding: 1.1rem 1.4rem;
  width: 330px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.38s cubic-bezier(.22,1,.36,1), box-shadow 0.38s, border-color 0.3s;
  box-shadow:
    0 2px 8px rgba(0,0,0,0.05),
    0 6px 28px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
}
.hgc::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0,200,83,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hgc::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 10%; right: 10%;
  height: 18px;
  background: radial-gradient(ellipse, rgba(0,200,83,0.18) 0%, transparent 70%);
  filter: blur(6px);
  opacity: 0.6;
  transition: opacity 0.38s;
  pointer-events: none;
}
.hgc:hover {
  transform: translateY(-6px) scale(1.025);
  border-color: rgba(0,200,83,0.45);
  box-shadow:
    0 4px 0 rgba(0,200,83,0.06),
    0 16px 48px rgba(0,200,83,0.22),
    0 8px 20px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
}
.hgc:hover::after { opacity: 1; }
.hgc1 { animation: cardFloat 6s ease-in-out infinite; }
.hgc2 { animation: cardFloat 6s 1.5s ease-in-out infinite; }
.hgc3 { animation: cardFloat 6s 3s ease-in-out infinite; }
.hgc4 { animation: cardFloat 6s 4.5s ease-in-out infinite; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.hgc:hover { animation-play-state: paused; }
.hgc-emoji { flex-shrink: 0; }
.hgc-emoji img { width: 56px; height: 56px; border-radius: 14px; object-fit: cover; display: block; box-shadow: 0 4px 14px rgba(0,0,0,0.12); }
.hgc-info { flex: 1; }
.hgc-name { font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; line-height: 1.2; color: var(--text); }
.hgc-price { font-size: 0.82rem; color: var(--green); font-weight: 700; margin-top: 0.2rem; }
.hgc-arrow { color: rgba(0,200,83,0.4); font-size: 1.1rem; transition: transform 0.25s, color 0.25s; }
.hgc:hover .hgc-arrow { transform: translateX(5px); color: var(--green); }

@media (max-width: 900px) {
  .hero-inner { flex-direction: column; text-align: center; padding: 3rem 1.5rem; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-right { display: none; }
}

/* ===================== SECTION HELPERS ===================== */
.section-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

/* ===================== GAME SELECT ===================== */
.game-select {
  background: transparent;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0 4rem;
  position: relative;
  z-index: 1;
}
.game-tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.game-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text2);
  padding: 0.65rem 1.3rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
}
.game-tab:hover { border-color: var(--green); color: var(--green); background: var(--green-light); transform: translateY(-2px); }
.game-tab.active { background: var(--green); border-color: var(--green); color: white; box-shadow: var(--shadow-green); transform: translateY(-2px); }

/* ===================== PRODUCTS ===================== */
.products-section {
  padding: 3rem 0 5rem;
  position: relative;
  z-index: 1;
}
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.game-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.products-meta { color: var(--text3); font-size: 0.9rem; margin-top: 0.2rem; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.25rem;
}
.products-grid.hidden { display: none; }

.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.product-card.best-seller { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-light); }

.bs-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--green);
  color: white;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  z-index: 2;
}

.product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #c8e6c9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img { transform: scale(1.08); }

.ef {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
}

.product-body {
  padding: 0.9rem 1rem 0.5rem;
  flex: 1;
}
.product-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.3;
  margin-bottom: 0.3rem;
  color: var(--text);
}
.product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
}

.product-btn {
  display: block;
  width: calc(100% - 1.25rem);
  margin: 0.5rem 0.625rem 0.75rem;
  background: var(--navy);
  color: white;
  border: none;
  padding: 0.7rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.product-btn:hover { background: var(--green); transform: translateY(-2px); box-shadow: var(--shadow-green); }
.product-btn.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.product-btn.btn-outline:hover { border-color: var(--green); color: var(--green); background: var(--green-light); box-shadow: none; }

/* ===================== CYBER PROMO BANNER ===================== */
.cyber-banner {
  position: relative; overflow: hidden; cursor: pointer;
  margin: 0 0 0.5rem;
  border-radius: 0;
}
.cyber-banner-bg {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, #0a1628 0%, #0d2137 40%, #071a14 70%, #091f18 100%);
}
.cyber-banner-glow {
  position: absolute; top: -60px; right: 5%;
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,200,83,0.22) 0%, rgba(6,182,212,0.1) 40%, transparent 70%);
  pointer-events: none;
}
.cyber-banner-content {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 2rem 2rem;
  gap: 1.5rem;
}
.cyber-banner-tag {
  font-family: var(--font-display);
  font-size: 0.65rem; font-weight: 900;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #00c853; margin-bottom: 0.4rem;
}
.cyber-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900; color: #fff;
  margin-bottom: 0.35rem;
  text-shadow: 0 0 40px rgba(0,200,83,0.3);
}
.cyber-banner-sub {
  font-size: 0.88rem; color: rgba(255,255,255,0.55); max-width: 380px;
}
.cyber-banner-btn {
  flex-shrink: 0;
  background: transparent;
  border: 2px solid #00c853;
  color: #00c853;
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.25s;
  box-shadow: 0 0 20px rgba(0,200,83,0.25);
}
.cyber-banner:hover .cyber-banner-btn {
  background: #00c853; color: #fff;
  box-shadow: 0 4px 0 #009e3f, 0 8px 24px rgba(0,200,83,0.5);
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .cyber-banner-content { flex-direction: column; align-items: flex-start; padding: 1.5rem 1.25rem; }
  .cyber-banner-sub { display: none; }
}

/* ===================== SHOP FILTER BAR ===================== */
.shop-filter-bar { margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }

.cat-tabs-wrap { overflow-x: auto; overflow-y: visible; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 4px 2px; }
.cat-tabs-wrap::-webkit-scrollbar { display: none; }
.cat-tabs { display: flex; gap: 0.5rem; padding-bottom: 2px; width: max-content; }

.cat-tab {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 700;
  color: var(--text2);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.22s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.cat-tab:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,200,83,0.15); }
.cat-tab.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,200,83,0.4), 0 2px 0 #009e3f;
  transform: translateY(-1px);
}
.cat-tab-icon { display: flex; align-items: center; }

/* Category icon animations */
.cat-star { animation: catStarSpin 4s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes catStarSpin { 0%,100%{transform:scale(1) rotate(0deg)}50%{transform:scale(1.2) rotate(20deg)} }
.cat-new { animation: catNewPulse 2s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes catNewPulse { 0%,100%{transform:scale(1)}50%{transform:scale(1.15)} }
.cat-bundle { animation: catBundleBounce 2.5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes catBundleBounce { 0%,100%{transform:translateY(0)}50%{transform:translateY(-2px)} }
.cat-cyber { animation: catCyberGlitch 3s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes catCyberGlitch { 0%,90%,100%{transform:translate(0)}93%{transform:translate(-1px,1px)}96%{transform:translate(1px,-1px)} }
.cat-divine { animation: catDivineGlow 3s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes catDivineGlow { 0%,100%{opacity:1}50%{opacity:0.6} }
.cat-index { transform-box: fill-box; transform-origin: bottom; animation: catIndexGrow 2.5s ease-in-out infinite; }
@keyframes catIndexGrow { 0%,100%{transform:scaleY(1)}50%{transform:scaleY(1.1)} }
.cat-op { animation: catOpFlash 2.8s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes catOpFlash { 0%,70%,100%{opacity:1;filter:drop-shadow(0 0 0 transparent)}75%{opacity:.3}80%{opacity:1;filter:drop-shadow(0 0 4px currentColor)} }

/* Search bar */
.shop-search-wrap {
  position: relative; display: flex; align-items: center;
  max-width: 520px;
}
.shop-search-ico {
  position: absolute; left: 14px; color: var(--text3); pointer-events: none;
}
.shop-search-input {
  width: 100%;
  padding: 0.7rem 2.5rem 0.7rem 2.75rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--text);
  outline: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.shop-search-input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,200,83,0.12); }
.shop-search-clear {
  position: absolute; right: 12px;
  background: none; border: none; cursor: pointer;
  color: var(--text3); font-size: 0.8rem; padding: 4px;
  transition: color 0.2s;
}
.shop-search-clear:hover { color: var(--text); }

/* Search + Sort row */
.shop-search-sort-row {
  display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
}
.shop-search-sort-row .shop-search-wrap { flex: 1; min-width: 180px; max-width: 520px; }

/* Sort dropdown */
.shop-sort-wrap { position: relative; flex-shrink: 0; }
.shop-sort-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.68rem 1rem;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 12px; color: var(--text); font-size: 0.82rem; font-weight: 600;
  cursor: pointer; white-space: nowrap; transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.shop-sort-btn:hover { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,200,83,0.1); }
.shop-sort-chevron { transition: transform 0.2s; flex-shrink: 0; }
.shop-sort-btn[aria-expanded="true"] .shop-sort-chevron { transform: rotate(180deg); }
.shop-sort-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  min-width: 190px; background: var(--white);
  border: 1.5px solid var(--border); border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13); z-index: 200; overflow: hidden;
}
.shop-sort-dropdown.open { display: block; }
.shop-sort-option {
  display: block; width: 100%; text-align: left;
  padding: 0.75rem 1rem; background: none; border: none;
  color: var(--text2); font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: background 0.15s, color 0.15s;
  font-family: inherit;
}
.shop-sort-option:hover { background: var(--green-light); color: var(--text); }
.shop-sort-option.active { color: var(--green); }

.shop-no-results {
  grid-column: 1 / -1; text-align: center;
  padding: 4rem 0; color: var(--text2);
}
.shop-no-results h3 { font-size: 1.2rem; font-weight: 800; margin: 0.75rem 0 0.4rem; color: var(--text); }

/* ===================== PREMIUM PRODUCT CARDS ===================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.32s cubic-bezier(.22,1,.36,1), box-shadow 0.32s, border-color 0.25s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
}
.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0,200,83,0.45);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12), 0 6px 20px rgba(0,200,83,0.16), inset 0 1px 0 rgba(255,255,255,0.9);
}

.pc-img-wrap {
  position: relative; width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, #e8f9ef, #f0fdf4);
  overflow: hidden;
}
.pc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}
.product-card:hover .pc-img-wrap img { transform: scale(1.08); }
.pc-emoji {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.pc-img-shine {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 50%);
  pointer-events: none;
}
.product-card:hover .pc-img-shine { opacity: 0; transition: opacity 0.3s; }

/* Category badge on image */
.pc-badge {
  position: absolute; top: 9px; left: 9px;
  font-family: var(--font-display);
  font-size: 0.67rem; font-weight: 800;
  padding: 0.22rem 0.55rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}
.pc-badge-bs   { background: rgba(255,193,7,0.18); color: #b7791f; border: 1px solid rgba(255,193,7,0.35); }
.pc-badge-new  { background: rgba(0,200,83,0.15); color: #007a33; border: 1px solid rgba(0,200,83,0.3); }
.pc-badge-bundles { background: rgba(99,102,241,0.12); color: #4338ca; border: 1px solid rgba(99,102,241,0.25); }
.pc-badge-cyber{ background: rgba(6,182,212,0.12); color: #0e7490; border: 1px solid rgba(6,182,212,0.25); }
.pc-badge-divine { background: rgba(168,85,247,0.12); color: #7c3aed; border: 1px solid rgba(168,85,247,0.25); }
.pc-badge-index { background: rgba(249,115,22,0.12); color: #c2410c; border: 1px solid rgba(249,115,22,0.25); }
.pc-badge-op   { background: rgba(239,68,68,0.12); color: #b91c1c; border: 1px solid rgba(239,68,68,0.25); }

/* Card body */
.pc-body { padding: 0.85rem 1rem 0.5rem; flex: 1; }
.pc-name {
  font-family: var(--font-display);
  font-size: 0.88rem; font-weight: 800;
  color: var(--text); line-height: 1.3;
  margin-bottom: 0.4rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pc-price-row { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.pc-price { font-family: var(--font-display); font-size: 1rem; font-weight: 900; color: var(--green); }
.pc-original { font-size: 0.75rem; color: var(--text3); text-decoration: line-through; }
.pc-disc {
  font-size: 0.7rem; font-weight: 800;
  background: #dcfce7; color: #166534;
  border-radius: 6px; padding: 0.1rem 0.35rem;
}

/* Card action buttons */
.pc-actions {
  display: flex; gap: 0.5rem;
  padding: 0 0.75rem 0.9rem;
}
.pc-btn-buy {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 0.35rem;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 12px;
  padding: 0.65rem 0.5rem;
  text-decoration: none;
  border: none;
  box-shadow: 0 3px 0 rgba(0,0,0,0.25);
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}
.pc-btn-buy:hover { background: var(--green); transform: translateY(-2px); box-shadow: 0 5px 0 #009e3f, 0 6px 16px rgba(0,200,83,0.4); }
.pc-btn-buy:active { transform: translateY(1px); box-shadow: 0 1px 0 rgba(0,0,0,0.25); }
.pc-btn-cart {
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text2);
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 700;
  border-radius: 12px;
  padding: 0.65rem 0.65rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.pc-btn-cart:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }

/* Legacy compatibility */
.product-btn-buy, .product-btn-cart { display: none; }

/* GAG2 stock badges */
.pc-stock-badge {
  position: absolute;
  top: 8px; right: 8px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.pc-stock-in { background: rgba(0,200,83,0.88); color: #fff; }
.pc-stock-out { background: rgba(220,38,38,0.88); color: #fff; }
.pc-stock-robux { background: rgba(88,101,242,0.88); color: #fff; }
.pc-btn-disabled {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  background: var(--border);
  color: var(--muted);
  border: none;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: not-allowed;
  opacity: 0.7;
  padding: 0.55rem;
}
.pc-btn-discord { background: #5865F2 !important; }
.pc-btn-discord:hover { background: #4752c4 !important; transform: translateY(-2px); box-shadow: 0 5px 0 #3b43b0, 0 6px 16px rgba(88,101,242,0.4) !important; }

/* COMING SOON */
.coming-soon-box {
  grid-column: 1 / -1;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 5rem 2rem;
  text-align: center;
}
.cs-emoji { font-size: 4rem; margin-bottom: 1rem; }
.coming-soon-box h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 900; margin-bottom: 0.75rem; }
.coming-soon-box p { color: var(--text2); margin-bottom: 2rem; }

/* ===================== HOW IT WORKS ===================== */
.how {
  background: var(--navy);
  padding: 6rem 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 600px;
  background: radial-gradient(circle, rgba(0,200,83,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.how .section-tag { color: var(--green); text-align: center; }
.how .section-heading { color: white; margin-bottom: .4rem; text-align: center; }

/* Game controller animation */
.hiw-controller { animation: hiwControlFloat 3.5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes hiwControlFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.hiw-btn-pulse { animation: hiwBtnPulse 2s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes hiwBtnPulse { 0%,60%,100% { opacity: 0; transform: scale(1); } 30% { opacity: 0.9; transform: scale(1.5); } }

/* Shiny animated "MarketBlox" in heading */
.hiw-brand {
  background: linear-gradient(90deg, #00c853 0%, #69f0ae 30%, #ffffff 48%, #a8ffc4 55%, #00c853 75%, #69f0ae 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hiwBrandShine 2.8s linear infinite;
  filter: drop-shadow(0 0 14px rgba(0,200,83,0.55));
}
@keyframes hiwBrandShine {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.hiw-sub {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  margin-bottom: 3.5rem;
  text-shadow: 0 1px 0 rgba(0,200,83,0.15), 0 2px 8px rgba(0,0,0,0.55), 0 4px 16px rgba(0,0,0,0.3);
  letter-spacing: 0.01em;
}

/* Row */
.hiw-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  gap: 0;
}

/* Card */
.hiw-card {
  flex: 1;
  position: relative;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(24px);
  border: 1.5px solid rgba(0,200,83,0.16);
  border-radius: 28px;
  padding: 2rem 2.5rem 1.75rem;
  text-align: center;
  margin-top: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .3s, box-shadow .3s;
}
.hiw-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(0,200,83,0.45);
  box-shadow: 0 32px 72px rgba(0,0,0,.5), 0 6px 28px rgba(0,200,83,0.18), inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Number badge */
.hiw-badge {
  position: absolute;
  top: -26px; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00e564, #00c853, #00a846);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(0,200,83,.6), 0 2px 10px rgba(0,0,0,.3);
  z-index: 2;
  letter-spacing: .02em;
}

/* Icon container */
.hiw-icon-wrap {
  width: 90px; height: 90px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(0,200,83,0.15), rgba(0,200,83,0.05));
  border: 1.5px solid rgba(0,200,83,0.22);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
  box-shadow: 0 6px 24px rgba(0,0,0,.28), 0 2px 8px rgba(0,200,83,0.1);
  transition: background .3s, transform .35s cubic-bezier(.22,1,.36,1), box-shadow .3s;
}
.hiw-card:hover .hiw-icon-wrap {
  background: linear-gradient(135deg, rgba(0,200,83,0.26), rgba(0,200,83,0.09));
  transform: rotate(-6deg) scale(1.12);
  box-shadow: 0 10px 36px rgba(0,200,83,.26);
}
.hiw-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: .5rem; }
.hiw-card p  { font-size: .875rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* Connector */
.hiw-connector { flex-shrink: 0; padding: 0 .75rem; padding-top: 24px; align-self: center; }
.hiw-dash-line  { animation: hiwDashFlow 1.8s linear infinite; }
@keyframes hiwDashFlow { to { stroke-dashoffset: -18; } }

/* Cart wheels */
.hiw-wheel { transform-box: fill-box; transform-origin: center; animation: hiwWheelSpin 3s linear infinite; }
@keyframes hiwWheelSpin { to { transform: rotate(360deg); } }

/* Card glint sweep */
.hiw-glint { animation: hiwGlint 4.5s ease-in-out infinite; }
@keyframes hiwGlint {
  0%,55%,100% { opacity:0; transform:translateX(0); }
  62%          { opacity:1; }
  72%          { opacity:0; transform:translateX(22px); }
}

/* Bolt flash */
.hiw-bolt-svg { animation: hiwBoltFlash 3.2s ease-in-out infinite; }
@keyframes hiwBoltFlash {
  0%,78%,100% { opacity:1; }
  82%          { opacity:.2; }
  86%          { opacity:1; filter:drop-shadow(0 0 7px rgba(0,200,83,.9)); }
  92%          { filter:drop-shadow(0 0 0 transparent); }
}

/* Speed lines */
.hiw-speed-lines { transform-box: fill-box; transform-origin: right center; animation: hiwSpeedPulse 2s ease-in-out infinite; }
@keyframes hiwSpeedPulse { 0%,100% { transform:translateX(0); opacity:1; } 50% { transform:translateX(-6px); opacity:.15; } }

/* Mobile */
@media (max-width: 700px) {
  .hiw-row { flex-direction: column; align-items: stretch; padding-top: 0; gap: 2.5rem; }
  .hiw-card { margin-top: 28px; }
  .hiw-connector { padding: 0; display: flex; justify-content: center; }
  .hiw-connector svg { transform: rotate(90deg); }
}

/* ===================== SUPPORT ===================== */
.support {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 760px;
}
@media (max-width: 550px) { .support-grid { grid-template-columns: 1fr; } }

.support-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  transition: transform 0.35s cubic-bezier(.175,.885,.32,1.275), box-shadow 0.35s ease, border-color 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(28px);
  animation: scardIn 0.55s cubic-bezier(.175,.885,.32,1.275) forwards;
}
.support-card:nth-child(1) { animation-delay: 0.1s; }
.support-card:nth-child(2) { animation-delay: 0.22s; }
@keyframes scardIn {
  to { opacity: 1; transform: translateY(0); }
}
.support-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,200,83,0.13), 0 4px 12px rgba(0,0,0,0.07);
  border-color: var(--green);
}

/* ── Icon wrap ─────────────────────────────────────────── */
.sc-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e8fdf0 0%, #d0f7e3 100%);
  box-shadow: 0 4px 14px rgba(0,200,83,0.18), inset 0 1px 0 rgba(255,255,255,0.8);
  transition: transform 0.3s cubic-bezier(.175,.885,.32,1.275), box-shadow 0.3s;
}
.support-card:hover .sc-icon-wrap {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 8px 24px rgba(0,200,83,0.28);
}
.sc-svg { width: 44px; height: 44px; position: relative; z-index: 1; }
/* emoji fallback when sc-icon-wrap contains text/emoji instead of SVG */
.sc-icon-wrap:not(:has(.sc-svg)) { font-size: 2rem; line-height: 1; }
.sc-icon-shine {
  position: absolute;
  top: -20px; left: -20px;
  width: 60px; height: 60px;
  background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}

/* ── Dot bounce animation ──────────────────────────────── */
.sc-dot { animation: dotBounce 1.4s ease-in-out infinite; }
.sc-dot1 { animation-delay: 0s; }
.sc-dot2 { animation-delay: 0.2s; }
.sc-dot3 { animation-delay: 0.4s; }
@keyframes dotBounce {
  0%, 80%, 100% { transform: translateY(0); }
  40%           { transform: translateY(-4px); }
}

/* ── Body ──────────────────────────────────────────────── */
.sc-body { display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.sc-title-row { display: flex; align-items: center; gap: 0.6rem; }
.sc-badge {
  background: linear-gradient(135deg, #e8fdf0, #c8f7dc);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.18rem 0.55rem;
  border-radius: 6px;
  font-family: var(--font-display);
  border: 1px solid rgba(0,200,83,0.2);
}
.support-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; margin: 0; }
.support-card p { font-size: 0.88rem; color: var(--text2); line-height: 1.55; margin: 0; }
.sc-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s;
  margin-top: 0.2rem;
}
.sc-arrow { transition: transform 0.2s; }
.support-card:hover .sc-arrow { transform: translateX(4px); }
.support-card:hover .sc-link { gap: 0.45rem; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--navy);
  padding: 4rem 0 0;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 680px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-brand .logo { color: white; margin-bottom: 0.75rem; }
.footer-brand .logo b { color: var(--green); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 280px; }

.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.footer-col a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes starTwinkle {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* CARD BUTTONS */
.card-btns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 0.625rem 0.75rem;
}
.product-btn-buy {
  display: block;
  background: var(--navy);
  color: white;
  border-radius: var(--radius-sm);
  padding: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.product-btn-buy:hover {
  background: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.product-btn-cart {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}
.product-btn-cart:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}

/* ================================
   FIRE ANIMATION & GAME TAG
   ================================ */
@keyframes fireFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.fire-float {
  display: inline-block;
  animation: fireFloat 1.6s ease-in-out infinite;
}
.fire-float-delay { animation-delay: 0.4s; }

.bs-fire-title {
  background: linear-gradient(90deg, #ff6b00 0%, #ff9500 30%, #ffcc00 50%, #ff9500 70%, #ff4500 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fireTitleShine 3s linear infinite;
  filter: drop-shadow(0 2px 8px rgba(255,120,0,0.25));
}
.bs-fire-title .fire-float {
  -webkit-text-fill-color: initial;
  background: none;
  filter: none;
}
@keyframes fireTitleShine {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.prod-game-tag-sm {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* ================================
   BEST SELLERS DYNAMIC GRID
   ================================ */
@keyframes bsSkeletonPulse {
  0%,100% { opacity: .5; } 50% { opacity: 1; }
}
@keyframes bsCardIn {
  from { opacity:0; transform: translateY(28px) scale(.96); }
  to   { opacity:1; transform: translateY(0)    scale(1);   }
}

/* ── Best Sellers header row ── */
.bs-top-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
.bs-nav-arrows { display: flex; gap: .5rem; }
.bs-nav-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text2);
  transition: border-color .2s, color .2s, transform .15s;
  line-height: 1;
}
.bs-nav-btn:hover { border-color: var(--green); color: var(--green); transform: scale(1.08); }

/* ── Tabs ── */
.bs-tabs-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 1.75rem;
  scroll-behavior: smooth;
}
.bs-tabs-wrap::-webkit-scrollbar { display: none; }
.bs-game-tabs {
  display: flex;
  gap: .6rem;
  width: max-content;
  padding-bottom: 2px;
}
.bs-tab {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.1rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  color: var(--text2);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .2s, color .2s, background .2s, transform .15s, box-shadow .2s;
}
.bs-tab:hover { border-color: var(--tab-color, var(--green)); color: var(--tab-color, var(--green)); transform: translateY(-1px); }
.bs-tab.active {
  background: var(--tab-color, var(--green));
  border-color: var(--tab-color, var(--green));
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}
.bs-tab-thumb {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}

/* ── Grid ── */
.bs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

/* ── Empty state ── */
.bs-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 2rem;
  gap: .75rem;
  text-align: center;
}
.bs-empty-icon { margin-bottom: .25rem; }
.bs-empty-title { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--text); }
.bs-empty-sub { font-size: .88rem; color: var(--text2); max-width: 340px; line-height: 1.55; }
.bs-empty-btn {
  margin-top: .5rem;
  padding: .6rem 1.4rem;
  background: var(--green);
  color: #fff;
  border-radius: 10px;
  font-weight: 800;
  font-size: .85rem;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.bs-empty-btn:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ── View all link ── */
.bs-view-all-wrap { margin-top: 1.75rem; text-align: center; }
.bs-view-all-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--green);
  text-decoration: none;
  transition: gap .2s;
}
.bs-view-all-link:hover { gap: .6rem; }

.bs-skeleton {
  border-radius: 18px;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #eef6f0, #ddf0e5);
  animation: bsSkeletonPulse 1.4s ease-in-out infinite;
}

.bs-card {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid rgba(0,200,83,.12);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0,0,0,.07), 0 1px 4px rgba(0,200,83,.06);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .55s cubic-bezier(.22,1,.36,1), box-shadow .3s;
  animation: bsCardIn .4s ease both;
}
.bs-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.14), 0 4px 16px rgba(0,200,83,.15);
}
.bs-card--top {
  border-color: rgba(0,200,83,.35);
  box-shadow: 0 6px 28px rgba(0,0,0,.1), 0 2px 8px rgba(0,200,83,.12);
}

.bs-card-shine {
  position: absolute; inset: 0; z-index: 4;
  border-radius: 18px; pointer-events: none;
  opacity: 0; transition: opacity .2s;
}

.bs-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px 10px 0;
  gap: 6px;
  position: relative;
  z-index: 2;
  min-height: 30px;
}

.bs-badge {
  background: linear-gradient(135deg, #ff9800, #f44336);
  color: #fff;
  font-family: var(--font-display);
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .04em;
  padding: 3px 7px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(244,67,54,.35);
  flex-shrink: 0;
  max-width: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bs-game-tag {
  font-size: .56rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  max-width: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tag-sab    { background: rgba(0,200,83,.12);  color: #00894a; border: 1px solid rgba(0,200,83,.2); }
.tag-bf     { background: rgba(255,125,50,.12); color: #c05a00; border: 1px solid rgba(255,125,50,.2); }
.tag-rivals { background: rgba(124,58,237,.12); color: #6d28d9; border: 1px solid rgba(124,58,237,.2); }

.bs-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #f0faf4, #e8f5e9);
  overflow: hidden;
  flex-shrink: 0;
  margin-top: 6px;
}
.bs-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
  display: block;
}
.bs-card:hover .bs-img-wrap img { transform: scale(1.07); }

.bs-emoji {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}

.bs-rank-badge {
  position: absolute; bottom: 8px; right: 8px;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #fff;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 900;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(255,140,0,.5);
}

.bs-body {
  padding: 10px 12px 6px;
  flex: 1;
}
.bs-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  color: var(--text);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bs-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: var(--green);
  margin-top: 4px;
}

.bs-btns {
  padding: 0 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bs-btn-buy {
  display: block;
  text-align: center;
  background: #0a1a0f;
  color: #fff;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
  padding: 9px 0;
  border-radius: 10px;
  text-decoration: none;
  transition: background .18s, transform .15s, box-shadow .18s;
}
.bs-btn-buy:hover {
  background: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,200,83,.4);
}
.bs-btn-cart {
  display: block;
  width: 100%;
  text-align: center;
  background: none;
  border: 1.5px solid rgba(0,200,83,.3);
  color: #0a9942;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  padding: 7px 0;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.bs-btn-cart:hover {
  background: rgba(0,200,83,.08);
  border-color: var(--green);
  color: var(--green);
}

/* ================================
   GAME SHOP PAGE HERO (CLEAN)
   ================================ */
.shop-hero-clean {
  position: relative;
  overflow: hidden;
  background-color: var(--white);
  background-image:
    linear-gradient(rgba(0,0,0,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  padding: 3rem 0 2.5rem;
  border-bottom: 1.5px solid var(--border);
  margin-top: 70px;
}
.shop-hero-clean .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.shop-back-link-clean {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--text2); font-size: 0.82rem; font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.shop-back-link-clean:hover { color: var(--green); }
.shop-hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.32rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
  color: var(--text2);
  margin-bottom: 1.1rem;
}
.shop-hero-badge::before { content: '•'; color: var(--green); }
.shop-hero-title-clean {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--text);
  display: inline-block;
  margin-bottom: 0;
}
.shop-hero-title-clean::after {
  content: '';
  display: block;
  width: 50px; height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 0.55rem auto 0;
}
.shop-hero-meta-clean {
  display: inline-flex; align-items: center;
  padding: 0.4rem 1.1rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.83rem; font-weight: 600; color: var(--text2);
  margin-top: 1rem;
}
.shop-hero-pills-clean {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  justify-content: center; margin-top: 1.25rem;
}
.trust-pill-clean {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; color: var(--text2);
}

/* ================================
   GAME PICKER MODAL
   ================================ */
.gpm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.gpm-overlay.open {
  opacity: 1;
  visibility: visible;
}
.gpm-modal {
  background: #fff;
  border: 2px solid rgba(0,200,83,0.5);
  box-shadow:
    0 0 0 1px rgba(0,200,83,0.08),
    0 30px 80px rgba(0,0,0,0.18),
    0 0 40px rgba(0,200,83,0.08);
  border-radius: 22px;
  padding: 3rem 3rem 2.5rem;
  width: min(1400px, 96vw);
  max-height: 95vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.93) translateY(24px);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.gpm-overlay.open .gpm-modal {
  transform: scale(1) translateY(0);
}
.gpm-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: #f0f0f0;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.gpm-close:hover { background: #e0e0e0; }
.gpm-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  background: linear-gradient(100deg, #00a83a 0%, #00c853 25%, #69f0ae 48%, #00c853 72%, #00a83a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(0,200,83,0.3));
}
.gpm-section-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gpm-label-soon { margin-top: 1.5rem; }
.gpm-stay-tuned {
  background: #7c3aed;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 20px;
}
.gpm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.gpm-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.gpm-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 14px 36px rgba(0,0,0,0.16);
}
.gpm-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.gpm-card:hover .gpm-bg { transform: scale(1.06); }
.gpm-card-footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.82) 55%, rgba(0,0,0,0.92) 100%);
  padding: 1.25rem 0.85rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.gpm-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.45);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
/* Badges */
.gpm-badge {
  position: absolute;
  top: 10px; right: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  color: #fff;
  display: flex; align-items: center; gap: 3px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  z-index: 2;
}
.gpm-badge-best { background: linear-gradient(90deg, #00c853, #00a020); }
.gpm-badge-top  { background: linear-gradient(90deg, #ff8c00, #e65100); }
.gpm-badge-new  { background: linear-gradient(90deg, #00b0d4, #0077b6); }
.gpm-badge-pop  { background: linear-gradient(90deg, #8e24aa, #6a1b9a); }
/* Coming soon divider */
.gpm-cs-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.75rem 0 0.9rem;
  color: #aaa;
}
.gpm-cs-divider::before,
.gpm-cs-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e8e8e8;
}
.gpm-cs-label {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #00c853;
  white-space: nowrap;
}
/* Coming soon overlay */
.gpm-cs-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.42);
  color: rgba(255,255,255,0.75);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  z-index: 1;
}
.gpm-coming-soon {
  pointer-events: none;
  filter: grayscale(0.65) brightness(0.75);
}
.gpm-footer-text {
  text-align: center;
  color: #00a846;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}

/* ================================
   GAME PICKER MODAL (mobile Shop Now)
   ================================ */
.gpm-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3000;
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.gpm-overlay.open { opacity: 1; visibility: visible; }
.gpm-box {
  background: #0b1c0f;
  border: 1px solid rgba(0,200,83,0.18);
  border-bottom: none;
  border-radius: 28px 28px 0 0;
  width: 100%; max-width: 480px;
  padding-bottom: env(safe-area-inset-bottom, 16px);
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 -24px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(0,200,83,0.06) inset;
}
.gpm-overlay.open .gpm-box { transform: translateY(0); }
.gpm-handle {
  width: 36px; height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  margin: 14px auto 0;
}
.gpm-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem 0.9rem;
  border-bottom: 1px solid rgba(0,200,83,0.09);
}
.gpm-header-text { display: flex; flex-direction: column; gap: 2px; }
.gpm-title {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 900;
  color: #fff; letter-spacing: 0.01em;
}
.gpm-subtitle {
  font-size: 0.68rem; font-weight: 700; color: #3a6e45;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.gpm-close {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: #5a8a62; transition: all 0.18s; flex-shrink: 0;
}
.gpm-close:hover { background: rgba(255,60,60,0.12); color: #ff5252; border-color: rgba(255,60,60,0.18); }
.gpm-games { padding: 0.25rem 0 0.5rem; }
.gpm-item {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.8rem 1.25rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
  position: relative;
}
.gpm-item:last-child { border-bottom: none; }
.gpm-item:hover { background: rgba(0,200,83,0.06); }
.gpm-item:active { background: rgba(0,200,83,0.1); }
.gpm-img {
  width: 52px; height: 52px; border-radius: 14px;
  object-fit: cover; flex-shrink: 0;
  border: 1px solid rgba(0,200,83,0.12);
  box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}
.gpm-info { flex: 1; min-width: 0; }
.gpm-name {
  font-family: var(--font-display); font-weight: 800; font-size: 0.93rem;
  color: #e8f4ea; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gpm-price { font-size: 0.75rem; color: #00c853; font-weight: 700; margin-top: 3px; }
.gpm-arrow {
  color: rgba(0,200,83,0.3); flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}
.gpm-item:hover .gpm-arrow { transform: translateX(4px); color: #00c853; }
