/* ========== FRENSWAP STYLES ========== */
/* Based on bitty-cat retro pixel aesthetic with emerald primary */

/* ---------- Variables ---------- */
:root {
    --fs-bg: #0a0a0a;
    --fs-bg-alt: #0d1117;
    --fs-primary: #00FF88;
    --fs-primary-dim: rgba(0, 255, 136, 0.15);
    --fs-primary-glow: rgba(0, 255, 136, 0.5);
    --fs-accent: #00FFFF;
    --fs-gold: #FFD700;
    --fs-red: #FF4444;
    --fs-text: #ccc;
    --fs-text-dim: #888;
    --fs-text-dark: #555;
    --fs-card-bg: rgba(0, 0, 0, 0.5);
    --fs-card-border: rgba(0, 255, 136, 0.12);
    --fs-card-border-hover: rgba(0, 255, 136, 0.3);
    --fs-radius: 12px;
    --fs-radius-sm: 6px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--fs-bg); height: 100%; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--fs-bg); }
::-webkit-scrollbar-thumb { background: rgba(0,255,136,0.15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,255,136,0.3); }
* { scrollbar-width: thin; scrollbar-color: rgba(0,255,136,0.15) var(--fs-bg); }

body {
    font-family: 'Space Mono', monospace;
    background: linear-gradient(135deg, #0a0a0a 0%, #0d1a12 50%, #0a1510 100%);
    background-attachment: fixed;
    color: var(--fs-text);
    line-height: 1.6;
    font-size: 14px;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100%;
}
@supports (-webkit-touch-callout: none) { body { background-attachment: scroll; } }

/* Pixel grid overlay */
body::before {
    content: '';
    position: fixed; inset: 0;
    background-image:
        linear-gradient(0deg, transparent 24%, rgba(0,255,136,0.02) 25%, rgba(0,255,136,0.02) 26%, transparent 27%, transparent 74%, rgba(0,255,136,0.02) 75%, rgba(0,255,136,0.02) 76%, transparent 77%),
        linear-gradient(90deg, transparent 24%, rgba(0,255,136,0.02) 25%, rgba(0,255,136,0.02) 26%, transparent 27%, transparent 74%, rgba(0,255,136,0.02) 75%, rgba(0,255,136,0.02) 76%, transparent 77%);
    background-size: 50px 50px;
    pointer-events: none; z-index: 0;
}

/* CRT scanlines */
body::after {
    content: '';
    position: fixed; inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.05) 2px, rgba(0,0,0,0.05) 4px);
    pointer-events: none; z-index: 9999;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: 'Press Start 2P', cursive; line-height: 1.5; }
a { color: var(--fs-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--fs-gold); }

/* ---------- Particles ---------- */
#particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.particle {
    position: absolute; width: 4px; height: 4px;
    background: rgba(0,255,136,0.25); animation: floatUp linear infinite;
}
@keyframes floatUp {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; } 90% { opacity: 1; }
    100% { transform: translateY(-20px) rotate(360deg); opacity: 0; }
}

/* ---------- NAV ---------- */
.nav {
    position: sticky; top: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 24px;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,255,136,0.1);
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-text {
    font-family: 'Press Start 2P', cursive; font-size: 14px;
    color: var(--fs-bg); background: var(--fs-primary);
    padding: 4px 6px; border-radius: 4px;
    text-shadow: none;
    box-shadow: 0 0 10px var(--fs-primary-glow);
}
.nav-name {
    font-family: 'Press Start 2P', cursive; font-size: 11px;
    color: var(--fs-primary);
    text-shadow: 0 0 8px var(--fs-primary-glow);
    line-height: 1;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 12px; border-radius: 4px;
    color: #888; text-decoration: none;
    font-family: 'Press Start 2P', cursive; font-size: 8px;
    letter-spacing: 0.5px; transition: all 0.2s;
    position: relative;
}
.nav-link i { font-size: 10px; }
.nav-link:hover { color: var(--fs-primary); }
.nav-link.active { color: var(--fs-primary); text-shadow: 0 0 8px var(--fs-primary-glow); }
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px;
    background: var(--fs-primary); box-shadow: 0 0 6px var(--fs-primary-glow);
    transition: all 0.25s ease; transform: translateX(-50%);
}
.nav-link:hover::after, .nav-link.active::after { width: 70%; }

