/* ═══════════════════════════════════════════════════════════════
   MaysenDAO — Frontend CSS
   Dark Glassmorphism Theme
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg-primary:    #06060e;
  --bg-secondary:  #0c0c1a;
  --glass-bg:      rgba(255, 255, 255, 0.03);
  --glass-border:  rgba(255, 255, 255, 0.08);
  --glass-hover:   rgba(255, 255, 255, 0.06);
  --accent-purple: #8b5cf6;
  --accent-blue:   #3b82f6;
  --accent-cyan:   #06b6d4;
  --accent-pink:   #d946ef;
  --accent-green:  #10b981;
  --accent-yellow: #f59e0b;
  --accent-red:    #ef4444;
  --gradient-main: linear-gradient(135deg, #8b5cf6, #3b82f6, #06b6d4);
  --gradient-glow: linear-gradient(135deg, #8b5cf6 0%, #d946ef 50%, #3b82f6 100%);
  --gradient-card: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(59,130,246,0.05));
  --text-primary:  #f0f0ff;
  --text-secondary: rgba(240, 240, 255, 0.6);
  --text-muted:    rgba(240, 240, 255, 0.35);
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-display: 'Outfit', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-purple: 0 8px 32px rgba(139, 92, 246, 0.25);
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-display);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-purple); border-radius: 3px; }

/* ── Background Effects ───────────────────────────────────────── */
.bg-mesh {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(139,92,246,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 80%, rgba(59,130,246,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(6,182,212,0.05) 0%, transparent 60%);
}
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(139,92,246,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
#particles {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; width: 100% !important; height: 100% !important;
}
.floating-orb {
  position: fixed; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0;
  animation: orbFloat 20s ease-in-out infinite;
}
.orb-1 { width: 400px; height: 400px; background: rgba(139,92,246,0.15); top: 10%; left: -5%; }
.orb-2 { width: 300px; height: 300px; background: rgba(59,130,246,0.12); bottom: 20%; right: -5%; animation-delay: -7s; }
.orb-3 { width: 250px; height: 250px; background: rgba(217,70,239,0.08); top: 50%; left: 40%; animation-delay: -14s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px, -40px) scale(1.1); }
  66%  { transform: translate(-20px, 30px) scale(0.9); }
}

/* ── Utilities ────────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.section { padding: 100px 0; position: relative; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 3px;
  color: var(--accent-purple); margin-bottom: 16px;
  background: rgba(139,92,246,0.08); padding: 6px 16px; border-radius: 100px;
  border: 1px solid rgba(139,92,246,0.15);
}
.section-title {
  font-size: clamp(32px, 5vw, 56px); font-weight: 800; line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -1px;
}
.gradient-text {
  background: var(--gradient-main); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.section-desc { font-size: 18px; color: var(--text-secondary); max-width: 620px; line-height: 1.7; }
.glass-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); transition: var(--transition);
}
.glass-card:hover { background: var(--glass-hover); border-color: rgba(139,92,246,0.2); transform: translateY(-2px); }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
  border-radius: var(--radius-sm); font-family: var(--font-display); font-weight: 600;
  font-size: 15px; cursor: pointer; border: none; transition: var(--transition);
  text-decoration: none; position: relative; overflow: hidden; white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-main); color: #fff;
  box-shadow: 0 4px 20px rgba(139,92,246,0.3);
}
.btn-primary:hover { box-shadow: 0 8px 40px rgba(139,92,246,0.5); transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--glass-border);
}
.btn-secondary:hover { border-color: var(--accent-purple); background: rgba(139,92,246,0.08); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Alert / Flash ────────────────────────────────────────────── */
.alert {
  padding: 14px 20px; border-radius: var(--radius-sm); margin-bottom: 20px;
  font-size: 14px; font-weight: 500;
}
.alert-success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: #6ee7b7; }
.alert-error   { background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.3);  color: #fca5a5; }
.alert-warning { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3); color: #fde68a; }
.alert-info    { background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.3); color: #93c5fd; }

