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

:root {
  /* Core Colors */
  --bg-color: #03030a;
  --panel-bg: #0a0a16;
  --panel-bg-hover: #121222;
  --text-main: #ffffff;
  --text-muted: #a0a0b0;
  
  /* Primary & Accent */
  --primary: #6c5ce7;
  --primary-light: #a29bfe;
  --accent: #00cec9;
  
  /* Tier Colors */
  --tier-basic-1: #7f8c8d;
  --tier-basic-2: #95a5a6;
  --tier-mid-1: #0984e3;
  --tier-mid-2: #00cec9;
  --tier-high-1: #6c5ce7;
  --tier-high-2: #a29bfe;
  --tier-pro-1: #e67e22;
  --tier-pro-2: #f1c40f;
  
  /* Status Colors */
  --success: #00b894;
  --error: #d63031;
  --discord: #5865F2;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-bg-hover: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-light: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET & BASE ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  animation: fadeIn 1s ease-in-out forwards;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: var(--panel-bg-hover);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--glass-border-light);
}

/* ==================== LOADING SCREEN ==================== */
#loading-screen, .loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-color);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.loader-logo {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: float 3s ease-in-out infinite;
}

.loader-bar {
  width: 200px;
  height: 4px;
  background: var(--glass-bg);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loader-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  animation: fillBar 2s ease-in-out forwards;
}

.loader-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: pulseOpacity 2s infinite;
}

/* ==================== PARTICLES CANVAS ==================== */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}

/* ==================== NAVBAR ==================== */
#navbar, .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 1000;
  transition: var(--transition-normal);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(3, 3, 10, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.logo-text {
  background: linear-gradient(135deg, #fff, var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-dot {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  margin: 0 auto;
}

.nav-link {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-normal);
}

.nav-btn:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-light);
  transform: translateY(-2px);
}

.btn-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

#mobile-toggle, .mobile-toggle {
  display: none;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--text-main);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.mobile-toggle span:nth-child(1) { top: 0px; }
.mobile-toggle span:nth-child(2) { top: 11px; }
.mobile-toggle span:nth-child(3) { top: 22px; }

.mobile-toggle.active span:nth-child(1) {
  top: 11px;
  transform: rotate(135deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.mobile-toggle.active span:nth-child(3) {
  top: 11px;
  transform: rotate(-135deg);
}

/* ==================== BUTTONS ==================== */
.btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

.btn-secondary {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-light);
  transform: translateY(-2px);
}

/* ==================== HERO SECTION ==================== */
#home, .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
  z-index: 1;
}

.hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(108,92,231,0.15) 0%, rgba(0,206,201,0.05) 50%, rgba(3,3,10,0) 70%);
  filter: blur(60px);
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--success);
  box-shadow: 0 0 10px var(--success);
  animation: pulse 2s infinite;
}

.pulse-dot-sm {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--accent), var(--primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 5s ease infinite;
}

#hero-subtitle, .hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  border-radius: 16px;
  border: 1px solid var(--glass-border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
}

.trust-icon {
  color: var(--primary-light);
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--glass-border-light);
}

/* ==================== STATS BAR ==================== */
.stats-bar {
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(10, 10, 22, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 3rem 2rem;
  position: relative;
  z-index: 2;
}

.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1.5rem;
  transition: var(--transition-normal);
}

.stat-item:hover .stat-icon-wrap {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(108, 92, 231, 0.4);
}

.stat-icon {
  width: 24px;
  height: 24px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==================== SECTIONS GENERAL ==================== */
.section {
  padding: 6rem 2rem;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.section-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: rgba(108, 92, 231, 0.1);
  color: var(--primary-light);
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid rgba(108, 92, 231, 0.2);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ==================== HOW IT WORKS ==================== */
#how-it-works, .how-it-works {
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--panel-bg) 100%);
}

