﻿/* ===== MODERN DARK CRYPTO EXCHANGE THEME ===== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Primary Colors - Premium Gold */
    --primary: #f0b90b;
    --primary-dark: #d4a20a;
    --primary-light: #fcd435;
    --primary-glow: rgba(240, 185, 11, 0.2);
    --primary-gradient: linear-gradient(135deg, #f0b90b 0%, #f5d060 100%);

    /* Accent */
    --accent-blue: #1e90ff;
    --accent-purple: #d4a20a;
    --accent-orange: #f59e0b;

    /* Status */
    --green: #f0b90b;
    --red: #f6465d;
    --yellow: #f0b90b;

    /* Background layers */
    --bg-primary: #0b0e11;
    --bg-secondary: #12161c;
    --bg-card: #1e2329;
    --bg-card-hover: #252930;
    --bg-elevated: #2b3139;
    --bg-input: #0b0e11;
    --bg-modal: rgba(0, 0, 0, 0.85);

    /* Glass effect */
    --glass-bg: rgba(30, 35, 41, 0.65);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    /* Text */
    --text-primary: #eaecef;
    --text-secondary: #848e9c;
    --text-muted: #5e6673;
    --text-bright: #ffffff;

    /* Borders */
    --border: #2b3139;
    --border-light: #363c45;
    --border-active: var(--primary);

    /* Spacing */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 20px var(--primary-glow);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== APP CONTAINER ===== */
.app {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    background: var(--bg-primary);
    overflow-x: hidden;
    padding-bottom: 80px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

@media (min-width: 769px) {
    .app {
        max-width: 480px;
        margin: 0 auto;
        box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
    }

    .bottom-nav {
        max-width: 480px;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 4px;
}

/* ===== HEADER ===== */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(11, 14, 17, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(240, 185, 11, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    width: 40px;
    height: 40px;
    background: #000000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 12px rgba(240, 185, 11, 0.5),
        0 0 30px rgba(240, 185, 11, 0.25),
        0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #f0b90b;
    position: relative;
    overflow: hidden;
}

.header-logo::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
    animation: logoShine 4s ease-in-out infinite;
}

@keyframes logoShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes logoShine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    30%,
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.header-title {
    font-size: 14px;
    font-weight: 800;
    background: linear-gradient(135deg, #f6d365, #fda085, #fff, #f6d365);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 4s ease infinite;
    letter-spacing: -0.3px;
    text-shadow: none;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes titleGlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.header-right-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.header-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(240, 185, 11, 0.06);
    box-shadow: 0 0 15px rgba(240, 185, 11, 0.15);
    transform: translateY(-1px);
}

/* UID display */
.uid-display {
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid rgba(240, 185, 11, 0.2);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
}

.uid-display span {
    color: var(--primary);
    font-weight: 700;
}

/* ===== HERO BANNER ===== */
.hero-banner {
    margin: 16px 16px 0;
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #0b0e11 0%, #1a1510 40%, #1e2329 70%, #12161c 100%);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(240, 185, 11, 0.12);
    box-shadow: 0 4px 30px rgba(240, 185, 11, 0.06);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--primary-gradient);
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(240, 185, 11, 0.25);
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 2;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(240, 185, 11, 0.4);
}

/* ===== PRICE TICKERS ===== */
.tickers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 16px 16px 8px;
}

.tickers::-webkit-scrollbar {
    display: none;
}

.ticker-card {
    min-width: 0;
    padding: 12px 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.ticker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ticker-card:hover::before {
    opacity: 1;
}

.ticker-card:hover {
    border-color: rgba(240, 185, 11, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 185, 11, 0.1);
    background: var(--bg-card-hover);
}

.ticker-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.ticker-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    overflow: hidden;
    padding: 0;
}

.ticker-icon.btc {
    background: transparent;
}

.ticker-icon.eth {
    background: transparent;
}

.ticker-icon.sol {
    background: transparent;
}

.ticker-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ticker-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ticker-change {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 6px;
    display: inline-block;
}

.ticker-change.positive {
    color: var(--green);
    background: rgba(240, 185, 11, 0.12);
}

.ticker-change.negative {
    color: var(--red);
    background: rgba(246, 70, 93, 0.12);
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-bright);
    padding: 0 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-title .see-all {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

/* ===== QUICK ACTIONS GRID ===== */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 4px 16px 20px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 4px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.action-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(240, 185, 11, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.action-item:hover::after {
    opacity: 1;
}

.action-item:hover {
    border-color: rgba(240, 185, 11, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(240, 185, 11, 0.08);
}

.action-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.action-icon.mining {
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.12), rgba(245, 208, 96, 0.12));
    color: var(--primary);
}

.action-icon.convert {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(168, 85, 247, 0.15));
    color: var(--accent-purple);
}

.action-icon.promo {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(251, 191, 36, 0.15));
    color: var(--accent-orange);
}

.action-icon.contract {
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.15), rgba(59, 130, 246, 0.15));
    color: var(--accent-blue);
}