/* ── Animations ───────────────────────────────────────────────── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse    { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }
@keyframes glowPulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes progressShine { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.8; } }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes tokenFloat  { 0%, 100% { transform: translateY(0) rotateY(0deg); } 50% { transform: translateY(-20px) rotateY(10deg); } }
@keyframes tokenSpin   { to { transform: rotate(360deg); } }
@keyframes modalIn     { from { opacity: 0; transform: translateY(20px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ── Social Topbar ────────────────────────────────────────────── */
.social-topbar {
  background: rgba(4,4,10,0.95); border-bottom: 1px solid var(--glass-border);
  padding: 8px 0; position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.social-topbar.hidden { transform: translateY(-100%); }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
}
.topbar-brand { font-size: 12px; color: var(--text-muted); font-family: var(--font-mono); letter-spacing: 1px; }
.topbar-socials { display: flex; align-items: center; gap: 4px; }
.topbar-social-link {
  width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); text-decoration: none; font-size: 13px; transition: var(--transition);
}
.topbar-social-link:hover { border-color: var(--accent-purple); color: var(--accent-purple); background: rgba(139,92,246,0.08); }

/* ── Navbar ───────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: top 0.35s cubic-bezier(0.4,0,0.2,1), background 0.3s, padding 0.3s;
}
.navbar.has-topbar { top: 46px; }
.navbar.scrolled {
  top: 0;
  background: rgba(6,6,14,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border); padding: 10px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon {
  width: 42px; height: 42px; border-radius: 12px; background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px; color: #fff; position: relative; overflow: visible;
}
.nav-logo-icon::after {
  content: ''; position: absolute; inset: -2px; border-radius: 14px;
  background: var(--gradient-glow); z-index: -1; opacity: 0.4; filter: blur(8px);
}
.nav-logo-text { font-weight: 700; font-size: 20px; color: var(--text-primary); }
.nav-logo-text span { color: var(--accent-purple); }
.nav-logo-img { height: 42px; width: auto; border-radius: 8px; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none; font-size: 14px;
  font-weight: 500; transition: var(--transition); position: relative;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gradient-main); border-radius: 1px; transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--text-primary); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-btn-ghost {
  padding: 9px 20px; border-radius: 9px; background: transparent; color: var(--text-secondary);
  border: 1px solid var(--glass-border); font-family: var(--font-display); font-weight: 500;
  font-size: 14px; cursor: pointer; transition: var(--transition); text-decoration: none;
  display: inline-flex; align-items: center;
}
.nav-btn-ghost:hover { border-color: var(--accent-purple); color: var(--text-primary); }
.nav-btn-primary {
  padding: 9px 20px; border-radius: 9px; background: var(--gradient-main); color: #fff;
  border: none; font-family: var(--font-display); font-weight: 600; font-size: 14px;
  cursor: pointer; transition: var(--transition); text-decoration: none; display: inline-flex; align-items: center;
}
.nav-btn-primary:hover { box-shadow: 0 4px 20px rgba(139,92,246,0.4); transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }
.nav-mobile { display: none; position: fixed; inset: 0; background: rgba(4,4,10,0.98); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 24px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { color: var(--text-secondary); text-decoration: none; font-size: 22px; font-weight: 600; transition: var(--transition); }
.nav-mobile a:hover { color: var(--accent-purple); }
.nav-mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: 1px solid var(--glass-border); color: var(--text-secondary); width: 40px; height: 40px; border-radius: 50%; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding-top: 120px; overflow: hidden; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.2); border-radius: 100px;
  padding: 8px 20px; font-size: 13px; color: var(--accent-purple); font-weight: 500; margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}
.hero-badge .pulse { width: 8px; height: 8px; background: var(--accent-green); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.hero-title { font-size: clamp(40px, 6vw, 72px); font-weight: 900; line-height: 1.05; letter-spacing: -2px; margin-bottom: 24px; animation: fadeInUp 0.8s ease 0.1s both; }
.hero-subtitle { font-size: 18px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 40px; max-width: 500px; animation: fadeInUp 0.8s ease 0.2s both; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 48px; animation: fadeInUp 0.8s ease 0.3s both; }
.hero-stats { display: flex; gap: 40px; animation: fadeInUp 0.8s ease 0.4s both; }
.hero-stat-item { text-align: left; }
.hero-stat-value { font-size: 28px; font-weight: 800; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-family: var(--font-mono); }
.hero-stat-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; animation: fadeIn 1s ease 0.5s both; }
.token-3d { width: 360px; height: 360px; position: relative; animation: tokenFloat 6s ease-in-out infinite; }
.token-ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid transparent; animation: tokenSpin 15s linear infinite; }
.token-ring:nth-child(2) { border-top-color: var(--accent-purple); border-right-color: var(--accent-purple); }
.token-ring:nth-child(3) { inset: 20px; border-bottom-color: var(--accent-blue); border-left-color: var(--accent-blue); animation-duration: 12s; animation-direction: reverse; }
.token-ring:nth-child(4) { inset: 40px; border-top-color: var(--accent-cyan); animation-duration: 18s; }
.token-core {
  position: absolute; inset: 60px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(139,92,246,0.3), rgba(59,130,246,0.15), transparent);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1px solid rgba(139,92,246,0.2); backdrop-filter: blur(10px);
}
.token-symbol { font-size: 42px; font-weight: 900; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -1px; }
.token-name { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-secondary); margin-top: 4px; }
.token-glow { position: absolute; inset: 40px; border-radius: 50%; background: radial-gradient(circle, rgba(139,92,246,0.2), transparent 70%); filter: blur(40px); animation: glowPulse 4s ease-in-out infinite; }

/* ── Ticker Bar ───────────────────────────────────────────────── */
.ticker-bar {
  border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border);
  background: rgba(6,6,14,0.5); padding: 14px 0; overflow: hidden; position: relative; z-index: 1;
}
.ticker-track { display: flex; gap: 60px; animation: tickerScroll 30s linear infinite; width: max-content; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: flex; align-items: center; gap: 12px; white-space: nowrap; font-size: 14px; }
.ticker-item .label { color: var(--text-muted); font-weight: 500; }
.ticker-item .value { color: var(--text-primary); font-family: var(--font-mono); font-weight: 700; }
.ticker-item .change { font-family: var(--font-mono); font-size: 13px; }
.ticker-item .change.up   { color: var(--accent-green); }
.ticker-item .change.down { color: var(--accent-red); }
.ticker-dot { width: 4px; height: 4px; background: var(--accent-purple); border-radius: 50%; }

