* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #050508;
  color: #f0f0ff;
  overflow-x: hidden;
}
#bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

/* ─── Verify Modal ─── */
.verify-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(4,4,12,0.85);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.verify-overlay.active { display: flex; animation: fadeIn 0.3s ease-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes shakeX { 0%,100% { transform: translateX(0); } 20% { transform: translateX(-6px); } 40% { transform: translateX(6px); } 60% { transform: translateX(-4px); } 80% { transform: translateX(4px); } }
.verify-card {
  background: linear-gradient(160deg, rgba(12,12,30,0.96), rgba(4,4,12,0.98));
  border-radius: 24px;
  padding: 44px 32px 32px;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  border: 1px solid rgba(99,102,241,0.12);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 60px rgba(124,58,237,0.08);
  animation: modalIn 0.3s ease-out;
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.92) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.verify-divider { width: 100%; margin: 16px 0 8px; }
.verify-divider span { display: block; height: 1px; background: linear-gradient(90deg, transparent, rgba(99,102,241,0.15), rgba(244,114,182,0.15), transparent); }

/* ─── Nav ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  background: rgba(5,5,8,0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 15px; letter-spacing: 1px; }
.nav-logo strong { font-weight: 700; }
.logo-icon-sm {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #06F, #7C3AED, #FF1493);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #050508;
}
.nav-links { display: flex; gap: 24px; }
.nav-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-premium {
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700 !important;
}
.nav-profile { position: relative; display: flex; align-items: center; }
.nav-profile-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.4);
  transition: all 0.2s;
}
.nav-profile-icon:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(124,58,237,0.2); }
.profile-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 220px;
  background: linear-gradient(160deg, rgba(14,10,32,0.98), rgba(6,4,16,0.98));
  border: 1px solid rgba(168,85,247,0.12);
  border-radius: 14px;
  padding: 8px;
  display: none;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 40px rgba(124,58,237,0.06);
  animation: modalIn 0.2s ease-out;
  z-index: 100;
}
.profile-dropdown.active { display: block; }
.profile-btn {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 10px 14px;
  background: none; border: none; border-radius: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.15s;
  text-align: left;
}
.profile-btn:hover { background: rgba(168,85,247,0.08); color: #fff; }
.profile-btn svg { flex-shrink: 0; opacity: 0.6; }
.profile-btn:hover svg { opacity: 1; }
.profile-discord:hover svg { color: #5865F2; }
.profile-google:hover svg { color: #EA4335; }
.profile-create { border-top: none; font-weight: 600; }
.profile-create:hover { background: rgba(168,85,247,0.12); color: #c4b5fd; }
.profile-divider { height: 1px; background: rgba(255,255,255,0.04); margin: 4px 8px; }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  position: relative;
}
.hero-content { max-width: 720px; position: relative; z-index: 1; }
.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -60%);
  background: radial-gradient(circle, rgba(0,102,255,0.04) 0%, rgba(124,58,237,0.03) 30%, rgba(255,20,147,0.02) 60%, transparent 70%);
  pointer-events: none;
  animation: heroGlow 6s ease-in-out infinite;
}
@keyframes heroGlow { 0%,100% { transform: translate(-50%, -60%) scale(1); opacity: 0.6; } 50% { transform: translate(-50%, -60%) scale(1.2); opacity: 1; } }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(0,102,255,0.08), rgba(124,58,237,0.08));
  border: 1px solid rgba(124,58,237,0.15);
  animation: badgeIn 0.6s 0.05s both, badgePulse 3s 0.6s ease-in-out infinite;
}
@keyframes badgeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes badgePulse { 0%,100% { border-color: rgba(124,58,237,0.15); } 50% { border-color: rgba(168,85,247,0.35); box-shadow: 0 0 24px rgba(124,58,237,0.1); } }
.hero-title {
  font-size: clamp(48px, 10vw, 96px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-line { display: block; }
.hero-line:nth-child(1) { animation: slideUp 0.6s 0.1s both; }
.hero-line:nth-child(2) { animation: slideUp 0.6s 0.25s both; }
.hero-line-sub {
  font-size: clamp(20px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: 0px;
  color: rgba(255,255,255,0.15);
  -webkit-text-fill-color: rgba(255,255,255,0.15);
  background: none;
  animation: slideUp 0.6s 0.4s both;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.gradient-text {
  background: linear-gradient(135deg, #06F, #7C3AED, #FF1493);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradShift 4s ease-in-out infinite;
}
@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 32px;
  animation: slideUp 0.6s 0.5s both;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, #06F, #7C3AED, #FF1493);
  background-size: 200% 200%;
  color: #fff;
  animation: gradShift 4s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(0,102,255,0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(0,102,255,0.35); }
.btn-glow { animation: pulseGlow 2s ease-in-out infinite, gradShift 4s ease-in-out infinite; }
@keyframes pulseGlow { 0%,100% { box-shadow: 0 0 24px rgba(0,102,255,0.2), 0 4px 16px rgba(0,0,0,0.3); } 50% { box-shadow: 0 0 48px rgba(0,102,255,0.35), 0 0 80px rgba(124,58,237,0.15), 0 4px 16px rgba(0,0,0,0.3); } }
.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.08);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); color: #fff; }
.btn-large { padding: 18px 48px; font-size: 17px; }
.hero-stats { display: flex; justify-content: center; gap: 40px; }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num { font-size: 28px; font-weight: 800; background: linear-gradient(135deg, #60A5FA, #A78BFA); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 1px; }

/* ─── Sections ─── */
.section {
  padding: 100px 24px;
  position: relative;
  z-index: 1;
}
.section-dark { background: rgba(255,255,255,0.01); }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #06F, #7C3AED, #FF1493);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 4s ease-in-out infinite;
}
.section-header p { color: rgba(255,255,255,0.35); font-size: 16px; line-height: 1.7; }

