/* ============================================================================
   Wolf's Shop — gamified premium marketplace theme
   Deep black + neon blue + silver/white · glassmorphism · glow · gamification
   ========================================================================== */
:root {
  /* neon blue / silver / white on deep black */
  --accent: #37b6ff;
  --accent-2: #aebfff;          /* icy silver-blue */
  --accent-3: #1f6feb;          /* deep electric blue */
  --accent-soft: rgba(55, 182, 255, 0.14);
  --glow: rgba(55, 182, 255, 0.55);

  /* heat / ember accent (fire background + LED ticker) */
  --ember: #ff6a3d;
  --ember-2: #ffb454;
  --ember-soft: rgba(255, 106, 61, 0.16);
  --led: #ff5a3c;
  --led-glow: rgba(255, 90, 60, 0.85);

  --bg: #05070d;
  --bg-2: #080b14;
  --surface: rgba(18, 24, 38, 0.66);     /* glass */
  --surface-2: rgba(26, 33, 50, 0.72);
  --surface-solid: #10141f;
  --border: rgba(120, 140, 180, 0.16);
  --border-2: rgba(140, 165, 210, 0.28);

  --text: #eef3fb;
  --text-dim: #9aa6bd;
  --text-dimmer: #8c97ad;
  --silver: #c9d4e6;

  --green: #34e2a0;
  --green-bg: rgba(52, 226, 160, 0.12);
  --red: #ff6b7d;
  --red-bg: rgba(255, 107, 125, 0.12);
  --amber: #ffce4d;

  /* rarity */
  --r-common: #9aa6bd;
  --r-rare: #37b6ff;
  --r-epic: #b07cff;
  --r-legendary: #ffce4d;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 10px 40px rgba(31, 111, 235, 0.35);
  --maxw: 1200px;

  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

/* fixed layered ambient background (behind everything) */
.bg-layer { position: fixed; inset: 0; z-index: -2; pointer-events: none; }
.bg-base {
  position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background:
    radial-gradient(1100px 600px at 75% -8%, rgba(31, 111, 235, 0.22), transparent 60%),
    radial-gradient(900px 520px at 5% 5%, rgba(55, 182, 255, 0.12), transparent 55%),
    radial-gradient(700px 700px at 50% 110%, rgba(120, 90, 255, 0.10), transparent 60%),
    linear-gradient(180deg, #05070d, #04060b 60%, #05070d);
}
#particles { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.85; }

/* fire / heatwave motion layer — low opacity, sits low on the page */
.heat {
  position: fixed; left: -10%; right: -10%; bottom: -12%; height: 60vh; z-index: -2; pointer-events: none;
  background:
    radial-gradient(60% 80% at 20% 100%, rgba(255, 106, 61, 0.22), transparent 70%),
    radial-gradient(55% 75% at 55% 100%, rgba(255, 80, 50, 0.20), transparent 72%),
    radial-gradient(60% 80% at 85% 100%, rgba(255, 150, 60, 0.16), transparent 70%);
  filter: blur(40px); opacity: 0.55; mix-blend-mode: screen;
  animation: heatwave 9s ease-in-out infinite alternate;
}
@keyframes heatwave {
  0%   { transform: translate3d(0,0,0) scaleY(1); opacity: 0.42; }
  50%  { transform: translate3d(-2%, -3%, 0) scaleY(1.08); opacity: 0.6; }
  100% { transform: translate3d(2%, 0, 0) scaleY(1.02); opacity: 0.5; }
}
.orb { position: fixed; border-radius: 50%; filter: blur(70px); z-index: -2; opacity: 0.5; pointer-events: none; }
.orb.a { width: 420px; height: 420px; background: rgba(31, 111, 235, 0.4); top: -120px; right: -80px; animation: drift 18s ease-in-out infinite; }
.orb.b { width: 360px; height: 360px; background: rgba(55, 182, 255, 0.28); bottom: 8%; left: -120px; animation: drift 22s ease-in-out infinite reverse; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.08); }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 6px; }