/* ── Social Feed Sidebar ──────────────────────────────────────── */
.social-sidebar {
  position: fixed; left: 16px; top: 50%; transform: translateY(-50%);
  z-index: 500; display: flex; flex-direction: column; gap: 8px;
  max-height: 70vh; overflow: hidden;
}
.social-sidebar-card {
  width: 52px; background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1); position: relative; backdrop-filter: blur(16px);
}
.social-sidebar-card:hover { width: 240px; border-color: rgba(139,92,246,0.3); }
.social-sidebar-inner { display: flex; align-items: center; gap: 10px; padding: 10px; min-height: 52px; }
.social-sidebar-img { width: 32px; height: 32px; border-radius: 6px; object-fit: cover; background: var(--gradient-card); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.social-sidebar-text { min-width: 160px; overflow: hidden; }
.social-sidebar-text h4 { font-size: 12px; font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.social-sidebar-text p { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.social-sidebar-link { font-size: 11px; color: var(--accent-purple); text-decoration: none; margin-top: 4px; display: block; font-weight: 600; }

/* ── About Section ────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.about-card { padding: 36px; position: relative; overflow: hidden; }
.about-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-main); opacity: 0; transition: opacity 0.3s; }
.about-card:hover::before { opacity: 1; }
.about-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--gradient-card); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.about-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.about-card p  { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ── Tokenomics ───────────────────────────────────────────────── */
.tokenomics-layout { display: grid; grid-template-columns: 420px 1fr; gap: 60px; margin-top: 48px; align-items: center; }
.token-chart-wrapper { position: relative; display: flex; justify-content: center; align-items: center; }
.token-chart-svg { width: 360px; height: 360px; }
.chart-center-info { position: absolute; text-align: center; pointer-events: none; }
.chart-total-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; }
.chart-total-value { font-size: 28px; font-weight: 900; font-family: var(--font-mono); margin-top: 4px; }
.chart-total-sub { font-size: 14px; color: var(--text-secondary); margin-top: 2px; }
.tokenomics-details { display: flex; flex-direction: column; gap: 14px; }
.tokenomics-item { display: flex; align-items: center; gap: 16px; padding: 18px 22px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.02); border: 1px solid var(--glass-border); transition: var(--transition); }
.tokenomics-item:hover { background: rgba(255,255,255,0.04); border-color: rgba(139,92,246,0.2); }
.token-color-dot { width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; }
.tokenomics-item .info { flex: 1; }
.tokenomics-item .name { font-weight: 600; font-size: 15px; }
.tokenomics-item .desc { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.tokenomics-item .percent { font-size: 22px; font-weight: 800; font-family: var(--font-mono); background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── Presale ──────────────────────────────────────────────────── */
.presale-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; align-items: start; }
.presale-card { padding: 40px; position: relative; overflow: hidden; }
.presale-card::before { content: ''; position: absolute; inset: 0; background: var(--gradient-card); z-index: 0; }
.presale-card > * { position: relative; z-index: 1; }
.presale-phase { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-green); margin-bottom: 24px; }
.presale-phase .dot { width: 8px; height: 8px; background: var(--accent-green); border-radius: 50%; animation: pulse 2s infinite; }
.presale-price-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 32px; }
.presale-price { font-size: 48px; font-weight: 900; font-family: var(--font-mono); background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.presale-price-label { color: var(--text-muted); font-size: 14px; }
.presale-next { color: var(--text-secondary); font-size: 14px; text-align: right; }
.presale-next span { color: var(--text-primary); font-weight: 600; display: block; font-size: 18px; font-family: var(--font-mono); }
.presale-progress { margin-bottom: 32px; }
.progress-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; color: var(--text-secondary); }
.progress-bar { height: 10px; background: rgba(255,255,255,0.05); border-radius: 5px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--gradient-main); border-radius: 5px; position: relative; transition: width 1s ease; }
.progress-fill::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 20px; background: rgba(255,255,255,0.3); filter: blur(4px); animation: progressShine 2s ease-in-out infinite; }
.presale-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.presale-info-item { background: rgba(255,255,255,0.02); border: 1px solid var(--glass-border); border-radius: var(--radius-sm); padding: 16px; }
.presale-info-item .label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.presale-info-item .value { font-size: 16px; font-weight: 700; font-family: var(--font-mono); }
.buy-form-group { margin-bottom: 20px; }
.buy-form-group label { display: block; font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; font-weight: 500; }
.buy-input-wrap { display: flex; align-items: center; background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); border-radius: var(--radius-sm); padding: 4px; transition: var(--transition); }
.buy-input-wrap:focus-within { border-color: var(--accent-purple); box-shadow: 0 0 0 3px rgba(139,92,246,0.1); }
.buy-input-wrap input { flex: 1; background: none; border: none; color: var(--text-primary); font-family: var(--font-mono); font-size: 18px; font-weight: 700; padding: 12px 16px; outline: none; }
.buy-input-wrap input::placeholder { color: var(--text-muted); }
.buy-currency { padding: 10px 16px; background: rgba(139,92,246,0.1); border-radius: 8px; font-weight: 600; font-size: 14px; color: var(--accent-purple); }
.buy-estimate { text-align: right; font-size: 13px; color: var(--text-muted); margin-top: 8px; }
.buy-estimate span { color: var(--text-primary); font-family: var(--font-mono); font-weight: 600; }

