/* =========================================
   TradePro Elite — Main App Styles
   ========================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #0b0e11;
    --card: #1a1d24;
    --card2: #212630;
    --primary: #f0b90b;
    --primary-dark: #c99a09;
    --text: #eaecef;
    --subtext: #848e9c;
    --up: #0ecb81;
    --down: #f6465d;
    --border: #2b3139;
    --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.otp-input {
    font-size: 0px !important;
}
/* ---- TICKER BAR ---- */
.ticker-bar {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    overflow: hidden;
    position: relative;
}
.ticker-inner {
    display: flex;
    gap: 30px;
    animation: ticker-scroll 40s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.ticker-item { display: flex; align-items: center; gap: 6px; font-size: 12px; }
.ticker-sym { font-weight: 700; color: var(--text); }
.ticker-price { color: var(--subtext); }
.ticker-chg { font-weight: 600; }
@keyframes ticker-scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ---- VIEWS ---- */
.view { display: none; padding: 16px; padding-bottom: 90px; animation: fadeIn 0.2s ease; }
.view.active { display: block; }
@keyframes fadeIn { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:none} }

/* ---- HEADER ---- */
.header { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.user-chip {
    width: 38px; height: 38px; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000; border-radius: 50%; display: grid; place-items: center;
    font-weight: 800; font-size: 13px; cursor: pointer; flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(240,185,11,0.25);
}
.search-pill {
    flex: 1; background: var(--card); padding: 11px 16px; border-radius: 24px;
    color: var(--subtext); font-size: 14px; cursor: pointer; border: 1px solid var(--border);
    display: flex; align-items: center; gap: 8px; transition: 0.2s;
}
.search-pill:hover { border-color: var(--primary); }
.notif-btn {
    width: 38px; height: 38px; background: var(--card); border-radius: 50%;
    display: grid; place-items: center; cursor: pointer; border: 1px solid var(--border);
    position: relative; color: var(--subtext); font-size: 20px;
}
.notif-dot {
    position: absolute; top: 6px; right: 6px; width: 8px; height: 8px;
    background: var(--down); border-radius: 50%; border: 2px solid var(--bg);
}

/* ---- BALANCE CARD ---- */
.balance-card {
    background: linear-gradient(135deg, #1a1d24 0%, #131720 100%);
    padding: 24px 20px; border-radius: 20px; margin-bottom: 22px;
    border: 1px solid #2b3139; position: relative; overflow: hidden;
}
.balance-card::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 150px; height: 150px; background: radial-gradient(circle, rgba(240,185,11,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.balance-label { color: var(--subtext); font-size: 13px; margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.balance-main { font-size: 34px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 4px; }
.balance-24h { font-size: 12px; margin-bottom: 18px; }
.action-row { display: flex; gap: 10px; }
.btn-deposit {
    flex: 1; padding: 13px; border-radius: 12px; border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000; font-weight: 700; font-size: 14px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 7px;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 15px rgba(240,185,11,0.2);
}
.btn-deposit:active { transform: scale(0.96); }
.btn-withdraw {
    flex: 1; padding: 13px; border-radius: 12px; border: 1px solid var(--border);
    background: var(--card2); color: var(--text); font-weight: 700; font-size: 14px;
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px;
    transition: transform 0.15s;
}
.btn-withdraw:active { transform: scale(0.96); }

/* ---- SECTION HEADER ---- */
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.section-header h3 { font-size: 16px; font-weight: 700; }
.section-link { color: var(--subtext); font-size: 12px; cursor: pointer; display: flex; align-items: center; gap: 3px; }
.section-link:hover { color: var(--primary); }

/* ---- FAV GRID ---- */
.fav-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fav-card {
    background: var(--card); padding: 16px 14px; border-radius: var(--radius);
    border: 1px solid var(--border); cursor: pointer; transition: 0.15s;
    display: flex; flex-direction: column; gap: 5px;
}
.fav-card:active { transform: scale(0.96); background: var(--card2); }
.fav-card-top { display: flex; justify-content: space-between; align-items: center; }
.fav-card-symbol { font-weight: 700; font-size: 14px; }
.fav-card-price { font-size: 15px; font-weight: 700; }
.fav-card-change { font-size: 12px; font-weight: 600; }
.mini-chart { height: 30px; width: 100%; opacity: 0.6; }

/* ---- COIN ROWS ---- */
.movers-container { background: var(--card); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.coin-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 16px; border-bottom: 1px solid var(--border); cursor: pointer; transition: 0.15s;
}
.coin-row:last-child { border-bottom: none; }
.coin-row:active { background: var(--card2); }
.coin-left { display: flex; align-items: center; gap: 12px; }
.coin-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--card2); }
.coin-name { font-weight: 600; font-size: 14px; }
.coin-fullname { color: var(--subtext); font-size: 11px; margin-top: 1px; }
.coin-right { text-align: right; }
.coin-price { font-weight: 600; font-size: 14px; }

/* ---- SEARCH ---- */
.search-box { margin-bottom: 16px; }
.search-box input {
    width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--border);
    background: var(--card); color: var(--text); outline: none; font-size: 15px; transition: 0.2s;
}
.search-box input:focus { border-color: var(--primary); }

/* ---- COLORS ---- */
.up { color: var(--up); }
.down { color: var(--down); }

/* ---- BOTTOM NAV ---- */
.bottom-nav {
    position: fixed; bottom: 0; left: 0; width: 100%; height: 72px;
    background: var(--card); display: flex; justify-content: space-around;
    align-items: center; border-top: 1px solid var(--border); z-index: 200;
    backdrop-filter: blur(10px);
}
.nav-item { display: flex; flex-direction: column; align-items: center; color: var(--subtext); font-size: 10px; cursor: pointer; padding: 8px 20px; border-radius: 12px; transition: 0.2s; }
.nav-item.active { color: var(--primary); }
.nav-item i { font-size: 22px; margin-bottom: 4px; }

/* ---- SIDEBAR ---- */
#sidebar {
    position: fixed; left: -290px; top: 0; width: 290px; height: 100%;
    background: var(--card); z-index: 1000; transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
    padding: 0; overflow-y: auto; border-right: 1px solid var(--border);
}
#sidebar.open { left: 0; }
#sidebar-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); display: none;
    z-index: 999; backdrop-filter: blur(2px);
}
#sidebar-overlay.active { display: block; }
.sidebar-header {
    background: linear-gradient(180deg, rgba(240,185,11,0.08) 0%, transparent 100%);
    padding: 40px 24px 24px; border-bottom: 1px solid var(--border);
    text-align: center;
}
.user-avatar-large {
    width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000; border-radius: 50%; display: grid; place-items: center;
    margin: 0 auto 12px; font-weight: 800; font-size: 24px;
    box-shadow: 0 8px 20px rgba(240,185,11,0.3);
}
.sidebar-username { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.sidebar-uid { font-size: 11px; color: var(--primary); display: flex; align-items: center; justify-content: center; gap: 5px; }
.sidebar-menu { list-style: none; padding: 16px 12px; }
.sidebar-menu li {
    padding: 14px 14px; border-radius: 10px; display: flex; align-items: center;
    gap: 14px; cursor: pointer; font-size: 14px; color: var(--subtext); transition: 0.2s;
    margin-bottom: 2px;
}
.sidebar-menu li:hover { background: var(--card2); color: var(--text); }
.sidebar-menu li.logout { color: var(--down); margin-top: 10px; border: 1px solid transparent; }
.sidebar-menu li.logout:hover { background: rgba(246,70,93,0.08); border-color: rgba(246,70,93,0.2); }
.sidebar-menu li i { font-size: 20px; width: 22px; }

/* ---- POPUPS ---- */
.popup-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.85);
    display: none; align-items: center; justify-content: center;
    z-index: 2000; backdrop-filter: blur(6px);
}
.popup-overlay.active { display: flex; }