h1, h2, h3, .display { font-family: var(--font-display); letter-spacing: -0.02em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 4.5vw, 48px); }
.grad-text {
  background: linear-gradient(100deg, #ffffff 0%, var(--accent) 55%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---- Loading screen ------------------------------------------------------- */
#loader {
  position: fixed; inset: 0; z-index: 1000;
  background: radial-gradient(800px 500px at 50% 40%, rgba(31,111,235,0.18), transparent 60%), #05070d;
  display: grid; place-items: center; transition: opacity 0.6s ease, visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.loader-wolf { width: 96px; height: 96px; filter: drop-shadow(0 0 22px var(--glow)); animation: floaty 3s ease-in-out infinite; }
.loader-title { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.18em; font-size: 14px; color: var(--silver); text-transform: uppercase; }
.loader-bar { width: 180px; height: 4px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; }
.loader-bar i { display: block; height: 100%; width: 40%; border-radius: 999px; background: linear-gradient(90deg, var(--accent-3), var(--accent)); animation: load 1.1s ease-in-out infinite; }
@keyframes load { 0% { margin-left: -40%; } 100% { margin-left: 100%; } }

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid var(--border-2); background: var(--surface-2); color: var(--text);
  padding: 11px 18px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px;
  backdrop-filter: blur(8px); transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s, border-color 0.2s, opacity 0.2s;
  overflow: hidden; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(120deg, var(--accent-3), var(--accent)); border: none; color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0 8px 28px rgba(31, 111, 235, 0.45);
}
.btn-primary:hover { box-shadow: 0 12px 36px rgba(55, 182, 255, 0.55); }
/* shine sweep on primary buttons */
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg); transition: left 0.6s ease;
}
.btn-primary:hover::after { left: 130%; }
.btn-ghost { background: rgba(255,255,255,0.03); border-color: var(--border); }
.btn-danger { background: var(--red-bg); border-color: rgba(255,107,125,0.35); color: var(--red); }
.btn-success { background: var(--green-bg); border-color: rgba(52,226,160,0.35); color: var(--green); }
.btn-sm { padding: 8px 13px; font-size: 13px; }
.btn-lg { padding: 15px 26px; font-size: 16px; border-radius: 14px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }
/* Discord-flavoured button */
.btn-discord.btn-ghost { border-color: rgba(88, 101, 242, 0.5); color: #c7ccff; }
.btn-discord.btn-ghost:hover { border-color: #5865f2; box-shadow: 0 0 22px rgba(88, 101, 242, 0.45); background: rgba(88, 101, 242, 0.12); }
.btn-discord.btn-primary { background: linear-gradient(120deg, #5865f2, #7b86ff); box-shadow: 0 8px 28px rgba(88, 101, 242, 0.45); }
.btn-discord.btn-primary:hover { box-shadow: 0 12px 38px rgba(88, 101, 242, 0.6); }

/* ---- Header --------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 60; }

/* LED scrolling banner */
.led-banner {
  display: flex; align-items: center; gap: 12px; height: 36px; overflow: hidden;
  background: linear-gradient(180deg, #14060a, #0a0408);
  border-bottom: 1px solid rgba(255, 90, 60, 0.35);
  position: relative; padding: 0 14px;
}
.led-banner::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(rgba(255,120,90,0.5) 0.5px, transparent 0.6px);
  background-size: 4px 4px; mix-blend-mode: overlay;
}
.led-banner::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 26px rgba(255, 70, 40, 0.35);
}
.led-tag {
  display: inline-flex; align-items: center; gap: 7px; flex: none; z-index: 1;
  font: 700 11px/1 var(--font-body); letter-spacing: 0.14em; color: #ffd2c2;
  padding: 4px 9px; border-radius: 6px; background: rgba(255, 90, 60, 0.16); border: 1px solid rgba(255,90,60,0.4);
  text-transform: uppercase;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--led); box-shadow: 0 0 8px var(--led-glow); animation: pulse-led 1.4s infinite; }
@keyframes pulse-led { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.led-viewport { flex: 1; overflow: hidden; z-index: 1; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.led-track { display: inline-flex; white-space: nowrap; will-change: transform; animation: marquee 24s linear infinite; }
.led-msg {
  font: 400 14px/36px "Share Tech Mono", ui-monospace, monospace; letter-spacing: 0.18em;
  color: #ffb9a6; text-shadow: 0 0 6px var(--led-glow), 0 0 16px rgba(255, 70, 40, 0.5); text-transform: uppercase; padding-right: 6px;
}
.led-cta { flex: none; z-index: 1; font: 700 12px/1 var(--font-body); color: #fff; letter-spacing: 0.04em; padding: 5px 11px; border-radius: 7px; background: linear-gradient(120deg, var(--ember), #ff8a3d); box-shadow: 0 0 16px rgba(255, 90, 40, 0.5); transition: transform 0.15s, box-shadow 0.2s; }
.led-banner:hover .led-cta { transform: translateY(-1px); box-shadow: 0 0 24px rgba(255, 110, 50, 0.7); }
.led-banner:hover .led-msg { color: #ffd2c2; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.topbar {
  backdrop-filter: blur(16px) saturate(140%);
  background: linear-gradient(180deg, rgba(8,11,20,0.92), rgba(8,11,20,0.66));
  border-bottom: 1px solid var(--border);
}
.topbar-inner { display: flex; align-items: center; gap: 18px; height: 70px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent-3), var(--accent)); color: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, 0 8px 22px rgba(31,111,235,0.5);
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; white-space: nowrap; }
.brand-name small { display: block; font-size: 10px; letter-spacing: 0.22em; color: var(--accent); text-transform: uppercase; font-weight: 600; font-family: var(--font-body); }

.nav { display: flex; align-items: center; gap: 2px; margin-left: 8px; }
.nav a { position: relative; padding: 9px 13px; border-radius: 9px; color: var(--text-dim); font-size: 14px; font-weight: 500; transition: color 0.18s, background 0.18s; }
.nav a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav a::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px; border-radius: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.2s; }
.nav a:hover::after { transform: scaleX(1); }
.nav a.active { color: var(--accent); background: var(--accent-soft); text-shadow: 0 0 12px rgba(55, 182, 255, 0.5); }
.nav a.active::after { transform: scaleX(1); box-shadow: 0 0 10px var(--glow); }

.topbar-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.search { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 11px; padding: 9px 13px; min-width: 210px; transition: border-color 0.2s, box-shadow 0.2s; }
.search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.search input { background: transparent; border: none; outline: none; color: var(--text); font-size: 14px; width: 100%; }
.search svg { color: var(--text-dimmer); flex: none; }
.currency-select { background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text); border-radius: 11px; padding: 10px 11px; font-size: 14px; font-weight: 600; outline: none; cursor: pointer; }
.currency-select:focus { border-color: var(--accent); }
.menu-toggle { display: none; }

.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 8px 0 16px; border-bottom: 1px solid var(--border); }
.mobile-nav a { padding: 12px 12px; border-radius: 9px; color: var(--text-dim); font-weight: 500; }
.mobile-nav a:hover, .mobile-nav a:active { background: rgba(255,255,255,0.05); color: var(--text); }
.mobile-nav.open { display: flex; }
.mobile-search { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.04); border: 1px solid var(--border-2); border-radius: 11px; padding: 11px 13px; margin-bottom: 6px; }
.mobile-search svg { color: var(--text-dimmer); flex: none; }
.mobile-search input { background: transparent; border: none; outline: none; color: var(--text); font-size: 15px; width: 100%; }