.presale-timer { padding: 40px; }
.timer-title { font-size: 16px; color: var(--text-secondary); margin-bottom: 24px; font-weight: 500; }
.timer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 32px; }
.timer-block { text-align: center; padding: 20px 8px; background: rgba(255,255,255,0.02); border: 1px solid var(--glass-border); border-radius: var(--radius-sm); }
.timer-value { font-size: 32px; font-weight: 900; font-family: var(--font-mono); background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.timer-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-top: 8px; }
.presale-benefits { list-style: none; }
.presale-benefits li { display: flex; align-items: center; gap: 12px; padding: 12px 0; font-size: 15px; color: var(--text-secondary); border-bottom: 1px solid var(--glass-border); }
.presale-benefits li:last-child { border: none; }
.benefit-check { width: 24px; height: 24px; border-radius: 50%; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); display: flex; align-items: center; justify-content: center; color: var(--accent-green); font-size: 12px; flex-shrink: 0; }

/* ── Voting ───────────────────────────────────────────────────── */
.votes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.vote-card { padding: 32px; position: relative; }
.vote-status { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; padding: 5px 14px; border-radius: 100px; margin-bottom: 16px; }
.vote-status.active   { background: rgba(16,185,129,0.1);  color: var(--accent-green);  border: 1px solid rgba(16,185,129,0.2);  }
.vote-status.ended    { background: rgba(239,68,68,0.1);   color: var(--accent-red);    border: 1px solid rgba(239,68,68,0.2);   }
.vote-status.upcoming { background: rgba(245,158,11,0.1);  color: var(--accent-yellow); border: 1px solid rgba(245,158,11,0.2);  }
.vote-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.vote-card p  { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.6; }
.vote-code { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.vote-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.vote-option { display: flex; align-items: center; gap: 12px; }
.vote-option-bar { flex: 1; height: 36px; background: rgba(255,255,255,0.03); border-radius: 8px; overflow: hidden; position: relative; border: 1px solid var(--glass-border); }
.vote-option-fill { height: 100%; border-radius: 8px; display: flex; align-items: center; padding: 0 14px; font-size: 13px; font-weight: 600; min-width: fit-content; transition: width 0.8s ease; }
.vote-option-fill.opt-0 { background: rgba(139,92,246,0.15); color: var(--accent-purple); }
.vote-option-fill.opt-1 { background: rgba(16,185,129,0.15); color: var(--accent-green); }
.vote-option-fill.opt-2 { background: rgba(239,68,68,0.15);  color: var(--accent-red); }
.vote-option-fill.opt-3 { background: rgba(59,130,246,0.15); color: var(--accent-blue); }
.vote-option-percent { font-family: var(--font-mono); font-weight: 700; font-size: 14px; min-width: 48px; text-align: right; }
.vote-meta { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-muted); padding-top: 16px; border-top: 1px solid var(--glass-border); }
.vote-action-btn { width: 100%; margin-top: 16px; }
.vote-selected { background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.3); }
.vote-empty { text-align: center; padding: 60px 20px; color: var(--text-muted); font-size: 16px; grid-column: 1/-1; }

