@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Space+Mono:wght@400;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --neon-blue: #00f0ff;
  --neon-purple: #b66fff;
  --neon-pink: #ff2d7a;
  --accent: #00f0ff;
  --accent-secondary: #b66fff;
  --accent-glow: rgba(0, 240, 255, 0.25);
  --purple-glow: rgba(182, 111, 255, 0.25);

  --bg-primary: #050509;
  --bg-secondary: #0c0c14;
  --bg-tertiary: #12121e;
  --bg-card: #0e0e1a;

  --text-primary: #f0f0ff;
  --text-secondary: #8888aa;
  --text-muted: #555570;

  --success: #00ff99;
  --warning: #ffcc00;

  --border-color: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(0, 240, 255, 0.3);
  --shadow: rgba(0, 0, 0, 0.7);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-pill: 9999px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ── BACKGROUND ── */
.bg-animation {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.snow-container { display: none; }

.gradient-orbs {
  position: absolute;
  width: 100%; height: 100%;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  animation: orb-drift 25s infinite ease-in-out alternate;
}

.orb-1 {
  width: 600px; height: 600px;
  background: var(--neon-blue);
  top: -15%; left: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px; height: 500px;
  background: var(--neon-purple);
  top: 40%; right: -10%;
  animation-delay: -8s;
}

.orb-3 {
  width: 450px; height: 450px;
  background: var(--neon-pink);
  bottom: -10%; left: 35%;
  animation-delay: -16s;
  opacity: 0.1;
}

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

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
  z-index: 9998;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(5, 5, 9, 0.75);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(120deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-logo img {
  width: 38px; height: 38px;
  filter: drop-shadow(0 0 8px var(--neon-blue));
}

.nav-links { display: flex; gap: 0.4rem; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.03em;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,240,255,0.12), rgba(182,111,255,0.12));
  opacity: 0;
  transition: opacity 0.25s;
}

.nav-link span, .nav-link i { position: relative; z-index: 1; }

.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::before { opacity: 1; }

.nav-link.active {
  background: linear-gradient(120deg, rgba(0,240,255,0.15), rgba(182,111,255,0.15));
  color: var(--neon-blue);
  border: 1px solid var(--border-accent);
  box-shadow: 0 0 20px rgba(0,240,255,0.15), inset 0 0 10px rgba(0,240,255,0.05);
}

.discord-link {
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88,101,242,0.3);
  color: #8fa3ff;
}
.discord-link:hover { background: rgba(88,101,242,0.25); color: white; }
.discord-link::before { background: rgba(88,101,242,0.2); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.title-line { display: block; }

.gradient-text {
  background: linear-gradient(120deg, var(--neon-blue) 0%, var(--neon-purple) 50%, var(--neon-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: shimmer 4s infinite linear;
  filter: drop-shadow(0 0 30px rgba(0,240,255,0.4));
}

@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Space Mono', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(120deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(0,240,255,0.5));
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

/* ── MAIN CONTENT ── */
.main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.content-section { display: none; animation: fadeIn 0.4s ease; }
.content-section.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

.section-header { text-align: center; margin-bottom: 4rem; }

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  background: linear-gradient(120deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* ── MACRO CARDS ── */
.macros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.macro-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.macro-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,240,255,0.04), rgba(182,111,255,0.04));
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.macro-card:hover::after { opacity: 1; }

.card-glow {
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: -1;
  filter: blur(12px);
}

.macro-card:hover .card-glow { opacity: 0.4; }

.macro-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,240,255,0.25);
  box-shadow: 0 20px 50px rgba(0,240,255,0.12), 0 0 0 1px rgba(0,240,255,0.1);
}

.macro-card.featured {
  border-color: rgba(182,111,255,0.3);
  box-shadow: 0 10px 40px rgba(182,111,255,0.12);
}

.featured-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: linear-gradient(120deg, var(--neon-purple), #8844dd);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(182,111,255,0.4);
}

.card-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
  position: relative;
}

.card-logo {
  max-width: 200px; height: auto;
  filter: drop-shadow(0 4px 15px rgba(0,240,255,0.2));
  transition: filter 0.35s;
}