.action-icon.smartcontract {
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.15), rgba(252, 212, 53, 0.15));
    color: #fcd435;
}

.action-icon.cs {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(244, 114, 182, 0.15));
    color: #f472b6;
}

.action-label {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.2;
    word-break: break-word;
    max-width: 100%;
}

/* ===== JOURNEY / INFO BANNER ===== */
.journey-banner {
    margin: 0 16px 20px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.journey-banner:hover {
    border-color: rgba(240, 185, 11, 0.25);
    box-shadow: 0 4px 20px rgba(240, 185, 11, 0.08);
    transform: translateX(2px);
}

.journey-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.1), rgba(245, 208, 96, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.journey-info {
    flex: 1;
}

.journey-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 4px;
}

.journey-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

.journey-arrow {
    color: var(--text-muted);
    font-size: 20px;
}

/* ===== CRYPTO NEWS ===== */
.crypto-news {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 16px 24px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover {
    border-color: rgba(240, 185, 11, 0.2);
    box-shadow: 0 4px 20px rgba(240, 185, 11, 0.06);
    transform: translateX(4px);
}

.news-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 2px;
}

.news-badge.bullish {
    background: rgba(240, 185, 11, 0.15);
    color: #f0b90b;
}

.news-badge.bearish {
    background: rgba(255, 75, 75, 0.15);
    color: #ff4b4b;
}

.news-badge.neutral {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.news-content {
    flex: 1;
    min-width: 0;
}

.news-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 6px;
    line-height: 1.4;
}

.news-desc {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0 0 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.news-source {
    font-size: 10px;
    font-weight: 600;
    color: var(--primary);
}

.news-time {
    font-size: 10px;
    color: var(--text-muted);
}

/* ===== BOTTOM NAVIGATION ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 8px;
    padding: 8px 16px env(safe-area-inset-bottom, 8px);
    background: rgba(11, 14, 17, 0.96);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    backdrop-filter: blur(24px) saturate(180%);
    border-top: 1px solid rgba(240, 185, 11, 0.08);
    z-index: 1000;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.4);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    min-width: 52px;
}

.nav-item svg {
    width: 22px;
    height: 22px;
    transition: all 0.2s ease;
}

.nav-item.active {
    color: var(--primary);
}

.nav-item.active::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 8px rgba(240, 185, 11, 0.4);
}

.nav-item:hover {
    color: var(--primary);
}

/* ===== ASSETS PAGE ===== */
.assets-uid-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.assets-uid-bar .uid-label {
    font-size: 13px;
    color: var(--text-muted);
}

.assets-uid-bar .uid-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.assets-tabs {
    display: flex;
    gap: 0;
    padding: 0 16px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
}

.asset-tab {
    flex: 1;
    text-align: center;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    border: none;
    background: none;
    position: relative;
    transition: all 0.2s ease;
    font-family: inherit;
}

.asset-tab.active {
    color: var(--primary);
    font-weight: 600;
}

.asset-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px 3px 0 0;
}

/* Balance Section */
.balance-section {
    padding: 28px 20px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.balance-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.balance-amount {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-bright);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
    text-shadow: 0 0 40px rgba(240, 185, 11, 0.15);
}

.balance-usd {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 12px;
    padding: 0 20px 24px;
    justify-content: center;
}

.action-btn {
    flex: 1;
    max-width: 110px;
    padding: 12px 8px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-family: inherit;
}

.action-btn svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.action-btn:hover {
    border-color: rgba(240, 185, 11, 0.3);
    background: var(--bg-card-hover);
    box-shadow: 0 4px 15px rgba(240, 185, 11, 0.1);
    transform: translateY(-2px);
}

.action-btn.primary {
    background: var(--primary-gradient);
    color: var(--bg-primary);
    border: none;
    position: relative;
    overflow: hidden;
}

.action-btn.primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.action-btn.primary:hover::before {
    transform: translateX(100%);
}

.action-btn.primary svg {
    color: var(--bg-primary);
}

.action-btn.primary:hover {
    box-shadow: 0 4px 25px rgba(240, 185, 11, 0.35);
    transform: translateY(-2px);
}