/* ── News ─────────────────────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.news-card { overflow: hidden; cursor: pointer; text-decoration: none; color: inherit; display: block; }
.news-cover { width: 100%; height: 200px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.news-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-cover img { transform: scale(1.05); }
.news-cover-placeholder { width: 100%; height: 100%; background: var(--gradient-card); display: flex; align-items: center; justify-content: center; font-size: 40px; }
.news-body { padding: 24px; }
.news-tag { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-cyan); margin-bottom: 10px; }
.news-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.news-body p  { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.news-footer { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; border-top: 1px solid var(--glass-border); font-size: 13px; color: var(--text-muted); }
.news-empty { text-align: center; padding: 60px 20px; color: var(--text-muted); font-size: 16px; grid-column: 1/-1; }

/* ── Roadmap ──────────────────────────────────────────────────── */
.roadmap-timeline { position: relative; margin-top: 60px; padding-left: 40px; }
.roadmap-timeline::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--accent-purple), var(--accent-blue), transparent); }
.roadmap-item { position: relative; margin-bottom: 48px; padding-left: 40px; }
.roadmap-dot { position: absolute; left: -33px; top: 6px; width: 18px; height: 18px; border-radius: 50%; border: 3px solid var(--accent-purple); background: var(--bg-primary); }
.roadmap-item.active .roadmap-dot { background: var(--accent-purple); box-shadow: 0 0 0 6px rgba(139,92,246,0.2); }
.roadmap-item.completed .roadmap-dot { background: var(--accent-green); border-color: var(--accent-green); }
.roadmap-phase { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-purple); margin-bottom: 8px; }
.roadmap-item h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.roadmap-item ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.roadmap-item ul li { font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 10px; }
.roadmap-item ul li::before { content: '→'; color: var(--accent-purple); font-weight: 700; }
.roadmap-item ul li.done { color: var(--accent-green); }
.roadmap-item ul li.done::before { content: '✓'; color: var(--accent-green); }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border-radius: var(--radius-sm); overflow: hidden; }
.faq-question { width: 100%; padding: 20px 24px; background: none; border: none; color: var(--text-primary); font-family: var(--font-display); font-size: 16px; font-weight: 600; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); }
.faq-question:hover { color: var(--accent-purple); }
.faq-icon { font-size: 20px; transition: transform 0.3s; color: var(--accent-purple); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ── Contract Address Bar ─────────────────────────────────────── */
.contract-bar {
  background: rgba(139,92,246,0.05); border: 1px solid rgba(139,92,246,0.15); border-radius: var(--radius);
  padding: 20px 32px; display: flex; align-items: center; justify-content: space-between;
  margin: 60px 0; flex-wrap: wrap; gap: 16px;
}
.contract-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; font-family: var(--font-mono); }
.contract-address { font-family: var(--font-mono); font-size: 15px; color: var(--text-primary); font-weight: 600; word-break: break-all; }
.contract-copy-btn { padding: 8px 20px; border-radius: 8px; background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.2); color: var(--accent-purple); font-family: var(--font-display); font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.contract-copy-btn:hover { background: rgba(139,92,246,0.2); }

