/* ===== MoonList Styles ===== */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #0f1419;
    --bg-tertiary: #151a22;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-card-hover: rgba(255, 255, 255, 0.05);
    --bg-card-solid: #12161d;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.05);
    --green: #22c55e;
    --green-dark: #16a34a;
    --green-glow: rgba(34, 197, 94, 0.3);
    --green-bg: rgba(34, 197, 94, 0.1);
    --orange: #f59e0b;
    --orange-glow: rgba(245, 158, 11, 0.3);
    --orange-bg: rgba(245, 158, 11, 0.1);
    --purple: #8b5cf6;
    --purple-dark: #7c3aed;
    --purple-glow: rgba(139, 92, 246, 0.3);
    --purple-bg: rgba(139, 92, 246, 0.1);
    --red: #ef4444;
    --red-bg: rgba(239, 68, 68, 0.1);
    --blue: #3b82f6;
    --blue-bg: rgba(59, 130, 246, 0.1);
    --font-main: 'Outfit', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    --header-height: 70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body { font-family: var(--font-main); background: var(--bg-primary); color: var(--text-primary); min-height: 100vh; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; height: auto; }

.hidden { display: none !important; }
.desktop-only { display: none; }
.mobile-only { display: block; }
@media (min-width: 768px) { .desktop-only { display: flex; } .mobile-only { display: none; } }

/* Background */
.bg-grid { position: fixed; inset: 0; 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: 50px 50px; pointer-events: none; z-index: 0; }
.bg-glow { position: fixed; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(ellipse at 20% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(34, 197, 94, 0.1) 0%, transparent 50%); pointer-events: none; animation: bgPulse 10s ease-in-out infinite; z-index: 0; }
@keyframes bgPulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 0.8; } }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; height: var(--header-height); display: flex; align-items: center; justify-content: space-between; padding: 0 20px; background: rgba(10, 10, 15, 0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-light); z-index: 1000; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; }
.logo-icon { font-size: 24px; animation: float 3s ease-in-out infinite; }
.logo-text { letter-spacing: 2px; font-family: var(--font-mono); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.nav { display: flex; gap: 32px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--text-secondary); transition: color 0.15s; position: relative; }
.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link.active::after { content: ''; position: absolute; bottom: -8px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--purple), var(--green)); border-radius: 2px; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.promote-btn { display: flex; align-items: center; gap: 8px; padding: 10px 20px; background: linear-gradient(135deg, var(--purple), var(--purple-dark)); border-radius: var(--radius-full); font-weight: 600; font-size: 14px; color: white; transition: all 0.25s; box-shadow: 0 0 30px var(--purple-glow); }
.promote-btn:hover { transform: translateY(-2px); }
.menu-btn { display: flex; flex-direction: column; gap: 5px; width: 32px; height: 32px; background: none; border: none; padding: 4px; justify-content: center; }
.menu-btn span { display: block; width: 100%; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.25s; }
.menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu { position: fixed; top: var(--header-height); left: 0; right: 0; background: rgba(10, 10, 15, 0.98); backdrop-filter: blur(20px); padding: 20px; display: flex; flex-direction: column; gap: 8px; z-index: 999; transform: translateY(-100%); opacity: 0; transition: all 0.25s; border-bottom: 1px solid var(--border-color); }
.mobile-menu.active { transform: translateY(0); opacity: 1; }
.mobile-nav-link { display: block; padding: 14px 16px; font-size: 16px; font-weight: 500; color: var(--text-primary); border-radius: var(--radius-md); transition: background 0.15s; }
.mobile-nav-link:hover { background: var(--bg-card-hover); }
.mobile-nav-link.highlight { background: linear-gradient(135deg, var(--purple), var(--purple-dark)); color: white; margin-top: 8px; }