.nav-right { display: flex; align-items: center; gap: 12px; }
.net-indicator {
    display: flex; align-items: center; gap: 6px;
    padding: 4px 10px; border-radius: 4px;
    background: rgba(0,0,0,0.4); border: 1px solid rgba(0,255,136,0.15);
}
.net-label { font-family: 'Press Start 2P', cursive; font-size: 7px; color: var(--fs-primary); letter-spacing: 1px; }
.net-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #00FF00; box-shadow: 0 0 6px rgba(0,255,0,0.5);
    animation: pulse 2s ease infinite;
}
.net-dot.mainnet { background: #00FF00; box-shadow: 0 0 6px rgba(0,255,0,0.5); }
@keyframes pulse { 0%,100% { box-shadow: 0 0 6px rgba(0,255,136,0.5); } 50% { box-shadow: 0 0 14px rgba(0,255,136,0.3), 0 0 20px rgba(0,255,136,0.1); } }

.btn-connect {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 20px; border-radius: 6px;
    background: linear-gradient(135deg, #00cc6a, #00995f);
    color: #fff; border: 2px solid transparent;
    font-family: 'Press Start 2P', cursive; font-size: 10px;
    cursor: pointer; transition: all 0.2s;
    box-shadow: 3px 3px 0 #000;
    position: relative; overflow: hidden;
    white-space: nowrap;
}
.btn-connect.connected {
    background: rgba(0,0,0,0.5);
    border: 2px solid var(--fs-primary);
    box-shadow: 0 0 8px var(--fs-primary-glow), 3px 3px 0 #000;
}
.btn-connect.connected:hover { box-shadow: 0 0 12px var(--fs-primary-glow), 4px 4px 0 #000; }
.btn-connect:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 #000; }
.btn-connect::after {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
    transform: translateX(-100%); transition: none;
}
.btn-connect:hover::after { transform: translateX(100%); transition: transform 0.5s ease; }
.btn-connect i { font-size: 14px; }

.nav-hamburger { display: none; background: none; border: none; color: var(--fs-primary); font-size: 18px; cursor: pointer; padding: 8px; }
.nav-mobile { display: none; }

/* ---------- HERO LANDING ---------- */
.hero-landing {
    text-align: center;
    padding: 80px 24px 60px;
    position: relative; z-index: 1;
    min-height: 70vh;
    display: flex; align-items: center; justify-content: center;
}
.hero-content { max-width: 700px; }
.hero-title {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(28px, 6vw, 52px);
    color: var(--fs-primary);
    text-shadow: 0 0 30px var(--fs-primary-glow), 4px 4px 0 #000;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.hero-title span {
    color: var(--fs-gold);
    text-shadow: 0 0 20px rgba(255,215,0,0.4), 4px 4px 0 #000;
}
.hero-tagline {
    font-size: 14px; color: var(--fs-text-dim);
    letter-spacing: 2px; margin-bottom: 40px;
    text-transform: uppercase;
}

/* Stats bar */
.stats-bar {
    display: flex; justify-content: center; gap: 16px;
    margin-bottom: 48px; flex-wrap: wrap;
}
.stat-badge {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 4px;
    background: rgba(0,255,136,0.06);
    border: 1px solid rgba(0,255,136,0.15);
    font-family: 'Press Start 2P', cursive; font-size: 7px;
    color: var(--fs-primary); letter-spacing: 0.5px;
}
.stat-badge i { font-size: 12px; }

/* How it works */
.how-it-works {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin-bottom: 48px; flex-wrap: wrap;
}
.step {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 20px 24px; border-radius: 8px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(0,255,136,0.1);
    min-width: 100px;
    position: relative;
}
.step-num {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--fs-primary); color: var(--fs-bg);
    font-family: 'Press Start 2P', cursive; font-size: 8px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 8px var(--fs-primary-glow);
}
.step-icon { font-size: 24px; color: var(--fs-primary); }
.step p { font-family: 'Press Start 2P', cursive; font-size: 8px; color: var(--fs-text-dim); }
.step-arrow { color: var(--fs-text-dark); font-size: 14px; }

/* CTA */
.btn-swap-cta {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Press Start 2P', cursive; font-size: 11px;
    padding: 16px 32px; border-radius: 6px;
    background: linear-gradient(135deg, #00cc6a, #009955);
    color: #fff; border: 2px solid var(--fs-primary);
    cursor: pointer; transition: all 0.25s;
    box-shadow: 0 0 20px rgba(0,255,136,0.2), 4px 4px 0 #000;
    text-decoration: none; text-transform: uppercase;
    animation: ctaGlow 2s ease infinite;
}
@keyframes ctaGlow {
    0%,100% { box-shadow: 0 0 20px rgba(0,255,136,0.2), 4px 4px 0 #000; }
    50% { box-shadow: 0 0 30px rgba(0,255,136,0.4), 4px 4px 0 #000; }
}
.btn-swap-cta:hover {
    transform: translate(-2px, -2px);
    box-shadow: 0 0 30px rgba(0,255,136,0.5), 6px 6px 0 #000;
    color: #fff;
}

/* ---------- SWAP SECTION ---------- */
.swap-section {
    position: relative; z-index: 1;
    padding: 40px 16px 80px;
    display: flex; justify-content: center;
}
.swap-container {
    width: 100%; max-width: 460px;
    background: rgba(10,10,10,0.85);
    border: 1px solid rgba(0,255,136,0.12);
    border-radius: var(--fs-radius);
    padding: 24px;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    position: relative;
}
.swap-container::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--fs-primary), transparent);
}

.swap-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
}
.swap-header h2 {
    font-size: 12px; color: var(--fs-primary);
    text-shadow: 0 0 8px var(--fs-primary-glow);
}
.settings-btn {
    background: none; border: none; color: var(--fs-text-dim);
    font-size: 16px; cursor: pointer; padding: 6px;
    border-radius: 4px; transition: all 0.2s;
}
.settings-btn:hover { color: var(--fs-primary); background: rgba(0,255,136,0.08); }

/* Slippage panel */
.slippage-panel {
    display: none; margin-bottom: 16px; padding: 12px;
    background: rgba(0,0,0,0.4); border: 1px solid rgba(0,255,136,0.1);
    border-radius: var(--fs-radius-sm);
}
.slippage-panel.open { display: block; }
.slippage-label {
    font-family: 'Press Start 2P', cursive; font-size: 7px;
    color: var(--fs-text-dim); margin-bottom: 10px; display: block;
}
.slippage-options { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.slippage-opt {
    font-family: 'Space Mono', monospace; font-size: 12px;
    padding: 6px 14px; border-radius: 4px;
    background: rgba(0,0,0,0.4); border: 1px solid rgba(0,255,136,0.15);
    color: var(--fs-text-dim); cursor: pointer; transition: all 0.2s;
}
.slippage-opt:hover { border-color: var(--fs-primary); color: var(--fs-primary); }
.slippage-opt.active {
    background: var(--fs-primary-dim); border-color: var(--fs-primary);
    color: var(--fs-primary); box-shadow: 0 0 6px var(--fs-primary-glow);
}
.slippage-custom {
    display: flex; align-items: center; gap: 4px;
}
.slippage-custom input {
    width: 70px; padding: 6px 8px;
    font-family: 'Space Mono', monospace; font-size: 12px;
    background: rgba(0,0,0,0.4); border: 1px solid rgba(0,255,136,0.15);
    border-radius: 4px; color: var(--fs-text); outline: none;
    transition: border-color 0.2s;
}
.slippage-custom input:focus { border-color: var(--fs-primary); }
.slippage-custom span { color: var(--fs-text-dim); font-size: 12px; }

/* ---------- TOKEN CARD ---------- */
.token-card {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(0,255,136,0.08);
    border-radius: var(--fs-radius);
    padding: 16px;
    transition: border-color 0.2s;
}
.token-card:focus-within { border-color: rgba(0,255,136,0.25); }
.token-card-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 10px;
}
.token-card-label {
    font-family: 'Press Start 2P', cursive; font-size: 7px;
    color: var(--fs-text-dim); letter-spacing: 0.5px;
}
.token-balance { font-size: 11px; color: var(--fs-text-dark); cursor: default; }
.token-card-body { display: flex; align-items: center; gap: 12px; }
.token-selector {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 12px; border-radius: var(--fs-radius-sm);
    background: rgba(0,255,136,0.06); border: 1px solid rgba(0,255,136,0.15);
    color: #fff; cursor: pointer; transition: all 0.2s;
    font-family: 'Space Mono', monospace; font-size: 15px; font-weight: 700;
    white-space: nowrap; flex-shrink: 0;
}
.token-selector:hover { background: rgba(0,255,136,0.12); border-color: var(--fs-primary); }
.token-selector i { font-size: 10px; color: var(--fs-text-dim); }
.token-logo {
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
    object-fit: cover;
}
.token-symbol { font-weight: 700; }
.amount-input {
    flex: 1; min-width: 0;
    font-family: 'Space Mono', monospace; font-size: 24px; font-weight: 700;
    background: transparent; border: none; outline: none;
    color: #fff; text-align: right;
}
.amount-input::placeholder { color: var(--fs-text-dark); }
.amount-input:read-only { color: var(--fs-text-dim); }

.token-card-footer {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 8px; min-height: 22px;
}
.token-usd { font-size: 11px; color: var(--fs-text-dark); }
.quick-amounts { display: flex; gap: 6px; }
.quick-amt {
    font-family: 'Space Mono', monospace; font-size: 10px;
    padding: 3px 8px; border-radius: 3px;
    background: rgba(0,255,136,0.05); border: 1px solid rgba(0,255,136,0.1);
    color: var(--fs-text-dim); cursor: pointer; transition: all 0.2s;
}
.quick-amt:hover { color: var(--fs-primary); border-color: var(--fs-primary); }

/* ---------- SWAP ARROW ---------- */
.swap-arrow-wrap {
    display: flex; justify-content: center;
    margin: -8px 0; position: relative; z-index: 2;
}
.swap-arrow-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(10,10,10,0.95);
    border: 2px solid rgba(0,255,136,0.2);
    color: var(--fs-primary); font-size: 16px;
    cursor: pointer; transition: all 0.25s;
    display: flex; align-items: center; justify-content: center;
}
.swap-arrow-btn:hover {
    background: var(--fs-primary-dim);
    border-color: var(--fs-primary);
    transform: rotate(180deg);
    box-shadow: 0 0 12px var(--fs-primary-glow);
}

