/* ═══════════════════════════════════════════════════
   DARKLOAD STORE — PLAY LIMITLESS
   Deep-space blue / eclipse identity
═══════════════════════════════════════════════════ */
:root {
  --bg0: #04070f;
  --bg1: #070d1a;
  --bg2: #0b1526;
  --panel: rgba(13, 24, 46, 0.55);
  --panel-solid: #0c1729;
  --line: rgba(77, 143, 255, 0.18);
  --line-strong: rgba(77, 143, 255, 0.45);
  --blue: #1e7fff;
  --blue2: #4dc3ff;
  --cyan: #7be7ff;
  --red: #ff2e4d;
  --gold: #ffcf5c;
  --text: #eaf2ff;
  --muted: #8fa3c8;
  --font-ar: "Cairo", "Segoe UI", sans-serif;
  --font-en: "Orbitron", "Cairo", sans-serif;
  --glow-blue: 0 0 24px rgba(30, 127, 255, 0.55), 0 0 64px rgba(30, 127, 255, 0.25);
  --r-lg: 22px;
  --r-md: 16px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
html.no-scroll { overflow: hidden; } /* page locked while a modal/drawer is open */
body {
  background: var(--bg0);
  color: var(--text);
  font-family: var(--font-ar);
  overflow-x: hidden;
  min-height: 100vh;
}
::selection { background: var(--blue); color: #fff; }

/* scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg0); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--blue), #0a2f66); border-radius: 8px; }

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; color: inherit; background: none; border: none; cursor: pointer; }
em { font-style: normal; }

/* ══════════ CUSTOM CURSOR ══════════ */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  border-radius: 50%; translate: -50% -50%;
}
.cursor-dot { width: 7px; height: 7px; background: var(--blue2); box-shadow: 0 0 12px var(--blue2); }
.cursor-ring {
  width: 38px; height: 38px; border: 1.5px solid rgba(77, 195, 255, 0.5);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out),
    border-color 0.25s, background 0.25s;
}
.cursor-ring.is-hover {
  width: 58px; height: 58px;
  border-color: var(--blue2);
  background: rgba(30, 127, 255, 0.12);
  box-shadow: 0 0 30px rgba(30, 127, 255, 0.25);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}
@media (hover: hover) and (pointer: fine) {
  body.has-cursor, body.has-cursor a, body.has-cursor button,
  body.has-cursor input, body.has-cursor summary { cursor: none; }
}

/* ══════════ BACKGROUND FX ══════════ */
#starfield { position: fixed; inset: 0; z-index: -3; }
.nebula {
  position: fixed; z-index: -2; border-radius: 50%;
  opacity: 0.55; pointer-events: none;
  will-change: transform;
}
.nebula-a {
  width: 60vw; height: 60vw; top: -20vw; inset-inline-end: -14vw;
  background: radial-gradient(circle, rgba(30, 127, 255, 0.30) 0%, rgba(30, 127, 255, 0.12) 38%, transparent 68%);
  animation: nebFloat 16s ease-in-out infinite alternate;
}
.nebula-b {
  width: 50vw; height: 50vw; bottom: -17vw; inset-inline-start: -12vw;
  background: radial-gradient(circle, rgba(77, 195, 255, 0.18) 0%, rgba(77, 195, 255, 0.08) 38%, transparent 68%);
  animation: nebFloat 20s ease-in-out infinite alternate-reverse;
}
@keyframes nebFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(4vw, 3vw) scale(1.12); }
}
.grid-floor {
  position: fixed; left: 50%; bottom: -22vh; z-index: -2;
  width: 200vw; height: 60vh; translate: -50%;
  transform: perspective(600px) rotateX(62deg);
  mask-image: linear-gradient(transparent, #000 55%);
  -webkit-mask-image: linear-gradient(transparent, #000 55%);
  opacity: 0.6; overflow: hidden;
}
.grid-floor::before {
  content: ""; position: absolute; left: 0; right: 0; top: -56px; bottom: -56px;
  background:
    linear-gradient(rgba(30, 127, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 127, 255, 0.14) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: gridMove 3.2s linear infinite;
  will-change: transform;
}
@keyframes gridMove { to { transform: translateY(56px); } }

/* ══════════ PRELOADER ══════════ */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg0);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  transition: opacity 0.7s ease, visibility 0.7s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.pre-eclipse { position: relative; width: 110px; height: 110px; }
.pre-ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 10%, var(--blue) 45%, var(--cyan) 55%, transparent 90%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
  animation: spin 1.1s linear infinite;
  filter: drop-shadow(0 0 12px rgba(30, 127, 255, 0.8));
}
.pre-moon {
  position: absolute; inset: 26px; border-radius: 50%;
  background: #05080f;
  box-shadow: inset -6px -4px 18px rgba(77, 195, 255, 0.35), 0 0 40px rgba(30, 127, 255, 0.35);
}
@keyframes spin { to { rotate: 360deg; } }
.pre-word { display: flex; direction: ltr; gap: 2px; font-family: var(--font-en); font-size: 30px; font-weight: 900; letter-spacing: 6px; }
.pre-word span { opacity: 0; animation: preLetter 0.5s var(--ease-back) forwards; }
.pre-word span:nth-child(1) { animation-delay: 0.10s; }
.pre-word span:nth-child(2) { animation-delay: 0.18s; }
.pre-word span:nth-child(3) { animation-delay: 0.26s; }
.pre-word span:nth-child(4) { animation-delay: 0.34s; }
.pre-word span:nth-child(5) { animation-delay: 0.42s; }
.pre-word span:nth-child(6) { animation-delay: 0.50s; }
.pre-word span:nth-child(7) { animation-delay: 0.58s; }
.pre-word span:nth-child(8) { animation-delay: 0.66s; }
@keyframes preLetter { from { opacity: 0; transform: translateY(18px) scale(0.7); } to { opacity: 1; transform: none; } }
.pre-o {
  width: 26px; height: 26px; border-radius: 50%; align-self: center;
  border: 4px solid var(--blue2);
  box-shadow: 0 0 18px rgba(77, 195, 255, 0.8), inset 0 0 8px rgba(77, 195, 255, 0.6);
}
.pre-tag { font-family: var(--font-en); font-size: 11px; letter-spacing: 8px; color: var(--muted); animation: preLetter 0.6s 0.9s var(--ease-out) both; }

/* ── preloader exit burst ── */
.preloader.entering .pre-ring { animation: spin 0.35s linear infinite; }
.preloader.entering .pre-eclipse { animation: eclipseBurst 1s var(--ease-out) forwards; }
.preloader.entering .pre-word span { text-shadow: 0 0 30px rgba(77, 195, 255, 0.9); }
@keyframes eclipseBurst {
  0% { transform: scale(1); opacity: 1; }
  45% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(3.2); opacity: 0; }
}
/* ── hero O revs like an engine while the intro plays ── */
.ht-eclipse.rev .he-ring {
  animation: spin 0.26s linear infinite;
  filter: drop-shadow(0 0 0.32em rgba(77, 195, 255, 1));
}
.ht-eclipse.rev .he-moon { animation: revPulse 2.6s var(--ease-out); }
.ht-eclipse.rev .he-flare { animation: flare 0.4s ease-in-out infinite; }
@keyframes revPulse {
  0% { transform: scale(1); }
  25% { transform: scale(1.12); box-shadow: inset -0.06em -0.04em 0.18em rgba(77, 195, 255, 0.55), 0 0 0.6em rgba(30, 127, 255, 0.8); }
  100% { transform: scale(1); }
}

/* ══════════ SCROLL PROGRESS ══════════ */
.scroll-progress {
  position: fixed; top: 0; inset-inline-start: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 12px var(--blue); z-index: 1001;
}