/* ---- Section scaffolding -------------------------------------------------- */
section[id] { scroll-margin-top: 112px; }
.section { padding: 40px 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: linear-gradient(90deg, var(--accent), transparent); border-radius: 2px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 24px; gap: 16px; flex-wrap: wrap; }
.section-title { margin: 0; font-size: clamp(22px, 3vw, 30px); }
.section-sub { color: var(--text-dim); font-size: 15px; margin: 6px 0 0; max-width: 56ch; }

/* glass panel utility */
.glass {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, var(--shadow);
}

/* ---- Scroll reveal -------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---- Hero ----------------------------------------------------------------- */
.hero { position: relative; padding: 46px 0 30px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px; border-radius: 999px; background: var(--accent-soft); border: 1px solid rgba(55,182,255,0.3); color: var(--accent); font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.hero h1 { font-size: clamp(34px, 5.6vw, 60px); line-height: 1.02; margin: 0 0 18px; }
.hero p.lead { font-size: clamp(15px, 1.6vw, 18px); color: var(--text-dim); max-width: 50ch; margin: 0 0 26px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.trust-row { display: flex; gap: 22px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; color: var(--silver); font-size: 13px; font-weight: 500; }
.trust-item svg { color: var(--accent); flex: none; }

.hero-art { position: relative; display: grid; place-items: center; min-height: 340px; }
.hero-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(55,182,255,0.18); }
.hero-ring.r1 { width: 340px; height: 340px; animation: spin 26s linear infinite; }
.hero-ring.r2 { width: 250px; height: 250px; border-color: rgba(174,191,255,0.16); animation: spin 18s linear infinite reverse; }
.hero-mascot { width: min(300px, 78%); filter: drop-shadow(0 18px 50px rgba(31,111,235,0.55)); animation: floaty 5s ease-in-out infinite; position: relative; z-index: 1; }
.hero-float { position: absolute; padding: 10px 14px; border-radius: 14px; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 8px; z-index: 2; }
.hero-float.f1 { top: 6%; right: 2%; animation: floaty 4.2s ease-in-out infinite; }
.hero-float.f2 { bottom: 8%; left: 0%; animation: floaty 5.4s ease-in-out infinite 0.4s; }
.hero-float .ic { font-size: 16px; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Achievements strip --------------------------------------------------- */
.achv-strip { display: flex; gap: 12px; flex-wrap: wrap; }
.achv { display: flex; align-items: center; gap: 10px; padding: 11px 15px; border-radius: 13px; background: var(--surface); border: 1px solid var(--border); backdrop-filter: blur(10px); font-size: 13px; font-weight: 600; color: var(--silver); transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; }
.achv:hover { transform: translateY(-3px); border-color: var(--border-2); box-shadow: var(--shadow-glow); }
.achv .badge-ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; font-size: 15px; background: linear-gradient(135deg, var(--accent-3), var(--accent)); box-shadow: 0 4px 14px rgba(31,111,235,0.4); }

/* ---- Live stats (animated counters) --------------------------------------- */
.live-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lstat { padding: 22px; text-align: center; }
.lstat .n { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; line-height: 1; }
.lstat .l { color: var(--text-dim); font-size: 13px; margin-top: 8px; letter-spacing: 0.04em; }
.lstat .stars { color: var(--amber); letter-spacing: 2px; font-size: 14px; }

/* ---- Wolf Pack rank / XP --------------------------------------------------- */
.rank-card { padding: 26px; }
.rank-top { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.rank-emblem { width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; font-size: 30px; background: linear-gradient(135deg, rgba(55,182,255,0.2), rgba(31,111,235,0.35)); border: 1px solid var(--border-2); box-shadow: 0 0 26px rgba(31,111,235,0.4); }
.rank-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.rank-sub { color: var(--text-dim); font-size: 13px; }
.xp-meta { margin-left: auto; text-align: right; }
.xp-meta .xp { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--accent); }
.xp-bar { margin-top: 18px; height: 12px; border-radius: 999px; background: rgba(255,255,255,0.06); overflow: hidden; border: 1px solid var(--border); }
.xp-fill { height: 100%; border-radius: 999px; width: 0; background: linear-gradient(90deg, var(--accent-3), var(--accent), var(--accent-2)); box-shadow: 0 0 16px var(--glow); transition: width 1.3s cubic-bezier(.2,.7,.2,1); position: relative; }
.xp-fill::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); background-size: 200% 100%; animation: shimmer 2.2s linear infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }
.rank-ladder { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 22px; }
.rank-tier { text-align: center; padding: 14px 8px; border-radius: 13px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); transition: transform 0.2s, border-color 0.2s, background 0.2s; }
.rank-tier .ic { font-size: 20px; }
.rank-tier .t { font-size: 12px; font-weight: 700; margin-top: 6px; }
.rank-tier .x { font-size: 11px; color: var(--text-dimmer); }
.rank-tier.active { background: var(--accent-soft); border-color: var(--accent); box-shadow: 0 0 22px rgba(55,182,255,0.3); transform: translateY(-3px); }
.rank-tier.cleared { border-color: var(--border-2); }
.rank-tier.cleared .t { color: var(--silver); }