/* Main */
.main { min-height: calc(100vh - var(--header-height)); padding-top: var(--header-height); position: relative; z-index: 1; }
.page { display: none; padding: 24px 16px 60px; max-width: 1200px; margin: 0 auto; animation: fadeIn 0.3s ease; }
.page.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@media (min-width: 768px) { .page { padding: 40px 32px 80px; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; font-weight: 600; font-size: 14px; border-radius: var(--radius-md); border: none; cursor: pointer; transition: all 0.25s; white-space: nowrap; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary { background: linear-gradient(135deg, var(--green), var(--green-dark)); color: white; box-shadow: 0 0 30px var(--green-glow); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary { background: var(--bg-tertiary); color: var(--text-primary); border: 1px solid var(--border-color); }
.btn-secondary:hover { background: var(--bg-card-hover); }
.btn-outline { background: transparent; color: var(--text-primary); border: 2px solid var(--border-color); }
.btn-outline:hover { border-color: var(--purple); background: var(--purple-bg); }
.btn-ghost { background: transparent; color: var(--text-secondary); padding: 8px 16px; }
.btn-ghost:hover { color: var(--text-primary); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* Hero */
.hero { text-align: center; padding: 40px 0 60px; }
.hero-badge { display: inline-block; padding: 8px 16px; background: var(--orange-bg); border: 1px solid rgba(245, 158, 11, 0.3); border-radius: var(--radius-full); font-size: 13px; font-weight: 600; color: var(--orange); margin-bottom: 24px; }
.hero-title { font-size: 36px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.hero-gradient { background: linear-gradient(135deg, var(--green), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 16px; color: var(--text-secondary); max-width: 500px; margin: 0 auto 32px; line-height: 1.7; }
.hero-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 48px; }
.hero-stats { display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-value { display: block; font-size: 28px; font-weight: 800; background: linear-gradient(135deg, var(--purple), var(--green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stat-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border-color); }
@media (min-width: 768px) { .hero { padding: 60px 0 80px; } .hero-title { font-size: 56px; } .hero-subtitle { font-size: 18px; } .hero-actions { flex-direction: row; justify-content: center; } }

/* Ticker */
.ticker-wrapper { overflow: hidden; background: var(--bg-card); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); padding: 12px 0; margin-bottom: 40px; }
.ticker { display: flex; gap: 32px; animation: ticker 30s linear infinite; width: max-content; }
.ticker-item { display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.ticker-logo { width: 24px; height: 24px; border-radius: var(--radius-sm); background: var(--purple-bg); display: flex; align-items: center; justify-content: center; font-size: 14px; }
.ticker-name { font-weight: 600; font-size: 14px; }
.ticker-price { font-family: var(--font-mono); font-size: 13px; color: var(--text-secondary); }
.ticker-change { font-size: 13px; font-weight: 600; }
.ticker-change.positive { color: var(--green); }
.ticker-change.negative { color: var(--red); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Sections */
.section { margin-bottom: 60px; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.section-title { font-size: 22px; font-weight: 700; }
.section-title.centered { text-align: center; margin-bottom: 32px; }
.section-link { font-size: 14px; color: var(--purple); font-weight: 500; }

/* Token Grid & Cards */
.token-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .token-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .token-grid { grid-template-columns: repeat(3, 1fr); } }
.token-card { background: var(--bg-card-solid); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 20px; cursor: pointer; transition: all 0.25s; }
.token-card:hover { border-color: var(--purple); transform: translateY(-4px); }
.token-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.token-card-logo { width: 48px; height: 48px; border-radius: var(--radius-md); background: linear-gradient(135deg, var(--purple-bg), var(--green-bg)); display: flex; align-items: center; justify-content: center; font-size: 24px; overflow: hidden; }
.token-card-logo img { width: 100%; height: 100%; object-fit: cover; }
.token-card-info { flex: 1; min-width: 0; }
.token-card-name { font-weight: 700; font-size: 16px; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.token-card-symbol { font-size: 13px; color: var(--purple); font-family: var(--font-mono); }
.token-card-price { text-align: right; }
.token-card-price-value { display: block; font-weight: 700; font-family: var(--font-mono); font-size: 15px; }
.token-card-change { font-size: 13px; font-weight: 600; }
.token-card-change.positive { color: var(--green); }
.token-card-change.negative { color: var(--red); }
.token-card-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding-top: 16px; border-top: 1px solid var(--border-light); }
.token-card-metric { text-align: center; }
.token-card-metric-label { display: block; font-size: 11px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 4px; }
.token-card-metric-value { font-weight: 600; font-size: 14px; font-family: var(--font-mono); }
.token-card-badges { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }

/* Badges */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 8px; border-radius: var(--radius-full); font-size: 10px; font-weight: 600; text-transform: uppercase; }
.badge-green { background: var(--green-bg); color: var(--green); }
.badge-blue { background: var(--blue-bg); color: var(--blue); }
.badge-orange { background: var(--orange-bg); color: var(--orange); }
.badge-purple { background: var(--purple-bg); color: var(--purple); }
.badge-red { background: var(--red-bg); color: var(--red); }

/* Features */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 28px; text-align: center; transition: all 0.25s; }
.feature-card:hover { border-color: var(--purple); background: var(--bg-card-hover); }
.feature-icon { font-size: 40px; margin-bottom: 16px; }
.feature-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--purple-bg), var(--green-bg)); border: 1px solid var(--border-color); border-radius: var(--radius-xl); padding: 48px 24px; text-align: center; margin-top: 60px; }
.cta-title { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.cta-desc { color: var(--text-secondary); margin-bottom: 24px; font-size: 16px; }

/* Page Header */
.page-header { text-align: center; margin-bottom: 40px; }
.page-title { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.page-subtitle { color: var(--text-secondary); font-size: 16px; }

/* Filters */
.filters { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.filter-btn { padding: 10px 20px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-full); font-size: 14px; font-weight: 500; color: var(--text-secondary); transition: all 0.15s; }
.filter-btn:hover { border-color: var(--purple); color: var(--text-primary); }
.filter-btn.active { background: var(--purple); border-color: var(--purple); color: white; }

/* Table */
.table-container { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border-color); }
.token-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.token-table th { text-align: left; padding: 16px; font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; background: var(--bg-card); border-bottom: 1px solid var(--border-color); }
.token-table td { padding: 16px; border-bottom: 1px solid var(--border-light); vertical-align: middle; }
.token-table tr:last-child td { border-bottom: none; }
.token-table tr:hover { background: var(--bg-card-hover); }
.table-token { display: flex; align-items: center; gap: 12px; }
.table-token-logo { width: 36px; height: 36px; border-radius: var(--radius-sm); background: var(--purple-bg); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.table-token-name { font-weight: 600; }
.table-token-symbol { font-size: 12px; color: var(--text-muted); font-family: var(--font-mono); }
.table-price { font-family: var(--font-mono); font-weight: 600; }
.table-change { font-weight: 600; }
.table-change.positive { color: var(--green); }
.table-change.negative { color: var(--red); }
.table-value { font-family: var(--font-mono); color: var(--text-secondary); }
.table-btn { padding: 8px 16px; background: var(--purple-bg); border: 1px solid var(--purple); border-radius: var(--radius-full); color: var(--purple); font-weight: 600; font-size: 13px; transition: all 0.15s; }
.table-btn:hover { background: var(--purple); color: white; }
.load-more-container { text-align: center; margin-top: 32px; }

/* Listings Grid */
.listings-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .listings-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .listings-grid { grid-template-columns: repeat(3, 1fr); } }
.listing-card { background: var(--bg-card-solid); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 20px; position: relative; transition: all 0.25s; cursor: pointer; }
.listing-card:hover { border-color: var(--purple); transform: translateY(-2px); }
.listing-card-new { position: absolute; top: 12px; right: 12px; padding: 4px 10px; background: var(--green); border-radius: var(--radius-full); font-size: 10px; font-weight: 700; color: white; text-transform: uppercase; }
.listing-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.listing-logo { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--purple-bg); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.listing-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.listing-info span { font-size: 13px; color: var(--text-muted); }
.listing-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 16px; }
.listing-metric { text-align: center; padding: 12px; background: var(--bg-card); border-radius: var(--radius-sm); }
.listing-metric-label { display: block; font-size: 10px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 4px; }
.listing-metric-value { font-weight: 700; font-family: var(--font-mono); }
.listing-time { font-size: 12px; color: var(--text-muted); text-align: center; }

/* Steps */
.steps-container { display: flex; flex-direction: column; gap: 24px; margin-bottom: 60px; }
@media (min-width: 768px) { .steps-container { flex-direction: row; align-items: flex-start; } }
.step-card { flex: 1; background: var(--bg-card-solid); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; position: relative; }
.step-number { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); width: 32px; height: 32px; background: linear-gradient(135deg, var(--purple), var(--green)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.step-icon { font-size: 48px; margin-bottom: 16px; }
.step-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.step-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.step-connector { display: none; }
@media (min-width: 768px) { .step-connector { display: block; width: 60px; height: 2px; background: var(--border-color); margin-top: 80px; } }

/* Pricing */
.pricing-section { margin-bottom: 60px; }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: start; } }
.pricing-card { background: var(--bg-card-solid); border: 2px solid var(--border-color); border-radius: var(--radius-xl); padding: 32px 24px; text-align: center; position: relative; transition: all 0.25s; }
.pricing-card:hover { border-color: var(--purple); }
.pricing-card.featured { border-color: var(--orange); background: linear-gradient(180deg, var(--orange-bg) 0%, var(--bg-card-solid) 100%); }
@media (min-width: 768px) { .pricing-card.featured { transform: scale(1.05); z-index: 1; } }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 6px 16px; background: linear-gradient(135deg, var(--orange), #fbbf24); border-radius: var(--radius-full); font-size: 11px; font-weight: 700; color: white; text-transform: uppercase; }
.pricing-icon { font-size: 48px; margin-bottom: 16px; }
.pricing-name { font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.pricing-price { font-size: 40px; font-weight: 800; margin-bottom: 4px; }
.pricing-price span { font-size: 20px; font-weight: 600; color: var(--text-secondary); }
.pricing-duration { color: var(--text-muted); margin-bottom: 24px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 24px; }
.pricing-features li { padding: 10px 0; font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border-light); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check { color: var(--green); font-weight: bold; }

/* FAQ */
.faq-section { margin-bottom: 60px; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border-color); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px; background: var(--bg-card); border: none; font-size: 15px; font-weight: 600; color: var(--text-primary); text-align: left; cursor: pointer; transition: background 0.15s; }
.faq-question:hover { background: var(--bg-card-hover); }
.faq-icon { font-size: 20px; color: var(--purple); transition: transform 0.25s; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 20px 20px; color: var(--text-secondary); line-height: 1.7; }

/* Promote Progress */
.promote-progress { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 40px; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.4; transition: opacity 0.25s; }
.progress-step.active, .progress-step.completed { opacity: 1; }
.progress-step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-card); border: 2px solid var(--border-color); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; transition: all 0.25s; }
.progress-step.active .progress-step-num { background: linear-gradient(135deg, var(--purple), var(--green)); border-color: transparent; box-shadow: 0 0 30px var(--purple-glow); }
.progress-step.completed .progress-step-num { background: var(--green); border-color: var(--green); }
.progress-step-label { font-size: 12px; font-weight: 500; color: var(--text-muted); }
.progress-line { width: 60px; height: 2px; background: var(--border-color); margin: 0 8px 24px; transition: background 0.25s; }
.progress-line.active { background: linear-gradient(90deg, var(--purple), var(--green)); }

/* Promote Steps */
.promote-step { display: none; max-width: 800px; margin: 0 auto; }
.promote-step.active { display: block; animation: fadeIn 0.3s ease; }
.promote-step-header { text-align: center; margin-bottom: 32px; }
.promote-step-title { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.promote-step-subtitle { color: var(--text-secondary); }

/* Token Form */
.token-form { margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; margin-bottom: 8px; }
.input-group { display: flex; align-items: center; background: var(--bg-card); border: 2px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; transition: border-color 0.15s; }
.input-group:focus-within { border-color: var(--purple); }
.input-icon { padding: 0 16px; font-size: 18px; }
.form-input { flex: 1; padding: 16px 0; background: transparent; border: none; font-size: 15px; font-family: var(--font-mono); color: var(--text-primary); outline: none; min-width: 0; }
.form-input::placeholder { color: var(--text-muted); }
.input-btn { padding: 12px 24px; background: var(--purple); border: none; color: white; font-weight: 600; font-size: 14px; cursor: pointer; transition: background 0.15s; }
.input-btn:hover { background: var(--purple-dark); }
.input-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.form-hint { display: block; margin-top: 8px; font-size: 13px; color: var(--text-muted); }

/* Loading & Error */
.loading-state { text-align: center; padding: 60px 20px; }
.loader { width: 48px; height: 48px; border: 3px solid var(--border-color); border-top-color: var(--purple); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 16px; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-state p { color: var(--text-secondary); }
.error-state { text-align: center; padding: 40px 20px; background: var(--red-bg); border: 1px solid var(--red); border-radius: var(--radius-lg); }
.error-icon { font-size: 40px; margin-bottom: 12px; }
.error-message { color: #f87171; margin-bottom: 16px; }

/* Token Preview */
.token-preview { background: var(--bg-card-solid); border: 1px solid var(--border-color); border-radius: var(--radius-xl); padding: 24px; margin-bottom: 24px; }
.token-preview-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.token-preview-logo { width: 64px; height: 64px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--purple-bg), var(--green-bg)); display: flex; align-items: center; justify-content: center; font-size: 32px; overflow: hidden; }
.token-preview-logo img { width: 100%; height: 100%; object-fit: cover; }
.token-preview-info { flex: 1; min-width: 150px; }
.token-preview-name { font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.token-preview-symbol { font-size: 14px; color: var(--purple); font-family: var(--font-mono); }
.token-preview-price { text-align: right; }
.token-preview-price-value { display: block; font-size: 20px; font-weight: 700; font-family: var(--font-mono); }
.token-preview-change { font-size: 14px; font-weight: 600; }
.token-preview-change.positive { color: var(--green); }
.token-preview-change.negative { color: var(--red); }
.token-preview-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
@media (min-width: 640px) { .token-preview-metrics { grid-template-columns: repeat(4, 1fr); } }
.preview-metric { background: var(--bg-card); border-radius: var(--radius-md); padding: 16px; text-align: center; }
.preview-metric-label { display: block; font-size: 11px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 6px; }
.preview-metric-value { font-size: 16px; font-weight: 700; font-family: var(--font-mono); }
.token-preview-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.token-preview-chart { background: var(--bg-card); border-radius: var(--radius-md); padding: 16px; margin-bottom: 20px; height: 180px; }
.token-preview-holders { margin-bottom: 24px; }
.token-preview-holders h4 { font-size: 14px; color: var(--text-secondary); margin-bottom: 12px; }
.holders-list { display: flex; flex-direction: column; gap: 8px; }
.holder-row { display: flex; align-items: center; gap: 12px; }
.holder-address { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); width: 100px; }
.holder-bar { flex: 1; height: 8px; background: var(--bg-card); border-radius: 4px; overflow: hidden; }
.holder-bar-fill { height: 100%; background: linear-gradient(90deg, var(--purple), var(--green)); border-radius: 4px; }
.holder-percent { font-family: var(--font-mono); font-size: 12px; width: 50px; text-align: right; }

/* Popular Tokens */
.popular-tokens { margin-top: 40px; }
.popular-tokens h3 { font-size: 18px; margin-bottom: 16px; }
.popular-tokens-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .popular-tokens-list { grid-template-columns: repeat(3, 1fr); } }
.popular-token-item { display: flex; align-items: center; gap: 10px; padding: 12px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); cursor: pointer; transition: all 0.15s; }
.popular-token-item:hover { border-color: var(--purple); background: var(--bg-card-hover); }
.popular-token-logo { width: 32px; height: 32px; border-radius: var(--radius-sm); background: var(--purple-bg); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.popular-token-info { flex: 1; min-width: 0; }
.popular-token-name { font-weight: 600; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.popular-token-symbol { font-size: 11px; color: var(--text-muted); }

/* Selected Token Summary */
.selected-token-summary { display: flex; align-items: center; justify-content: space-between; padding: 16px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); margin-bottom: 32px; }
.summary-token-info { display: flex; align-items: center; gap: 12px; }
.summary-logo { font-size: 24px; }
.summary-name { font-weight: 600; }
.summary-symbol { color: var(--text-muted); font-family: var(--font-mono); }

/* Plans Grid */
.plans-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
@media (min-width: 768px) { .plans-grid { grid-template-columns: repeat(3, 1fr); } }
.plan-card { background: var(--bg-card-solid); border: 2px solid var(--border-color); border-radius: var(--radius-xl); padding: 28px; text-align: center; position: relative; cursor: pointer; transition: all 0.25s; }
.plan-card:hover { border-color: var(--purple); transform: translateY(-4px); }
.plan-card.featured { border-color: var(--orange); background: linear-gradient(180deg, var(--orange-bg) 0%, var(--bg-card-solid) 100%); }
.plan-card.selected { border-color: var(--green); box-shadow: 0 0 30px var(--green-glow); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 5px 14px; background: linear-gradient(135deg, var(--orange), #fbbf24); border-radius: var(--radius-full); font-size: 10px; font-weight: 700; color: white; text-transform: uppercase; }
.plan-icon { font-size: 40px; margin-bottom: 12px; }
.plan-name { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.plan-price { margin-bottom: 4px; }
.plan-price-value { font-size: 36px; font-weight: 800; }
.plan-price-currency { font-size: 18px; color: var(--text-secondary); }
.plan-duration { color: var(--text-muted); margin-bottom: 20px; }
.plan-features { list-style: none; text-align: left; margin-bottom: 20px; }
.plan-features li { padding: 8px 0; font-size: 14px; color: var(--text-secondary); }

/* Payment */
.payment-container { display: grid; gap: 24px; }
@media (min-width: 768px) { .payment-container { grid-template-columns: 1fr 1fr; } }
.order-summary { background: var(--bg-card-solid); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 24px; }
.order-summary h3 { margin-bottom: 20px; font-size: 18px; }
.order-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border-light); }
.order-item:last-child { border-bottom: none; }
.order-label { color: var(--text-muted); }
.order-value { font-weight: 600; }
.order-divider { height: 2px; background: var(--border-color); margin: 16px 0; }
.order-item.total .order-value { font-size: 20px; color: var(--green); }
.payment-details { background: var(--bg-card-solid); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 24px; }
.payment-address-section { margin-bottom: 20px; }
.payment-address-section label { display: block; margin-bottom: 12px; color: var(--text-secondary); }
.payment-address-box { display: flex; flex-direction: column; gap: 12px; background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 16px; }
@media (min-width: 480px) { .payment-address-box { flex-direction: row; align-items: center; } }
.payment-address { flex: 1; font-size: 11px; color: var(--purple); word-break: break-all; line-height: 1.5; font-family: var(--font-mono); }
.copy-btn { display: flex; align-items: center; gap: 6px; padding: 8px 16px; background: var(--purple-bg); border: 1px solid var(--purple); border-radius: var(--radius-sm); color: var(--purple); font-weight: 600; font-size: 13px; white-space: nowrap; transition: all 0.15s; }
.copy-btn:hover { background: var(--purple); color: white; }
.copy-btn.copied { background: var(--green); border-color: var(--green); color: white; }
.payment-qr { display: flex; justify-content: center; margin-bottom: 20px; }
.payment-qr canvas { border-radius: var(--radius-md); }
.payment-timer { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; background: var(--orange-bg); border-radius: var(--radius-md); color: var(--orange); font-weight: 500; margin-bottom: 16px; }
.payment-status { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; background: var(--bg-card); border-radius: var(--radius-md); margin-bottom: 16px; }
.status-indicator { width: 12px; height: 12px; border-radius: 50%; }
.status-indicator.waiting { background: var(--orange); animation: pulse 1.5s ease-in-out infinite; }
.status-indicator.confirmed { background: var(--green); }
@keyframes pulse { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.2); } }
.payment-warning { display: flex; gap: 10px; padding: 14px; background: var(--red-bg); border: 1px solid rgba(239, 68, 68, 0.3); border-radius: var(--radius-md); font-size: 13px; color: #f87171; line-height: 1.5; }
.predictions-card { background: linear-gradient(135deg, var(--purple-bg), var(--green-bg)); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 24px; grid-column: 1 / -1; }
.predictions-card h3 { margin-bottom: 20px; font-size: 18px; }
.predictions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 640px) { .predictions-grid { grid-template-columns: repeat(4, 1fr); } }
.prediction-item { text-align: center; padding: 16px; background: rgba(0, 0, 0, 0.2); border-radius: var(--radius-md); }
.prediction-label { display: block; font-size: 11px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 8px; }
.prediction-value { font-size: 20px; font-weight: 700; color: var(--green); }
.predictions-disclaimer { margin-top: 16px; font-size: 12px; color: var(--text-muted); text-align: center; font-style: italic; }