/* ── Partners ─────────────────────────────────────────────────── */
.partners-row { display: flex; align-items: center; justify-content: center; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
.partner-item { padding: 18px 28px; border: 1px solid var(--glass-border); border-radius: var(--radius-sm); transition: var(--transition); text-decoration: none; display: flex; align-items: center; gap: 12px; }
.partner-item:hover { border-color: rgba(139,92,246,0.3); background: rgba(139,92,246,0.05); }
.partner-item img { height: 36px; width: auto; object-fit: contain; filter: grayscale(1) brightness(0.7); transition: var(--transition); }
.partner-item:hover img { filter: none; }
.partner-item span { font-size: 16px; font-weight: 700; color: var(--text-muted); letter-spacing: 1px; transition: var(--transition); }
.partner-item:hover span { color: var(--text-secondary); }

/* ── CTA Section ──────────────────────────────────────────────── */
.cta-section { text-align: center; padding: 100px 0; }
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; margin-bottom: 20px; }
.cta-inner p  { font-size: 18px; color: var(--text-secondary); margin-bottom: 40px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--glass-border); padding: 60px 0 30px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: var(--text-secondary); margin-top: 16px; line-height: 1.7; max-width: 300px; }
.footer-col h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 20px; }
.footer-col a { display: block; color: var(--text-secondary); text-decoration: none; font-size: 14px; padding: 6px 0; transition: var(--transition); }
.footer-col a:hover { color: var(--accent-purple); padding-left: 6px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid var(--glass-border); font-size: 13px; color: var(--text-muted); flex-wrap: wrap; gap: 12px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); text-decoration: none; font-size: 15px; transition: var(--transition); }
.footer-socials a:hover { border-color: var(--accent-purple); color: var(--accent-purple); background: rgba(139,92,246,0.08); }
.network-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; padding: 4px 12px; border-radius: 100px; border: 1px solid rgba(59,130,246,0.2); background: rgba(59,130,246,0.05); color: var(--accent-blue); font-family: var(--font-mono); }

/* ── Forms (login, register, profile) ────────────────────────── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 24px 80px; }
.auth-card { width: 100%; max-width: 460px; }
.auth-logo { width: 56px; height: 56px; border-radius: 16px; background: var(--gradient-main); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 22px; margin: 0 auto 20px; color: #fff; }
.auth-title { font-size: 26px; font-weight: 800; text-align: center; margin-bottom: 6px; }
.auth-subtitle { text-align: center; color: var(--text-secondary); font-size: 14px; margin-bottom: 32px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--text-secondary); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 14px 16px; background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); color: var(--text-primary); font-family: var(--font-display);
  font-size: 15px; outline: none; transition: var(--transition);
}
.form-input:focus { border-color: var(--accent-purple); box-shadow: 0 0 0 3px rgba(139,92,246,0.1); }
.form-input::placeholder { color: var(--text-muted); }
.form-input.mono { font-family: var(--font-mono); font-size: 13px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-switch { margin-top: 20px; text-align: center; font-size: 14px; color: var(--text-secondary); }
.form-switch a { color: var(--accent-purple); text-decoration: none; font-weight: 600; }
.form-check { display: flex; align-items: center; gap: 10px; margin: 16px 0; font-size: 13px; color: var(--text-secondary); }
.form-check input[type="checkbox"] { accent-color: var(--accent-purple); width: 16px; height: 16px; flex-shrink: 0; }
.form-check a { color: var(--accent-purple); text-decoration: none; }

/* ── Profile ──────────────────────────────────────────────────── */
.profile-page { padding: 120px 0 80px; }
.profile-header { display: flex; align-items: center; gap: 24px; margin-bottom: 48px; padding: 32px; }
.profile-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--gradient-main); display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 800; color: #fff; flex-shrink: 0; overflow: hidden; }
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-info h2 { font-size: 24px; font-weight: 700; }
.profile-info p { color: var(--text-muted); font-size: 14px; margin-top: 4px; }
.profile-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; padding: 4px 12px; border-radius: 100px; background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.2); color: var(--accent-purple); margin-top: 8px; font-family: var(--font-mono); }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.profile-section { padding: 28px; }
.profile-section h3 { font-size: 16px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--glass-border); }
.stat-box { background: rgba(255,255,255,0.02); border: 1px solid var(--glass-border); border-radius: var(--radius-sm); padding: 16px; margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; }
.stat-box .label { font-size: 13px; color: var(--text-muted); }
.stat-box .value { font-family: var(--font-mono); font-weight: 700; font-size: 16px; }
.vote-history-item { padding: 12px 0; border-bottom: 1px solid var(--glass-border); font-size: 14px; }
.vote-history-item:last-child { border: none; }
.vote-history-item .vote-title { font-weight: 600; margin-bottom: 4px; }
.vote-history-item .vote-choice { font-size: 12px; color: var(--accent-purple); font-family: var(--font-mono); }