.macro-card:hover .card-logo {
  filter: drop-shadow(0 4px 20px rgba(0,240,255,0.4));
}

.card-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  padding: 0.3rem 0.85rem;
  background: rgba(0,255,153,0.12);
  border: 1px solid rgba(0,255,153,0.35);
  color: var(--success);
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-badge.premium {
  background: rgba(182,111,255,0.12);
  border-color: rgba(182,111,255,0.35);
  color: var(--neon-purple);
}

.card-body { padding: 0 2rem 1.5rem; }

.card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.feature-list i {
  color: var(--neon-blue);
  font-size: 0.8rem;
  filter: drop-shadow(0 0 4px var(--neon-blue));
}

.card-footer {
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: 'Space Mono', monospace;
}

.card-info span { display: flex; align-items: center; gap: 0.4rem; }

/* ── BUTTONS ── */
.btn-download, .btn-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.75rem;
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-download {
  background: linear-gradient(120deg, var(--neon-blue), #0099cc);
  color: #050509;
  flex: 1;
  box-shadow: 0 0 20px rgba(0,240,255,0.25);
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,240,255,0.45);
  filter: brightness(1.1);
}

.btn-download:active { transform: scale(0.97); }

.btn-premium {
  background: linear-gradient(120deg, var(--neon-purple), #8833cc);
  color: white;
  flex: 1;
  box-shadow: 0 0 20px rgba(182,111,255,0.25);
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(182,111,255,0.45);
  filter: brightness(1.1);
}

.btn-premium.full { flex: auto; width: 100%; }

.btn-text, .btn-download i, .btn-premium i { position: relative; z-index: 1; }

.button-group { display: flex; gap: 0.75rem; }

@keyframes clickPulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,240,255,0.7); }
  100% { box-shadow: 0 0 0 30px rgba(0,240,255,0); }
}

.btn-download.clicked { animation: clickPulse 0.5s; }
.btn-premium.clicked  { animation: clickPulse 0.5s; }

/* ── SETUP ── */
.setup-content { margin-top: 0; }

.setup-panel { display: none; }
.setup-panel.active { display: block; animation: fadeIn 0.4s; }

.steps-container { display: flex; flex-direction: column; gap: 1.5rem; }

.step-card {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all 0.25s;
}

.step-card:hover {
  border-color: rgba(0,240,255,0.2);
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0,240,255,0.08);
}

.step-number {
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, var(--neon-blue), var(--neon-purple));
  border-radius: 50%;
  font-family: 'Space Mono', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  color: #050509;
  box-shadow: 0 0 20px rgba(0,240,255,0.35);
}

.step-content h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.6rem;
}

.step-content p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.7; }

.step-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  background: rgba(0,240,255,0.08);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-pill);
  color: var(--neon-blue);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s;
}

.step-link:hover {
  background: var(--neon-blue);
  color: #050509;
  box-shadow: 0 0 20px rgba(0,240,255,0.4);
}

.settings-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.setting-row {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: rgba(0,240,255,0.04);
  border-left: 2px solid var(--neon-blue);
  border-radius: var(--radius-sm);
}

.setting-key { color: var(--text-secondary); font-size: 0.9rem; }
.setting-val { color: var(--neon-blue); font-family: 'Space Mono', monospace; font-size: 0.85rem; font-weight: 700; }