/* Success */
.success-container { max-width: 500px; margin: 0 auto; text-align: center; padding: 40px 0; }
.success-icon { font-size: 80px; animation: bounce 0.6s ease; }
@keyframes bounce { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }
.success-title { font-size: 32px; font-weight: 700; color: var(--green); margin: 24px 0 12px; }
.success-subtitle { color: var(--text-secondary); margin-bottom: 32px; }
.success-details { background: var(--bg-card-solid); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 32px; text-align: left; }
.success-detail { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border-light); }
.success-detail:last-child { border-bottom: none; }
.detail-label { color: var(--text-muted); }
.detail-value { font-weight: 600; font-family: var(--font-mono); }
.success-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
@media (min-width: 480px) { .success-actions { flex-direction: row; justify-content: center; } }
.success-share p { color: var(--text-muted); margin-bottom: 12px; }
.share-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.share-btn { display: flex; align-items: center; gap: 6px; padding: 10px 16px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); font-size: 13px; font-weight: 500; color: var(--text-primary); transition: all 0.15s; }
.share-btn:hover { border-color: var(--purple); background: var(--bg-card-hover); }

/* Footer */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border-color); padding: 60px 20px 30px; position: relative; z-index: 1; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; gap: 40px; margin-bottom: 40px; }
@media (min-width: 768px) { .footer-content { grid-template-columns: 1fr 2fr; } }
.footer-brand { max-width: 300px; }
.footer-logo { font-size: 20px; font-weight: 700; letter-spacing: 2px; font-family: var(--font-mono); margin-bottom: 12px; }
.footer-tagline { color: var(--text-muted); font-size: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-column h4 { font-size: 14px; font-weight: 600; margin-bottom: 16px; color: var(--text-primary); }
.footer-column a { display: block; font-size: 14px; color: var(--text-muted); padding: 6px 0; transition: color 0.15s; }
.footer-column a:hover { color: var(--text-primary); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 30px; border-top: 1px solid var(--border-light); display: flex; flex-direction: column; align-items: center; gap: 16px; font-size: 13px; color: var(--text-muted); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-muted); transition: color 0.15s; }
.footer-legal a:hover { color: var(--text-primary); }