/* ── Vote Detail Page ─────────────────────────────────────────── */
.vote-detail-page { padding: 120px 0 80px; }
.vote-detail-header { padding: 40px; margin-bottom: 32px; }
.vote-detail-options { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.vote-detail-option { padding: 20px 24px; border-radius: var(--radius-sm); border: 1px solid var(--glass-border); background: rgba(255,255,255,0.02); cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 16px; }
.vote-detail-option:hover, .vote-detail-option.selected { border-color: var(--accent-purple); background: rgba(139,92,246,0.08); }
.vote-radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--glass-border); flex-shrink: 0; transition: var(--transition); position: relative; }
.vote-detail-option.selected .vote-radio { border-color: var(--accent-purple); }
.vote-detail-option.selected .vote-radio::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--accent-purple); }
.vote-option-info { flex: 1; }
.vote-option-info .name { font-weight: 600; font-size: 16px; }
.vote-progress-bar { height: 6px; background: rgba(255,255,255,0.05); border-radius: 3px; margin-top: 8px; overflow: hidden; }
.vote-progress-fill { height: 100%; background: var(--gradient-main); border-radius: 3px; }
.vote-option-pct { font-family: var(--font-mono); font-weight: 700; font-size: 18px; color: var(--accent-purple); }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content          { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle         { margin: 0 auto 40px; }
  .hero-actions          { justify-content: center; }
  .hero-stats            { justify-content: center; }
  .hero-visual           { margin-top: 40px; }
  .about-grid            { grid-template-columns: 1fr 1fr; }
  .presale-wrapper       { grid-template-columns: 1fr; }
  .tokenomics-layout     { grid-template-columns: 1fr; }
  .votes-grid            { grid-template-columns: 1fr; }
  .news-grid             { grid-template-columns: 1fr 1fr; }
  .footer-grid           { grid-template-columns: 1fr 1fr; }
  .profile-grid          { grid-template-columns: 1fr; }
  .social-sidebar        { display: none; }
  .tokenomics-layout     { justify-items: center; }
}
@media (max-width: 768px) {
  .nav-links             { display: none; }
  .nav-toggle            { display: flex; }
  .about-grid, .news-grid { grid-template-columns: 1fr; }
  .hero-stats            { flex-wrap: wrap; gap: 24px; }
  .timer-grid            { grid-template-columns: repeat(2, 1fr); }
  .footer-grid           { grid-template-columns: 1fr; }
  .presale-info-grid     { grid-template-columns: 1fr; }
  .section               { padding: 60px 0; }
  .form-row              { grid-template-columns: 1fr; }
  .contract-bar          { flex-direction: column; text-align: center; }
  .topbar-brand          { display: none; }

  /* ── Mobilde sticky header kaldır ── */
  .social-topbar         { position: relative; top: auto; }
  .social-topbar.hidden  { transform: none; }
  .navbar                { position: relative !important; top: auto !important; background: rgba(6,6,14,0.95); border-bottom: 1px solid var(--glass-border); }
  .navbar.has-topbar     { top: auto !important; }
  .navbar.scrolled       { position: relative; top: auto !important; }
  .hero                  { padding-top: 40px; }

  /* ── Mobilde icon-only nav butonları ── */
  .nav-lbl               { display: none; }
  .nav-mysn-badge        { display: none !important; }
  #walletNavLabel        { display: none; }
  .nav-actions           { gap: 4px; }
  .nav-btn-ghost         { padding: 8px 10px; font-size: 16px; min-width: 36px; justify-content: center; gap: 0; }
  .nav-btn-wallet        { padding: 8px 10px; min-width: 36px; justify-content: center; gap: 0; }
  .nav-btn-primary       { padding: 8px 10px; font-size: 16px; min-width: 36px; justify-content: center; gap: 0; }
}
@media (max-width: 480px) {
  .hero-actions          { flex-direction: column; }
  .token-3d              { width: 260px; height: 260px; }
  .cta-buttons           { flex-direction: column; align-items: center; }
  .footer-bottom         { flex-direction: column; text-align: center; }
}