/* ---- Price + stock + rarity ----------------------------------------------- */
.price { display: flex; align-items: baseline; gap: 9px; }
.price .now { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: #fff; }
.price .was { color: var(--text-dimmer); text-decoration: line-through; font-size: 13px; }
.price.lg .now { font-size: 26px; }
.stock-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.stock-badge.in { color: var(--green); background: var(--green-bg); }
.stock-badge.out { color: var(--red); background: var(--red-bg); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.rarity { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 9px; border-radius: 8px; border: 1px solid currentColor; }
.rarity.common { color: var(--r-common); background: rgba(154,166,189,0.1); }
.rarity.rare { color: var(--r-rare); background: rgba(55,182,255,0.12); box-shadow: 0 0 14px rgba(55,182,255,0.25); }
.rarity.epic { color: var(--r-epic); background: rgba(176,124,255,0.12); box-shadow: 0 0 14px rgba(176,124,255,0.28); }
.rarity.legendary { color: var(--r-legendary); background: rgba(255,206,77,0.12); box-shadow: 0 0 16px rgba(255,206,77,0.3); }

/* ---- Carousel ------------------------------------------------------------- */
.carousel { position: relative; }
.carousel-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 6px 2px 14px; scrollbar-width: thin; }
.carousel-track::-webkit-scrollbar { height: 6px; }
.carousel-track::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 999px; }
.carousel-track > * { scroll-snap-align: start; flex: 0 0 clamp(240px, 28%, 300px); }
.carousel-nav { display: flex; gap: 8px; }
.carousel-btn { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--border-2); color: var(--text); transition: background 0.2s, border-color 0.2s, transform 0.15s; }
.carousel-btn:hover { border-color: var(--accent); transform: translateY(-2px); }