/* Toast */
.toast-container { position: fixed; bottom: 20px; right: 20px; left: 20px; z-index: 2000; display: flex; flex-direction: column; gap: 12px; pointer-events: none; }
@media (min-width: 480px) { .toast-container { left: auto; max-width: 400px; } }
.toast { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: var(--bg-card-solid); border: 1px solid var(--border-color); border-radius: var(--radius-md); box-shadow: 0 8px 40px rgba(0,0,0,0.4); animation: slideIn 0.3s ease; pointer-events: auto; }
@keyframes slideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.toast.success { border-color: var(--green); }
.toast.error { border-color: var(--red); }
.toast.warning { border-color: var(--orange); }
.toast-icon { font-size: 20px; flex-shrink: 0; }
.toast-content { flex: 1; }
.toast-title { font-weight: 600; margin-bottom: 4px; }
.toast-message { font-size: 14px; color: var(--text-secondary); }
.toast-close { background: none; border: none; color: var(--text-muted); font-size: 18px; cursor: pointer; padding: 0; line-height: 1; flex-shrink: 0; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* Listings Stats Bar */
.listings-stats-bar { display: flex; gap: 24px; padding: 16px 20px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); margin-bottom: 20px; flex-wrap: wrap; font-size: 14px; color: var(--text-secondary); }
.listings-stats-bar span { display: flex; align-items: center; gap: 6px; }