/* Asset List */
.asset-list {
    padding: 0 16px;
}

.asset-list-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-bright);
    padding: 16px 4px 12px;
    border-bottom: 1px solid var(--border);
}

.asset-item {
    display: flex;
    align-items: center;
    padding: 16px 4px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.asset-item:hover {
    background: rgba(240, 185, 11, 0.03);
    border-radius: var(--radius-sm);
    padding-left: 8px;
}

.asset-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-right: 12px;
    flex-shrink: 0;
}

.asset-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asset-info {
    flex: 1;
}

.asset-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-bright);
}

.asset-full-name {
    font-size: 12px;
    color: var(--text-muted);
}

.asset-values {
    text-align: right;
}

.asset-balance {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-bright);
}

.asset-usd-value {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== WITHDRAW SECTION ===== */
.withdraw-section {
    padding: 16px 16px 24px;
}

.withdraw-section h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.withdraw-item {
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
}

.withdraw-item .wi-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 13px;
}

.withdraw-item .wi-label {
    color: var(--text-muted);
}

.withdraw-item .wi-value {
    color: var(--text-primary);
    font-weight: 500;
}

.withdraw-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.withdraw-status.pending {
    background: rgba(245, 158, 11, 0.12);
    color: var(--yellow);
}

.withdraw-status.approved {
    background: rgba(240, 185, 11, 0.12);
    color: var(--green);
}

.withdraw-status.rejected {
    background: rgba(246, 70, 93, 0.12);
    color: var(--red);
}

/* ===== MODAL / OVERLAY ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg-modal);
    z-index: 2000;
    align-items: flex-end;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    width: 100%;
    max-width: 560px;
    background: var(--bg-card);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: 24px 20px 32px;
    max-height: 85vh;
    overflow-y: auto;
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(240, 185, 11, 0.1);
    border-bottom: none;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(240, 185, 11, 0.05);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.modal-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-bright);
}

.modal-close {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    border-color: var(--red);
    color: var(--red);
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s ease;
    outline: none;
}

.form-input:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.12), 0 0 15px rgba(240, 185, 11, 0.08);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238b95a5' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

/* Buttons */
.btn-primary {
    width: 100%;
    padding: 16px 24px;
    background: var(--primary-gradient);
    color: var(--bg-primary);
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 0 4px 25px rgba(240, 185, 11, 0.35);
    transform: translateY(-2px);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ===== MARKETS PAGE ===== */
.markets-page {
    background: var(--bg-primary);
    min-height: 100vh;
}

.markets-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.markets-header-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.markets-header-right {
    font-size: 14px;
    color: var(--text-muted);
}

.markets-list {
    padding: 0;
}

.market-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.market-item:hover {
    background: rgba(240, 185, 11, 0.03);
    border-bottom-color: rgba(240, 185, 11, 0.15);
}

.market-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.market-icon.btc {
    background: linear-gradient(135deg, #f7931a, #ffb347);
    color: #fff;
}

.market-icon.eth {
    background: linear-gradient(135deg, #f0b90b, #fcd435);
    color: #fff;
}

.market-icon.xrp {
    background: linear-gradient(135deg, #23292f, #3a4553);
    color: #fff;
}

.market-icon.ltc {
    background: linear-gradient(135deg, #345d9d, #5a8fd8);
    color: #fff;
}

.market-icon.bnb {
    background: linear-gradient(135deg, #f0b90b, #ffd54f);
    color: #1a1a2e;
}

.market-icon.sol {
    background: linear-gradient(135deg, #9945ff, #14f195);
    color: #fff;
}

.market-icon.doge {
    background: linear-gradient(135deg, #c2a633, #e8d174);
    color: #fff;
}

.market-icon.trx {
    background: linear-gradient(135deg, #eb0a29, #ff6b6b);
    color: #fff;
}

.market-pair {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-bright);
}

.market-chart {
    width: 100px;
    height: 40px;
}

.market-chart svg {
    width: 100%;
    height: 100%;
}

.market-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 100px;
}

.market-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-bright);
}

.market-change {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.market-change.positive {
    background: rgba(240, 185, 11, 0.12);
    color: var(--green);
}

.market-change.negative {
    background: rgba(246, 70, 93, 0.12);
    color: var(--red);
}

.market-change.neutral {
    background: rgba(156, 163, 175, 0.1);
    color: var(--text-muted);
}

/* ===== TRADE PAGE ===== */
.trade-page {
    background: var(--bg-primary);
    min-height: 100vh;
}

.trade-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.back-btn {
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 8px;
    text-decoration: none;
    transition: color 0.2s;
}

.back-btn:hover {
    color: var(--primary);
}

.trade-tabs {
    display: flex;
    gap: 0;
    flex: 1;
}

.trade-tab {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    padding-bottom: 8px;
    cursor: pointer;
    border: none;
    background: none;
    position: relative;
    transition: color 0.2s;
    font-family: inherit;
    text-align: center;
}

.trade-tab.active {
    color: var(--primary);
}

.trade-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.pair-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--bg-primary);
}

.pair-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--text-primary);
}

.pair-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-bright);
}

