/* ==========================================
   AccountRP — styles.css
   ========================================== */

:root {
  --neon: #39FF14;
  --neon-dim: rgba(57,255,20,0.12);
  --neon-glow: 0 0 10px rgba(57,255,20,0.6), 0 0 30px rgba(57,255,20,0.25);
  --bg: #080808;
  --surface: #111111;
  --surface-2: #181818;
  --border: rgba(57,255,20,0.1);
  --border-hover: rgba(57,255,20,0.35);
  --text: #f0f0f0;
  --text-dim: #777;
  --radius: 12px;
  --radius-lg: 18px;
  --font: 'Inter', sans-serif;
  --font-display: 'Rajdhani', sans-serif;
  --rank-gm: #FFD700;
  --rank-heroico: #B44BFF;
  --rank-diamante: #00E5FF;
  --rank-platino: #90B4CE;
  --rank-oro: #FFA500;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.6; }

/* ── UTILS ── */
.neon { color: var(--neon); }
.glow-text { text-shadow: 0 0 24px rgba(57,255,20,0.55), 0 0 60px rgba(57,255,20,0.2); }
.hidden { display: none !important; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #222; border-radius: 3px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px; height: 64px;
  display: flex; align-items: center;
  transition: background .3s, border-color .3s;
}
.navbar.scrolled {
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%; max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 700;
  color: var(--text); text-decoration: none; letter-spacing: .5px;
  display: flex; align-items: baseline; gap: 0;
}
.nav-logo-sub {
  font-family: var(--font); font-size: .6rem; color: var(--text-dim);
  font-weight: 400; margin-left: 8px; letter-spacing: .5px;
}
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-size: .88rem; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.btn-wa {
  display: flex; align-items: center; gap: 7px;
  background: rgba(37,211,102,.09); border: 1px solid rgba(37,211,102,.25);
  color: #25D366; padding: 7px 15px; border-radius: 8px;
  text-decoration: none; font-size: .83rem; font-weight: 600;
  transition: all .2s; white-space: nowrap;
}
.btn-wa:hover { background: rgba(37,211,102,.18); border-color: #25D366; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--neon); color: #000; font-weight: 700;
  padding: 12px 24px; border-radius: var(--radius);
  border: none; cursor: pointer; font-size: .93rem;
  text-decoration: none; transition: all .2s; font-family: var(--font);
}
.btn-primary:hover {
  background: #fff;
  box-shadow: 0 0 22px rgba(57,255,20,.45), 0 4px 18px rgba(0,0,0,.35);
  transform: translateY(-1px);
}
.btn-primary.btn-lg { padding: 14px 32px; font-size: .98rem; border-radius: 14px; }
.btn-primary.btn-block { width: 100%; justify-content: center; margin-top: 4px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text-dim); font-weight: 500;
  padding: 12px 24px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1); cursor: pointer;
  font-size: .93rem; text-decoration: none; transition: all .2s; font-family: var(--font);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.28); color: var(--text); }
.btn-ghost.btn-lg { padding: 14px 32px; font-size: .98rem; border-radius: 14px; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 720px; padding: 0 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(57,255,20,.07); border: 1px solid rgba(57,255,20,.18);
  color: var(--neon); padding: 8px 18px; border-radius: 100px;
  font-size: .78rem; font-weight: 600; margin-bottom: 28px; letter-spacing: .4px;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--neon); border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(57,255,20,.4); }
  50% { box-shadow: 0 0 0 7px rgba(57,255,20,0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 700; line-height: 1.0; letter-spacing: -1px; margin-bottom: 22px;
}
.hero-sub {
  color: var(--text-dim); font-size: 1.05rem;
  max-width: 520px; margin: 0 auto 38px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 1; }
.scroll-mouse {
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.2);
  border-radius: 12px; display: flex; align-items: flex-start;
  justify-content: center; padding-top: 7px;
}
.scroll-wheel {
  width: 4px; height: 8px; background: var(--neon); border-radius: 2px;
  animation: scroll-anim 2s infinite;
}
@keyframes scroll-anim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; padding: 28px 24px;
}
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 0 52px; }
.stat-top { display: flex; align-items: baseline; }
.stat-value { font-family: var(--font-display); font-size: 2.3rem; font-weight: 700; line-height: 1; }
.stat-suffix { font-family: var(--font-display); font-size: 2.3rem; font-weight: 700; line-height: 1; }
.stat-label { color: var(--text-dim); font-size: .78rem; margin-top: 4px; }
.stat-sep { width: 1px; height: 44px; background: var(--border); }