/* Listings Sort */
.listings-sort { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.sort-label { font-size: 14px; color: var(--text-muted); }
.listings-sort-btn { padding: 8px 16px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-full); font-size: 13px; font-weight: 500; color: var(--text-secondary); transition: all 0.15s; }
.listings-sort-btn:hover { border-color: var(--purple); color: var(--text-primary); }
.listings-sort-btn.active { background: var(--purple); border-color: var(--purple); color: white; }

/* Listing Card Growth */
.listing-growth { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px 0; border-top: 1px solid var(--border-light); margin-top: 12px; }
.listing-growth-item { text-align: center; }
.listing-growth-label { display: block; font-size: 10px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 4px; }
.listing-growth-value { font-weight: 700; font-family: var(--font-mono); font-size: 14px; }
.listing-growth-value.positive { color: var(--green); }
.listing-growth-value.negative { color: var(--red); }

/* Hot Badge */
.listing-card-hot { position: absolute; top: 12px; right: 12px; padding: 4px 10px; background: linear-gradient(135deg, #f59e0b, #ef4444); border-radius: var(--radius-full); font-size: 10px; font-weight: 700; color: white; text-transform: uppercase; animation: hotPulse 2s ease-in-out infinite; }
@keyframes hotPulse { 0%, 100% { box-shadow: 0 0 10px rgba(245, 158, 11, 0.5); } 50% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.7); } }