/* ---- Filters -------------------------------------------------------------- */
.filters { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { padding: 8px 15px; border-radius: 999px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); color: var(--text-dim); font-size: 13px; font-weight: 600; transition: all 0.18s; }
.chip:hover { color: var(--text); border-color: var(--border-2); }
.chip.active { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); box-shadow: 0 0 16px rgba(55,182,255,0.25); }
.sort-select { margin-left: auto; }

/* ---- Product grid + cards ------------------------------------------------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); gap: 18px; }
.card {
  position: relative; display: flex; flex-direction: column; padding: 15px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  backdrop-filter: blur(12px); overflow: hidden;
  transition: transform 0.18s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}
.card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(55,182,255,0.5), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.25s; pointer-events: none; }
.card:hover { transform: translateY(-6px); border-color: var(--border-2); box-shadow: 0 22px 50px rgba(0,0,0,0.5), 0 0 30px rgba(31,111,235,0.25); }
.card:hover::before { opacity: 1; }
.card-media { position: relative; border-radius: var(--radius-sm); aspect-ratio: 1; display: grid; place-items: center; margin-bottom: 13px; overflow: hidden; border: 1px solid var(--border); background: radial-gradient(120% 120% at 30% 20%, rgba(55,182,255,0.18), rgba(31,111,235,0.06) 50%, rgba(8,11,20,0.4)); }
.card-media .mono-art { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: 1px; color: #dbe8ff; text-shadow: 0 0 20px rgba(55,182,255,0.5); text-align: center; padding: 10px; }
.card-media.alt { background: radial-gradient(120% 120% at 30% 20%, rgba(176,124,255,0.18), rgba(120,90,255,0.06) 50%, rgba(8,11,20,0.4)); }
.card-media .rarity { position: absolute; top: 9px; left: 9px; }
.card-media .quick { position: absolute; top: 9px; right: 9px; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: rgba(5,7,13,0.6); border: 1px solid var(--border-2); color: var(--silver); opacity: 0; transform: translateY(-4px); transition: opacity 0.2s, transform 0.2s, background 0.2s; }
.card:hover .quick { opacity: 1; transform: none; }
.card-media .quick:hover { background: var(--accent); color: #fff; }
.card-cat { font-size: 11px; color: var(--text-dimmer); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.card h3 { margin: 5px 0 9px; font-size: 15px; line-height: 1.35; font-family: var(--font-body); font-weight: 600; }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.card-sold { font-size: 11px; color: var(--text-dimmer); display: flex; align-items: center; gap: 5px; }
.bulk-line { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--accent); background: var(--accent-soft); border: 1px solid rgba(55, 182, 255, 0.3); padding: 4px 9px; border-radius: 8px; margin-bottom: 10px; }
.card-foot { margin-top: auto; }
.card-foot .price { margin: 8px 0 0; }
.card-buy { margin-top: 12px; }
.deal-flag { position: absolute; top: 0; right: 0; background: linear-gradient(120deg, var(--red), #ff924d); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 0.05em; padding: 5px 10px; border-bottom-left-radius: 12px; z-index: 2; box-shadow: 0 4px 14px rgba(255,107,125,0.4); }

/* ---- Daily deals ---------------------------------------------------------- */
.deal-timer { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(255,107,125,0.1); border: 1px solid rgba(255,107,125,0.3); color: #ff9bab; font-weight: 700; font-size: 14px; }
.deal-timer .seg { font-family: var(--font-display); font-variant-numeric: tabular-nums; }

/* ---- Why choose ----------------------------------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.why-card { padding: 24px; transition: transform 0.2s, border-color 0.2s, box-shadow 0.25s; }
.why-card:hover { transform: translateY(-5px); border-color: var(--border-2); box-shadow: var(--shadow-glow); }
.why-icon { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 14px; background: linear-gradient(135deg, rgba(55,182,255,0.18), rgba(31,111,235,0.28)); border: 1px solid var(--border-2); color: var(--accent); }
.why-card h3 { margin: 0 0 7px; font-size: 17px; }
.why-card p { margin: 0; color: var(--text-dim); font-size: 14px; }

/* ---- Payment methods ------------------------------------------------------ */
.pay-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.pay-card { display: flex; align-items: center; gap: 12px; padding: 16px 18px; transition: transform 0.2s, border-color 0.2s; }
.pay-card:hover { transform: translateY(-3px); border-color: var(--border-2); }
.pay-icon { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--silver); flex: none; }
.pay-card .pt { font-weight: 700; font-size: 14px; }
.pay-card .ps { font-size: 12px; color: var(--text-dimmer); }