/* ══════════ NAVBAR ══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(16px, 5vw, 64px);
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  padding: 10px clamp(16px, 5vw, 64px);
  background: rgba(5, 9, 18, 0.92);
  box-shadow: 0 1px 0 var(--line), 0 12px 40px rgba(0, 0, 0, 0.5);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-eclipse {
  position: relative; width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg0), var(--bg0)) padding-box,
    conic-gradient(from 140deg, var(--blue), var(--cyan), transparent 60%, var(--blue)) border-box;
  animation: spin 6s linear infinite;
}
.logo-eclipse i {
  position: absolute; inset: 7px; border-radius: 50%;
  background: #05080f;
  box-shadow: inset -3px -2px 8px rgba(77, 195, 255, 0.5);
}
.logo-text { font-family: var(--font-en); font-weight: 700; font-size: 17px; letter-spacing: 2px; }
.logo-text b { color: var(--blue2); font-weight: 900; text-shadow: 0 0 16px rgba(77, 195, 255, 0.6); }
.nav-links { display: flex; gap: clamp(12px, 2.2vw, 30px); font-weight: 700; font-size: 15px; }
.nav-links a { position: relative; padding: 6px 2px; color: var(--muted); transition: color 0.3s; }
.nav-links a::after {
  content: ""; position: absolute; bottom: 0; inset-inline-start: 0;
  width: 0; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 10px var(--blue);
  transition: width 0.35s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-btn {
  font-family: var(--font-en); font-weight: 700; font-size: 12px;
  padding: 8px 14px; border-radius: 10px;
  border: 1px solid var(--line-strong); color: var(--blue2);
  transition: 0.3s;
}
.lang-btn:hover { background: rgba(30, 127, 255, 0.15); box-shadow: 0 0 16px rgba(30, 127, 255, 0.3); }
.cart-btn {
  position: relative; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  background: rgba(30, 127, 255, 0.08);
  transition: 0.3s;
}
.cart-btn svg { width: 20px; height: 20px; }
.cart-btn:hover { box-shadow: var(--glow-blue); background: rgba(30, 127, 255, 0.18); }
.cart-count {
  position: absolute; top: -7px; inset-inline-end: -7px;
  min-width: 20px; height: 20px; padding: 0 5px;
  display: grid; place-items: center;
  background: var(--red); border-radius: 20px;
  font-size: 11px; font-weight: 800;
  box-shadow: 0 0 14px rgba(255, 46, 77, 0.7);
  transition: transform 0.3s var(--ease-back);
}
.cart-count.bump { animation: bump 0.45s var(--ease-back); }
@keyframes bump { 30% { transform: scale(1.6); } }
.burger { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; }
.burger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════ HERO ══════════ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; position: relative;
  padding: 120px 18px 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px; border-radius: 40px;
  background: linear-gradient(90deg, rgba(255, 46, 77, 0.16), rgba(30, 127, 255, 0.12));
  border: 1px solid rgba(255, 46, 77, 0.4);
  font-weight: 800; font-size: 14px;
  box-shadow: 0 0 30px rgba(255, 46, 77, 0.15);
  margin-bottom: 34px;
}
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); position: relative; }
.pulse-dot::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid var(--red); animation: pulse 1.4s ease-out infinite;
}
@keyframes pulse { from { transform: scale(0.4); opacity: 1; } to { transform: scale(1.4); opacity: 0; } }

.hero-title { line-height: 1; }
.ht-layer {
  display: inline-flex; direction: ltr; align-items: center; gap: 0.02em;
  font-family: var(--font-en); font-weight: 900;
  font-size: clamp(44px, 11vw, 128px);
  letter-spacing: 0.04em;
}
.ht-l {
  display: inline-block;
  background: linear-gradient(180deg, #ffffff 25%, #9cc8ff 55%, #2f6fd0 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 6px 26px rgba(30, 127, 255, 0.45));
  opacity: 0; transform: translateY(40px) rotateX(70deg);
  animation: heroLetter 0.9s var(--ease-back) forwards;
  animation-delay: calc(1.15s + var(--i, 0) * 0.07s);
  transition: transform 0.3s var(--ease-back);
}
.ht-l:hover { transform: translateY(-8px) scale(1.08); }
@keyframes heroLetter { to { opacity: 1; transform: none; } }
.ht-eclipse {
  position: relative;
  width: 0.82em; height: 0.82em; margin: 0 0.04em;
  opacity: 0; animation: heroLetter 0.9s 1.5s var(--ease-back) forwards;
}
.he-ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--blue) 0%, var(--cyan) 30%, rgba(77,195,255,0.15) 55%, var(--blue) 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 0.09em), #000 calc(100% - 0.08em));
  mask: radial-gradient(farthest-side, transparent calc(100% - 0.09em), #000 calc(100% - 0.08em));
  animation: spin 4s linear infinite;
  filter: drop-shadow(0 0 0.18em rgba(30, 127, 255, 0.9));
}
.he-moon {
  position: absolute; inset: 18%; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #0e1c36, #04070f 70%);
  box-shadow: inset -0.06em -0.04em 0.18em rgba(77, 195, 255, 0.55);
}
.he-flare {
  position: absolute; top: 6%; inset-inline-end: 10%;
  width: 0.14em; height: 0.14em; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0.3em #fff, 0 0 0.7em var(--cyan);
  animation: flare 2.6s ease-in-out infinite;
}
@keyframes flare { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.6); } }

.hero-sub {
  display: flex; align-items: center; gap: 18px; justify-content: center;
  margin-top: 18px;
  font-family: var(--font-en); letter-spacing: 10px; font-size: clamp(12px, 2vw, 17px);
  color: var(--blue2); text-shadow: 0 0 18px rgba(77, 195, 255, 0.7);
}
.hs-line { width: clamp(40px, 8vw, 110px); height: 1px; background: linear-gradient(90deg, transparent, var(--blue2)); }
.hs-line:last-child { transform: scaleX(-1); }
.hero-tag { max-width: 620px; margin: 26px auto 0; color: var(--muted); font-size: clamp(15px, 2.4vw, 18px); font-weight: 600; line-height: 1.9; }

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.hero-stats {
  display: flex; align-items: center; gap: clamp(14px, 3.5vw, 38px);
  margin-top: 56px; flex-wrap: wrap; justify-content: center;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat b { font-family: var(--font-en); font-size: clamp(20px, 3vw, 28px); color: var(--text); text-shadow: 0 0 20px rgba(30, 127, 255, 0.6); }
.stat span { color: var(--muted); font-size: 13px; font-weight: 700; }
.stat-sep { width: 1px; height: 38px; background: linear-gradient(transparent, var(--line-strong), transparent); }

.scroll-hint { position: absolute; bottom: 26px; left: 50%; translate: -50%; opacity: 0.7; }
.mouse { display: block; width: 26px; height: 42px; border: 2px solid var(--muted); border-radius: 16px; position: relative; }
.wheel {
  position: absolute; top: 8px; left: 50%; translate: -50%;
  width: 4px; height: 8px; border-radius: 4px; background: var(--blue2);
  animation: wheel 1.6s ease-in-out infinite;
}
@keyframes wheel { 0% { opacity: 1; transform: translateY(0); } 70% { opacity: 0; transform: translateY(14px); } 100% { opacity: 0; } }

/* ══════════ BUTTONS ══════════ */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 32px; border-radius: 14px;
  font-family: var(--font-ar); font-weight: 800; font-size: 15px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.3s, background 0.3s, border-color 0.3s;
  overflow: hidden; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