/* ── CATALOG ── */
.catalog { padding: 96px 0 80px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--neon); margin-bottom: 10px;
}
.section-header h2 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); font-weight: 700; margin-bottom: 10px; }
.section-header p { color: var(--text-dim); max-width: 480px; margin: 0 auto; font-size: .93rem; }

/* FILTERS */
.filter-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; gap: 12px; flex-wrap: wrap;
}
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-dim); padding: 8px 18px; border-radius: 100px;
  font-size: .83rem; font-weight: 500; cursor: pointer;
  transition: all .2s; font-family: var(--font);
}
.filter-tab:hover { border-color: var(--border-hover); color: var(--text); }
.filter-tab.active { background: var(--neon); border-color: var(--neon); color: #000; font-weight: 700; }
.sort-select {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-dim); padding: 8px 14px; border-radius: 8px;
  font-size: .83rem; cursor: pointer; font-family: var(--font); outline: none;
  transition: border-color .2s;
}
.sort-select:focus { border-color: var(--border-hover); }

/* ACCOUNT GRID */
.accounts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

/* ACCOUNT CARD */
.account-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  cursor: default; transition: border-color .3s, box-shadow .3s;
  transform-style: preserve-3d; will-change: transform;
}
.account-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 44px rgba(57,255,20,.07), 0 2px 8px rgba(0,0,0,.5);
}
.card-media {
  position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden;
}
.card-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s;
}
.account-card:hover .card-media img { transform: scale(1.05); }
.card-media-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 5rem; font-weight: 700;
  color: rgba(57,255,20,.09);
  background: linear-gradient(135deg, #0c180c 0%, #0d1820 50%, #180c1e 100%);
  position: relative; overflow: hidden;
}
.card-media-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 25%, rgba(57,255,20,.08) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 75%, rgba(180,75,255,.07) 0%, transparent 55%);
}
.card-media-placeholder::after {
  content: 'FF';
  position: absolute;
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 700;
  color: rgba(57,255,20,.04);
  letter-spacing: 4px;
}
.card-badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; gap: 6px; flex-wrap: wrap; z-index: 1;
}
.badge {
  padding: 3px 10px; border-radius: 100px; font-size: .68rem;
  font-weight: 700; letter-spacing: .4px; backdrop-filter: blur(8px);
}
.badge-featured {
  background: rgba(57,255,20,.14); border: 1px solid rgba(57,255,20,.35); color: var(--neon);
}
.badge-level {
  background: rgba(0,0,0,.65); border: 1px solid rgba(255,255,255,.12); color: #fff;
}
.card-price-tag {
  position: absolute; top: 12px; right: 12px; z-index: 1;
  background: rgba(0,0,0,.72); border: 1px solid var(--border);
  backdrop-filter: blur(8px); padding: 4px 12px; border-radius: 8px;
  font-weight: 800; font-size: 1rem; color: var(--neon);
}
.card-body { padding: 16px; }
.card-rank-row { display: flex; align-items: center; gap: 7px; margin-bottom: 10px; flex-wrap: wrap; }
.rank-badge {
  display: inline-flex; align-items: center; padding: 3px 10px;
  border-radius: 100px; font-size: .7rem; font-weight: 700;
}
.rank-badge.grandmaster { background: rgba(255,215,0,.1); color: var(--rank-gm); border: 1px solid rgba(255,215,0,.22); }
.rank-badge.heroico { background: rgba(180,75,255,.1); color: var(--rank-heroico); border: 1px solid rgba(180,75,255,.22); }
.rank-badge.diamante { background: rgba(0,229,255,.1); color: var(--rank-diamante); border: 1px solid rgba(0,229,255,.22); }
.rank-badge.platino { background: rgba(144,180,206,.1); color: var(--rank-platino); border: 1px solid rgba(144,180,206,.22); }
.rank-badge.oro { background: rgba(255,165,0,.1); color: var(--rank-oro); border: 1px solid rgba(255,165,0,.22); }
.card-stats {
  display: flex; gap: 12px; font-size: .77rem; color: var(--text-dim); margin-bottom: 9px; flex-wrap: wrap;
}
.card-skins {
  font-size: .79rem; color: var(--text-dim); margin-bottom: 14px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.card-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.card-price-main { font-size: 1.2rem; font-weight: 800; color: var(--text); }
.card-price-main small { font-size: .68rem; color: var(--text-dim); font-weight: 400; }
.btn-buy {
  background: var(--neon); color: #000; border: none; padding: 8px 18px;
  border-radius: 8px; font-weight: 700; font-size: .83rem; cursor: pointer;
  transition: all .2s; font-family: var(--font); white-space: nowrap;
}
.btn-buy:hover { background: #fff; box-shadow: var(--neon-glow); transform: translateY(-1px); }
.account-card.sold-out { opacity: .45; pointer-events: none; }

/* EMPTY STATE */
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-dim); }
.empty-state p { margin-bottom: 16px; }

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(57,255,20,.025) 50%, transparent 100%);
}
.steps-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.step-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px; text-align: center;
  flex: 1; min-width: 220px; max-width: 260px;
  transition: border-color .3s, box-shadow .3s;
}
.step-card:hover { border-color: var(--border-hover); box-shadow: 0 0 40px rgba(57,255,20,.05); }
.step-num {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 700;
  color: rgba(57,255,20,.07); line-height: 1; margin-bottom: 12px;
}
.step-icon-wrap {
  width: 56px; height: 56px; background: rgba(57,255,20,.06);
  border: 1px solid var(--border); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.step-card h3 { font-weight: 700; margin-bottom: 8px; font-size: 1.05rem; }
.step-card p { font-size: .84rem; color: var(--text-dim); line-height: 1.65; }
.step-connector { padding: 0 16px; display: flex; align-items: center; opacity: .55; }
@media (max-width: 768px) { .step-connector { display: none; } }

/* ── CTA BANNER ── */
.cta-banner { padding: 80px 24px; text-align: center; position: relative; overflow: hidden; }
.cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(57,255,20,.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 12px; }
.cta-banner p { color: var(--text-dim); margin-bottom: 32px; }

/* ── FOOTER ── */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding: 40px 0; }
.footer-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 24px; margin-bottom: 28px;
}
.footer-logo {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--text); display: block; margin-bottom: 6px;
}
.footer-brand p { color: var(--text-dim); font-size: .83rem; }
.footer-brand a { color: var(--neon); text-decoration: none; }
.footer-links { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 18px;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 6px; font-size: .78rem; color: var(--text-dim);
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.87);
  backdrop-filter: blur(10px); z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 16px; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: #111; border: 1px solid var(--border); border-radius: var(--radius-lg);
  width: 100%; max-width: 490px; max-height: 92vh; overflow-y: auto;
  padding: 28px; position: relative;
  transform: translateY(18px) scale(.98); transition: transform .3s;
  scrollbar-width: thin; scrollbar-color: #222 transparent;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text-dim); width: 32px; height: 32px; border-radius: 8px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.modal-close:hover { color: var(--text); border-color: rgba(255,255,255,.25); }