.steps-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.step-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.step-card:hover {
  transform: translateY(-10px);
  background: var(--glass-bg-hover);
  border-color: var(--primary-light);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.step-number {
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
  transition: var(--transition-normal);
}

.step-card:hover .step-number {
  color: rgba(108, 92, 231, 0.05);
}

.step-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 206, 201, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 2rem;
  border: 1px solid rgba(108, 92, 231, 0.2);
  z-index: 1;
}

.step-icon {
  width: 32px;
  height: 32px;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  z-index: 1;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  z-index: 1;
}

.step-connector {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -24px;
  color: var(--glass-border-light);
  z-index: 2;
  width: 48px;
  display: flex;
  justify-content: center;
}

.connector-icon {
  width: 24px;
  height: 24px;
}

.step-card:nth-child(1) .step-connector { left: auto; right: -24px; }
.step-card:nth-child(2) .step-connector { left: auto; right: -24px; }

/* ==================== WALLETS SECTION ==================== */
#wallets, .wallets-section {
  position: relative;
  background: var(--bg-color);
}

.wallets-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.tier-label {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.tier-name {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.tier-name.tier-basic { color: var(--tier-basic-2); }
.tier-name.tier-mid { color: var(--tier-mid-2); }
.tier-name.tier-high { color: var(--tier-high-2); }
.tier-name.tier-pro { color: var(--tier-pro-2); }
.tier-name.tier-ultimate {
  background: linear-gradient(90deg, #ff9a9e, #fecfef, #a1c4fd, #c2e9fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 3s ease infinite;
  background-size: 200% auto;
}

.tier-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--glass-border-light), transparent);
}

.wallets-grid, .wallets-grid-2, .wallets-grid-3 {
  display: grid;
  gap: 2rem;
}

.wallets-grid-2 { grid-template-columns: repeat(2, 1fr); }
.wallets-grid-3 { grid-template-columns: repeat(3, 1fr); }

.wallet-card {
  background: var(--panel-bg);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--transition-normal);
  border: 1px solid var(--glass-border);
  z-index: 1;
}

.wallet-card:hover {
  transform: translateY(-5px);
  background: var(--panel-bg-hover);
}

/* Tier Specific Styles */
.wallet-card.tier-basic {
  border-color: rgba(149, 165, 166, 0.3);
}
.wallet-card.tier-basic:hover { border-color: var(--tier-basic-2); box-shadow: 0 10px 30px rgba(149, 165, 166, 0.1); }
.wallet-card.tier-basic .badge-basic { background: rgba(149, 165, 166, 0.1); color: var(--tier-basic-2); border: 1px solid rgba(149, 165, 166, 0.3); }
.wallet-card.tier-basic .potential-fill { background: var(--tier-basic-2); }
.wallet-card.tier-basic .feature-check { color: var(--tier-basic-2); }

.wallet-card.tier-mid {
  border-color: rgba(0, 206, 201, 0.3);
}
.wallet-card.tier-mid:hover { border-color: var(--tier-mid-2); box-shadow: 0 10px 30px rgba(0, 206, 201, 0.15); }
.wallet-card.tier-mid .badge-mid { background: rgba(0, 206, 201, 0.1); color: var(--tier-mid-2); border: 1px solid rgba(0, 206, 201, 0.3); }
.wallet-card.tier-mid .potential-fill { background: linear-gradient(90deg, var(--tier-mid-1), var(--tier-mid-2)); }
.wallet-card.tier-mid .feature-check { color: var(--tier-mid-2); }

.wallet-card.tier-high {
  border-color: rgba(162, 155, 254, 0.3);
}
.wallet-card.tier-high:hover { border-color: var(--tier-high-2); box-shadow: 0 10px 30px rgba(162, 155, 254, 0.2); }
.wallet-card.tier-high .badge-high { background: rgba(108, 92, 231, 0.1); color: var(--tier-high-2); border: 1px solid rgba(108, 92, 231, 0.3); }
.wallet-card.tier-high .potential-fill { background: linear-gradient(90deg, var(--tier-high-1), var(--tier-high-2)); }
.wallet-card.tier-high .feature-check { color: var(--tier-high-2); }