[dir="rtl"] .flip-x { transform: scaleX(-1); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #0a4ecc);
  color: #fff;
  box-shadow: 0 8px 30px rgba(30, 127, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary::before {
  content: ""; position: absolute; top: 0; height: 100%; width: 60%;
  inset-inline-start: -80%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: inset-inline-start 0.6s var(--ease-out);
}
.btn-primary:hover::before { inset-inline-start: 120%; }
.btn-primary:hover { box-shadow: 0 10px 44px rgba(30, 127, 255, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.25); transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid var(--line-strong); color: var(--text);
  background: rgba(30, 127, 255, 0.06);
}
.btn-ghost:hover { background: rgba(30, 127, 255, 0.16); box-shadow: 0 0 30px rgba(30, 127, 255, 0.25); transform: translateY(-2px); }
.btn-discord { background: linear-gradient(135deg, #5865f2, #3a45c4); color: #fff; box-shadow: 0 8px 26px rgba(88, 101, 242, 0.35); }
.btn-discord:hover { box-shadow: 0 10px 40px rgba(88, 101, 242, 0.55); transform: translateY(-2px); }
.btn-sm { padding: 11px 22px; font-size: 13.5px; border-radius: 12px; }
.btn-lg { padding: 18px 44px; font-size: 17px; border-radius: 16px; }
.btn-block { width: 100%; }

/* ══════════ TICKER ══════════ */
.ticker {
  overflow: hidden; padding: 16px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(8, 14, 28, 0.85);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track { display: flex; gap: 44px; width: max-content; animation: ticker 36s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.tick-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-en); font-weight: 700; font-size: 13.5px; letter-spacing: 1px; color: var(--muted); white-space: nowrap; }
.tick-item b { color: var(--blue2); }
.tick-item .tick-star { color: var(--blue); }

/* ══════════ SECTIONS ══════════ */
.section { padding: clamp(70px, 10vw, 120px) clamp(16px, 5vw, 64px); max-width: 1360px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: clamp(38px, 6vw, 64px); }
.section-kicker {
  display: inline-block; padding: 7px 18px; border-radius: 30px;
  border: 1px solid var(--line-strong);
  color: var(--blue2); font-weight: 800; font-size: 13px;
  background: rgba(30, 127, 255, 0.07);
  margin-bottom: 16px;
}
.section-title { font-size: clamp(30px, 5.4vw, 52px); font-weight: 900; }
.section-title em {
  background: linear-gradient(90deg, var(--blue2), var(--blue));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 22px rgba(30, 127, 255, 0.5));
}
.section-sub { color: var(--muted); margin-top: 12px; font-weight: 600; font-size: 16px; }

/* reveal-on-scroll */
[data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); transition-delay: var(--d, 0s); }
[data-reveal].in { opacity: 1; transform: none; }

/* ══════════ HOLO BORDER (rotating beam, GPU-composited) ══════════ */
.holo { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.holo > * { position: relative; z-index: 1; }
.holo::before {
  content: ""; position: absolute; inset: -80%; z-index: 0;
  background: conic-gradient(from 0deg,
    transparent 0% 52%, rgba(30, 127, 255, 0.85) 66%, var(--cyan) 73%, transparent 82%);
  animation: holoSpin 5.5s linear infinite;
  will-change: transform;
}
.holo::after {
  content: ""; position: absolute; inset: 1.5px; z-index: 0;
  border-radius: calc(var(--r-lg) - 2px);
  background: var(--holo-bg, linear-gradient(180deg, #0f1b34, #080e1c));
  pointer-events: none;
}
@keyframes holoSpin { to { transform: rotate(360deg); } }

/* ══════════ DEALS ══════════ */
.deals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 26px; }
.deal-card {
  --holo-bg: linear-gradient(180deg, #0f1b34, #070d1a);
  border-radius: var(--r-lg); overflow: hidden;
  transform-style: preserve-3d;
  transition: box-shadow 0.35s;
}
.deal-card:hover { box-shadow: 0 24px 70px rgba(30, 127, 255, 0.22); }
.deal-flag {
  position: absolute; top: 16px; inset-inline-start: 16px; z-index: 3;
  padding: 6px 14px; border-radius: 8px;
  background: rgba(30, 127, 255, 0.9);
  font-size: 12px; font-weight: 800;
  box-shadow: 0 0 18px rgba(30, 127, 255, 0.6);
}
.flag-hot { background: var(--red); box-shadow: 0 0 18px rgba(255, 46, 77, 0.7); animation: flagPulse 1.6s ease-in-out infinite; }
@keyframes flagPulse { 50% { transform: scale(1.07); } }
.deal-art {
  height: 190px; display: grid; place-items: center; position: relative; overflow: hidden;
  background: radial-gradient(120% 130% at 50% 0%, var(--g1), var(--g2) 75%);
}
.deal-art::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0, 0, 0, 0.12) 3px 4px);
  opacity: 0.5;
}
.deal-emoji { font-size: 84px; filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.6)); transition: transform 0.45s var(--ease-back); transform: translateZ(40px); }
.deal-card:hover .deal-emoji { transform: translateZ(40px) scale(1.18) rotate(-6deg); }
.deal-art-big { flex-direction: column; display: flex; align-items: center; justify-content: center; gap: 6px; }
.big-price { display: flex; align-items: baseline; gap: 8px; direction: ltr; font-family: var(--font-en); z-index: 1; }
.big-price b { font-size: 74px; font-weight: 900; text-shadow: 0 0 40px rgba(77, 195, 255, 0.9); }
.big-price small { font-size: 20px; color: var(--blue2); font-weight: 700; }
.big-under { z-index: 1; font-weight: 800; color: #cfe4ff; font-size: 15px; }
.deal-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.deal-body h3 { font-family: var(--font-en); font-size: 19px; letter-spacing: 0.5px; }
.deal-body p { color: var(--muted); font-size: 14px; line-height: 1.8; min-height: 3.6em; }
.deal-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 4px; }

.price { display: flex; align-items: baseline; gap: 7px; direction: ltr; font-family: var(--font-en); }
.price b { font-size: 30px; font-weight: 900; color: var(--text); text-shadow: 0 0 18px rgba(30, 127, 255, 0.55); }
.price span { color: var(--blue2); font-weight: 700; font-size: 13px; }
.price s { color: var(--muted); opacity: 0.6; font-size: 15px; }
.price-lg b { font-size: 44px; }

/* ══════════ STORE ══════════ */
.store-tools { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; margin-bottom: 34px; }
.search-wrap {
  display: flex; align-items: center; gap: 10px;
  padding: 0 18px; height: 50px; min-width: min(320px, 100%);
  border-radius: 14px; border: 1px solid var(--line-strong);
  background: rgba(10, 18, 36, 0.85);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.search-wrap:focus-within { box-shadow: var(--glow-blue); border-color: var(--blue); }
.search-wrap svg { width: 18px; height: 18px; color: var(--muted); flex-shrink: 0; }
.search-wrap input { flex: 1; background: none; border: none; outline: none; color: var(--text); font-family: var(--font-ar); font-size: 15px; font-weight: 600; }
.search-wrap input::placeholder { color: var(--muted); }
.filters { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  padding: 10px 20px; border-radius: 30px;
  border: 1px solid var(--line); color: var(--muted);
  font-weight: 800; font-size: 13.5px;
  transition: 0.3s;
}
.chip:hover { color: var(--text); border-color: var(--line-strong); }
.chip.active {
  background: linear-gradient(135deg, var(--blue), #0a4ecc);
  border-color: transparent; color: #fff;
  box-shadow: 0 6px 22px rgba(30, 127, 255, 0.45);
}

.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 22px; }
.game-card {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 27, 52, 0.85), rgba(8, 14, 28, 0.95));
  border: 1px solid var(--line);
  transform-style: preserve-3d;
  transition: border-color 0.3s, box-shadow 0.35s;
  animation: cardIn 0.55s var(--ease-out) both;
  animation-delay: calc(var(--i) * 0.045s);
}
@keyframes cardIn { from { opacity: 0; transform: translateY(28px) scale(0.96); } }
.game-card:hover { border-color: var(--line-strong); box-shadow: 0 18px 55px rgba(30, 127, 255, 0.2); }
.gc-art {
  position: relative; aspect-ratio: 3 / 4; display: grid; place-items: center; overflow: hidden;
  background: radial-gradient(130% 140% at 50% 0%, var(--g1), var(--g2) 78%);
}
.gc-art::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 7, 15, 0) 58%, rgba(4, 7, 15, 0.7) 100%),
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(0, 0, 0, 0.08) 3px 4px);
}
.gc-cover {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
  transition: transform 0.55s var(--ease-out);
}
.game-card:hover .gc-cover { transform: scale(1.07); }
.gc-emoji { font-size: 62px; filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.65)); transform: translateZ(34px); transition: transform 0.4s var(--ease-back); z-index: 1; }
.game-card:hover .gc-emoji { transform: translateZ(34px) scale(1.22) rotate(6deg); }
.gc-art.has-img .gc-emoji { display: none; }
.gc-num {
  position: absolute; bottom: 4px; inset-inline-start: 12px; z-index: 2;
  font-family: var(--font-en); font-weight: 900; font-size: 36px;
  color: rgba(255, 255, 255, 0.28); letter-spacing: 2px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}
.gc-badge {
  position: absolute; top: 10px; inset-inline-start: 10px; z-index: 3;
  padding: 4px 11px; border-radius: 7px;
  font-family: var(--font-en); font-size: 10.5px; font-weight: 700; letter-spacing: 1px;
  background: rgba(4, 7, 15, 0.8); border: 1px solid var(--line-strong); color: var(--blue2);
}