/* Progress */
.modal-progress { display: flex; align-items: center; margin-bottom: 24px; }
.progress-step {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .73rem; font-weight: 700; color: var(--text-dim);
  flex-shrink: 0; transition: all .3s;
}
.progress-step.active { background: var(--neon); border-color: var(--neon); color: #000; box-shadow: 0 0 14px rgba(57,255,20,.4); }
.progress-step.done { background: rgba(57,255,20,.1); border-color: rgba(57,255,20,.4); color: var(--neon); }
.progress-line { flex: 1; height: 1px; background: var(--border); }

.modal-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 18px; }

/* Account preview inside modal */
.modal-account-card {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px; display: flex; gap: 14px; align-items: center; margin-bottom: 20px;
}
.mac-thumb {
  width: 64px; height: 64px; border-radius: 10px; overflow: hidden; flex-shrink: 0;
  background: #1a2e1a; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.3rem; color: rgba(57,255,20,.25);
}
.mac-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mac-info { flex: 1; }
.mac-name { font-weight: 700; font-size: .93rem; margin-bottom: 3px; }
.mac-meta { font-size: .76rem; color: var(--text-dim); }
.mac-price { font-weight: 800; color: var(--neon); font-size: 1.1rem; white-space: nowrap; }

/* Form */
.form-group { margin-bottom: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label {
  display: block; font-size: .76rem; font-weight: 600;
  color: var(--text-dim); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: .5px;
}
.label-opt { font-weight: 400; text-transform: none; letter-spacing: 0; }
input[type="text"], input[type="tel"], input[type="email"] {
  width: 100%; background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text); padding: 10px 13px; border-radius: 8px;
  font-size: .88rem; outline: none; transition: border-color .2s; font-family: var(--font);
}
input:focus { border-color: var(--border-hover); }
input.error { border-color: #ff4444 !important; }

/* Pay grid */
.pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.pay-option {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 11px 12px; cursor: pointer; display: flex; align-items: center;
  gap: 9px; transition: all .2s; font-size: .83rem; font-weight: 500;
}
.pay-option:hover { border-color: var(--border-hover); }
.pay-option.selected { border-color: var(--neon); background: rgba(57,255,20,.06); color: var(--text); }
.pay-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .82rem; flex-shrink: 0;
}
.pm-icon { background: rgba(226,27,27,.14); color: #e84545; }
.zelle-icon { background: rgba(108,99,255,.14); color: #7c75ff; }
.bnb-icon { background: rgba(243,186,47,.14); color: #F3BA2F; }
.zinli-icon { background: rgba(155,89,182,.14); color: #b56fd8; }

/* Pay instructions */
.pay-instructions {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; margin-bottom: 15px;
}
.pay-instructions h4 {
  font-size: .75rem; color: var(--text-dim); margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: .5px;
}
.pay-detail {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: .84rem; gap: 10px;
}
.pay-detail:last-of-type { border-bottom: none; }
.pay-detail span:first-child { color: var(--text-dim); flex-shrink: 0; }
.pay-detail strong { color: var(--text); text-align: right; word-break: break-all; }
.copy-btn {
  background: none; border: none; color: var(--neon); cursor: pointer;
  font-size: .73rem; padding: 2px 7px; border-radius: 4px;
  transition: background .2s; font-family: var(--font); flex-shrink: 0;
}
.copy-btn:hover { background: rgba(57,255,20,.1); }
.pay-amount-line {
  margin-top: 12px; padding: 10px 12px;
  background: rgba(57,255,20,.06); border: 1px solid rgba(57,255,20,.18);
  border-radius: 8px; text-align: center; font-size: .83rem; color: var(--text-dim);
}
.pay-amount-line strong { color: var(--neon); font-size: 1.08rem; }
.pay-note {
  margin-top: 10px; font-size: .76rem; color: var(--text-dim);
  padding: 8px 10px; background: rgba(255,200,0,.05);
  border-left: 2px solid rgba(255,200,0,.3); border-radius: 0 6px 6px 0;
}
.pay-note strong { color: var(--neon); }

/* Upload zone */
.upload-zone {
  border: 1px dashed var(--border); border-radius: var(--radius);
  padding: 14px 16px; display: flex; align-items: center; gap: 10px;
  cursor: pointer; transition: border-color .2s, background .2s;
  font-size: .83rem; color: var(--text-dim); margin-top: 8px;
}
.upload-zone:hover { border-color: var(--border-hover); background: rgba(57,255,20,.03); }
.upload-preview { position: relative; margin-top: 8px; }
.upload-preview img { width: 100%; max-height: 140px; object-fit: cover; border-radius: var(--radius); }
#remove-img {
  position: absolute; top: 6px; right: 6px; background: rgba(0,0,0,.72);
  border: none; color: #fff; width: 24px; height: 24px;
  border-radius: 50%; cursor: pointer; font-size: .7rem;
}
.modal-actions { display: flex; gap: 10px; margin-top: 6px; }
.modal-actions .btn-primary { flex: 1; justify-content: center; }

/* Success */
.success-wrap { text-align: center; padding: 12px 0; }
.success-ring {
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(57,255,20,.06); border: 2px solid var(--neon);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 0 28px rgba(57,255,20,.22);
  animation: pop-in .45s cubic-bezier(.175,.885,.32,1.275);
}
@keyframes pop-in { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-wrap h2 { font-family: var(--font-display); font-size: 1.7rem; margin-bottom: 10px; }
.success-wrap p { color: var(--text-dim); font-size: .88rem; margin-bottom: 20px; line-height: 1.65; }
.ref-display {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px; margin-bottom: 18px;
  font-size: .82rem; color: var(--text-dim);
}
.ref-display strong { display: block; font-size: 1.5rem; letter-spacing: 3px; margin-top: 5px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-title { font-size: 3rem; }
  .stat-item { padding: 12px 20px; }
  .stat-sep { display: none; }
  .accounts-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; }
  .footer-bottom { flex-direction: column; }
  .modal { padding: 20px 16px; }
  .steps-row { gap: 16px; flex-direction: column; align-items: center; }
}
@media (min-width: 640px) and (max-width: 1024px) {
  .accounts-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── LIGHTBOX ── */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.lightbox-overlay.open { opacity: 1; pointer-events: all; }
.lightbox-inner {
  position: relative;
  display: flex; gap: 0;
  max-width: 960px; width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transform: scale(.95); transition: transform .25s;
}
.lightbox-overlay.open .lightbox-inner { transform: scale(1); }
.lightbox-img-wrap {
  flex: 1; min-width: 0;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  max-height: 90vh;
  overflow: hidden;
}
.lightbox-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain; max-height: 90vh;
  display: block;
}
.lightbox-placeholder {
  width: 100%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 8rem; font-weight: 700;
  color: rgba(57,255,20,.07);
  background: linear-gradient(135deg, #0c180c, #0d1820, #180c1e);
}
.lightbox-info {
  width: 300px; flex-shrink: 0;
  padding: 28px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 16px;
}
.lightbox-close {
  position: absolute; top: 14px; right: 14px; z-index: 1;
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(0,0,0,.6); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.1); }
.lightbox-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }
.lightbox-price { font-size: 2rem; font-weight: 800; color: var(--neon); }
.lightbox-price small { font-size: .8rem; color: var(--text-dim); font-weight: 400; }
.lightbox-stats { display: flex; flex-direction: column; gap: 8px; }
.lightbox-stat {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px; border-radius: 8px;
  background: var(--surface-2); border: 1px solid var(--border);
  font-size: .83rem;
}
.lightbox-stat span:first-child { color: var(--text-dim); }
.lightbox-stat strong { color: var(--text); }
.lightbox-skins { display: flex; flex-direction: column; gap: 6px; }
.lightbox-skins-title { font-size: .72rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: .5px; }
.lightbox-skin-tag {
  padding: 5px 10px; border-radius: 6px; font-size: .78rem;
  background: rgba(57,255,20,.06); border: 1px solid var(--border); color: var(--text-dim);
}
.lightbox-buy { margin-top: auto; }
/* imagen del card clickeable */
.card-media { cursor: zoom-in; }
@media (max-width: 768px) {
  .lightbox-inner { flex-direction: column; max-height: 95vh; }
  .lightbox-img-wrap { max-height: 50vh; aspect-ratio: 16/9; }
  .lightbox-info { width: 100%; padding: 20px; }
  .lightbox-placeholder { font-size: 5rem; aspect-ratio: 16/9; }
}