.wallet-card.tier-pro {
  border-color: rgba(241, 196, 15, 0.3);
}
.wallet-card.tier-pro:hover { border-color: var(--tier-pro-2); box-shadow: 0 10px 30px rgba(241, 196, 15, 0.15); }
.wallet-card.tier-pro .badge-pro { background: rgba(241, 196, 15, 0.1); color: var(--tier-pro-2); border: 1px solid rgba(241, 196, 15, 0.3); }
.wallet-card.tier-pro .potential-fill { background: linear-gradient(90deg, var(--tier-pro-1), var(--tier-pro-2)); }
.wallet-card.tier-pro .feature-check { color: var(--tier-pro-2); }

.wallet-card.tier-ultimate, .wallet-card.tier-infinity {
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.wallet-card.tier-ultimate::before, .wallet-card.tier-infinity::before {
  content: '';
  position: absolute;
  top: -1px; right: -1px; bottom: -1px; left: -1px;
  background: linear-gradient(90deg, #ff9a9e, #fecfef, #a1c4fd, #c2e9fb);
  z-index: -1;
  border-radius: 25px;
  background-size: 200% auto;
  animation: gradient-shift 3s ease infinite;
}
.wallet-card.tier-ultimate .badge-ultimate { 
  background: rgba(255,255,255,0.1); 
  color: #fff; 
  border: 1px solid rgba(255,255,255,0.3); 
}
.wallet-card.tier-ultimate .potential-fill, .potential-bar-ultimate .potential-fill { 
  background: linear-gradient(90deg, #ff9a9e, #fecfef, #a1c4fd, #c2e9fb);
  background-size: 200% auto;
  animation: gradient-shift 3s ease infinite;
}
.wallet-card.tier-ultimate .feature-check { color: #fecfef; }

/* Effects & Badges */
.card-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
  transition: var(--transition-normal);
}
.wallet-card:hover .card-glow { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
.wallet-card.tier-basic .card-glow { background: radial-gradient(circle, rgba(149,165,166,0.1) 0%, transparent 70%); }
.wallet-card.tier-mid .card-glow { background: radial-gradient(circle, rgba(0,206,201,0.1) 0%, transparent 70%); }
.wallet-card.tier-high .card-glow { background: radial-gradient(circle, rgba(108,92,231,0.15) 0%, transparent 70%); }
.wallet-card.tier-pro .card-glow { background: radial-gradient(circle, rgba(241,196,15,0.1) 0%, transparent 70%); }

.card-glow-ultimate {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(161, 196, 253, 0.2) 0%, transparent 70%);
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
}

.card-shimmer {
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3s infinite;
  pointer-events: none;
  z-index: 2;
}

.card-popular, .card-popular-ultimate {
  position: absolute;
  top: 0; right: 20px;
  transform: translateY(-50%);
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}
.card-popular {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 10px rgba(108, 92, 231, 0.3);
}
.card-popular-ultimate {
  background: linear-gradient(90deg, #ff9a9e, #a1c4fd);
  color: #03030a;
  box-shadow: 0 4px 15px rgba(161, 196, 253, 0.4);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.wallet-tier-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 184, 148, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(0, 184, 148, 0.2);
}

.stock-text {
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
}

.wallet-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 1rem;
}

.wallet-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-currency {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 600;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1px;
}

.wallet-potential {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.potential-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.potential-bar {
  width: 100%;
  height: 6px;
  background: var(--glass-bg);
  border-radius: 3px;
  overflow: hidden;
}

.potential-fill {
  height: 100%;
  border-radius: 3px;
}

.wallet-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0;
  flex: 1;
}

.wallet-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.feature-check {
  font-weight: 900;
}

.btn-card {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: var(--transition-normal);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  margin-top: auto;
}

.btn-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-light);
}

.btn-ultimate {
  background: linear-gradient(90deg, #ff9a9e, #a1c4fd);
  color: #03030a;
  border: none;
}
.btn-ultimate:hover {
  box-shadow: 0 5px 20px rgba(161, 196, 253, 0.4);
  transform: translateY(-2px);
}

.wallet-card.out-of-stock {
  opacity: 0.6;
  filter: grayscale(0.5);
}
.wallet-card.out-of-stock:hover {
  transform: none;
  opacity: 0.7;
}
.wallet-card.out-of-stock .stock-badge {
  background: rgba(214, 48, 49, 0.1);
  border-color: rgba(214, 48, 49, 0.2);
}
.wallet-card.out-of-stock .pulse-dot-sm {
  background-color: var(--error);
  box-shadow: 0 0 8px var(--error);
}
.wallet-card.out-of-stock .stock-text { color: var(--error); }
.wallet-card.out-of-stock .btn-card {
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  cursor: not-allowed;
}

/* Specific Stock ID IDs (just for completeness if JS interacts) */
#stock-basic, #stock-premium, #stock-lite, #stock-core, #stock-prime, #stock-elite, #stock-pro, #stock-legacy, #stock-x, #stock-phantom, #stock-infinity {}

/* ==================== FAQ SECTION ==================== */
#faq, .faq-section {
  background: var(--panel-bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  background: var(--glass-bg-hover);
}

.faq-item.active {
  background: var(--glass-bg-hover);
  border-color: var(--primary-light);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--primary-light);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  padding: 0 2rem 1.5rem 2rem;
  max-height: 500px;
}

/* ==================== DISCORD SECTION ==================== */
.discord-section {
  padding: 6rem 2rem;
  position: relative;
}

.discord-card {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(88, 101, 242, 0.05);
  border: 1px solid rgba(88, 101, 242, 0.2);
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  align-items: center;
}

.discord-bg-effects {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.discord-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.discord-orb-1 {
  width: 300px; height: 300px;
  background: rgba(88, 101, 242, 0.2);
  top: -100px; left: -100px;
}
.discord-orb-2 {
  width: 250px; height: 250px;
  background: rgba(88, 101, 242, 0.15);
  bottom: -50px; right: -50px;
}

.discord-banner-wrap {
  position: relative;
  z-index: 1;
  height: 100%;
}

.discord-banner-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.8;
  border-right: 1px solid rgba(88, 101, 242, 0.2);
  background: rgba(0, 0, 0, 0.2);
}

.discord-info {
  padding: 3rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.discord-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--discord);
}