/* ─── Features Grid ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.feature-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(124,58,237,0.15);
  box-shadow: 0 8px 32px rgba(124,58,237,0.06);
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.6; }

/* ─── Live Data ─── */
.live-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.course-divider {
  text-align: center;
  padding: 8px 0;
  font-size: 10px;
  color: rgba(168,85,247,0.2);
  letter-spacing: 4px;
  position: relative;
}
.course-divider::before,
.course-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 28px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.08), transparent);
}
.course-divider::before { left: 0; }
.course-divider::after { right: 0; }
.live-card {
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.live-card:hover {
  border-color: rgba(124,58,237,0.25);
  box-shadow: 0 8px 32px rgba(124,58,237,0.12), 0 0 60px rgba(124,58,237,0.04);
  transform: translateY(-2px);
}
.live-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  background: linear-gradient(135deg, #e0e0ff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #A855F7;
  box-shadow: 0 0 8px rgba(168,85,247,0.3);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.live-body { padding: 14px 18px; font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.6; flex: 1; }
.live-body strong {
  background: linear-gradient(135deg, #e0e0ff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  filter: drop-shadow(0 0 6px rgba(168,85,247,0.25));
}

/* ─── Reviews ─── */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 640px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}
.reviews-avg { text-align: center; }
.reviews-stars-big {
  display: block;
  font-size: 28px;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.reviews-score {
  display: block;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #60A5FA, #A78BFA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.reviews-total { display: block; font-size: 12px; color: rgba(255,255,255,0.25); margin-top: 4px; }
.reviews-bars { display: flex; flex-direction: column; gap: 6px; min-width: 200px; }
.reviews-bar-row { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.reviews-bar-label { width: 8px; font-weight: 700; color: rgba(255,255,255,0.3); text-align: right; }
.reviews-bar-track {
  flex: 1; height: 6px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  overflow: hidden;
}
.reviews-bar-fill {
  display: block; height: 100%;
  background: linear-gradient(90deg, #A855F7, #7C3AED);
  border-radius: 4px;
  transition: width 0.6s ease-out;
}
.reviews-bar-count { color: rgba(255,255,255,0.2); font-size: 11px; width: 40px; text-align: right; }
.reviews-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.reviews-track {
  display: inline-flex;
  gap: 16px;
  animation: reviewScroll 80s linear infinite;
}
@keyframes reviewScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.rv-card {
  width: 260px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rv-card:hover { border-color: rgba(124,58,237,0.12); box-shadow: 0 4px 20px rgba(124,58,237,0.04); }
.rv-card-stars { align-items: center; justify-content: center; min-height: 48px; padding: 14px 20px; }
.rv-stars {
  font-size: 16px;
  letter-spacing: 3px;
  color: #A855F7;
}
.rv-star-dim { opacity: 0.2; }
.rv-text {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 10px;
}
.rv-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.rv-avatar {
  width: 26px; height: 26px;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  color: #A855F7;
  flex-shrink: 0;
}
.rv-name {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.3);
}

/* ─── Footer ─── */
.footer {
  padding: 40px 24px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.02);
}
.footer-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo { font-size: 14px; letter-spacing: 1px; font-weight: 700; background: linear-gradient(135deg, #60A5FA, #A78BFA); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.2); text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: rgba(255,255,255,0.5); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.1); }

/* ─── Premium Section ─── */
.premium-grid { display: flex; justify-content: center; gap: 24px; max-width: 860px; margin: 0 auto; align-items: stretch; }
@media (max-width:720px) { .premium-grid { flex-direction: column; align-items: center; } }
.premium-card {
  background: linear-gradient(160deg, rgba(18,12,35,0.98), rgba(8,4,20,0.98));
  border: 1px solid rgba(168,85,247,0.12);
  border-radius: 24px;
  padding: 40px 36px;
  width: 100%;
  box-shadow: 0 0 60px rgba(168,85,247,0.04), 0 32px 80px rgba(0,0,0,0.5);
  position: relative;
  animation: slideUp 0.6s 0.1s both;
}
.premium-card-featured {
  border-color: rgba(168,85,247,0.2);
  box-shadow: 0 0 80px rgba(168,85,247,0.06), 0 0 120px rgba(168,85,247,0.03), 0 32px 80px rgba(0,0,0,0.5);
}
.premium-card-secondary {
  background: linear-gradient(160deg, rgba(14,14,28,0.98), rgba(6,6,18,0.98));
  border: 1px solid rgba(0,200,255,0.1);
  border-radius: 24px;
  padding: 40px 36px;
  width: 100%;
  box-shadow: 0 0 40px rgba(0,200,255,0.03), 0 32px 80px rgba(0,0,0,0.4);
  position: relative;
  animation: slideUp 0.6s 0.2s both;
  display: flex; flex-direction: column;
}
.premium-card-secondary .premium-badge {
  background: linear-gradient(135deg, #00C8FF, #7C3AED);
  box-shadow: 0 0 20px rgba(0,200,255,0.25);
}
.premium-card-secondary .premium-price .currency {
  background: linear-gradient(135deg, #00C8FF, #A855F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.premium-card-secondary .premium-once {
  color: rgba(0,200,255,0.4);
}
.premium-card-secondary .premium-features li strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.premium-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #7C3AED, #A855F7, #FF1493);
  background-size: 200% 200%;
  animation: gradShift 4s ease-in-out infinite;
  color: #fff;
  font-weight: 800; font-size: 12px; padding: 6px 24px; border-radius: 20px;
  letter-spacing: 1.5px; text-transform: uppercase;
  box-shadow: 0 0 20px rgba(124,58,237,0.3);
  white-space: nowrap;
}
.premium-header { text-align: center; margin: 8px 0 28px; }
.premium-price { font-size: 64px; font-weight: 900; line-height: 1; }
.premium-price .currency {
  font-size: 32px; vertical-align: super;
  background: linear-gradient(135deg, #A855F7, #7C3AED, #06F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.premium-once {
  display: block; font-size: 13px; color: rgba(168,85,247,0.4); margin-top: 4px;
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
}
.premium-features { list-style: none; padding: 0; margin: 0 0 28px; }
.premium-features li {
  padding: 12px 0; font-size: 14px; color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.03); line-height: 1.5;
}
.premium-features li:last-child { border-bottom: none; }
.premium-features li strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.premium-pay-btn { width: 100%; justify-content: center; font-size: 16px; padding: 16px; cursor: pointer; border: none; }
.premium-cta-block { margin-top: 8px; }
.premium-alt-btn { width: 100%; padding: 12px; margin-top: 8px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; color: rgba(255,255,255,0.2); font-size: 13px; font-weight: 600; cursor: default; }
.premium-trust { text-align: center; font-size: 12px; color: rgba(255,255,255,0.15); margin-top: 12px; line-height: 1.5; }

/* ─── Payment Modal ─── */
.pay-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4,4,12,0.88);
  backdrop-filter: blur(14px);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.pay-overlay.active { display: flex; animation: fadeIn 0.3s ease-out; }
.pay-card {
  background: linear-gradient(160deg, rgba(14,10,32,0.98), rgba(6,4,16,0.98));
  border: 1px solid rgba(168,85,247,0.1);
  border-radius: 24px;
  padding: 40px 32px 28px;
  width: 100%; max-width: 520px;
  position: relative;
  max-height: 90vh; overflow-y: auto;
  animation: modalIn 0.3s ease-out;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 60px rgba(124,58,237,0.06);
}
.pay-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none;
  color: rgba(255,255,255,0.2); font-size: 24px;
  cursor: pointer; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: all 0.15s;
}
.pay-close:hover { background: rgba(255,255,255,0.04); color: #fff; }
.pay-logo {
  text-align: center; font-size: 48px; margin-bottom: 4px;
  filter: drop-shadow(0 0 20px rgba(124,58,237,0.3));
}
.pay-card h2 { text-align: center; font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.pay-sub { text-align: center; font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.6; margin-bottom: 24px; }
.pay-sub strong { color: #A855F7; }
.pay-crypto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}
.pay-crypto-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 14px 8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 12px; color: rgba(255,255,255,0.4);
}
.pay-crypto-btn:hover { background: rgba(168,85,247,0.04); border-color: rgba(168,85,247,0.15); color: rgba(255,255,255,0.7); }
.pay-crypto-btn.active { background: rgba(168,85,247,0.06); border-color: #A855F7; color: #fff; box-shadow: 0 0 24px rgba(168,85,247,0.06); }
.pay-crypto-btn .crypto-icon { font-size: 24px; }
.pay-crypto-btn .crypto-sym { font-weight: 700; font-size: 13px; }
.pay-crypto-btn .crypto-eqv { font-size: 10px; color: rgba(255,255,255,0.25); }
.pay-address-box {
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(168,85,247,0.06);
  border-radius: 16px;
  padding: 18px 20px;
  animation: slideUp 0.3s ease-out;
}
.pay-address-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.pay-selected-icon { font-size: 28px; }
.pay-selected-name { font-weight: 700; font-size: 16px; flex: 1; }
.pay-eqv { font-size: 14px; color: #A855F7; font-weight: 600; }
.pay-address-row {
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(168,85,247,0.06);
  border-radius: 12px;
  padding: 12px 16px;
}
.pay-address-row code {
  flex: 1; font-size: 13px; color: rgba(255,255,255,0.6);
  word-break: break-all; font-family: 'Inter', monospace;
}
.pay-copy-btn {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(168,85,247,0.15);
  background: rgba(168,85,247,0.06);
  color: #A855F7;
  font-size: 12px; font-weight: 600;
  cursor: pointer; transition: all 0.15s;
}
.pay-copy-btn:hover { background: rgba(168,85,247,0.12); border-color: rgba(168,85,247,0.25); }
.pay-copy-btn.copied { background: rgba(0,200,83,0.1); border-color: rgba(0,200,83,0.2); color: #00E676; }
.pay-network-info { font-size: 12px; color: rgba(255,255,255,0.25); margin-top: 8px; }
.pay-amount-note, .ja-amount-note { font-size: 11px; color: rgba(255,255,255,0.15); margin-top: 8px; line-height: 1.4; }
.pay-note {
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(168,85,247,0.03);
  border: 1px solid rgba(168,85,247,0.06);
  border-radius: 10px;
  font-size: 12px; line-height: 1.6; color: rgba(168,85,247,0.5);
}
.pay-footer {
  display: flex; justify-content: center; gap: 18px;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.03);
  font-size: 11px; color: rgba(255,255,255,0.15);
}
.pay-card::-webkit-scrollbar { width: 4px; }
.pay-card::-webkit-scrollbar-track { background: transparent; }
.pay-card::-webkit-scrollbar-thumb { background: rgba(124,58,237,0.15); border-radius: 4px; }

/* ─── Verify Card Shared ─── */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, #06F, #A855F7, #FF1493);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 3s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(0,102,255,0.2));
}
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #06F, #7C3AED, #FF1493);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  color: #050508;
  -webkit-text-fill-color: #050508;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(0,102,255,0.3), 0 0 60px rgba(124,58,237,0.15);
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.status {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  width: 100%;
}
.status.active { display: flex; animation: statusIn 0.4s ease-out; }
@keyframes statusIn { from { opacity: 0; transform: scale(0.9) translateY(8px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.status h2 { font-size: 20px; font-weight: 700; margin-top: 4px; letter-spacing: 0.5px; }
.status h2.glow-blue { text-shadow: 0 0 20px rgba(0,102,255,0.4); }
.status h2.glow-purple { text-shadow: 0 0 20px rgba(124,58,237,0.4); }
.status h2.glow-green { text-shadow: 0 0 20px rgba(0,200,83,0.4); }
.status h2.glow-red { text-shadow: 0 0 20px rgba(255,23,68,0.4); }
.status p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.6; max-width: 300px; }
.status .small { font-size: 12px; color: rgba(255,255,255,0.25); margin-top: 6px; }
.icon-circle {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  position: relative;
}
.icon-circle::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  opacity: 0;
  animation: pulseRing 2s ease-out infinite;
}
.icon-circle.success { background: rgba(0,200,83,0.1); color: #00E676; font-weight: 700; font-size: 34px; border: 2px solid rgba(0,200,83,0.3); box-shadow: 0 0 30px rgba(0,200,83,0.15); }
.icon-circle.success::after { border: 2px solid rgba(0,200,83,0.15); }
.icon-circle.error { background: rgba(255,23,68,0.1); color: #FF1744; font-weight: 700; font-size: 30px; border: 2px solid rgba(255,23,68,0.3); box-shadow: 0 0 30px rgba(255,23,68,0.15); }
.icon-circle.error::after { border: 2px solid rgba(255,23,68,0.15); }
.icon-circle.pending { background: rgba(124,58,237,0.08); border: 2px solid rgba(124,58,237,0.2); box-shadow: 0 0 30px rgba(124,58,237,0.1); }
.icon-circle.pending::after { border: 2px solid rgba(124,58,237,0.1); }
@keyframes pulseRing { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.5); opacity: 0; } }
.spinner {
  width: 48px; height: 48px;
  border: 3px solid rgba(0,102,255,0.08);
  border-top-color: #06F;
  border-bottom-color: #FF1493;
  border-radius: 50%;
  animation: spin 0.7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  margin-bottom: 8px;
  box-shadow: 0 0 20px rgba(0,102,255,0.1);
}
@keyframes spin { to { transform: rotate(360deg); } }
.user-card {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 12px 20px;
  margin: 6px 0;
  width: 100%;
  max-width: 260px;
  animation: fadeUp 0.4s ease-out;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.user-card .avatar { width: 40px; height: 40px; border-radius: 50%; box-shadow: 0 0 16px rgba(168,85,247,0.2); }
.user-card div { display: flex; flex-direction: column; gap: 1px; }
.user-card strong { font-size: 14px; font-weight: 600; }
.user-card span { font-size: 11px; color: rgba(255,255,255,0.35); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #06F, #7C3AED, #FF1493);
  background-size: 200% 200%;
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  margin-top: 8px;
  transition: transform 0.15s, box-shadow 0.15s;
  animation: gradShift 3s ease-in-out infinite;
  box-shadow: 0 0 24px rgba(0,102,255,0.2), 0 4px 16px rgba(0,0,0,0.3);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(0,102,255,0.35); }
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.5px;
}

/* ─── Join Paywall ─── */
.join-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(4,4,12,0.92);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.join-overlay.active { display: flex; animation: fadeIn 0.3s ease-out; }
.join-card {
  background: linear-gradient(160deg, rgba(14,10,32,0.98), rgba(6,4,16,0.98));
  border: 1px solid rgba(168,85,247,0.12);
  border-radius: 24px;
  padding: 40px 36px 28px;
  width: 100%; max-width: 440px;
  position: relative;
  max-height: 90vh; overflow-y: auto;
  animation: modalIn 0.35s ease-out;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 80px rgba(124,58,237,0.08);
}
.join-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none;
  color: rgba(255,255,255,0.2); font-size: 22px;
  cursor: pointer; width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: all 0.15s;
}
.join-close:hover { background: rgba(255,255,255,0.04); color: #fff; }
.join-brand {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  font-size: 16px; font-weight: 700; letter-spacing: 1.5px;
  background: linear-gradient(135deg, #06F, #A855F7, #FF1493);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 3s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(0,102,255,0.2));
  margin-bottom: 6px;
}
.join-logo {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #06F, #7C3AED, #FF1493);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  color: #050508;
  -webkit-text-fill-color: #050508;
}
.join-divider {
  width: 40px; height: 3px;
  background: linear-gradient(90deg, #06F, #A855F7);
  border-radius: 4px;
  margin: 0 auto 16px;
}
.join-card h2 {
  text-align: center; font-size: 22px; font-weight: 800; margin-bottom: 6px;
}
.join-sub { text-align: center; font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.6; margin-bottom: 20px; }
.join-price-row {
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
  margin-bottom: 20px;
}
.join-currency {
  font-size: 28px; font-weight: 700;
  background: linear-gradient(135deg, #A855F7, #7C3AED, #06F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.join-amount {
  font-size: 56px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, #A855F7, #7C3AED, #06F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(124,58,237,0.15));
}
.join-once {
  font-size: 12px; color: rgba(168,85,247,0.35); text-transform: uppercase;
  letter-spacing: 1px; margin-left: 4px;
}
.join-pay-label {
  text-align: center; font-size: 11px; color: rgba(255,255,255,0.2);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.join-crypto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.join-crypto-btn {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 16px 6px;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s;
  color: rgba(255,255,255,0.4);
}
.join-crypto-btn:hover {
  background: rgba(168,85,247,0.04);
  border-color: rgba(168,85,247,0.15);
  color: rgba(255,255,255,0.7);
  transform: translateY(-1px);
}
.join-crypto-btn.active {
  background: rgba(168,85,247,0.08);
  border-color: #A855F7;
  color: #fff;
  box-shadow: 0 0 24px rgba(168,85,247,0.1);
}
.join-crypto-btn .jc-icon { font-size: 26px; }
.join-crypto-btn .jc-name { font-weight: 700; font-size: 12px; }
.join-crypto-btn .jc-eqv { font-size: 10px; color: rgba(255,255,255,0.2); }
.join-crypto-btn.active .jc-eqv { color: rgba(168,85,247,0.7); }
.join-loading {
  grid-column: 1 / -1; text-align: center; color: rgba(255,255,255,0.2);
  padding: 16px; font-size: 13px;
}
.join-address-box {
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(168,85,247,0.08);
  border-radius: 16px;
  padding: 16px 18px;
  animation: slideUp 0.25s ease-out;
  margin-bottom: 16px;
}
.ja-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.ja-icon { font-size: 22px; }
.ja-name { font-weight: 700; font-size: 14px; flex: 1; }
.ja-eqv { font-size: 13px; color: #A855F7; font-weight: 600; }
.ja-row {
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(168,85,247,0.06);
  border-radius: 10px;
  padding: 10px 14px;
}
.ja-row code {
  flex: 1; font-size: 12px; color: rgba(255,255,255,0.5);
  word-break: break-all; font-family: 'Inter', monospace;
}
.ja-copy {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(168,85,247,0.15);
  background: rgba(168,85,247,0.06);
  color: #A855F7;
  font-size: 11px; font-weight: 600;
  cursor: pointer; transition: all 0.15s;
}
.ja-copy:hover { background: rgba(168,85,247,0.12); border-color: rgba(168,85,247,0.25); }
.ja-copy.copied { background: rgba(0,200,83,0.1); border-color: rgba(0,200,83,0.2); color: #00E676; }
.ja-network { font-size: 11px; color: rgba(255,255,255,0.2); margin-top: 8px; }
.ja-amount-note { font-size: 11px; color: rgba(255,255,255,0.15); margin-top: 8px; line-height: 1.4; }
.join-cta {
  display: inline-flex; justify-content: center; align-items: center;
  width: 100%; padding: 16px; font-size: 15px;
  border: none; cursor: pointer; text-decoration: none;
  margin-bottom: 12px;
  animation: fadeIn 0.3s ease-out;
}
.pay-sent-btn, .join-sent-btn {
  display: none; width: 100%; padding: 14px;
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  color: #fff; font-size: 14px; font-weight: 700;
  border: none; border-radius: 14px;
  cursor: pointer; transition: all 0.2s;
  margin-bottom: 12px;
}
.pay-sent-btn:hover, .join-sent-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 32px rgba(124,58,237,0.25); }
.pay-tx-section, .join-tx-section {
  display: none;
  animation: slideUp 0.25s ease-out;
  margin-bottom: 14px;
}
.pay-tx-row, .join-tx-row {
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(168,85,247,0.1);
  border-radius: 12px;
  padding: 4px;
}
.pay-tx-row input, .join-tx-row input {
  flex: 1; padding: 12px 14px;
  background: transparent; border: none;
  color: #fff; font-size: 13px; font-family: 'Inter', monospace;
  outline: none;
}
.pay-tx-row input::placeholder, .join-tx-row input::placeholder { color: rgba(255,255,255,0.15); }
.pay-tx-submit, .join-tx-submit {
  padding: 10px 18px;
  background: linear-gradient(135deg, #7C3AED, #06F);
  border: none; border-radius: 10px;
  color: #fff; font-size: 12px; font-weight: 700;
  cursor: pointer; transition: all 0.15s;
}
.pay-tx-submit:hover, .join-tx-submit:hover { filter: brightness(1.15); }
.pay-tx-guide, .join-tx-guide {
  display: block; margin-top: 8px;
  font-size: 11px; color: rgba(168,85,247,0.4);
  cursor: pointer; text-align: center;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.15s;
}
.pay-tx-guide:hover, .join-tx-guide:hover { color: rgba(168,85,247,0.7); }
.pay-waiting, .join-waiting {
  display: none;
  flex-direction: column; align-items: center; gap: 12px;
  padding: 20px; margin-bottom: 12px;
  animation: fadeIn 0.35s ease-out;
}
.pay-waiting-spinner, .join-waiting-spinner {
  width: 36px; height: 36px;
  border: 3px solid rgba(168,85,247,0.1);
  border-top-color: #A855F7;
  border-radius: 50%;
  animation: jspin 0.8s linear infinite;
}
@keyframes jspin { to { transform: rotate(360deg); } }
.pay-waiting-text, .join-waiting-text {
  font-size: 13px; color: rgba(255,255,255,0.4); text-align: center; line-height: 1.5;
}
.pay-discord-step, .join-discord-step {
  animation: slideUp 0.3s ease-out;
  margin-bottom: 14px;
}
.pay-dc-label, .jd-label {
  font-size: 12px; color: rgba(255,255,255,0.3); text-align: center;
  margin-bottom: 10px; line-height: 1.5;
}
.pay-dc-row, .jd-row {
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(168,85,247,0.1);
  border-radius: 12px;
  padding: 4px;
}
.pay-dc-row input, .jd-row input {
  flex: 1; padding: 12px 14px;
  background: transparent; border: none;
  color: #fff; font-size: 13px; font-family: 'Inter', sans-serif;
  outline: none;
}
.pay-dc-row input::placeholder, .jd-row input::placeholder { color: rgba(255,255,255,0.15); }
.pay-dc-submit, .jd-submit {
  padding: 10px 18px;
  background: linear-gradient(135deg, #7C3AED, #06F);
  border: none; border-radius: 10px;
  color: #fff; font-size: 12px; font-weight: 700;
  cursor: pointer; transition: all 0.15s;
}
.pay-dc-submit:hover, .jd-submit:hover { filter: brightness(1.15); }
.pay-success, .join-success {
  animation: slideUp 0.35s ease-out;
  text-align: center;
  margin-bottom: 14px;
}
.pay-success-icon, .join-success-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #00E676, #00C853);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; color: #050508;
  margin: 0 auto 12px;
}
.pay-success-text, .join-success-text {
  font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.6;
  margin-bottom: 16px;
}
.pay-success-cta { display: inline-flex; }
.join-guide-overlay {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(4,4,12,0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.join-guide-overlay.active { display: flex; }
.join-guide-card {
  background: linear-gradient(160deg, rgba(14,10,32,0.98), rgba(6,4,16,0.98));
  border: 1px solid rgba(168,85,247,0.12);
  border-radius: 20px;
  padding: 32px 28px;
  width: 100%; max-width: 400px;
  position: relative;
  animation: modalIn 0.3s ease-out;
}
.join-guide-card h3 {
  font-size: 16px; margin-bottom: 4px;
  background: linear-gradient(135deg, #A855F7, #06F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.join-guide-coin {
  font-size: 12px; color: rgba(255,255,255,0.25); margin-bottom: 16px;
}
.join-guide-steps {
  list-style: none; padding: 0; margin: 0 0 20px;
}
.join-guide-steps li {
  font-size: 12px; color: rgba(255,255,255,0.45);
  padding: 8px 0 8px 22px;
  position: relative; line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.join-guide-steps li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 6px; height: 6px;
  background: #A855F7; border-radius: 50%;
  opacity: 0.4;
}
.join-guide-close {
  display: block; width: 100%; padding: 12px;
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.12);
  border-radius: 12px;
  color: #A855F7; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.15s;
  text-align: center;
}
.join-guide-close:hover { background: rgba(168,85,247,0.15); }
.join-footer {
  display: flex; justify-content: center; gap: 16px;
  font-size: 11px; color: rgba(255,255,255,0.12);
}
.join-card::-webkit-scrollbar { width: 4px; }
.join-card::-webkit-scrollbar-track { background: transparent; }
.join-card::-webkit-scrollbar-thumb { background: rgba(124,58,237,0.15); border-radius: 4px; }

@media (max-width: 1000px) {
  .live-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nav { padding: 12px 16px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 12px; }
  .hero-title { font-size: 40px; }
  .hero-sub { font-size: 16px; }
  .hero-stats { gap: 20px; }
  .section { padding: 60px 16px; }
  .section-header h2 { font-size: 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .live-grid { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; text-align: center; }
  .reviews-summary { gap: 28px; }
  .reviews-score { font-size: 34px; }
  .rv-card { width: 220px; padding: 14px 16px; }
}

/* ─── Market Quiz ─── */
.quiz-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(4,4,12,0.92);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.quiz-overlay.active { display: flex; animation: fadeIn 0.3s ease-out; }
.quiz-card {
  background: linear-gradient(160deg, rgba(14,10,32,0.98), rgba(6,4,16,0.98));
  border: 1px solid rgba(168,85,247,0.12);
  border-radius: 24px;
  padding: 36px 32px 28px;
  width: 100%; max-width: 480px;
  position: relative;
  animation: modalIn 0.35s ease-out;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 80px rgba(124,58,237,0.08);
}
.quiz-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none;
  color: rgba(255,255,255,0.2); font-size: 22px;
  cursor: pointer; width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: all 0.15s;
}
.quiz-close:hover { background: rgba(255,255,255,0.04); color: #fff; }
.quiz-progress {
  height: 3px; background: rgba(255,255,255,0.04);
  border-radius: 4px; margin-bottom: 24px; overflow: hidden;
}
.quiz-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #A855F7, #06F);
  border-radius: 4px;
  transition: width 0.4s ease-out;
}
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeIn 0.3s ease-out; }
.quiz-question {
  font-size: 18px; font-weight: 700; margin-bottom: 4px;
  background: linear-gradient(135deg, #A855F7, #06F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.quiz-hint {
  font-size: 13px; color: rgba(255,255,255,0.25); margin-bottom: 20px;
}
.quiz-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.quiz-opt {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}
.quiz-opt:hover {
  background: rgba(168,85,247,0.04);
  border-color: rgba(168,85,247,0.15);
  color: rgba(255,255,255,0.8);
}
.quiz-opt.selected {
  background: rgba(168,85,247,0.08);
  border-color: #A855F7;
  color: #fff;
  box-shadow: 0 0 24px rgba(168,85,247,0.08);
}
.quiz-opt-icon { font-size: 20px; flex-shrink: 0; }
.quiz-opt-label { font-weight: 600; }
.quiz-opt-desc { font-size: 11px; color: rgba(255,255,255,0.2); margin-top: 2px; }
.quiz-opt.selected .quiz-opt-desc { color: rgba(168,85,247,0.5); }
.quiz-nav {
  display: flex; gap: 10px;
}
.quiz-nav button {
  flex: 1; padding: 12px;
  border: none; border-radius: 12px;
  font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all 0.15s;
}
.quiz-back {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.4);
}
.quiz-back:hover { background: rgba(255,255,255,0.08); color: #fff; }
.quiz-next {
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  color: #fff;
}
.quiz-next:hover { filter: brightness(1.1); }
.quiz-next:disabled { opacity: 0.3; cursor: default; filter: none; }
.quiz-result {
  display: none;
  animation: fadeIn 0.4s ease-out;
  text-align: center;
}
.quiz-result.active { display: block; }
.quiz-result-icon { font-size: 48px; margin-bottom: 8px; }
.quiz-result-title {
  font-size: 22px; font-weight: 800; margin-bottom: 4px;
  background: linear-gradient(135deg, #A855F7, #06F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.quiz-result-desc {
  font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.6;
  margin-bottom: 20px;
}
.quiz-result-actions { display: flex; flex-direction: column; gap: 8px; }
.quiz-result-actions a {
  display: block; padding: 14px;
  border-radius: 14px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: all 0.15s;
}
.quiz-start-course {
  background: linear-gradient(135deg, #06F, #7C3AED);
  color: #fff;
}
.quiz-start-course:hover { transform: translateY(-1px); box-shadow: 0 8px 32px rgba(0,102,255,0.2); }
.quiz-try-again {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
}
.quiz-try-again:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ─── Setup Section ─── */
#setup { scroll-margin-top: 60px; }
.setup-steps {
  max-width: 640px;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.setup-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 24px;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.setup-step:hover {
  border-color: rgba(124,58,237,0.1);
  box-shadow: 0 4px 24px rgba(124,58,237,0.03);
}
.setup-num {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.setup-num-alt {
  background: linear-gradient(135deg, #00C8FF, #7C3AED);
}
.setup-divider {
  max-width: 640px;
  margin: 0 auto 12px;
  text-align: center;
  position: relative;
}
.setup-divider::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: rgba(255,255,255,0.04);
}
.setup-divider span {
  position: relative; z-index: 1;
  background: #0a0a12;
  padding: 0 16px;
  font-size: 12px; color: rgba(255,255,255,0.15);
  text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
}
.setup-content h3 {
  font-size: 15px; font-weight: 700; margin-bottom: 4px;
  color: rgba(255,255,255,0.85);
}
.setup-content p {
  font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.5;
}
.setup-mobile {
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 24px;
  background: rgba(168,85,247,0.03);
  border: 1px solid rgba(168,85,247,0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.setup-mobile-icon { font-size: 32px; flex-shrink: 0; }
.setup-mobile-text {
  font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.5;
}
.setup-mobile-text strong {
  color: rgba(168,85,247,0.7);
  font-weight: 600;
}