.info-btn {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    border: 2px solid var(--primary);
    background: rgba(240, 185, 11, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.info-btn:hover {
    background: rgba(240, 185, 11, 0.2);
    box-shadow: var(--shadow-glow);
}

.price-section {
    display: flex;
    justify-content: space-between;
    padding: 8px 16px 16px;
    background: var(--bg-primary);
}

.price-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.current-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(240, 185, 11, 0.2);
}

.price-change {
    font-size: 14px;
    font-weight: 600;
    color: var(--red);
}

.price-change.positive {
    color: var(--green);
}

.price-stats {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

.stat-row {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    align-items: center;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

.stat-value {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.time-tabs {
    display: flex;
    gap: 4px;
    padding: 8px 16px;
    background: var(--bg-primary);
    overflow-x: auto;
    scrollbar-width: none;
}

.time-tabs::-webkit-scrollbar {
    display: none;
}

.time-tab {
    padding: 6px 14px;
    font-size: 13px;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    border-radius: 6px;
    transition: all 0.2s;
}

.time-tab.active {
    color: var(--primary);
    font-weight: 600;
    background: rgba(240, 185, 11, 0.08);
}

.chart-info {
    padding: 8px 16px;
    background: var(--bg-primary);
}

.chart-pair-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.chart-pair-label svg {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

.chart-pair-label span {
    font-size: 13px;
    color: var(--text-primary);
}

.ma-indicators {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ma-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.ma-label {
    color: var(--text-muted);
}

.ma-value {
    font-weight: 500;
}

.ma-value.yellow {
    color: #eab308;
}

.ma-value.blue {
    color: #3b82f6;
}

.ma-value.purple {
    color: #d4a20a;
}

.chart-container {
    height: 280px;
    padding: 0 8px;
    background: var(--bg-primary);
    position: relative;
}

.chart-canvas {
    width: 100%;
    height: 100%;
    position: relative;
}

.price-labels {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 8px;
    font-size: 11px;
    color: var(--text-muted);
}

.current-price-label {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: var(--bg-primary);
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
}

.volume-section {
    padding: 8px 16px;
    background: var(--bg-primary);
}

.volume-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.volume-label .vol-green {
    color: var(--green);
}

.volume-label .vol-red {
    color: var(--red);
}

.trade-buttons {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--bg-primary);
}

.trade-btn {
    flex: 1;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.3px;
}

.trade-btn.bullish {
    background: linear-gradient(135deg, #f0b90b, #d4a20a);
    color: #fff;
    box-shadow: 0 4px 15px rgba(240, 185, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.trade-btn.bullish::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.4s ease;
}

.trade-btn.bullish:hover::before {
    left: 100%;
}

.trade-btn.bullish:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(240, 185, 11, 0.4);
}

.trade-btn.bearish {
    background: linear-gradient(135deg, #f6465d, #dc2626);
    color: #fff;
    box-shadow: 0 4px 15px rgba(246, 70, 93, 0.3);
    position: relative;
    overflow: hidden;
}

.trade-btn.bearish::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.4s ease;
}

.trade-btn.bearish:hover::before {
    left: 100%;
}

.trade-btn.bearish:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(246, 70, 93, 0.4);
}

/* ===== DEFI MINING PAGE ===== */
.defi-page {
    background: linear-gradient(180deg, #0a0e17 0%, #111827 100%);
    min-height: 100vh;
}

.defi-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: transparent;
}

.defi-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.defi-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-bright);
}

.defi-header-right {
    display: flex;
    gap: 16px;
}

.header-icon-btn {
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* ===== CONNECT WALLET ===== */
.wallet-section {
    padding: 20px 16px;
    text-align: center;
}

.wallet-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--primary-gradient);
    color: var(--bg-primary);
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(240, 185, 11, 0.25);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.wallet-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.wallet-btn:hover::before {
    left: 100%;
}

.wallet-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(240, 185, 11, 0.4);
}

.wallet-info {
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin: 0 16px;
}

.wallet-address {
    font-size: 13px;
    color: var(--text-secondary);
    word-break: break-all;
    font-family: 'Courier New', monospace;
}

/* ===== STATUS MESSAGES ===== */
.status-message {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.status-message.success {
    display: block;
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid rgba(240, 185, 11, 0.2);
    color: var(--green);
}

.status-message.error {
    display: block;
    background: rgba(246, 70, 93, 0.1);
    border: 1px solid rgba(246, 70, 93, 0.2);
    color: var(--red);
}

.status-message.info {
    display: block;
    background: rgba(0, 153, 255, 0.1);
    border: 1px solid rgba(0, 153, 255, 0.2);
    color: var(--accent-blue);
}

/* ===== ALERT / TOAST ===== */
.alert-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-lg);
    max-width: 90%;
    text-align: center;
}

.alert-toast.show {
    transform: translateX(-50%) translateY(0);
}

.alert-toast.success {
    background: linear-gradient(135deg, #f0b90b, #d4a20a);
    color: #fff;
}

.alert-toast.error {
    background: linear-gradient(135deg, #f6465d, #dc2626);
    color: #fff;
}

.alert-toast.warning {
    background: linear-gradient(135deg, #f0b90b, #d4a20a);
    color: #0b0e11;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.animate-in {
    animation: fadeIn 0.5s ease forwards;
}

.loading-shimmer {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-elevated) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* ===== RESPONSIVE - AUTO DEVICE DETECTION ===== */

/* === Extra small phones (iPhone SE, Galaxy A01 etc - under 360px) === */
@media (max-width: 359px) {
    .app {
        max-width: 100%;
    }

    .hero-title {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .hero-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .tickers {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        padding: 12px;
    }

    .ticker-card {
        padding: 10px;
    }

    .ticker-name {
        font-size: 11px;
    }

    .ticker-price {
        font-size: 12px;
    }

    .quick-actions {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        padding: 0 12px 16px;
    }

    .action-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 16px;
    }

    .action-label {
        font-size: 10px;
    }

    .action-item {
        padding: 12px 4px;
    }

    .section-title {
        font-size: 14px;
        padding: 0 12px;
    }

    .balance-amount {
        font-size: 24px;
    }

    .action-buttons {
        flex-wrap: wrap;
    }

    /* Trade page */
    .trade-tab {
        font-size: 11px;
        padding: 8px 4px;
    }

    .current-price {
        font-size: 24px;
    }

    .price-section {
        padding: 8px 12px 12px;
    }

    .stat-label {
        font-size: 10px;
    }

    .stat-value {
        font-size: 11px;
    }

    .trade-buttons {
        gap: 8px;
        padding: 12px;
    }

    .trade-btn {
        padding: 12px 16px;
        font-size: 13px;
    }

    .time-tabs {
        gap: 2px;
        padding: 4px 8px;
    }

    .time-tab {
        font-size: 11px;
        padding: 4px 6px;
    }

    /* Spot */
    .spot-content {
        flex-direction: column;
        padding: 8px;
        gap: 8px;
    }

    .spot-orderbook {
        flex: 1;
    }

    .orderbook-current .current-price {
        font-size: 16px;
    }

    .side-btn {
        padding: 8px;
        font-size: 12px;
    }

    /* Bottom nav */
    .bottom-nav {
        max-width: 100%;
    }

    .nav-item {
        font-size: 10px;
        padding: 6px 8px;
    }

    .nav-item svg {
        width: 20px;
        height: 20px;
    }

    /* News */
    .news-card {
        padding: 10px 12px;
    }

    .news-title {
        font-size: 12px;
    }

    /* Market */
    .market-chart {
        width: 70px;
        height: 30px;
    }

    .market-info {
        min-width: 80px;
    }

    .market-pair {
        font-size: 13px;
    }

    .market-price {
        font-size: 12px;
    }

    /* Modal */
    .modal-content {
        padding: 16px 14px 24px;
    }

    /* Header */
    .header-logo {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .header-title {
        font-size: 12px;
    }

    .header-btn {
        width: 32px;
        height: 32px;
    }
}

/* === Small phones (iPhone 8, Galaxy S8, Pixel 4a - 360px to 389px) === */
@media (min-width: 360px) and (max-width: 389px) {
    .app {
        max-width: 100%;
    }

    .quick-actions {
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
        padding: 4px 12px 16px;
    }

    .action-icon {
        width: 36px;
        height: 36px;
    }

    .action-label {
        font-size: 9px;
    }

    .action-item {
        padding: 12px 2px;
        gap: 5px;
    }

    .tickers {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 12px 12px 6px;
    }

    .ticker-card {
        padding: 10px 8px;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-banner {
        padding: 22px 18px;
        margin: 12px 12px 0;
    }

    .current-price {
        font-size: 28px;
    }

    .balance-amount {
        font-size: 28px;
    }

    .trade-tab {
        font-size: 12px;
    }

    .bottom-nav {
        max-width: 100%;
    }

    .spot-content {
        flex-direction: column;
        gap: 10px;
    }

    .spot-orderbook {
        flex: 1;
    }
}

/* === Standard phones (iPhone 12/13/14, Galaxy S21/S22, Pixel 6 - 390px to 430px) === */
@media (min-width: 390px) and (max-width: 430px) {
    .app {
        max-width: 100%;
    }

    .bottom-nav {
        max-width: 100%;
    }

    .quick-actions {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }

    .action-icon {
        width: 42px;
        height: 42px;
    }

    .action-label {
        font-size: 10px;
    }

    .tickers {
        grid-template-columns: repeat(3, 1fr);
    }

    .spot-content {
        flex-direction: column;
        gap: 10px;
    }

    .spot-orderbook {
        flex: 1;
    }
}

/* === Large phones (iPhone Plus/Max, Galaxy S Ultra, Note - 431px to 480px) === */
@media (min-width: 431px) and (max-width: 480px) {
    .app {
        max-width: 100%;
    }

    .bottom-nav {
        max-width: 100%;
    }
}

/* === Small tablets & foldables (Galaxy Fold inner, iPad Mini - 481px to 768px) === */
@media (min-width: 481px) and (max-width: 768px) {
    .app {
        max-width: 480px;
        margin: 0 auto;
    }

    .bottom-nav {
        max-width: 480px;
    }
}

/* === Tablets (769px to 1023px) - keep mobile layout === */
@media (min-width: 769px) and (max-width: 1023px) {
    .app {
        max-width: 480px;
        margin: 0 auto;
    }

    .bottom-nav {
        max-width: 480px;
    }
}

/* === Desktop (1024px+) === */
@media (min-width: 1024px) {
    .app {
        max-width: 480px;
        margin: 0 auto;
        box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
    }

    .bottom-nav {
        max-width: 480px;
    }
}

/* === Large Desktop (1440px+) === */
@media (min-width: 1440px) {
    .app {
        max-width: 480px;
        margin: 0 auto;
    }

    .bottom-nav {
        max-width: 480px;
    }
}

/* === Landscape mode adjustment === */
@media (orientation: landscape) and (max-height: 500px) {
    .app {
        padding-bottom: 60px;
    }

    .bottom-nav {
        padding: 4px 0;
    }

    .nav-item {
        padding: 4px 12px;
    }

    .nav-item svg {
        width: 18px;
        height: 18px;
    }

    .nav-item span {
        font-size: 9px;
    }

    .hero-banner {
        padding: 12px 16px;
    }

    .hero-title {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .chart-container {
        height: 200px;
    }

    .price-section {
        padding: 6px 16px 8px;
    }

    .current-price {
        font-size: 26px;
    }

    .trade-buttons {
        padding: 8px 16px;
    }

    .trade-btn {
        padding: 10px 16px;
    }
}

/* === Safe area for notched phones (iPhone X+, modern Android) === */
@supports (padding: env(safe-area-inset-bottom)) {
    .bottom-nav {
        padding-bottom: env(safe-area-inset-bottom, 8px);
    }

    .app {
        padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    }

    .trade-buttons {
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    }
}

/* === High DPI / Retina display optimizations === */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .header-logo {
        image-rendering: -webkit-optimize-contrast;
    }

    .ticker-card,
    .action-item,
    .news-card {
        border-width: 0.5px;
    }
}

/* === Dark mode preference (ensure consistency) === */
@media (prefers-color-scheme: dark) {
    body {
        background: var(--bg-primary);
        color: var(--text-primary);
    }
}

/* === Reduced motion preference === */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* === Touch device optimizations === */
@media (hover: none) and (pointer: coarse) {

    .trade-btn,
    .side-btn,
    .hero-btn,
    .action-item,
    .nav-item,
    .ticker-card {
        -webkit-tap-highlight-color: transparent;
    }

    .trade-btn:hover,
    .side-btn:hover,
    .action-item:hover,
    .hero-btn:hover {
        transform: none;
    }

    .trade-btn:active,
    .side-btn:active,
    .action-item:active {
        transform: scale(0.97);
        transition: transform 0.1s;
    }
}

/* ===== UTILITY ===== */
.text-green {
    color: var(--green);
}

.text-red {
    color: var(--red);
}

.text-muted {
    color: var(--text-muted);
}

.text-bright {
    color: var(--text-bright);
}

.text-primary-color {
    color: var(--primary);
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

.hidden {
    display: none !important;
}

/* ===== CONNECT WALLET OVERLAY ===== */
.connect-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.connect-overlay.hidden {
    display: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.connect-modal {
    background: var(--bg-card);
    border: 1px solid rgba(240, 185, 11, 0.15);
    border-radius: 24px;
    padding: 40px 32px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(240, 185, 11, 0.08);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.connect-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(240, 185, 11, 0.3);
}

.connect-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.connect-modal-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
}

.connect-modal-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--primary-gradient);
    color: var(--bg-primary);
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(240, 185, 11, 0.25);
    position: relative;
    overflow: hidden;
}

.connect-modal-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.connect-modal-btn:hover::before {
    left: 100%;
}

.connect-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240, 185, 11, 0.4);
}

.connect-modal-btn:active {
    transform: translateY(0);
}

.connect-modal-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.connect-modal-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ===== SPOT TRADING STYLES ===== */
.trade-view {
    display: block;
}

.trade-view:not(.active) {
    display: none !important;
}

.spot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
}

.spot-pair-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.spot-menu-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 4px;
    cursor: pointer;
}

.spot-pair-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.spot-pair-change {
    font-size: 13px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 4px;
}

.spot-pair-change.positive {
    color: var(--green);
}

.spot-pair-change.negative {
    color: var(--red);
}

.spot-pair-icons {
    display: flex;
    gap: 8px;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 6px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}

.icon-btn:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.spot-content {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--bg-primary);
}