/* ---- TRADE POPUP ---- */
.trade-popup-card {
    background: var(--card); width: 90%; max-width: 360px; border-radius: 24px;
    border: 1px solid var(--border); overflow: hidden;
}
.trade-popup-top { padding: 20px 20px 16px; border-bottom: 1px solid var(--border); }
.pop-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.pop-coin-name { font-weight: 700; font-size: 16px; display: flex; align-items: center; gap: 8px; }
.pop-timer { background: #0b0e11; color: var(--primary); padding: 6px 14px; border-radius: 12px; font-family: monospace; font-size: 20px; font-weight: 700; border: 1px solid rgba(240,185,11,0.2); }
.pop-direction { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 8px; font-size: 12px; font-weight: 700; }
.pop-direction.up { background: rgba(14,203,129,0.15); color: var(--up); }
.pop-direction.down { background: rgba(246,70,93,0.15); color: var(--down); }
.pop-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pop-stat-box { background: #0b0e11; border: 1px solid var(--border); padding: 12px; border-radius: 10px; }
.pop-stat-box small { display: block; color: var(--subtext); font-size: 10px; text-transform: uppercase; margin-bottom: 4px; }
.pop-stat-box p { font-size: 15px; font-weight: 700; }
.trade-popup-bottom { padding: 16px 20px 20px; }
.pop-pnl-section { border-radius: 14px; padding: 18px; text-align: center; margin-bottom: 14px; }
.pop-pnl-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.7; margin-bottom: 6px; }
.pop-pnl-value { font-size: 36px; font-weight: 800; }
.pop-pnl-sub { font-size: 12px; opacity: 0.6; margin-top: 4px; }
.close-pop-btn { width: 100%; padding: 14px; background: var(--card2); border: 1px solid var(--border); color: var(--text); border-radius: 12px; font-weight: 600; cursor: pointer; font-size: 14px; }

/* ---- TRADE PAGE ---- */
.coin-selector { display: flex; gap: 8px; overflow-x: auto; margin-bottom: 14px; padding-bottom: 4px; }
.coin-pill {
    flex-shrink: 0; padding: 7px 14px; border-radius: 20px; border: 1px solid var(--border);
    background: var(--card); font-size: 13px; cursor: pointer; font-weight: 600; white-space: nowrap;
    transition: 0.15s;
}
.coin-pill.active { background: var(--primary); color: #000; border-color: var(--primary); }
.tv-box { height: 220px; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); margin-bottom: 14px; }
.trade-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 18px; }
.time-row { display: flex; gap: 8px; margin-bottom: 14px; }
.t-btn { flex: 1; padding: 10px; border: 1px solid var(--border); border-radius: 10px; background: transparent; color: var(--subtext); cursor: pointer; font-weight: 600; font-size: 13px; transition: 0.2s; }
.t-btn.active { background: var(--primary); color: #000; border-color: var(--primary); }
.trade-type-toggle { display: flex; background: #0b0e11; border-radius: 12px; padding: 5px; margin-bottom: 14px; gap: 5px; border: 1px solid var(--border); }
.type-btn { flex: 1; border: none; padding: 12px; border-radius: 9px; font-weight: 700; background: transparent; color: var(--subtext); cursor: pointer; transition: 0.2s; font-size: 14px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.type-btn.buy.active { background: var(--up); color: #000; }
.type-btn.sell.active { background: var(--down); color: #fff; }

.amount-section { margin-bottom: 14px; }
.amount-label { font-size: 12px; color: var(--subtext); margin-bottom: 8px; display: flex; justify-content: space-between; }
.amount-label span { color: var(--primary); font-weight: 600; }
.trade-input-wrapper {
    background: #0b0e11; border: 1px solid var(--border); border-radius: 12px;
    padding: 14px 16px; display: flex; align-items: center; margin-bottom: 10px;
}
.trade-input-wrapper input { background: transparent; border: none; color: var(--text); flex: 1; font-size: 20px; outline: none; font-weight: 700; min-width: 0; }
.trade-input-wrapper:focus-within { border-color: var(--primary); }
.amount-currency { color: var(--subtext); font-size: 14px; font-weight: 600; }
.amount-presets { display: flex; gap: 6px; }
.preset-btn {
    flex: 1; padding: 8px 4px; border-radius: 8px; border: 1px solid var(--border);
    background: var(--card2); color: var(--subtext); cursor: pointer; font-size: 12px;
    font-weight: 600; transition: 0.15s;
}
.preset-btn:hover { border-color: var(--primary); color: var(--primary); }

.confirm-btn {
    width: 100%; padding: 15px; border-radius: 12px; border: none;
    font-weight: 700; cursor: pointer; font-size: 15px; color: white;
    transition: transform 0.15s; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.confirm-btn:active { transform: scale(0.97); }
.confirm-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.trade-info-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--subtext); margin-top: 10px; }
.trade-info-row span:last-child { color: var(--text); font-weight: 600; }

/* ---- ACTIVE TRADE ROW ---- */
.active-item {
    background: var(--card); padding: 14px 16px; border-radius: 12px;
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 8px; border: 1px solid var(--border); cursor: pointer;
    transition: 0.15s; border-left: 3px solid var(--primary);
}
.active-item:active { transform: scale(0.98); }
.active-item-left .pair { font-weight: 700; font-size: 14px; }
.active-item-left .meta { font-size: 11px; color: var(--subtext); margin-top: 2px; }
.live-badge { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: var(--primary); }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); animation: pulse-live 1.2s infinite; }
@keyframes pulse-live { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }
.empty { text-align: center; color: var(--subtext); padding: 24px; font-size: 13px; }

/* ---- HISTORY POPUP ---- */
.history-card { width: 90%; max-width: 340px; }
.binance-card { border-radius: 24px; padding: 28px; position: relative; color: white; box-shadow: 0 20px 50px rgba(0,0,0,0.5); overflow: hidden; }
.win-bg { background: linear-gradient(135deg, #0ecb81, #056b44); border: 1px solid rgba(255,255,255,0.15); }
.loss-bg { background: linear-gradient(135deg, #f6465d, #7c1424); }
.card-header-hist { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.tag { background: rgba(255,255,255,0.15); padding: 3px 10px; border-radius: 6px; font-size: 12px; font-weight: 600; }
.main-pnl { text-align: center; margin-bottom: 24px; }
.main-pnl small { font-size: 12px; opacity: 0.7; display: block; }
.main-pnl h1 { font-size: 50px; font-weight: 800; letter-spacing: -1px; margin-top: 6px; }
.card-details { display: grid; grid-template-columns: 1fr 1fr 1fr; background: rgba(0,0,0,0.2); border-radius: 14px; padding: 16px; gap: 5px; }
.detail-item small { display: block; font-size: 10px; opacity: 0.6; margin-bottom: 5px; text-transform: uppercase; }
.detail-item p { font-weight: 700; font-size: 13px; }
.close-history-btn { width: 100%; margin-top: 22px; padding: 15px; border-radius: 14px; border: none; background: rgba(255,255,255,0.15); color: white; font-weight: 700; cursor: pointer; font-size: 15px; transition: 0.2s; }
.close-history-btn:hover { background: rgba(255,255,255,0.25); }

/* ---- ASSETS PAGE ---- */
.portfolio-header {
    background: linear-gradient(170deg, var(--card) 0%, #0d1017 100%);
    padding: 28px 20px; border-radius: 20px; text-align: center;
    margin-bottom: 20px; border: 1px solid var(--border); position: relative; overflow: hidden;
}
.portfolio-header::after { content:''; position:absolute; bottom:-30px; left:50%; transform:translateX(-50%); width:200px; height:80px; background:radial-gradient(circle,rgba(240,185,11,0.06) 0%,transparent 70%); }
.pnl-badge { display: inline-flex; align-items: center; gap: 5px; padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; margin-top: 10px; }
.up-bg { background: rgba(14,203,129,0.12); color: var(--up); border: 1px solid rgba(14,203,129,0.2); }
.down-bg { background: rgba(246,70,93,0.12); color: var(--down); border: 1px solid rgba(246,70,93,0.2); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.stat-box-small { background: var(--card); padding: 16px; border-radius: 12px; border: 1px solid var(--border); }
.stat-box-small small { color: var(--subtext); display: block; margin-bottom: 6px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-box-small p { font-weight: 700; font-size: 16px; }
.assets-tabs { display: flex; background: #0b0e11; padding: 4px; border-radius: 12px; margin-bottom: 20px; border: 1px solid var(--border); gap: 4px; }
.assets-tabs .tab-btn { flex: 1; padding: 10px; border: none; background: transparent; color: var(--subtext); font-weight: 600; border-radius: 9px; cursor: pointer; font-size: 13px; transition: 0.2s; }
.assets-tabs .tab-btn.active { background: var(--card); color: var(--primary); }
.asset-card { background: var(--card); padding: 15px 16px; border-radius: 12px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; border: 1px solid var(--border); transition: 0.15s; cursor: pointer; }
.asset-card:active { transform: scale(0.98); background: var(--card2); }
.asset-info { display: flex; align-items: center; gap: 12px; }
.coin-icon-small { width: 30px; height: 30px; border-radius: 50%; background: var(--card2); }
.asset-name { font-weight: 600; font-size: 14px; }
.asset-sub { font-size: 11px; color: var(--subtext); margin-top: 2px; }
.asset-value { text-align: right; }
.asset-value small { display: block; color: var(--subtext); font-size: 11px; }
.empty-state { text-align: center; padding: 50px 20px; color: var(--subtext); }
.empty-state i { font-size: 50px; margin-bottom: 15px; opacity: 0.15; display: block; }

/* ---- AUTH ---- */
.auth-container { display: flex; align-items: center; justify-content: center; min-height: 100vh; }
.auth-card { background: var(--card); padding: 32px 28px; border-radius: 20px; width: 90%; max-width: 380px; border: 1px solid var(--border); }
.auth-logo { font-size: 44px; color: var(--primary); margin-bottom: 8px; }
.auth-title { font-size: 24px; font-weight: 800; margin-bottom: 24px; }
.auth-input {
    width: 100%; background: #0d1017; border: 1px solid var(--border);
    color: var(--text); padding: 14px 16px; border-radius: 12px; font-size: 15px;
    transition: 0.2s; display: block; box-sizing: border-box; margin-bottom: 12px;
}
.auth-input:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(240,185,11,0.1); }
.auth-btn {
    width: 100%; height: 50px; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000; border: none; border-radius: 12px; font-weight: 700; font-size: 15px;
    cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.auth-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(240,185,11,0.3); }
.auth-btn:active { transform: translateY(0); }
.btn-secondary { background: transparent !important; border: 1px solid var(--border) !important; color: var(--subtext) !important; box-shadow: none !important; }
.auth-switch { margin-top: 18px; color: var(--subtext); font-size: 13px; text-align: center; }
.auth-switch span { color: var(--primary); cursor: pointer; font-weight: 700; }

/* ---- TOAST ---- */
#toast {
    position: fixed; bottom: 90px; left: 50%;
    transform: translateX(-50%) translateY(30px);
    background: var(--card2); color: var(--text); padding: 12px 22px;
    border-radius: 40px; font-size: 14px; font-weight: 500; border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4); z-index: 20000;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
    display: flex; align-items: center; gap: 8px; opacity: 0; pointer-events: none;
    white-space: nowrap;
}
#toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ---- NETWORK ITEM ---- */
.network-item {
    background: var(--card2); padding: 16px 18px; border-radius: 14px;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; transition: 0.2s; border: 1px solid var(--border); color: var(--text);
}
.network-item:hover { border-color: var(--primary); background: rgba(240,185,11,0.05); }
.network-item-left { display: flex; align-items: center; gap: 12px; }
.network-icon { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; font-size: 18px; font-weight: 700; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }

/* ---- UID & Verification ---- */
.v-badge { font-size: 11px; font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }
.v-badge.verified { color: var(--up); }
.v-badge.pending { color: var(--primary); }

/* ---- KYC Form ---- */
.upload-box {
    border: 1px dashed var(--border); background: #0d1017; border-radius: 12px;
    padding: 18px 12px; text-align: center; cursor: pointer; transition: 0.2s;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.upload-box:hover { border-color: var(--primary); background: rgba(240,185,11,0.04); }
.upload-box i { font-size: 26px; color: var(--subtext); }
.upload-box span { font-size: 11px; color: var(--subtext); max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---- PULSE ANIMATION ---- */
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ---- DEPOSIT STEP INDICATOR ---- */
.step-indicator { display: flex; justify-content: center; gap: 6px; margin-bottom: 20px; }
.step-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); transition: 0.3s; }
.step-dot.active { background: var(--primary); width: 20px; border-radius: 3px; }