/* ---------- PRICE INFO ---------- */
.price-info {
    margin-top: 16px; padding: 12px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(0,255,136,0.06);
    border-radius: var(--fs-radius-sm);
}
.price-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 4px 0; font-size: 11px;
}
.price-row span:first-child { color: var(--fs-text-dim); }
.price-row span:last-child { color: var(--fs-text); }
.price-impact-high { color: var(--fs-red) !important; }
.price-impact-med { color: var(--fs-gold) !important; }

/* ---------- SWAP BUTTON ---------- */
.btn-swap-main {
    width: 100%; margin-top: 16px;
    font-family: 'Press Start 2P', cursive; font-size: 11px;
    padding: 16px; border-radius: var(--fs-radius-sm);
    background: linear-gradient(135deg, #00cc6a, #009955);
    color: #fff; border: 2px solid var(--fs-primary);
    cursor: pointer; transition: all 0.25s;
    box-shadow: 0 0 15px rgba(0,255,136,0.15), 3px 3px 0 #000;
    text-transform: uppercase; letter-spacing: 1px;
}
.btn-swap-main:hover:not(:disabled) {
    transform: translate(-1px, -1px);
    box-shadow: 0 0 25px rgba(0,255,136,0.3), 4px 4px 0 #000;
}
.btn-swap-main:disabled {
    opacity: 0.4; cursor: not-allowed;
    background: rgba(0,255,136,0.08);
    border-color: rgba(0,255,136,0.2);
    color: var(--fs-text-dim);
}
.btn-swap-main.loading {
    pointer-events: none;
}

/* ---------- STATUS ---------- */
.swap-status {
    margin-top: 12px; text-align: center;
    font-family: 'Space Mono', monospace; font-size: 11px;
    min-height: 20px;
}
.swap-status.success { color: #00FF88; }
.swap-status.error { color: #FF4444; }
.swap-status.info { color: var(--fs-accent); }

/* Loading spinner */
.loading-spinner {
    display: inline-block; width: 20px; height: 20px;
    border: 2px solid rgba(0,255,136,0.3);
    border-top-color: var(--fs-primary);
    border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- TOKEN MODAL ---------- */
.modal-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
    z-index: 2000; align-items: center; justify-content: center;
    padding: 16px;
}
.modal-overlay.open { display: flex; }
.modal-box {
    width: 100%; max-width: 420px; max-height: 80vh;
    background: #111; border: 1px solid rgba(0,255,136,0.15);
    border-radius: var(--fs-radius); overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: 0 16px 60px rgba(0,0,0,0.6);
}
.modal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 20px; border-bottom: 1px solid rgba(0,255,136,0.08);
}
.modal-header h3 {
    font-size: 10px; color: var(--fs-primary);
}
.modal-close {
    background: none; border: none; color: var(--fs-text-dim);
    font-size: 18px; cursor: pointer; padding: 4px;
    transition: color 0.2s;
}
.modal-close:hover { color: #fff; }
.modal-search {
    margin: 12px 16px; padding: 10px 14px;
    font-family: 'Space Mono', monospace; font-size: 13px;
    background: rgba(0,0,0,0.4); border: 1px solid rgba(0,255,136,0.15);
    border-radius: var(--fs-radius-sm); color: var(--fs-text);
    outline: none; transition: border-color 0.2s;
}
.modal-search:focus { border-color: var(--fs-primary); }
.modal-search::placeholder { color: var(--fs-text-dark); }

.popular-tokens {
    display: flex; flex-wrap: wrap; gap: 8px;
    padding: 0 16px 12px;
}
.popular-token-btn {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: 20px;
    background: rgba(0,255,136,0.05); border: 1px solid rgba(0,255,136,0.12);
    color: var(--fs-text); cursor: pointer; transition: all 0.2s;
    font-family: 'Space Mono', monospace; font-size: 12px;
}
.popular-token-btn:hover { border-color: var(--fs-primary); background: var(--fs-primary-dim); }
.popular-token-btn img { width: 20px; height: 20px; border-radius: 50%; }

.token-list {
    flex: 1; overflow-y: auto; padding: 0 8px 12px;
    min-height: 200px;
}
.token-list-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 12px; border-radius: var(--fs-radius-sm);
    cursor: pointer; transition: background 0.15s;
}
.token-list-item:hover { background: rgba(0,255,136,0.06); }
.token-list-item img { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; background: rgba(255,255,255,0.05); }
.token-list-item-info { flex: 1; min-width: 0; }
.token-list-item-symbol { font-weight: 700; color: #fff; font-size: 14px; }
.token-list-item-name { font-size: 11px; color: var(--fs-text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.token-list-loading { display: flex; justify-content: center; padding: 40px; }
.token-list-empty { text-align: center; padding: 40px; color: var(--fs-text-dim); font-size: 12px; }

/* ---------- FOOTER ---------- */
.footer {
    text-align: center; padding: 40px 24px 32px;
    border-top: 1px solid rgba(0,255,136,0.06);
    position: relative; z-index: 1;
}
.footer-trust {
    font-family: 'Press Start 2P', cursive; font-size: 7px;
    color: var(--fs-primary); margin-bottom: 16px;
    text-shadow: 0 0 8px var(--fs-primary-glow);
}
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; }
.footer-links a {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; color: var(--fs-text-dim); transition: color 0.2s;
}
.footer-links a:hover { color: var(--fs-primary); }
.footer-copy { font-size: 10px; color: var(--fs-text-dark); }

/* ---------- ACCESSIBILITY ---------- */
:focus-visible { outline: 2px solid var(--fs-primary); outline-offset: 2px; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--fs-gold); outline-offset: 2px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: block; }
    .nav-mobile.open {
        display: flex; flex-direction: column;
        position: fixed; top: 56px; left: 0; right: 0; bottom: 0;
        background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
        padding: 20px; gap: 2px; z-index: 999;
        animation: slideDown 0.25s ease; overflow-y: auto;
    }
    @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
    .nav-mobile .nav-link { padding: 14px 16px; font-size: 10px; border-bottom: 1px solid rgba(0,255,136,0.05); }

    .hero-landing { padding: 50px 16px 40px; min-height: auto; }
    .hero-title { font-size: clamp(20px, 5vw, 36px); }
    .stats-bar { gap: 8px; }
    .stat-badge { font-size: 6px; padding: 6px 10px; }
    .how-it-works { gap: 8px; }
    .step { padding: 16px 18px; min-width: 80px; }
    .step-arrow { font-size: 10px; }

    .swap-section { padding: 20px 12px 60px; }
    .swap-container { padding: 18px; }
    .amount-input { font-size: 20px; }
}
@media (max-width: 480px) {
    .nav { padding: 10px 12px; }
    .nav-logo-text { font-size: 11px; }
    .nav-name { font-size: 9px; }
    .btn-connect { padding: 8px 12px; font-size: 8px; }
    .btn-connect span { display: inline !important; font-size: 8px; }
    .hero-title { font-size: clamp(18px, 5vw, 28px); }
    .hero-tagline { font-size: 10px; letter-spacing: 1px; }
    .amount-input { font-size: 18px; }
    .how-it-works { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
}