.spot-orderbook {
    flex: 0 0 45%;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 12px;
}

.orderbook-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
}

.orderbook-col {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.3;
}

.orderbook-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 12px;
    font-family: 'SF Mono', 'Consolas', monospace;
}

.orderbook-row.sell .price {
    color: var(--red);
}

.orderbook-row.buy .price {
    color: var(--green);
}

.orderbook-row .vol {
    color: var(--text-secondary);
}

.orderbook-current {
    padding: 8px 0;
    margin: 8px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.orderbook-current .current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
}

.orderbook-current .current-usd {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.orderbook-depth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding-top: 8px;
    font-size: 12px;
    color: var(--text-secondary);
    cursor: pointer;
}

.spot-trading-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spot-side-toggle {
    display: flex;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 4px;
}

.side-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    color: var(--text-secondary);
}

.side-btn.active[data-side="buy"] {
    background: var(--green);
    color: white;
}

.side-btn.active[data-side="sell"] {
    background: var(--red);
    color: white;
}

.spot-order-type select {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 13px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238b95a5' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.spot-market-price-btn {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    text-align: center;
}

.spot-percent-selector {
    display: flex;
    gap: 6px;
}

.percent-btn {
    flex: 1;
    padding: 8px 4px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.percent-btn:hover,
.percent-btn.active {
    border-color: var(--primary);
    color: var(--primary);
}

.spot-input-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spot-input-group label {
    font-size: 11px;
    color: var(--text-muted);
}

.spot-input-group input {
    padding: 10px 14px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 14px;
}

.spot-input-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.spot-available {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

.spot-submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.spot-submit-btn.buy {
    background: var(--green);
    color: white;
}

.spot-submit-btn.sell {
    background: var(--red);
    color: white;
}

.spot-submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.spot-orders-section {
    background: var(--bg-card);
    margin: 12px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.spot-orders-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
}

.orders-tab {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}

.orders-tab.active {
    color: var(--text-primary);
    border-bottom-color: var(--primary);
}

.spot-orders-content {
    min-height: 120px;
    padding: 20px;
}

.empty-orders {
    text-align: center;
    color: var(--text-muted);
}

.empty-orders svg {
    margin-bottom: 8px;
    opacity: 0.5;
}

.empty-orders p {
    font-size: 13px;
}

.spot-refresh-icons {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 8px 12px;
    border-top: 1px solid var(--border);
}

/* Order list styling */
.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid var(--border);
}

.order-item:last-child {
    border-bottom: none;
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order-pair {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.order-details {
    font-size: 12px;
    color: var(--text-muted);
}

.order-amount {
    text-align: right;
}

.order-amount .value {
    font-size: 14px;
    font-weight: 600;
}

.order-amount .status {
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
}

.order-amount .status.filled {
    background: rgba(240, 185, 11, 0.2);
    color: var(--green);
}

.order-amount .status.pending {
    background: rgba(245, 158, 11, 0.2);
    color: var(--yellow);
}

.order-amount .status.cancelled {
    background: rgba(246, 70, 93, 0.2);
    color: var(--red);
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
    position: relative;
}

.lang-btn {
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid rgba(240, 185, 11, 0.2);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
}

.lang-btn:hover {
    background: rgba(240, 185, 11, 0.2);
    border-color: rgba(240, 185, 11, 0.4);
}

.lang-btn svg {
    width: 10px;
    height: 10px;
    transition: transform 0.2s;
}

.lang-switcher.open .lang-btn svg {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: rgba(15, 23, 42, 0.97);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    min-width: 140px;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lang-switcher.open .lang-dropdown {
    display: block;
    animation: langFadeIn 0.15s ease;
}

@keyframes langFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.15s;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid rgba(30, 41, 59, 0.5);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(240, 185, 11, 0.08);
    color: var(--text-secondary);
}

.lang-option.active {
    color: var(--primary);
    background: rgba(240, 185, 11, 0.1);
}

.lang-flag {
    font-size: 16px;
    line-height: 1;
}

/* ===== WELCOME PROMO POPUP STYLES ===== */
.airdrop-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.78);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.airdrop-overlay.airdrop-visible {
    opacity: 1;
    pointer-events: auto;
}

.airdrop-overlay.airdrop-hiding {
    opacity: 0;
    pointer-events: none;
}

.airdrop-popup {
    position: relative;
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(170deg, #1a1e2e 0%, #0d1117 40%, #121820 100%);
    border-radius: 24px;
    border: 1px solid rgba(240, 185, 11, 0.2);
    box-shadow:
        0 0 40px rgba(240, 185, 11, 0.08),
        0 25px 80px rgba(0, 0, 0, 0.6);
    padding: 28px 20px 24px;
    text-align: center;
    overflow-x: hidden;
    transform: scale(0.85) translateY(30px);
    animation: airdropPopIn 0.5s 0.3s ease forwards;
}

@keyframes airdropPopIn {
    to {
        transform: scale(1) translateY(0);
    }
}

.airdrop-overlay.airdrop-hiding .airdrop-popup {
    transform: scale(0.85) translateY(30px);
    transition: transform 0.4s ease;
}

/* Close Button */
.airdrop-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #848e9c;
    font-size: 22px;
    line-height: 36px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.airdrop-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: rotate(90deg);
}

/* Badge */
.airdrop-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(240, 185, 11, 0.12);
    border: 1px solid rgba(240, 185, 11, 0.25);
    margin-bottom: 16px;
    position: relative;
}

.airdrop-badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f0b90b;
    animation: airdropPulse 2s ease infinite;
}

