/* ========== ROOT ========== */
:root {
  --bg: #07070f;
  --bg2: #0d0d1c;
  --bg3: #12122a;
  --purple: #7c4dff;
  --purple-light: #a78bfa;
  --purple-dim: rgba(124,77,255,0.12);
  --purple-border: rgba(124,77,255,0.28);
  --text: #eeeeff;
  --muted: #5a5a7a;
  --muted2: #9090b8;
  --border: rgba(255,255,255,0.06);
  --border2: rgba(255,255,255,0.11);
  --green: #4ade80;
  --discord: #5865F2;
  --transition: 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
button { font-family: 'Outfit', sans-serif; cursor: none; }
ul { list-style: none; }

/* ========== CUSTOM CURSOR ========== */
.cursor {
  width: 32px; height: 32px;
  border: 1.5px solid var(--purple);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.2s, height 0.2s, background 0.2s, opacity 0.2s;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--purple-light);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s;
}
body:has(button:hover) .cursor,
body:has(a:hover) .cursor,
body:has(.cat-card:hover) .cursor {
  width: 48px; height: 48px;
  background: var(--purple-dim);
}

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

/* ========== NAVBAR ========== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 62px;
  background: rgba(7,7,15,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--text);
}
.nav-logo span { color: var(--purple-light); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-link {
  color: var(--muted2);
  font-size: 14px;
  font-weight: 400;
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--purple-light);
  transition: width 0.25s;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.btn-nav {
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
}
.btn-nav:hover { background: #6b3de8; transform: translateY(-1px); }
.nav-burger { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--muted2); transition: all 0.3s; }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 62px; left: 0; right: 0;
  background: rgba(7,7,15,0.97);
  backdrop-filter: blur(20px);
  z-index: 490;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  gap: 0.25rem;
  border-bottom: 1px solid var(--border);
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
.mob-link { color: var(--muted2); font-size: 16px; padding: 10px 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mob-link:hover { color: var(--text); }

/* ========== VIEWS ========== */
.view {
  display: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition);
  min-height: 100vh;
  padding-top: 62px;
}
.view.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.view.entering {
  display: block;
  opacity: 0;
  transform: translateY(16px);
}

/* ========== PAGE WRAPPER ========== */
.page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.page-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.back-btn {
  background: var(--bg2);
  border: 1px solid var(--border2);
  color: var(--muted2);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  margin-top: 6px;
  transition: all 0.2s;
}
.back-btn:hover { color: var(--text); border-color: var(--purple-border); background: var(--purple-dim); }
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 4px;
}
.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 5vw, 46px);
  letter-spacing: 0.5px;
  color: var(--text);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 7rem 2rem 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.orb1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,77,255,0.22) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  animation: orbFloat 8s ease-in-out infinite;
}
.orb2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(99,60,200,0.12) 0%, transparent 70%);
  bottom: 20%; left: 10%;
  animation: orbFloat 12s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-30px); }
}
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 100%);
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 680px;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-dim);
  border: 1px solid var(--purple-border);
  border-radius: 30px;
  padding: 5px 16px;
  font-size: 12px;
  color: var(--purple-light);
  margin-bottom: 1.75rem;
  animation: fadeUp 0.6s ease both;
}
.pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulseAnim 2s infinite;
  flex-shrink: 0;
}
@keyframes pulseAnim { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.85)} }
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 13vw, 110px);
  line-height: 0.9;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title .line { display: block; }