/* ── FAQ ── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.faq-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.faq-card:hover {
  border-color: rgba(0,240,255,0.2);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,240,255,0.08);
}

.faq-card.wide { grid-column: span 2; }

.faq-icon {
  width: 55px; height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, rgba(0,240,255,0.15), rgba(182,111,255,0.15));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  font-size: 1.6rem;
  color: var(--neon-blue);
  margin-bottom: 1.5rem;
}

.faq-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.faq-card p { color: var(--text-secondary); margin-bottom: 1.5rem; }

.faq-video {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.faq-steps {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-steps li {
  counter-increment: step;
  padding-left: 3rem;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 1.9rem; height: 1.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, var(--neon-blue), var(--neon-purple));
  border-radius: 50%;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 0.8rem;
  color: #050509;
}

.faq-note {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  background: rgba(0,240,255,0.06);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  color: var(--neon-blue);
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

/* ── FOOTER ── */
.footer {
  margin-top: 6rem;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: linear-gradient(120deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-brand img {
  width: 36px; height: 36px;
  filter: drop-shadow(0 0 6px var(--neon-blue));
}

.footer-text { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.9rem; }

.footer-social { display: flex; justify-content: center; gap: 1rem; }

.social-link {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(88,101,242,0.15);
  border: 1px solid rgba(88,101,242,0.3);
  border-radius: 50%;
  color: #8fa3ff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.25s;
}

.social-link:hover {
  background: rgba(88,101,242,0.35);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(88,101,242,0.35);
}

/* ── FLOATING DONATE ── */
.floating-donate {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.4rem;
  background: linear-gradient(120deg, var(--neon-purple), #8833cc);
  border: none;
  border-radius: var(--radius-pill);
  color: white;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(182,111,255,0.4);
  transition: all 0.25s;
  animation: float-btn 3s infinite ease-in-out;
}

@keyframes float-btn {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.floating-donate:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(182,111,255,0.6);
}

/* ── MODAL ── */
.donate-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.donate-modal.active { display: flex; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  animation: fadeIn 0.3s;
}

.modal-content {
  position: relative;
  max-width: 580px; width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,240,255,0.08);
  animation: slideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s;
}

.modal-close:hover {
  background: rgba(255,45,122,0.2);
  border-color: rgba(255,45,122,0.4);
  color: var(--neon-pink);
  transform: rotate(90deg);
}

.modal-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  background: linear-gradient(120deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.modal-subtitle { color: var(--text-secondary); margin-bottom: 2rem; font-size: 0.95rem; }

.donate-options { display: flex; flex-direction: column; gap: 0.85rem; }

.donate-option {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.25s;
}

.donate-option:hover {
  background: rgba(0,240,255,0.05);
  border-color: rgba(0,240,255,0.25);
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(0,240,255,0.1);
}

.donate-option.featured {
  border-color: rgba(182,111,255,0.25);
  background: rgba(182,111,255,0.05);
}

.donate-option.featured:hover {
  background: rgba(182,111,255,0.1);
  border-color: rgba(182,111,255,0.4);
  box-shadow: 0 6px 20px rgba(182,111,255,0.15);
}

.option-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,240,255,0.1);
  border: 1px solid rgba(0,240,255,0.2);
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
  color: var(--neon-blue);
}

.donate-option.featured .option-icon {
  background: rgba(182,111,255,0.12);
  border-color: rgba(182,111,255,0.3);
  color: var(--neon-purple);
}

.option-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.option-name { font-weight: 600; font-size: 1rem; }
.option-price {
  font-family: 'Space Mono', monospace;
  color: var(--neon-blue);
  font-weight: 700;
  font-size: 0.95rem;
}
.donate-option.featured .option-price { color: var(--neon-purple); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(0,240,255,0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,240,255,0.4); }

/* ── RESPONSIVE ── */
@media (max-width: 968px) {
  .hero { padding: 6rem 2rem 4rem; }
  .hero-stats { gap: 2rem; }
  .macros-grid { grid-template-columns: 1fr; }
  .faq-card.wide { grid-column: span 1; }
  .step-card { flex-direction: column; gap: 1rem; }
  .floating-donate { bottom: 1rem; right: 1rem; padding: 0.75rem 1.1rem; }
  .floating-donate span { display: none; }
}

@media (max-width: 640px) {
  .navbar { top: 0; }
  .nav-container { flex-direction: column; gap: 0.75rem; }
  .nav-links { width: 100%; justify-content: center; }
  .nav-link { flex: 1; justify-content: center; padding: 0.65rem 0.85rem; }
  .nav-link span { display: none; }
  .hero-title { font-size: 2.5rem; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .settings-showcase { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .modal-content { padding: 1.75rem; }
  .option-info { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}
.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}

@keyframes pulse {
  0%,100%{transform:scale(1)}50%{transform:scale(1.04)}
}
.animate-pulse{animation:pulse 2s infinite}