.discord-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.discord-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.discord-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-main);
}

.discord-stat-icon {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.discord-stat:nth-child(1) .discord-stat-icon { background: #3ba55c; }
.discord-stat:nth-child(2) .discord-stat-icon { background: #747f8d; }

.btn-discord {
  background: var(--discord);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  transition: var(--transition-normal);
  align-self: flex-start;
}
.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(88, 101, 242, 0.4);
}

.discord-icon {
  width: 24px; height: 24px;
  fill: currentColor;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--bg-color);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-tagline {
  color: var(--text-muted);
  max-width: 400px;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition-fast);
  font-weight: 500;
}
.footer-links a:hover {
  color: var(--text-main);
}

.footer-bottom {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-disclaimer {
  color: var(--text-muted);
  font-size: 0.8rem;
  max-width: 800px;
}

/* ==================== ANIMATIONS ==================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes floatParticle {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(20px); opacity: 0; }
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0, 184, 148, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 184, 148, 0); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

@keyframes fillBar {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes pulseOpacity {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
  .wallets-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .step-card:nth-child(2) .step-connector { display: none; }
  .step-card:nth-child(3) { grid-column: 1 / -1; max-width: 500px; margin: 0 auto; width: 100%; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--panel-bg);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    overflow: hidden;
    transition: var(--transition-normal);
    border-bottom: 1px solid var(--glass-border);
  }
  
  .nav-links.active {
    height: calc(100vh - 72px);
    padding: 2rem 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-connector {
    display: none;
  }
  .step-card:nth-child(3) { grid-column: auto; }
  
  .wallets-grid-2, .wallets-grid-3 {
    grid-template-columns: 1fr;
  }
  
  .discord-card {
    grid-template-columns: 1fr;
  }
  .discord-banner-wrap {
    min-height: 200px;
  }
  .discord-banner-img {
    border-right: none;
    border-bottom: 1px solid rgba(88, 101, 242, 0.2);
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .section {
    padding: 4rem 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .wallet-card {
    padding: 1.5rem;
  }
  
  .faq-question {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  .discord-info {
    padding: 2rem 1.5rem;
  }
  
  .discord-title {
    font-size: 2rem;
  }
}

/* ==================== CUSTOM BUILDER ==================== */
.custom-wallet-section { background: var(--bg-color); }
.custom-builder {
  max-width: 1000px;
  margin: 0 auto;
}
.builder-card {
  background: var(--panel-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.builder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
.builder-controls {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.builder-title, .preview-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.builder-title-icon { color: var(--primary-light); }
.control-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.control-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-main);
}
.control-icon { width: 18px; height: 18px; color: var(--text-muted); }
.control-hint { font-size: 0.8rem; color: var(--text-muted); font-weight: normal; }
.custom-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}
.custom-input:focus {
  border-color: var(--primary);
  background: var(--glass-bg-hover);
}
.slider-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.custom-slider {
  flex: 1;
  -webkit-appearance: none;
  height: 6px;
  background: var(--glass-bg);
  border-radius: 3px;
  outline: none;
}
.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  transition: 0.2s;
}
.custom-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.slider-value {
  font-weight: 700;
  font-size: 1.1rem;
  min-width: 80px;
  text-align: right;
}
.slider-range {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.dual-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dual-slider-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mini-label { font-size: 0.9rem; font-weight: 500; width: 40px; }
.mini-value { font-weight: 700; min-width: 50px; text-align: right; }
.toggle-options {
  display: flex;
  gap: 1rem;
}
.toggle-btn {
  flex: 1;
  padding: 0.75rem;
  border-radius: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-weight: 600;
  transition: var(--transition-normal);
}
.toggle-btn.active {
  background: rgba(108, 92, 231, 0.2);
  border-color: var(--primary);
  color: var(--text-main);
}
.control-desc { font-size: 0.85rem; color: var(--text-muted); }

.builder-preview {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.preview-card {
  background: rgba(3, 3, 10, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.preview-header { display: flex; justify-content: space-between; align-items: center; }
.preview-badge {
  background: linear-gradient(90deg, #ff9a9e, #a1c4fd);
  color: #000;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.preview-name { font-size: 1.5rem; font-weight: 800; }
.preview-price { display: flex; align-items: baseline; gap: 0.25rem; }
.preview-stats { display: flex; flex-direction: column; gap: 0.5rem; margin: 1rem 0; }
.preview-stat { display: flex; justify-content: space-between; font-size: 0.95rem; }
.preview-stat-label { color: var(--text-muted); }
.preview-stat-value { font-weight: 600; }
.preview-highlight { color: var(--success); }
.btn-generate {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  width: 100%;
}
.generated-code-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  animation: fadeIn 0.5s ease;
}
.generated-code-label { font-size: 0.9rem; color: var(--primary-light); font-weight: 600; margin-bottom: 0.5rem; }
.generated-code { font-family: 'JetBrains Mono', monospace; font-size: 1.5rem; font-weight: 800; letter-spacing: 2px; margin-bottom: 1rem; user-select: all; }
.generated-code-info { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.btn-copy { background: var(--glass-bg); border: 1px solid var(--glass-border); padding: 0.5rem 1rem; border-radius: 6px; }

@media (max-width: 768px) {
  .builder-grid { grid-template-columns: 1fr; gap: 2rem; }
  .builder-card { padding: 1.5rem; }
}