/* Info Box */
.listings-info-box { margin-top: 48px; padding: 24px; background: linear-gradient(135deg, var(--purple-bg), var(--green-bg)); border: 1px solid var(--border-color); border-radius: var(--radius-lg); }
.listings-info-box h4 { font-size: 18px; margin-bottom: 12px; }
.listings-info-box p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.6; }
.listings-info-box ul { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.listings-info-box li { font-size: 14px; color: var(--text-secondary); }
@media (max-width: 480px) { .listings-info-box ul { grid-template-columns: 1fr; } }

/* Listing Footer */
.listing-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--border-light); margin-top: 12px; }
.listing-plan { font-size: 12px; font-weight: 600; color: var(--purple); }
.listing-card-new { background: var(--green); }

/* Success badge override */
.listing-card .listing-card-new { background: linear-gradient(135deg, var(--green), var(--green-dark)); }

/* Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(8px); z-index: 3000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: all 0.25s; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal { background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: var(--radius-xl); width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto; position: relative; transform: scale(0.9) translateY(20px); transition: transform 0.25s; }
.modal-overlay.active .modal { transform: scale(1) translateY(0); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 50%; font-size: 20px; color: var(--text-secondary); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.15s; z-index: 1; }
.modal-close:hover { background: var(--red-bg); border-color: var(--red); color: var(--red); }
.modal-header { display: flex; align-items: center; gap: 16px; padding: 24px; border-bottom: 1px solid var(--border-color); }
.modal-token-logo { width: 64px; height: 64px; border-radius: var(--radius-lg); background: var(--purple-bg); display: flex; align-items: center; justify-content: center; font-size: 32px; overflow: hidden; flex-shrink: 0; }
.modal-token-logo img { width: 100%; height: 100%; object-fit: cover; }
.modal-token-info { flex: 1; min-width: 0; }
.modal-token-info h2 { font-size: 20px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.modal-symbol { color: var(--purple); font-family: var(--font-mono); }
.modal-price-info { text-align: right; }
.modal-price { display: block; font-size: 18px; font-weight: 700; font-family: var(--font-mono); }
.modal-change { font-size: 14px; font-weight: 600; }
.modal-change.positive { color: var(--green); }
.modal-change.negative { color: var(--red); }
.modal-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 20px 24px; background: var(--bg-card); }
.modal-stat { text-align: center; padding: 12px; background: var(--bg-secondary); border-radius: var(--radius-md); }
.modal-stat-label { display: block; font-size: 11px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 4px; }
.modal-stat-value { font-size: 16px; font-weight: 700; font-family: var(--font-mono); }
.modal-section { padding: 20px 24px; }
.modal-section label { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.modal-ca-box { display: flex; gap: 12px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 12px 16px; align-items: center; }
.modal-ca { flex: 1; font-family: var(--font-mono); font-size: 12px; color: var(--purple); word-break: break-all; }
.modal-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 24px 20px; }
.modal-link { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); font-size: 13px; font-weight: 500; color: var(--text-primary); transition: all 0.15s; }
.modal-link:hover { border-color: var(--purple); background: var(--purple-bg); }
.modal-promo-info { margin: 0 24px 20px; padding: 16px; background: linear-gradient(135deg, var(--green-bg), var(--purple-bg)); border: 1px solid var(--border-color); border-radius: var(--radius-md); text-align: center; }
.promo-badge { margin-bottom: 8px; }
.promo-badge span { padding: 4px 12px; background: var(--purple); border-radius: var(--radius-full); font-size: 12px; font-weight: 600; }
.modal-promo-info p { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
.promo-results { font-size: 14px; color: var(--green); }
.modal-actions { display: flex; gap: 10px; padding: 20px 24px; border-top: 1px solid var(--border-color); flex-wrap: wrap; }
.modal-actions .btn { flex: 1; min-width: 120px; justify-content: center; }

/* Hero Search */
.hero-search { max-width: 600px; margin: 0 auto 32px; }
.search-box { display: flex; background: var(--bg-card); border: 2px solid var(--border-color); border-radius: var(--radius-full); overflow: hidden; transition: border-color 0.15s; }
.search-box:focus-within { border-color: var(--purple); }
.search-icon { padding: 0 0 0 20px; font-size: 18px; display: flex; align-items: center; }
.search-box input { flex: 1; padding: 14px 16px; background: transparent; border: none; font-size: 15px; color: var(--text-primary); outline: none; min-width: 0; }
.search-box input::placeholder { color: var(--text-muted); }
.search-btn { padding: 12px 24px; background: var(--purple); border: none; color: white; font-weight: 600; font-size: 14px; cursor: pointer; transition: background 0.15s; }
.search-btn:hover { background: var(--purple-dark); }

/* Watchlist Section */
.watchlist-section.hidden { display: none; }