/* ---- Reviews -------------------------------------------------------------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.review { padding: 20px; transition: transform 0.2s, border-color 0.2s, box-shadow 0.25s; }
.review:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: var(--shadow-glow); }
.review-head { display: flex; align-items: center; gap: 11px; margin-bottom: 10px; }
.review-avatar { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-weight: 700; font-size: 15px; background: linear-gradient(135deg, var(--accent-3), var(--accent)); color: #fff; }
.review-name { font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 6px; }
.review-name .v { color: var(--accent); display: inline-flex; }
.review .stars { color: var(--amber); font-size: 13px; letter-spacing: 1px; }
.review p { margin: 8px 0 10px; font-size: 14px; }
.review-meta { font-size: 12px; color: var(--text-dimmer); }

/* ---- FAQ ------------------------------------------------------------------ */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 11px; overflow: hidden; background: var(--surface); backdrop-filter: blur(10px); transition: border-color 0.2s; }
.faq-item:hover { border-color: var(--border-2); }
.faq-q { width: 100%; text-align: left; background: transparent; border: none; color: var(--text); padding: 17px 20px; font-size: 15px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: var(--font-body); }
.faq-q span.icon { color: var(--accent); font-size: 22px; transition: transform 0.25s; line-height: 1; }
.faq-item.open .faq-q span.icon { transform: rotate(45deg); }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: var(--text-dim); font-size: 14px; }
.faq-item.open .faq-a { padding: 0 20px 18px; max-height: 360px; }

/* ---- Status --------------------------------------------------------------- */
.status-card { padding: 20px 22px; display: flex; align-items: center; gap: 15px; }
.status-pulse { width: 13px; height: 13px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(52,226,160,0.6); animation: pulse 2s infinite; flex: none; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52,226,160,0.5); } 70% { box-shadow: 0 0 0 12px rgba(52,226,160,0); } 100% { box-shadow: 0 0 0 0 rgba(52,226,160,0); } }

/* ---- Track ---------------------------------------------------------------- */
.track { padding: 24px; }
.track .row { display: flex; gap: 11px; flex-wrap: wrap; }
.track input { flex: 1; min-width: 220px; background: rgba(5,7,13,0.6); border: 1px solid var(--border-2); color: var(--text); border-radius: var(--radius-sm); padding: 13px 15px; font-size: 14px; outline: none; }
.track input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
#trackResult { margin-top: 16px; }