/* ── collection fan: multiple covers in one frame ── */
.cover-fan { position: absolute; inset: 0; z-index: 1; }
.cover-fan img {
  position: absolute; left: 50%; bottom: 9%;
  aspect-ratio: 2 / 3; object-fit: cover;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65);
  transition: transform 0.5s var(--ease-back);
}
.f3 img { height: 54%; }
.f3 img:nth-child(1) { transform: translateX(calc(-50% - 60%)) rotate(-10deg); }
.f3 img:nth-child(2) { height: 63%; z-index: 2; transform: translateX(-50%); }
.f3 img:nth-child(3) { transform: translateX(calc(-50% + 60%)) rotate(10deg); }
.f2 img { height: 60%; }
.f2 img:nth-child(1) { transform: translateX(calc(-50% - 36%)) rotate(-8deg); }
.f2 img:nth-child(2) { z-index: 2; transform: translateX(calc(-50% + 36%)) rotate(8deg); }
.game-card:hover .f3 img:nth-child(1), .deal-card:hover .f3 img:nth-child(1) { transform: translateX(calc(-50% - 72%)) rotate(-15deg); }
.game-card:hover .f3 img:nth-child(2), .deal-card:hover .f3 img:nth-child(2) { transform: translateX(-50%) translateY(-5%) scale(1.05); }
.game-card:hover .f3 img:nth-child(3), .deal-card:hover .f3 img:nth-child(3) { transform: translateX(calc(-50% + 72%)) rotate(15deg); }
.game-card:hover .f2 img:nth-child(1), .deal-card:hover .f2 img:nth-child(1) { transform: translateX(calc(-50% - 46%)) rotate(-12deg); }
.game-card:hover .f2 img:nth-child(2), .deal-card:hover .f2 img:nth-child(2) { transform: translateX(calc(-50% + 46%)) rotate(12deg) translateY(-3%); }
/* fan sizing inside the landscape deal cards */
.deal-art .f3 img { height: 72%; bottom: 12%; }
.deal-art .f3 img:nth-child(2) { height: 82%; }
.deal-art .f2 img { height: 78%; bottom: 10%; }
.gc-badge.b-hot { color: var(--gold); border-color: rgba(255, 207, 92, 0.5); }
.gc-badge.b-bundle { color: #fff; background: var(--red); border-color: transparent; box-shadow: 0 0 14px rgba(255, 46, 77, 0.6); }
.gc-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.gc-title { font-family: var(--font-en); font-size: 14.5px; font-weight: 700; letter-spacing: 0.4px; line-height: 1.45; min-height: 2.9em; display: flex; align-items: center; }
.gc-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.gc-price { display: flex; align-items: baseline; gap: 5px; direction: ltr; font-family: var(--font-en); }
.gc-price b { font-size: 23px; font-weight: 900; text-shadow: 0 0 14px rgba(30, 127, 255, 0.5); }
.gc-price span { font-size: 11px; color: var(--blue2); font-weight: 700; }
.gc-price s { font-size: 12px; color: var(--muted); opacity: 0.6; }
.gc-add {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(30, 127, 255, 0.14); border: 1px solid var(--line-strong);
  color: var(--blue2); transition: 0.3s; flex-shrink: 0;
}
.gc-add svg { width: 18px; height: 18px; }
.gc-add:hover { background: var(--blue); color: #fff; box-shadow: 0 0 22px rgba(30, 127, 255, 0.6); transform: rotate(90deg); }
.gc-add.added { background: #16a34a; border-color: transparent; color: #fff; transform: none; }
.no-results { text-align: center; color: var(--muted); font-weight: 700; font-size: 17px; padding: 40px 0; }

/* ══════════ SPECIAL ══════════ */
.special-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(430px, 100%), 1fr)); gap: 28px; }
.sp-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(13, 24, 46, 0.92), rgba(6, 10, 20, 0.97));
  padding: clamp(24px, 4vw, 40px);
  transform-style: preserve-3d;
  transition: box-shadow 0.35s, border-color 0.3s;
}
.sp-glow {
  position: absolute; width: 60%; aspect-ratio: 1; border-radius: 50%;
  top: -25%; inset-inline-end: -15%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.35), transparent 65%);
  filter: blur(50px); pointer-events: none;
  animation: nebFloat 8s ease-in-out infinite alternate;
}
.sp-glow-pink { background: radial-gradient(circle, rgba(217, 70, 239, 0.35), transparent 65%); }
.mc-card:hover { border-color: rgba(34, 197, 94, 0.5); box-shadow: 0 24px 70px rgba(34, 197, 94, 0.18); }
.gta-card:hover { border-color: rgba(217, 70, 239, 0.5); box-shadow: 0 24px 70px rgba(217, 70, 239, 0.18); }
.sp-content { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 16px; }
/* ── special card cover art ── */
.sp-art {
  position: absolute; z-index: 1;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.45s var(--ease-back);
}
.mc-art {
  top: 50%; inset-inline-end: 26px; translate: 0 -50%;
  width: min(31%, 250px); transform: rotate(-5deg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 44px rgba(34, 197, 94, 0.3);
}
.mc-card:hover .mc-art { transform: rotate(-1deg) scale(1.05); }
.gta-art {
  top: 26px; inset-inline-end: 26px;
  width: min(24%, 150px); aspect-ratio: 2 / 3; object-fit: cover;
  transform: rotate(6deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(217, 70, 239, 0.35);
}
.gta-card:hover .gta-art { transform: rotate(2deg) scale(1.06); }
@media (min-width: 821px) {
  .mc-card .sp-content { max-width: 62%; }
  .gta-card .sp-desc, .gta-card .gta-title, .gta-card .sp-top { max-width: 72%; }
}
@media (max-width: 820px) {
  .sp-art { inset: auto -34px -34px auto; top: auto; translate: none; width: 55%; opacity: 0.15; transform: rotate(-8deg); pointer-events: none; }
  .gta-art { aspect-ratio: 2 / 3; width: 45%; }
}
.mc-title img { width: min(100%, 360px); height: auto; filter: drop-shadow(0 6px 22px rgba(34, 197, 94, 0.45)); }
.sp-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.sp-plat {
  font-family: var(--font-en); font-weight: 700; font-size: 12px; letter-spacing: 2px;
  padding: 6px 14px; border-radius: 8px;
  background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.4); color: #4ade80;
}
.sp-plat-pink { background: rgba(217, 70, 239, 0.15); border-color: rgba(217, 70, 239, 0.4); color: #e879f9; }
.sp-badge { font-size: 12px; font-weight: 800; color: var(--muted); letter-spacing: 1px; }
.sp-badge-pink { color: #e879f9; font-family: var(--font-en); font-size: 10.5px; }
.mc-title {
  font-family: var(--font-en); font-weight: 900; font-size: clamp(30px, 5vw, 46px); letter-spacing: 3px;
  background: linear-gradient(180deg, #bbf7d0, #22c55e 60%, #14532d);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 4px 18px rgba(34, 197, 94, 0.5));
}
.gta-title {
  font-family: var(--font-en); font-weight: 900; font-size: clamp(22px, 3.4vw, 32px); letter-spacing: 2px;
  color: #fdf2ff; text-shadow: 0 0 26px rgba(217, 70, 239, 0.7);
}
.gta-title em {
  background: linear-gradient(90deg, #e879f9, #a855f7);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-size: 1.25em;
}
.sp-desc { color: var(--muted); font-weight: 600; line-height: 1.9; font-size: 15px; }
.sp-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sp-feats li {
  padding: 11px 16px; border-radius: 12px;
  background: rgba(30, 127, 255, 0.06); border: 1px solid var(--line);
  font-weight: 700; font-size: 14px;
}
.sp-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 8px; flex-wrap: wrap; }
.mc-blocks { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.mc-blocks i {
  position: absolute; width: 16px; height: 16px; border-radius: 3px;
  background: rgba(34, 197, 94, 0.25); border: 1px solid rgba(34, 197, 94, 0.4);
  animation: blockFloat 7s ease-in-out infinite;
}
.mc-blocks i:nth-child(1) { top: 18%; inset-inline-start: 6%; animation-delay: 0s; }
.mc-blocks i:nth-child(2) { top: 60%; inset-inline-start: 3%; animation-delay: 1.2s; width: 10px; height: 10px; }
.mc-blocks i:nth-child(3) { top: 80%; inset-inline-start: 12%; animation-delay: 2.4s; }
.mc-blocks i:nth-child(4) { top: 30%; inset-inline-end: 8%; animation-delay: 0.8s; width: 12px; height: 12px; }
.mc-blocks i:nth-child(5) { top: 72%; inset-inline-end: 5%; animation-delay: 2s; }
.mc-blocks i:nth-child(6) { top: 8%; inset-inline-end: 30%; animation-delay: 3s; width: 9px; height: 9px; }
@keyframes blockFloat { 50% { transform: translateY(-16px) rotate(12deg); } }
.gta-palms {
  position: absolute; bottom: -14px; inset-inline-end: 6px;
  font-size: 110px; opacity: 0.12; pointer-events: none; z-index: 1;
  filter: hue-rotate(60deg);
}
.gta-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 6px; }
.tier {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 7px;
  padding: 20px 8px 16px; border-radius: 14px;
  border: 1px solid rgba(217, 70, 239, 0.25);
  background: rgba(217, 70, 239, 0.05);
  transition: 0.3s var(--ease-out);
}
.tier:hover { transform: translateY(-6px); background: rgba(217, 70, 239, 0.14); border-color: rgba(217, 70, 239, 0.6); box-shadow: 0 14px 34px rgba(217, 70, 239, 0.25); }
.tier-mid { border-color: rgba(217, 70, 239, 0.6); background: rgba(217, 70, 239, 0.1); }
.tier-tag {
  position: absolute; top: -11px; left: 50%; translate: -50%;
  padding: 3px 11px; border-radius: 20px; white-space: nowrap;
  background: linear-gradient(90deg, #d946ef, #a855f7);
  font-size: 10.5px; font-weight: 800;
  box-shadow: 0 4px 14px rgba(217, 70, 239, 0.5);
}
.tier-name { font-family: var(--font-en); font-size: 11px; letter-spacing: 1.5px; color: #e879f9; font-weight: 700; }
.tier-price { font-family: var(--font-en); font-weight: 900; font-size: 19px; direction: ltr; }
.tier-price small { font-size: 10px; color: var(--muted); }
.tier-add { font-size: 12px; font-weight: 800; color: var(--muted); transition: color 0.3s; }
.tier:hover .tier-add { color: #fff; }

/* ══════════ PC GAME PASS ══════════ */
.gamepass { position: relative; }
.gp-halo {
  position: absolute; top: -8%; left: 50%; translate: -50%;
  width: min(900px, 90vw); aspect-ratio: 2 / 1; border-radius: 50%;
  background: radial-gradient(ellipse at 50% 100%, rgba(30, 127, 255, 0.16), transparent 65%);
  pointer-events: none;
}
.gp-logo {
  display: flex; align-items: center; justify-content: center; gap: 0.22em;
  font-family: var(--font-en); font-weight: 900; line-height: 0.95;
  font-size: clamp(40px, 8vw, 92px); direction: ltr;
  margin-bottom: 6px;
}
.gp-pc {
  background: linear-gradient(180deg, #ffffff 20%, #b9c6dd 45%, #5c6b85 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 6px 24px rgba(200, 220, 255, 0.35));
  letter-spacing: 0.02em;
}
.gp-words { display: flex; flex-direction: column; align-items: flex-start; font-size: 0.52em; letter-spacing: 0.06em; }
.gp-words b {
  background: linear-gradient(180deg, #f2f6ff 30%, #9cc8ff 70%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.gp-words i {
  background: linear-gradient(180deg, #7bb8ff 20%, var(--blue) 60%, #0a3f9e 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 26px rgba(30, 127, 255, 0.6));
}
.pass-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 18px; margin-bottom: clamp(36px, 5vw, 54px);
  position: relative;
}
/* octagonal frame like the poster */
.pass-card {
  --oct: polygon(20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px), 0 20px);
  position: relative; padding: 30px 14px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  clip-path: var(--oct);
  background: linear-gradient(160deg, rgba(96, 141, 224, 0.55), rgba(30, 127, 255, 0.12) 45%, rgba(96, 141, 224, 0.35));
  transition: transform 0.35s var(--ease-out), filter 0.35s;
  animation: cardIn 0.55s var(--ease-out) both;
  animation-delay: calc(var(--i) * 0.07s);
}
.pass-inner {
  content: ""; position: absolute; inset: 1.5px; z-index: 0;
  clip-path: var(--oct);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(30, 127, 255, 0.16), transparent 55%),
    linear-gradient(180deg, #0d1930, #060b16);
}
.pass-card > :not(.pass-inner) { position: relative; z-index: 1; }
.pass-card:hover { transform: translateY(-8px); filter: drop-shadow(0 18px 40px rgba(30, 127, 255, 0.35)); }
.pass-best {
  background: linear-gradient(160deg, var(--cyan), var(--blue) 45%, #7bb8ff);
  filter: drop-shadow(0 10px 34px rgba(30, 127, 255, 0.35));
}
.pass-flag {
  position: absolute; top: 10px; inset-inline-end: 14px;
  padding: 3px 10px; border-radius: 20px;
  background: linear-gradient(90deg, var(--blue), var(--blue2));
  font-size: 10.5px; font-weight: 800; color: #fff;
  box-shadow: 0 4px 16px rgba(30, 127, 255, 0.55);
}
.pass-months { font-weight: 900; font-size: 21px; margin-bottom: 2px; }
.pass-price {
  font-family: var(--font-en); font-weight: 900; font-size: clamp(38px, 4.5vw, 52px); line-height: 1;
  background: linear-gradient(180deg, #ffffff 25%, #9cc8ff 60%, #2f6fd0 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 4px 16px rgba(30, 127, 255, 0.45));
}
.pass-cur { font-family: var(--font-en); font-weight: 700; font-size: 13px; color: var(--blue2); letter-spacing: 3px; }
.pass-add {
  margin-top: 10px; padding: 8px 18px; border-radius: 10px;
  border: 1px solid var(--line-strong);
  font-size: 12.5px; font-weight: 800; color: var(--blue2);
  background: rgba(30, 127, 255, 0.08);
  transition: 0.3s;
}
.pass-card:hover .pass-add { background: var(--blue); color: #fff; box-shadow: 0 0 20px rgba(30, 127, 255, 0.55); }
.gp-feats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px; max-width: 1100px; margin: 0 auto;
}
.gp-feat {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center; padding: 22px 14px;
  border-radius: var(--r-md); border: 1px solid var(--line);
  background: rgba(10, 18, 36, 0.55);
}
.gp-ico { font-size: 30px; filter: drop-shadow(0 6px 16px rgba(30, 127, 255, 0.4)); }
.gp-feat b { font-size: 15.5px; }
.gp-feat span:last-child { color: var(--muted); font-size: 13px; font-weight: 600; }
.gp-tagline {
  text-align: center; margin-top: 30px;
  font-weight: 800; font-size: 16px; color: var(--muted);
}
.gp-tagline b { color: var(--blue2); font-family: var(--font-en); text-shadow: 0 0 16px rgba(77, 195, 255, 0.6); }

/* ══════════ WHATSAPP ══════════ */
.btn-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-wa:hover { box-shadow: 0 10px 44px rgba(37, 211, 102, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25); transform: translateY(-2px); }
.btn-wa svg { width: 20px; height: 20px; }
.wa-float {
  position: fixed; bottom: 24px; inset-inline-end: 24px; z-index: 1500;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease-back);
}
.wa-float:hover { transform: scale(1.12); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: pulse 1.8s ease-out infinite;
}

/* ══════════ HOW ══════════ */
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1000px; margin: 0 auto; }
.step-line {
  position: absolute; top: 44px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--line-strong), var(--line-strong), transparent);
}
.step { text-align: center; position: relative; padding: 0 10px; }
.step-num {
  width: 88px; height: 88px; margin: 0 auto 22px; border-radius: 50%;
  display: grid; place-items: center; position: relative;
  background: var(--bg1);
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 0 8px rgba(30, 127, 255, 0.05), 0 0 40px rgba(30, 127, 255, 0.15);
}
.step-num::before {
  content: ""; position: absolute; inset: -1px; border-radius: 50%;
  background: conic-gradient(from 0deg, var(--blue), transparent 40%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 2px));
  animation: spin 3.4s linear infinite;
}
.step-num span { font-family: var(--font-en); font-size: 25px; font-weight: 900; color: var(--blue2); text-shadow: 0 0 16px rgba(77, 195, 255, 0.7); }
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 14.5px; line-height: 1.9; font-weight: 600; }

/* ══════════ TRUST ══════════ */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.trust-card {
  text-align: center; padding: 34px 20px; border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 27, 52, 0.7), rgba(8, 14, 28, 0.9));
  transition: border-color 0.3s, box-shadow 0.35s;
  transform-style: preserve-3d;
}
.trust-card:hover { border-color: var(--line-strong); box-shadow: 0 18px 50px rgba(30, 127, 255, 0.18); }
.trust-ico {
  font-size: 40px; margin-bottom: 14px; display: inline-block;
  filter: drop-shadow(0 8px 20px rgba(30, 127, 255, 0.4));
  transform: translateZ(30px);
  animation: icoFloat 3.4s ease-in-out infinite;
}
.trust-card:nth-child(2) .trust-ico { animation-delay: 0.4s; }
.trust-card:nth-child(3) .trust-ico { animation-delay: 0.8s; }
.trust-card:nth-child(4) .trust-ico { animation-delay: 1.2s; }
@keyframes icoFloat { 50% { transform: translateZ(30px) translateY(-8px); } }
.trust-card h3 { font-size: 18px; margin-bottom: 6px; }
.trust-card p { color: var(--muted); font-size: 13.5px; font-weight: 600; }

/* ══════════ FAQ ══════════ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: rgba(10, 18, 36, 0.6); overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: var(--line-strong); box-shadow: 0 10px 34px rgba(30, 127, 255, 0.12); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 20px 22px; font-weight: 800; font-size: 16px;
  list-style: none; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
  width: 30px; height: 30px; border-radius: 50%; position: relative; flex-shrink: 0;
  border: 1px solid var(--line-strong);
  transition: 0.35s var(--ease-out);
}
.faq-item summary i::before, .faq-item summary i::after {
  content: ""; position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  background: var(--blue2); border-radius: 2px;
  transition: 0.35s;
}
.faq-item summary i::before { width: 12px; height: 2px; }
.faq-item summary i::after { width: 2px; height: 12px; }
.faq-item[open] summary i { rotate: 135deg; background: rgba(30, 127, 255, 0.2); }
.faq-item p { padding: 0 22px 22px; color: var(--muted); line-height: 2; font-weight: 600; font-size: 14.5px; }

/* ══════════ CTA BAND ══════════ */
.cta-band { text-align: center; }
.cta-inner {
  position: relative; overflow: hidden;
  padding: clamp(50px, 8vw, 90px) 24px;
  border-radius: 28px;
  --holo-bg:
    radial-gradient(90% 120% at 50% 0%, rgba(30, 127, 255, 0.22), transparent 60%),
    linear-gradient(180deg, #0d1830, #060a14);
}
.cta-inner::after { border-radius: 26px; }
.cta-eclipse { position: absolute; top: -110px; left: 50%; translate: -50%; width: 240px; height: 240px; pointer-events: none; }
.cta-eclipse i {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 180deg, transparent 20%, var(--blue) 48%, var(--cyan) 52%, transparent 80%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  animation: spin 7s linear infinite;
  filter: drop-shadow(0 0 20px rgba(30, 127, 255, 0.8));
}
.cta-inner h2 { font-size: clamp(26px, 4.6vw, 44px); font-weight: 900; position: relative; }
.cta-inner h2 em {
  display: block; margin-top: 6px;
  font-family: var(--font-en); letter-spacing: 6px; font-size: 0.62em;
  background: linear-gradient(90deg, var(--blue2), #fff, var(--blue2));
  background-size: 200%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shineText 3.2s linear infinite;
}
@keyframes shineText { to { background-position: 200%; } }
.cta-inner > p { color: var(--muted); margin-top: 14px; font-weight: 700; font-size: 16px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ══════════ FOOTER ══════════ */
.footer { border-top: 1px solid var(--line); background: rgba(4, 7, 15, 0.92); }
.footer-grid {
  max-width: 1360px; margin: 0 auto;
  padding: 56px clamp(16px, 5vw, 64px) 34px;
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 36px;
}
.f-brand p { color: var(--muted); margin-top: 16px; line-height: 1.9; font-weight: 600; font-size: 14.5px; max-width: 320px; }
.f-col { display: flex; flex-direction: column; gap: 12px; }
.f-col h4 { font-size: 16px; margin-bottom: 6px; color: var(--blue2); }
.f-col a { color: var(--muted); font-weight: 700; font-size: 14px; transition: 0.3s; width: fit-content; }
.f-col a:hover { color: var(--text); text-shadow: 0 0 14px rgba(77, 195, 255, 0.6); translate: -4px 0; }
[dir="ltr"] .f-col a:hover { translate: 4px 0; }
.f-bottom {
  max-width: 1360px; margin: 0 auto;
  padding: 20px clamp(16px, 5vw, 64px);
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  color: var(--muted); font-size: 13px; font-weight: 700;
}
.f-play { font-family: var(--font-en); letter-spacing: 4px; font-size: 11px; }
.f-play i { color: var(--blue); font-style: normal; }

/* ══════════ CART DRAWER ══════════ */
.drawer-overlay, .modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(2, 4, 10, 0.78);
  opacity: 0; visibility: hidden; transition: 0.4s;
}
.drawer-overlay.open, .modal-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; bottom: 0; inset-inline-end: 0; z-index: 2001;
  width: min(420px, 100vw);
  background: linear-gradient(200deg, #0d1a33, #060b16);
  border-inline-start: 1px solid var(--line-strong);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.6);
  display: flex; flex-direction: column;
  transform: translateX(calc(var(--drawer-dir, -1) * -100%));
  transition: transform 0.5s var(--ease-out);
}
[dir="rtl"] .cart-drawer { --drawer-dir: 1; }
.cart-drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--line);
}
.drawer-head h3 { font-size: 19px; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--muted); font-size: 15px;
  transition: 0.3s;
}
.icon-btn:hover { color: var(--text); border-color: var(--line-strong); background: rgba(30, 127, 255, 0.12); }
.drawer-items { flex: 1; overflow-y: auto; overscroll-behavior: contain; padding: 18px 20px; display: flex; flex-direction: column; gap: 14px; }
.cart-item {
  display: flex; gap: 14px; align-items: center;
  padding: 13px; border-radius: 14px;
  border: 1px solid var(--line); background: rgba(13, 24, 46, 0.55);
  animation: itemIn 0.4s var(--ease-out);
}
@keyframes itemIn { from { opacity: 0; transform: translateY(14px); } }
.cart-item.removing { opacity: 0; transform: translateX(30px); transition: 0.3s; }
.ci-art {
  width: 58px; height: 58px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 28px; overflow: hidden;
  background: radial-gradient(120% 130% at 50% 0%, var(--g1), var(--g2));
}
.ci-art img { width: 100%; height: 100%; object-fit: cover; }
.ci-info { flex: 1; min-width: 0; }
.ci-info h4 { font-family: var(--font-en); font-size: 13px; letter-spacing: 0.3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ci-price { color: var(--blue2); font-family: var(--font-en); font-weight: 700; font-size: 13px; direction: ltr; display: inline-block; margin-top: 4px; }
.ci-qty { display: flex; align-items: center; gap: 9px; }
.ci-qty button {
  width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  border: 1px solid var(--line-strong); color: var(--blue2); font-weight: 800; font-size: 14px;
  transition: 0.25s;
}
.ci-qty button:hover { background: var(--blue); color: #fff; }
.ci-qty b { font-family: var(--font-en); min-width: 18px; text-align: center; }
.ci-remove { color: var(--muted); font-size: 16px; padding: 6px; transition: 0.25s; }
.ci-remove:hover { color: var(--red); transform: scale(1.2); }
.drawer-empty { flex: 1; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 18px; color: var(--muted); font-weight: 700; padding: 20px; text-align: center; }
.cart-drawer.is-empty .drawer-empty { display: flex; }
.cart-drawer.is-empty .drawer-items, .cart-drawer.is-empty .drawer-foot { display: none; }
.empty-eclipse { position: relative; width: 86px; height: 86px; opacity: 0.55; }
.empty-eclipse i {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 15%, var(--blue) 50%, transparent 85%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  animation: spin 3s linear infinite;
}
.drawer-foot { padding: 20px 24px 26px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 16px; }
.total-row { display: flex; align-items: center; justify-content: space-between; font-weight: 800; font-size: 16px; }
.total-row b { font-family: var(--font-en); font-size: 22px; color: var(--blue2); text-shadow: 0 0 16px rgba(77, 195, 255, 0.5); direction: ltr; }

/* ══════════ CHECKOUT MODAL ══════════ */
.modal-overlay { display: grid; place-items: center; padding: 18px; z-index: 2100; overflow-y: auto; overscroll-behavior: contain; }
.modal {
  position: relative; width: min(520px, 100%);
  --holo-bg: linear-gradient(190deg, #0e1c38, #060b16);
  max-height: 92vh;
  display: flex; flex-direction: column;
  overflow: hidden; /* the frame itself never scrolls — .modal-scroll does */
  border-radius: var(--r-lg); padding: 0;
  transform: translateY(40px) scale(0.95); opacity: 0;
  transition: 0.45s var(--ease-back);
}
.modal-scroll {
  overflow-y: auto; overscroll-behavior: contain;
  min-height: 0;
  padding: 34px 30px 28px;
}
.modal-overlay.open .modal { transform: none; opacity: 1; }
.modal-close { position: absolute; top: 16px; inset-inline-end: 16px; z-index: 5; }
.modal-eclipse { width: 74px; height: 74px; margin: -6px auto 14px; position: relative; }
.modal-eclipse i {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 90deg, transparent 12%, var(--blue) 46%, var(--cyan) 54%, transparent 88%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
  animation: spin 4s linear infinite;
  filter: drop-shadow(0 0 14px rgba(30, 127, 255, 0.7));
}
.modal h3 { text-align: center; font-size: 23px; }
.modal-sub { text-align: center; color: var(--muted); font-weight: 600; font-size: 14px; margin: 8px 0 20px; }
.order-summary {
  max-height: 220px; overflow-y: auto; overscroll-behavior: contain;
  border: 1px solid var(--line); border-radius: 14px;
  padding: 6px 16px; margin-bottom: 14px;
}
.os-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 11px 0; border-bottom: 1px dashed var(--line);
  font-size: 13.5px; font-weight: 700;
}
.os-row:last-child { border-bottom: none; }
.os-row .os-name { font-family: var(--font-en); font-size: 12.5px; }
.os-row .os-name small { color: var(--muted); font-family: var(--font-ar); }
.os-row b { font-family: var(--font-en); color: var(--blue2); direction: ltr; white-space: nowrap; }
.order-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; border-radius: 14px;
  background: rgba(30, 127, 255, 0.1); border: 1px solid var(--line-strong);
  font-weight: 800; margin-bottom: 20px;
}
.order-total b { font-family: var(--font-en); font-size: 22px; color: var(--blue2); direction: ltr; }
.co-actions { display: flex; flex-direction: column; gap: 11px; }
.co-hint { margin-top: 14px; color: var(--muted); font-size: 12px; font-weight: 600; text-align: center; line-height: 1.8; }

/* ══════════ TOASTS ══════════ */
.toasts { position: fixed; bottom: 24px; inset-inline-start: 24px; z-index: 3000; display: flex; flex-direction: column; gap: 10px; }
.toast {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; border-radius: 14px;
  background: linear-gradient(135deg, #0e1f3d, #081226);
  border: 1px solid var(--line-strong);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.55), 0 0 24px rgba(30, 127, 255, 0.18);
  font-weight: 800; font-size: 14px;
  animation: toastIn 0.45s var(--ease-back);
}
.toast.hide { opacity: 0; transform: translateY(16px); transition: 0.35s; }
@keyframes toastIn { from { opacity: 0; transform: translateY(24px) scale(0.9); } }
.toast .t-ico { font-size: 19px; }

/* fly-to-cart clone */
.fly-item {
  position: fixed; z-index: 5000; pointer-events: none;
  font-size: 38px; filter: drop-shadow(0 0 14px rgba(30, 127, 255, 0.8));
}

/* ══════════ PAYMENT PANEL ══════════ */
.pay-panel {
  border: 1px solid var(--line); border-radius: 14px;
  padding: 16px; margin-bottom: 16px;
  background: rgba(10, 18, 36, 0.55);
  display: flex; flex-direction: column; gap: 12px;
}
.pay-head { font-weight: 900; font-size: 15px; text-align: center; }
.pay-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pay-badge {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 11px 8px; border-radius: 12px;
  border: 1.5px solid var(--line); font-weight: 800; font-size: 13.5px;
  background: rgba(13, 24, 46, 0.6);
  transition: 0.25s;
}
.pay-badge svg { width: 26px; height: 26px; flex-shrink: 0; }
.pay-badge.active.pay-vf { border-color: #e60000; box-shadow: 0 0 18px rgba(230, 0, 0, 0.35); background: rgba(230, 0, 0, 0.1); }
.pay-badge.active.pay-ip { border-color: #7048e8; box-shadow: 0 0 18px rgba(112, 72, 232, 0.4); background: rgba(112, 72, 232, 0.12); }
.pay-badge:not(.active) { opacity: 0.6; }
.pay-badge:not(.active):hover { opacity: 1; }
.pay-number {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 12px; border-radius: 12px;
  border: 1px dashed var(--line-strong);
  background: rgba(30, 127, 255, 0.07);
  transition: 0.25s;
}
.pay-number:hover { background: rgba(30, 127, 255, 0.14); }
.pay-number b { font-family: var(--font-en); font-size: 21px; letter-spacing: 2px; color: var(--blue2); text-shadow: 0 0 14px rgba(77, 195, 255, 0.5); }
.pn-copy { font-size: 15px; }
.pay-name { text-align: center; font-weight: 800; font-size: 14px; }
.pay-name b { color: var(--gold); }
.pay-note { text-align: center; color: var(--muted); font-size: 12.5px; font-weight: 700; line-height: 1.8; }

/* ══════════ AUTH / FORMS ══════════ */
.auth-tabs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 5px; border-radius: 14px;
  border: 1px solid var(--line); background: rgba(10, 18, 36, 0.6);
  margin-bottom: 18px;
}
.auth-tab {
  padding: 10px; border-radius: 10px;
  font-weight: 800; font-size: 14px; color: var(--muted);
  transition: 0.25s;
}
.auth-tab.active { background: linear-gradient(135deg, var(--blue), #0a4ecc); color: #fff; box-shadow: 0 4px 18px rgba(30, 127, 255, 0.4); }
.auth-form, .proof-form { display: flex; flex-direction: column; gap: 13px; }
.af-field { display: flex; flex-direction: column; gap: 6px; }
.af-field label { font-size: 12.5px; font-weight: 800; color: var(--muted); }
.af-field input {
  height: 46px; padding: 0 14px; border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(6, 11, 22, 0.8); color: var(--text);
  font-family: var(--font-ar); font-size: 15px; font-weight: 600;
  outline: none; transition: 0.25s;
}
.af-field input:focus { border-color: var(--blue); box-shadow: 0 0 16px rgba(30, 127, 255, 0.25); }
.auth-msg { color: #ff8fa0; font-size: 13px; font-weight: 700; text-align: center; line-height: 1.7; }
.auth-msg.ok { color: #6ee7a0; }
.auth-forgot {
  align-self: flex-start;
  color: var(--muted); font-size: 12.5px; font-weight: 700;
  text-decoration: underline; text-underline-offset: 4px;
  transition: color 0.25s;
}
.auth-forgot:hover { color: var(--blue2); }
.auth-dot {
  position: absolute; top: -4px; inset-inline-end: -4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #25d366; border: 2px solid var(--bg0);
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.8);
}
.pf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.proof-form { margin-bottom: 16px; }
.co-login {
  display: flex; flex-direction: column; gap: 12px; text-align: center;
  padding: 18px 16px; margin-bottom: 16px;
  border: 1px dashed var(--line-strong); border-radius: 14px;
  background: rgba(30, 127, 255, 0.06);
  font-weight: 700; font-size: 14px; color: var(--muted);
}
.upload-box {
  position: relative; display: grid; place-items: center;
  min-height: 92px; padding: 12px;
  border: 2px dashed var(--line-strong); border-radius: 14px;
  background: rgba(30, 127, 255, 0.05);
  cursor: pointer; overflow: hidden;
  transition: 0.25s;
}
.upload-box:hover { border-color: var(--blue); background: rgba(30, 127, 255, 0.12); }
.upload-box.has-file { border-style: solid; border-color: #25d366; }
.ub-inner { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 14px; color: var(--blue2); z-index: 1; }
.ub-inner i { font-style: normal; font-size: 20px; }
#ubPreview { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }

/* success state */
.co-success { text-align: center; display: flex; flex-direction: column; gap: 12px; padding: 10px 0; }
.cs-ico { font-size: 54px; animation: bump 0.6s var(--ease-back); }
.co-success h4 { font-size: 22px; }
.co-success p { color: var(--muted); font-weight: 700; line-height: 1.9; }
.cs-id {
  font-family: var(--font-en); font-weight: 900; font-size: 18px; letter-spacing: 2px;
  color: var(--blue2); text-shadow: 0 0 16px rgba(77, 195, 255, 0.5);
}

/* ══════════ MY ORDERS ══════════ */
.gc-badge.b-full { color: #04070f; background: linear-gradient(135deg, var(--gold), #e8a012); border-color: transparent; box-shadow: 0 0 16px rgba(255, 207, 92, 0.55); font-weight: 900; }
.acct-orders { display: flex; flex-direction: column; gap: 10px; margin: 14px 0 18px; }
.acct-empty { text-align: center; color: var(--muted); font-weight: 700; padding: 18px 0; }
.acct-order {
  border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px;
  background: rgba(13, 24, 46, 0.5);
  display: flex; flex-direction: column; gap: 7px;
}
.ao-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.ao-top b { font-family: var(--font-en); font-size: 13px; color: var(--blue2); }
.ao-mid { font-family: var(--font-en); font-size: 13px; font-weight: 700; }
.ao-foot { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 12px; font-weight: 700; }
.ao-foot b { font-family: var(--font-en); color: var(--text); }
.st-chip {
  padding: 4px 11px; border-radius: 20px;
  font-size: 11.5px; font-weight: 800; white-space: nowrap;
}
.st-pending { background: rgba(255, 207, 92, 0.14); color: var(--gold); border: 1px solid rgba(255, 207, 92, 0.4); }
.st-confirmed { background: rgba(77, 195, 255, 0.12); color: var(--blue2); border: 1px solid rgba(77, 195, 255, 0.4); }
.st-delivered { background: rgba(37, 211, 102, 0.12); color: #4ade80; border: 1px solid rgba(37, 211, 102, 0.4); }
.st-rejected { background: rgba(255, 46, 77, 0.12); color: #ff8fa0; border: 1px solid rgba(255, 46, 77, 0.4); }

/* ══════════ REVIEWS ══════════ */
.rv-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  padding: 10px 0;
}
.rv-track { display: flex; gap: 20px; width: max-content; animation: ticker 60s linear infinite; }
.rv-marquee:hover .rv-track { animation-play-state: paused; }
.rv-card {
  height: 190px; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #0a0f1c;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  cursor: pointer;
}
.rv-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 50px rgba(30, 127, 255, 0.25); }
.rv-card img { height: 100%; width: auto; display: block; }
.lightbox {
  position: fixed; inset: 0; z-index: 4000;
  display: grid; place-items: center; padding: 20px;
  background: rgba(2, 4, 10, 0.88);
  opacity: 0; visibility: hidden; transition: 0.35s;
  cursor: zoom-out;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(920px, 94vw); max-height: 88vh;
  border-radius: 16px; border: 1px solid var(--line-strong);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8), 0 0 60px rgba(30, 127, 255, 0.2);
}

/* ══════════ ADMIN DASHBOARD ══════════ */
.admin-wrap { max-width: 1100px; margin: 0 auto; padding: 110px clamp(14px, 4vw, 40px) 60px; }
.admin-wrap .modal { transform: none; opacity: 1; } /* inline cards, not overlaid */
.admin-login { max-width: 420px; margin: 8vh auto 0; }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-bottom: 22px; }
.adm-stat {
  padding: 18px; border-radius: 14px; text-align: center;
  border: 1px solid var(--line); background: rgba(13, 24, 46, 0.6);
}
.adm-stat b { display: block; font-family: var(--font-en); font-size: 26px; color: var(--blue2); text-shadow: 0 0 16px rgba(77, 195, 255, 0.5); }
.adm-stat span { color: var(--muted); font-size: 12.5px; font-weight: 700; }
.admin-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.admin-orders { display: flex; flex-direction: column; gap: 14px; }
.adm-order {
  border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(180deg, rgba(15, 27, 52, 0.7), rgba(8, 14, 28, 0.9));
  padding: 16px 18px;
  display: grid; grid-template-columns: 86px 1fr auto; gap: 16px; align-items: center;
}
.adm-proof {
  width: 86px; height: 86px; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line-strong); display: block;
  background: rgba(30, 127, 255, 0.06);
}
.adm-proof img { width: 100%; height: 100%; object-fit: cover; }
.adm-proof.none { display: grid; place-items: center; color: var(--muted); font-size: 11px; font-weight: 700; text-align: center; }
.adm-info { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.adm-line1 { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.adm-line1 b { font-size: 15.5px; }
.adm-id { font-family: var(--font-en); font-size: 11.5px; color: var(--muted); }
.adm-items { color: var(--muted); font-size: 13px; font-weight: 600; font-family: var(--font-en); }
.adm-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 12.5px; font-weight: 700; color: var(--muted); }
.adm-meta b { font-family: var(--font-en); color: var(--blue2); }
.adm-phone { font-family: var(--font-en); direction: ltr; }
.adm-actions { display: flex; flex-direction: column; gap: 8px; align-items: stretch; min-width: 150px; }
.adm-btn {
  padding: 9px 14px; border-radius: 10px;
  border: 1px solid var(--line-strong);
  font-size: 12.5px; font-weight: 800; text-align: center;
  transition: 0.25s; white-space: nowrap;
}
.adm-btn:hover { background: rgba(30, 127, 255, 0.15); }
.adm-btn.wa { background: linear-gradient(135deg, #25d366, #128c7e); border-color: transparent; color: #fff; }
.adm-btn.ok { border-color: rgba(37, 211, 102, 0.5); color: #4ade80; }
.adm-btn.no { border-color: rgba(255, 46, 77, 0.5); color: #ff8fa0; }
.admin-empty { text-align: center; color: var(--muted); font-weight: 700; padding: 50px 0; }
.admin-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.admin-top h2 { font-size: 24px; }
@media (max-width: 720px) {
  .adm-order { grid-template-columns: 64px 1fr; }
  .adm-proof { width: 64px; height: 64px; }
  .adm-actions { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
  .pf-row { grid-template-columns: 1fr; }
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; max-width: 420px; }
  .step-line { display: none; }
}
@media (max-width: 820px) {
  .nav-links {
    position: fixed; top: 0; bottom: 0; inset-inline-end: 0;
    width: min(300px, 82vw);
    flex-direction: column; justify-content: center; gap: 26px;
    padding: 40px 34px;
    background: rgba(6, 11, 22, 0.98);
    border-inline-start: 1px solid var(--line-strong);
    font-size: 19px;
    transform: translateX(calc(var(--drawer-dir, -1) * -100%));
    transition: transform 0.45s var(--ease-out);
    z-index: 999;
  }
  [dir="rtl"] .nav-links { --drawer-dir: 1; }
  .nav-links.open { transform: translateX(0); }
  .burger { display: flex; }
  .gta-tiers { grid-template-columns: 1fr; }
  .tier { flex-direction: row; justify-content: space-between; padding: 15px 18px; }
  .tier-tag { top: 50%; translate: 0 -50%; inset-inline-end: 90px; left: auto; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
  .gc-emoji { font-size: 46px; }
  .gc-num { font-size: 26px; }
  .gc-title { font-size: 12.5px; }
  .gc-price b { font-size: 19px; }
  .hero-stats { gap: 14px; }
  .stat-sep { display: none; }
  .stat { min-width: 40%; align-items: center; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