.hero-title .accent-line { color: var(--purple-light); }
.hero-sub {
  font-size: 16px;
  color: var(--muted2);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-primary {
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover { background: #6b3de8; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,77,255,0.35); }
.btn-ghost {
  background: transparent;
  color: var(--muted2);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
}
.btn-ghost:hover { color: var(--text); border-color: var(--purple-border); background: var(--purple-dim); }

/* HERO STATS */
.home-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.7s 0.4s ease both;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; }
.stat-n { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 1px; color: var(--text); }
.stat-l { display: block; font-size: 11px; color: var(--muted); margin-top: 1px; }
.stat-div { width: 1px; height: 30px; background: var(--border2); }

/* ========== CATEGORY GRID ========== */
.home-categories {
  width: 100%;
  max-width: 1000px;
  margin: 4rem auto 0;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s 0.5s ease both;
}
.cat-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-left: 2px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: 18px;
  overflow: hidden;
}
.cat-card {
  background: var(--bg2);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.cat-card:hover { background: var(--bg3); }
.cat-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(124,77,255,0.1) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.cat-card:hover .cat-glow { opacity: 1; }
.spoofer-glow {
  background: radial-gradient(circle at 30% 50%, rgba(99,200,255,0.1) 0%, transparent 65%);
}
.cat-card--spoofer { background: rgba(124,77,255,0.04); }
.cat-card--spoofer:hover { background: rgba(124,77,255,0.09); }
.cat-emoji { font-size: 26px; flex-shrink: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.cat-info { flex: 1; min-width: 0; }
.cat-name { font-size: 14px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cat-desc { font-size: 12px; color: var(--muted); margin-top: 2px; }
.cat-arrow { font-size: 16px; color: var(--muted); transition: transform 0.2s, color 0.2s; flex-shrink: 0; }
.cat-card:hover .cat-arrow { transform: translateX(4px); color: var(--purple-light); }
.cat-status {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}
.cat-status.online { background: rgba(74,222,128,0.12); color: #4ade80; border: 1px solid rgba(74,222,128,0.25); }
.cat-status.new { background: rgba(99,179,237,0.12); color: #63b3ed; border: 1px solid rgba(99,179,237,0.25); }
.cat-status.standalone { background: var(--purple-dim); color: var(--purple-light); border: 1px solid var(--purple-border); }

/* ========== GAME TABS ========== */
.game-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.gtab {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--muted2);
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}
.gtab:hover { color: var(--text); border-color: var(--purple-border); }
.gtab.active { background: var(--purple); color: #fff; border-color: var(--purple); }

/* ========== PRODUCTS GRID ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1rem;
}
.prod-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
  animation: fadeUp 0.4s ease both;
}
.prod-card:hover {
  border-color: var(--purple-border);
  background: var(--bg3);
  transform: translateY(-3px);
}
.prod-card.hidden { display: none; }
.prod-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.1rem;
}
.prod-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.prod-name { font-size: 15px; font-weight: 600; color: var(--text); }
.prod-game { font-size: 12px; color: var(--muted); margin-top: 1px; }
.prod-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-left: auto;
  flex-shrink: 0;
}
.prod-status-dot.online { background: var(--green); box-shadow: 0 0 6px var(--green); }
.pbadge {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.pbadge.hot { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.pbadge.new { background: rgba(99,179,237,0.12); color: #63b3ed; border: 1px solid rgba(99,179,237,0.25); }
.pbadge { background: var(--purple-dim); color: var(--purple-light); border: 1px solid var(--purple-border); }
.prod-feats {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.25rem;
}
.prod-feats li {
  font-size: 13px;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.prod-feats li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}
.prod-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.prod-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--text);
}
.prod-price span { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 400; color: var(--muted); }
.btn-buy {
  background: var(--purple-dim);
  color: var(--purple-light);
  border: 1px solid var(--purple-border);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}
.btn-buy:hover { background: var(--purple); color: #fff; border-color: var(--purple); transform: translateY(-1px); }

/* ========== SPOOFER PAGE ========== */
.spoofer-hero {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
}
.spoofer-icon-xl {
  font-size: 52px;
  margin-bottom: 1rem;
  display: block;
}
.spoofer-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.spoofer-desc {
  font-size: 14px;
  color: var(--muted2);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 520px;
}
.spoofer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.chip {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 6px;
  font-size: 12px;
  color: var(--muted2);
  padding: 4px 11px;
  transition: all 0.2s;
}
.chip:hover { border-color: var(--purple-border); color: var(--purple-light); }

/* SPOOFER BUY CARD */
.spoofer-buy-card {
  background: var(--bg2);
  border: 1px solid var(--purple-border);
  border-radius: 18px;
  padding: 1.75rem;
  position: sticky;
  top: 80px;
}
.sbc-header {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.plan-toggle {
  display: flex;
  background: var(--bg);
  border-radius: 9px;
  padding: 3px;
  margin-bottom: 1.5rem;
  gap: 3px;
}
.plan-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--muted2);
  border-radius: 7px;
  padding: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}
.plan-btn.active { background: var(--purple); color: #fff; }
.plan-price {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.price-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 1px;
  color: var(--text);
  display: block;
  line-height: 1;
}
.price-period { font-size: 13px; color: var(--muted); }
.sbc-feats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.5rem;
}
.sbc-feats li {
  font-size: 13px;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sbc-feats li::before {
  content: '✓';
  color: var(--green);
  font-size: 12px;
  flex-shrink: 0;
}
.btn-spoofer-buy {
  width: 100%;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-bottom: 0.75rem;
}
.btn-spoofer-buy:hover { background: #6b3de8; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,77,255,0.4); }
.sbc-note { font-size: 11px; color: var(--muted); text-align: center; }

/* SPOOFER FAQ */
.spoofer-faq { border-top: 1px solid var(--border); padding-top: 2.5rem; }
.sfaq-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.sfaq-list { display: flex; flex-direction: column; border-radius: 12px; overflow: hidden; gap: 1px; background: var(--border); }
.sfaq-item { background: var(--bg2); }
.sfaq-item summary {
  padding: 1rem 1.25rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  cursor: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.sfaq-item summary::-webkit-details-marker { display: none; }
.sfaq-item[open] summary { color: var(--purple-light); }
.sfaq-item summary::after { content: '+'; color: var(--muted); font-size: 18px; font-weight: 300; }
.sfaq-item[open] summary::after { content: '−'; color: var(--purple-light); }
.sfaq-item p { padding: 0 1.25rem 1rem; font-size: 13px; color: var(--muted2); line-height: 1.7; }

/* ========== CONTACT ========== */
.contact-hero { margin-bottom: 2rem; }
.discord-card {
  background: rgba(88,101,242,0.08);
  border: 1px solid rgba(88,101,242,0.3);
  border-radius: 18px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}
.discord-card:hover { border-color: rgba(88,101,242,0.6); }
.dc-glow {
  position: absolute;
  top: -50%; left: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(88,101,242,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.dc-icon { color: #5865F2; flex-shrink: 0; }
.dc-text { flex: 1; }
.dc-title { font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.dc-sub { font-size: 13px; color: var(--muted2); }
.dc-btn {
  background: #5865F2;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.dc-btn:hover { background: #4752c4; transform: translateY(-2px); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.contact-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.contact-card:hover { border-color: var(--purple-border); transform: translateY(-2px); }
.cc-ico { font-size: 24px; margin-bottom: 10px; display: block; }
.cc-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.cc-desc { font-size: 13px; color: var(--muted2); line-height: 1.6; }

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 1rem;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg2);
  border: 1px solid var(--purple-border);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  text-align: center;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--muted2);
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { color: var(--text); border-color: var(--purple-border); }
.modal-icon { font-size: 36px; margin-bottom: 0.75rem; }
.modal-title { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; margin-bottom: 0.5rem; }
.modal-sub { font-size: 14px; color: var(--muted2); margin-bottom: 1.75rem; }
.modal-methods { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1rem; }
.mm-btn {
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--text);
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  text-align: left;
  padding-left: 16px;
}
.mm-btn:hover { border-color: var(--purple-border); background: var(--purple-dim); }
.modal-note { font-size: 11px; color: var(--muted); }

/* ========== FOOTER ========== */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 2.5rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
}
.footer-logo span { color: var(--purple-light); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--muted); }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links, .btn-nav { display: none; }
  .nav-burger { display: flex; }
  .spoofer-hero { grid-template-columns: 1fr; }
  .spoofer-buy-card { position: static; }
  .home-stats { gap: 1rem; }
  .discord-card { flex-direction: column; text-align: center; }
  footer { padding: 1.5rem 1.25rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
}