/* ---- Footer --------------------------------------------------------------- */
.footer { border-top: 1px solid var(--border); margin-top: 50px; padding: 46px 0 30px; background: linear-gradient(180deg, transparent, rgba(31,111,235,0.05)); }
.footer-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 26px 30px; margin-bottom: 38px;
  background: linear-gradient(120deg, rgba(88,101,242,0.14), rgba(55,182,255,0.08)), var(--surface);
  border-color: var(--border-2);
}
.footer-cta h3 { margin: 0 0 4px; font-size: 20px; }
.footer-cta p { margin: 0; color: var(--text-dim); font-size: 14px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; margin-bottom: 34px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--text-dim); font-size: 14px; max-width: 38ch; margin: 0 0 14px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--silver); transition: all 0.2s; }
.footer-social a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dimmer); margin: 0 0 14px; }
.footer-col a { display: block; color: var(--text-dim); font-size: 14px; padding: 5px 0; transition: color 0.18s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-bottom .copy { color: var(--text-dim); font-size: 13px; }
.footer-credit { color: var(--text-dimmer); font-size: 13px; text-align: center; width: 100%; margin-top: 14px; padding-top: 16px; border-top: 1px dashed var(--border); }
.footer-credit a { color: var(--accent); font-weight: 600; }
.footer-credit a:hover { text-decoration: underline; }
.footer-credit strong { color: var(--silver); font-weight: 700; }

/* very-bottom Mavion logo + disclaimer strip (logo, divider & text are baked
   into the image, so we just place it bottom-left and let it scale down) */
.footer-final { display: flex; width: 100%; margin-top: 16px; padding-top: 18px; border-top: 1px dashed var(--border); }
.footer-logo-link { display: inline-block; max-width: 100%; transition: opacity 0.2s; }
.footer-logo-link:hover { opacity: 0.85; }
.footer-logo { width: 100%; max-width: 620px; height: auto; display: block; }

/* ---- Modal ---------------------------------------------------------------- */
.modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(3,5,10,0.74); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal { background: linear-gradient(180deg, rgba(20,26,40,0.96), rgba(12,16,26,0.97)); border: 1px solid var(--border-2); border-radius: var(--radius-lg); width: 100%; max-width: 500px; box-shadow: var(--shadow); max-height: 90vh; overflow: auto; animation: pop 0.26s cubic-bezier(.2,.8,.2,1); }
.modal.wide { max-width: 660px; }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(0.97); } to { opacity: 1; transform: none; } }
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; padding: 22px 24px 0; gap: 12px; }
.modal-head h3 { margin: 0; font-size: 19px; }
.modal-close { background: transparent; border: none; color: var(--text-dim); font-size: 26px; line-height: 1; padding: 0; transition: color 0.15s; }
.modal-close:hover { color: var(--text); }
.modal-body { padding: 16px 24px 24px; }