@keyframes airdropPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.airdrop-badge-text {
    font-size: 11px;
    font-weight: 700;
    color: #f0b90b;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Header */
.airdrop-header {
    margin-bottom: 20px;
}

.airdrop-eth-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    border: 2px solid rgba(240, 185, 11, 0.5);
    box-shadow: 0 0 20px rgba(240, 185, 11, 0.15);
}

.airdrop-eth-icon svg {
    position: relative;
    z-index: 2;
}

.airdrop-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}

.airdrop-title-glow {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #f6d365 0%, #fda085 50%, #f6d365 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.airdrop-title-sub {
    font-size: 13px;
    font-weight: 700;
    color: #f0b90b;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.airdrop-desc {
    font-size: 13px;
    color: #848e9c;
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}

.airdrop-desc strong {
    color: #eaecef;
}

/* Stats / Feature Icons */
.airdrop-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.airdrop-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.airdrop-stat-num {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.airdrop-stat-label {
    font-size: 10px;
    color: #848e9c;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.airdrop-stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.06);
}

/* CTA Button */
.airdrop-cta {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #f0b90b 0%, #f5d060 100%);
    color: #0b0e11;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(240, 185, 11, 0.25);
    margin-bottom: 12px;
}

.airdrop-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(240, 185, 11, 0.4);
}

.airdrop-cta:active {
    transform: translateY(0) scale(0.98);
}

.airdrop-footer-note {
    font-size: 11px;
    color: #5e6673;
}

/* Popup scrollbar */
.airdrop-popup::-webkit-scrollbar {
    width: 3px;
}

.airdrop-popup::-webkit-scrollbar-track {
    background: transparent;
}

.airdrop-popup::-webkit-scrollbar-thumb {
    background: rgba(240, 185, 11, 0.2);
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 380px) {
    .airdrop-popup {
        padding: 24px 14px 20px;
    }

    .airdrop-title-glow {
        font-size: 24px;
    }
}