/* ── Wallet Connect Modal ─────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 9000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  animation: fadeIn 0.2s ease;
}
.modal-overlay.hidden { display: none; }
.modal-box {
  background: #0c0b1a; border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  padding: 40px 36px; width: 100%; max-width: 420px; position: relative;
  animation: modalIn 0.25s ease;
}
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--glass-border); background: none; color: var(--text-secondary);
  cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { border-color: var(--accent-purple); color: var(--text-primary); }
.modal-title { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.modal-subtitle { font-size: 14px; color: var(--text-secondary); margin-bottom: 28px; }
.wallet-options { display: flex; flex-direction: column; gap: 12px; }
.wallet-btn {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition);
  font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--text-primary);
  width: 100%; text-align: left;
}
.wallet-btn:hover { border-color: var(--accent-purple); background: rgba(139,92,246,0.08); transform: translateX(4px); }
.wallet-btn img { width: 36px; height: 36px; border-radius: 8px; }
.wallet-btn .wallet-name { flex: 1; }
.wallet-btn .wallet-tag { font-size: 11px; color: var(--text-muted); font-weight: 400; }
.modal-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.modal-divider::before, .modal-divider::after { content: ''; flex: 1; height: 1px; background: var(--glass-border); }
.modal-divider span { font-size: 12px; color: var(--text-muted); }
.wallet-addr-display {
  background: rgba(139,92,246,0.08); border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--radius-sm); padding: 14px 16px;
  font-family: var(--font-mono); font-size: 13px; color: var(--accent-purple);
  word-break: break-all; margin-bottom: 16px;
}
.wallet-connect-status { font-size: 13px; color: var(--text-muted); text-align: center; padding: 10px; }
.wallet-connect-status.connecting { color: var(--accent-yellow); }
.wallet-connect-status.success    { color: var(--accent-green); }
.wallet-connect-status.error      { color: var(--accent-red); }

/* ── Nav Wallet Button ───────────────────────────────────────── */
.nav-btn-wallet {
  padding: 9px 16px; border-radius: 9px; background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.25); color: var(--accent-purple);
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  cursor: pointer; transition: var(--transition); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-btn-wallet:hover { background: rgba(139,92,246,0.2); border-color: var(--accent-purple); }

/* ── Presale Buy Flow ─────────────────────────────────────────── */
.presale-buy-steps { display: flex; gap: 8px; margin-bottom: 24px; }
.buy-step {
  flex: 1; padding: 8px; border-radius: 8px; font-size: 12px; font-weight: 600;
  text-align: center; border: 1px solid var(--glass-border); color: var(--text-muted);
  transition: var(--transition);
}
.buy-step.active { border-color: var(--accent-purple); color: var(--accent-purple); background: rgba(139,92,246,0.08); }
.buy-step.done   { border-color: var(--accent-green);  color: var(--accent-green);  background: rgba(16,185,129,0.08); }
.presale-wallet-info {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  background: rgba(139,92,246,0.06); border: 1px solid rgba(139,92,246,0.15);
  border-radius: var(--radius-sm); margin-bottom: 16px; font-size: 13px;
}
.presale-wallet-info .addr { font-family: var(--font-mono); color: var(--accent-purple); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.presale-wallet-dot { width: 8px; height: 8px; background: var(--accent-green); border-radius: 50%; flex-shrink: 0; }

/* ── Presale Transaction Modal ──────────────────────────────── */
.tx-confirm-box { background: rgba(255,255,255,0.02); border: 1px solid var(--glass-border); border-radius: var(--radius-sm); padding: 20px; margin-bottom: 20px; }
.tx-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.tx-row:last-child { border: none; font-weight: 700; font-size: 16px; }
.tx-row .label { color: var(--text-muted); }
.tx-row .value { font-family: var(--font-mono); color: var(--text-primary); }

/* ── Language Switcher ──────────────────────────────────────── */
.lang-switcher { display:flex; gap:3px; align-items:center; margin-right:4px; }
.lang-btn { font-size:11px; font-weight:700; padding:3px 7px; border-radius:6px; color:var(--text-muted); text-decoration:none; transition:var(--transition); letter-spacing:.5px; }
.lang-btn:hover { background:rgba(139,92,246,.12); color:#a78bfa; }
.lang-btn.active { background:rgba(139,92,246,.18); color:#a78bfa; }