.field { margin-bottom: 15px; }
.field label { display: block; font-size: 13px; color: var(--text-dim); margin-bottom: 7px; font-weight: 600; }
.field input, .field select, .field textarea { width: 100%; background: rgba(5,7,13,0.6); border: 1px solid var(--border-2); color: var(--text); border-radius: var(--radius-sm); padding: 12px 14px; font-size: 14px; outline: none; font-family: inherit; transition: border-color 0.18s, box-shadow 0.18s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field textarea { resize: vertical; min-height: 84px; }
.field .hint { font-size: 12px; color: var(--text-dimmer); margin-top: 6px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.qty { display: flex; align-items: center; }
.qty button { width: 40px; height: 42px; background: var(--surface-2); border: 1px solid var(--border-2); color: var(--text); font-size: 18px; display: grid; place-items: center; }
.qty button:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.qty button:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.qty input { width: 60px; height: 42px; text-align: center; border-radius: 0; border-left: none; border-right: none; }

.order-summary { background: rgba(5,7,13,0.5); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 15px; margin: 15px 0; }
.order-summary .line { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 7px; }
.order-summary .line.total { font-weight: 800; font-size: 16px; margin-top: 9px; padding-top: 9px; border-top: 1px solid var(--border); margin-bottom: 0; }
.notice { background: rgba(5,7,13,0.5); border: 1px solid var(--border-2); border-radius: var(--radius-sm); padding: 15px; font-size: 13px; white-space: pre-wrap; color: var(--text-dim); margin: 12px 0; }
.code-pill { font-family: ui-monospace, Menlo, monospace; background: rgba(5,7,13,0.7); border: 1px dashed var(--accent); color: var(--accent); padding: 9px 14px; border-radius: 9px; font-weight: 700; letter-spacing: 1px; display: inline-block; }
.delivered-item { font-family: ui-monospace, Menlo, monospace; background: rgba(5,7,13,0.7); border: 1px solid var(--border-2); color: var(--green); padding: 11px 13px; border-radius: 9px; margin-bottom: 8px; font-size: 13px; word-break: break-all; }

.rec-row { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; }
.rec-card { flex: 0 0 130px; padding: 10px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); cursor: pointer; transition: border-color 0.2s, transform 0.15s; }
.rec-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.rec-card .rt { font-size: 12px; font-weight: 600; margin: 6px 0 3px; line-height: 1.3; }
.rec-card .rp { font-size: 12px; color: var(--accent); font-weight: 700; }

/* ---- Toast / pills / misc ------------------------------------------------- */
.toast { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--surface-2); border: 1px solid var(--border-2); color: var(--text); padding: 13px 20px; border-radius: 13px; box-shadow: var(--shadow); z-index: 300; opacity: 0; pointer-events: none; transition: opacity 0.22s, transform 0.22s; font-size: 14px; font-weight: 600; backdrop-filter: blur(12px); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { border-color: rgba(52,226,160,0.45); }
.toast.error { border-color: rgba(255,107,125,0.45); }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 3px 11px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.pill.pending { color: var(--amber); background: rgba(255,206,77,0.12); }
.pill.delivered { color: var(--green); background: var(--green-bg); }
.pill.rejected { color: var(--red); background: var(--red-bg); }
.verified { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--accent); background: var(--accent-soft); border: 1px solid rgba(55,182,255,0.3); padding: 3px 10px; border-radius: 999px; font-weight: 600; }
.empty { text-align: center; color: var(--text-dim); padding: 44px 20px; }

/* ---- Reduced motion ------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  #particles, .orb { display: none; }
}

/* ---- Responsive ----------------------------------------------------------- */
@media (max-width: 1000px) {
  .live-stats { grid-template-columns: repeat(2, 1fr); }
  .rank-ladder { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-art { min-height: 240px; order: -1; }
  .nav, .search { display: none; }
  .menu-toggle { display: grid; place-items: center; width: 42px; height: 42px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 11px; color: var(--text); }
  .footer-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .footer-cta .btn { justify-content: center; }
  .carousel-track > * { flex-basis: clamp(220px, 70%, 280px); }
}
@media (max-width: 620px) {
  .led-tag { display: none; }
  .led-banner { gap: 8px; padding: 0 10px; }
  .topbar-inner { height: 60px; gap: 8px; }
  .brand-name { font-size: 15px; }
  .currency-select { padding: 9px 8px; font-size: 13px; }
  .hero { padding: 30px 0 20px; }
  .hero h1 { font-size: clamp(30px, 8.5vw, 40px); }
  .cta-row { gap: 10px; }
  .cta-row .btn { flex: 1 1 100%; }
  .live-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .lstat { padding: 18px 14px; }
  .footer-top { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; }
  .section { padding: 30px 0; }
  .section-head { margin-bottom: 18px; }
  .rank-ladder { grid-template-columns: repeat(2, 1fr); }
  .rank-card, .why-card, .track, .footer-cta, .rank-top { padding: 18px; }
  .rank-top { gap: 12px; }
  .xp-meta { margin-left: 0; text-align: left; width: 100%; }
  .modal-head { padding: 18px 18px 0; }
  .modal-body { padding: 14px 18px 20px; }
  .deal-timer { font-size: 13px; padding: 7px 11px; }
  .hero-art { overflow: hidden; }
  .hero-ring.r1 { width: 230px; height: 230px; }
  .hero-ring.r2 { width: 168px; height: 168px; }
  .hero-float.f1 { right: 4%; } .hero-float.f2 { left: 2%; }
}
@media (max-width: 420px) {
  .brand-name small { display: none; }
  .live-stats { grid-template-columns: 1fr 1fr; }
  .led-msg { font-size: 12px; letter-spacing: 0.12em; }
}
