/* ═══════════════════════════════════════════════════════════
   EXPRESS FUTURES — Dark Trading Theme + Mobile
   ═══════════════════════════════════════════════════════════ */

:root {
    --bg-body: #080b12;
    --bg-primary: #0d1117;
    --bg-card: #161b22;
    --bg-card-hover: #1c2333;
    --bg-input: #0d1117;
    --border: #21262d;
    --border-light: #30363d;

    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --text-muted: #484f58;

    --accent: #58a6ff;
    --green: #3fb950;
    --green-bg: rgba(63, 185, 80, 0.12);
    --red: #f85149;
    --red-bg: rgba(248, 81, 73, 0.12);
    --orange: #d29922;
    --orange-bg: rgba(210, 153, 34, 0.12);
    --purple: #bc8cff;
    --purple-bg: rgba(188, 140, 255, 0.12);
    --gold: #f0c000;
    --gold-bg: rgba(240, 192, 0, 0.12);
    --blue: #388bfd;

    --radius: 10px;
    --radius-sm: 6px;
    --shadow: 0 1px 3px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'JetBrains Mono', 'Fira Code', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    height: 100%;
    font-family: var(--font);
    background: var(--bg-body);
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.5;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.hidden { display: none !important; }

/* ═══════ SCROLLBAR ═══════ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ═══════ LOGIN OVERLAY ═══════ */
.overlay {
    position: fixed; inset: 0;
    background: radial-gradient(ellipse at center, #0d1117 0%, #080b12 70%);
    display: flex; align-items: center; justify-content: center;
    z-index: 1000;
}
.login-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 48px 40px; width: 420px; max-width: 92vw;
    text-align: center; box-shadow: var(--shadow-lg); animation: fadeIn 0.5s ease;
}
.login-logo { margin-bottom: 8px; }
.logo-icon { font-size: 48px; display: block; margin-bottom: 4px; filter: drop-shadow(0 0 20px rgba(88,166,255,0.4)); }
.login-logo h1 {
    font-size: 28px; font-weight: 800; letter-spacing: 2px;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.login-subtitle { color: var(--text-secondary); margin-bottom: 24px; font-size: 14px; line-height: 1.6; }
.login-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 28px; }
.feature {
    background: var(--bg-primary); border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 8px 10px; font-size: 12px; color: var(--text-secondary);
    display: flex; align-items: center; gap: 6px;
}
.feature span { font-size: 16px; }

#username-input, #ref-code-input {
    width: 100%; padding: 14px 18px; background: var(--bg-input);
    border: 1px solid var(--border); border-radius: var(--radius);
    color: var(--text-primary); font-family: var(--font); font-size: 16px;
    outline: none; margin-bottom: 12px; transition: border-color 0.2s;
}
#ref-code-input { font-size: 14px; padding: 12px 18px; }
#username-input:focus, #ref-code-input:focus { border-color: var(--accent); }
#username-input::placeholder, #ref-code-input::placeholder { color: var(--text-muted); }

/* ═══════ BUTTONS ═══════ */
.btn-primary {
    width: 100%; padding: 14px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border: none; border-radius: var(--radius); color: white;
    font-family: var(--font); font-size: 15px; font-weight: 700; letter-spacing: 1px;
    cursor: pointer; transition: all 0.2s; position: relative; overflow: hidden;
}
.btn-primary:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(37,99,235,0.4); }
.btn-primary:active:not(:disabled) { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-secondary { padding: 8px 14px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-primary); color: var(--text); cursor: pointer; font-size: 14px; }
.btn-secondary:hover { border-color: var(--orange); background: rgba(210,153,34,0.08); }
.btn-lg { padding: 16px; font-size: 16px; }

.btn-cashout {
    width: 100%; padding: 8px 12px;
    background: linear-gradient(135deg, #d97706, #b45309);
    border: none; border-radius: var(--radius-sm); color: white;
    font-family: var(--font); font-size: 12px; font-weight: 600;
    cursor: pointer; transition: all 0.2s; margin-top: 8px;
}
.btn-cashout:hover:not(:disabled) { opacity: 0.9; }
.btn-cashout:disabled { opacity: 0.3; cursor: not-allowed; }

.btn-remove {
    background: none; border: none; color: var(--text-muted);
    cursor: pointer; font-size: 18px; padding: 2px 6px; border-radius: 4px;
    transition: all 0.15s; line-height: 1;
}
.btn-remove:hover { color: var(--red); background: var(--red-bg); }

/* ═══════ APP HEADER ═══════ */
.app-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 20px; height: 56px;
    background: var(--bg-card); border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
}
.header-left { display: flex; align-items: center; gap: 10px; }
.logo-icon-sm { font-size: 22px; }
.header-title {
    font-size: 16px; font-weight: 800; letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.header-right { display: flex; align-items: center; gap: 16px; }
.balance-display { display: flex; flex-direction: column; align-items: flex-end; }
.balance-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.balance-value { font-family: var(--mono); font-size: 18px; font-weight: 600; color: var(--gold); }
.user-badge {
    background: var(--bg-primary); border: 1px solid var(--border);
    padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--accent);
}

/* ═══════ MOBILE NAV ═══════ */
.mobile-nav {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--bg-card); border-top: 1px solid var(--border);
    z-index: 200; padding: 6px 0 env(safe-area-inset-bottom, 6px);
}
.mobile-nav-btn {
    flex: 1; background: none; border: none; color: var(--text-muted);
    font-size: 20px; padding: 10px 0; cursor: pointer; transition: color 0.2s;
    border-radius: 0;
}
.mobile-nav-btn.active { color: var(--accent); }

/* ═══════ MAIN LAYOUT ═══════ */
.app-main {
    display: grid;
    grid-template-columns: 260px 1fr 340px 300px;
    gap: 10px; padding: 10px;
    height: calc(100vh - 56px);
    overflow: hidden;
}

/* ═══════ PANELS ═══════ */
.panel {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); display: flex; flex-direction: column; overflow: hidden;
}
.panel-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.panel-header h2 { font-size: 14px; font-weight: 700; }

/* ═══════ SOURCE BADGE ═══════ */
.source-area { display: flex; align-items: center; gap: 6px; }
.source-badge {
    font-size: 9px; font-weight: 700; letter-spacing: 0.5px;
    padding: 2px 7px; border-radius: 4px; text-transform: uppercase;
}
.source-badge.live { color: var(--green); background: var(--green-bg); }
.source-badge.sim { color: var(--orange); background: var(--orange-bg); }
.live-dot {
    width: 8px; height: 8px; background: var(--green);
    border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(63,185,80,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(63,185,80,0); }
}

/* ═══════ MARKETS LIST ═══════ */
.markets-list { flex: 1; overflow-y: auto; padding: 4px; }
.market-item {
    display: grid; grid-template-columns: 32px 1fr 70px auto;
    align-items: center; gap: 8px; padding: 10px 12px;
    border-radius: var(--radius-sm); cursor: pointer;
    transition: all 0.15s; border: 1px solid transparent;
}
.market-item:hover { background: var(--bg-card-hover); border-color: var(--border-light); }
.market-item.added { border-color: var(--accent); background: rgba(88,166,255,0.06); }
.market-icon {
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
    background: var(--bg-primary); border-radius: 50%; font-size: 16px; font-weight: 600;
}
.market-info { display: flex; flex-direction: column; }
.market-symbol { font-weight: 700; font-size: 13px; }
.market-name { font-size: 11px; color: var(--text-muted); }
.market-price { text-align: right; font-family: var(--mono); font-size: 13px; font-weight: 500; }
.market-change {
    font-family: var(--mono); font-size: 11px; font-weight: 600;
    padding: 2px 8px; border-radius: 4px; text-align: center; min-width: 60px;
}
.market-change.up { color: var(--green); background: var(--green-bg); }
.market-change.down { color: var(--red); background: var(--red-bg); }

.price-flash-up { animation: flashGreen 0.4s ease; }
.price-flash-down { animation: flashRed 0.4s ease; }
@keyframes flashGreen { 0% { color: var(--green); } 100% { color: var(--text-primary); } }
@keyframes flashRed { 0% { color: var(--red); } 100% { color: var(--text-primary); } }

.sparkline { vertical-align: middle; }

/* ═══════ MARKET SEARCH ═══════ */
.market-search-wrap { padding: 8px 12px; }
.market-search-wrap input {
    width: 100%; padding: 8px 12px; background: var(--bg-input);
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    color: var(--text-primary); font-size: 13px; font-family: var(--font);
    outline: none; transition: border-color 0.2s;
}
.market-search-wrap input:focus { border-color: var(--accent); }
.show-all-btn {
    display: block; width: calc(100% - 24px); margin: 4px 12px 12px;
    padding: 6px; background: var(--bg-card);
    border: 1px dashed var(--border-light); border-radius: var(--radius-sm);
    color: var(--text-secondary); font-size: 12px; cursor: pointer;
    text-align: center; transition: all 0.2s;
}
.show-all-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ═══════ EXPRESS BUILDER ═══════ */
.builder-panel { display: flex; flex-direction: column; }
.builder-body { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.legs-list { flex: 1; overflow-y: auto; padding: 8px; }
.legs-counter { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.empty-legs, .empty-expresses {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    height: 100%; min-height: 120px; color: var(--text-muted); text-align: center; padding: 20px;
}
.empty-icon { font-size: 36px; margin-bottom: 8px; }

.leg-card {
    background: var(--bg-primary); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 12px; margin-bottom: 8px;
    animation: slideIn 0.2s ease;
}
@keyframes slideIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.leg-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.leg-asset-info { display: flex; align-items: center; gap: 8px; }
.leg-asset-icon {
    width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
    background: var(--bg-card); border-radius: 50%; font-size: 14px;
}
.leg-asset-name { font-weight: 700; font-size: 14px; }
.leg-asset-price { font-family: var(--mono); font-size: 11px; color: var(--text-secondary); }
.leg-odds-badge {
    font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--gold);
    background: var(--gold-bg); padding: 2px 10px; border-radius: 4px;
}

.leg-controls { display: flex; gap: 6px; margin-bottom: 8px; }
.direction-btn, .diff-btn {
    flex: 1; padding: 6px 4px; border: 1px solid var(--border);
    border-radius: var(--radius-sm); background: var(--bg-card);
    color: var(--text-secondary); font-family: var(--font); font-size: 11px;
    font-weight: 600; cursor: pointer; transition: all 0.15s; text-align: center;
}
.direction-btn:hover, .diff-btn:hover { border-color: var(--border-light); }
.direction-btn.active.long { background: var(--green-bg); border-color: var(--green); color: var(--green); }
.direction-btn.active.short { background: var(--red-bg); border-color: var(--red); color: var(--red); }

/* ═══════ TARGET % SLIDER ═══════ */
.leg-target-control { padding: 6px 0; }
.target-header { display: flex; justify-content: space-between; align-items: center; font-size: 13px; margin-bottom: 4px; gap: 8px; }
.target-input-wrap { display: flex; align-items: center; gap: 2px; }
.target-input {
    width: 56px; padding: 3px 6px; background: var(--bg-input);
    border: 1px solid var(--border-light); border-radius: 4px; color: var(--accent);
    font-family: var(--mono); font-size: 13px; font-weight: 700;
    text-align: center; outline: none; -moz-appearance: textfield;
}
.target-input::-webkit-inner-spin-button, .target-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.target-input:focus { border-color: var(--accent); }
.target-input-pct { color: var(--text-secondary); font-size: 12px; }
.target-odds { font-family: var(--mono); font-weight: 700; color: var(--gold); font-size: 14px; }
.target-slider {
    width: 100%; height: 6px; -webkit-appearance: none; appearance: none;
    background: linear-gradient(90deg, var(--green) 0%, var(--orange) 50%, var(--red) 100%);
    border-radius: 3px; outline: none; cursor: pointer;
}
.target-slider::-webkit-slider-thumb {
    -webkit-appearance: none; width: 18px; height: 18px;
    background: var(--text-primary); border: 2px solid var(--accent);
    border-radius: 50%; cursor: pointer; box-shadow: 0 0 6px rgba(88,166,255,0.4);
}
.target-slider::-moz-range-thumb {
    width: 18px; height: 18px; background: var(--text-primary);
    border: 2px solid var(--accent); border-radius: 50%; cursor: pointer;
}
.target-scale { display: flex; justify-content: space-between; font-size: 10px; color: var(--text-muted); margin-top: 2px; }

.leg-prices {
    display: flex; justify-content: space-between;
    font-size: 11px; color: var(--text-muted); font-family: var(--mono);
}
.leg-target { color: var(--green); }
.leg-liq { color: var(--red); }

/* ═══════ BUILDER FOOTER ═══════ */
.builder-footer { border-top: 1px solid var(--border); padding: 14px 16px; flex-shrink: 0; }
.builder-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.builder-row label { font-size: 13px; font-weight: 600; }
.builder-row input[type="number"] {
    width: 120px; padding: 8px 12px; background: var(--bg-input);
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    color: var(--text-primary); font-family: var(--mono); font-size: 14px;
    text-align: right; outline: none; transition: border-color 0.2s;
}
.builder-row input[type="number"]:focus { border-color: var(--accent); }

.duration-row { margin-bottom: 10px; }
.duration-selector { display: flex; align-items: center; gap: 4px; }
.dur-btn {
    width: 36px; height: 32px; border: 1px solid var(--border);
    border-radius: var(--radius-sm); background: var(--bg-card);
    color: var(--text-secondary); font-family: var(--mono);
    font-size: 13px; font-weight: 600; cursor: pointer;
    transition: all 0.15s; text-align: center; padding: 0;
}
.dur-btn:hover { border-color: var(--accent); color: var(--accent); }
.dur-btn.active {
    background: rgba(88,166,255,0.15); border-color: var(--accent);
    color: var(--accent); font-weight: 700;
}
.dur-unit { font-size: 11px; color: var(--text-muted); margin-left: 4px; }

.insurance-row { margin-bottom: 14px; }
.checkbox-label {
    display: flex; align-items: center; gap: 8px; cursor: pointer;
    font-size: 13px; color: var(--text-secondary);
}
.checkbox-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--accent); cursor: pointer; }
.insurance-info {
    width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--border); border-radius: 50%; font-size: 10px; color: var(--text-muted); cursor: help;
}

.builder-summary {
    background: var(--bg-primary); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 12px; margin-bottom: 14px;
}
.summary-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; color: var(--text-secondary); padding: 3px 0;
}
.summary-row.total-odds-row, .summary-row.payout-row, .summary-row.cost-row {
    font-size: 14px; font-weight: 600; color: var(--text-primary); padding: 5px 0;
}
.highlight-value { font-family: var(--mono); font-weight: 700; }
.highlight-value.gold { color: var(--gold); }

/* ═══════ TABS ═══════ */
.tabs-header { display: flex; gap: 0; padding: 0; border-bottom: 1px solid var(--border); }
.tab {
    flex: 1; padding: 12px; background: none; border: none;
    border-bottom: 2px solid transparent; color: var(--text-muted);
    font-family: var(--font); font-size: 13px; font-weight: 600;
    cursor: pointer; transition: all 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.tab:hover { color: var(--text-secondary); }
.tab.active { color: var(--text-primary); border-bottom-color: var(--accent); }
.tab-badge {
    background: var(--accent); color: white; font-size: 10px; font-weight: 700;
    padding: 1px 6px; border-radius: 10px; min-width: 18px; text-align: center;
}
.tab-content { display: none; flex: 1; overflow-y: auto; }
.tab-content.active { display: flex; flex-direction: column; }

.expresses-list { flex: 1; padding: 8px; overflow-y: auto; }

/* ═══════ EXPRESS CARD ═══════ */
.express-card {
    background: var(--bg-primary); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 12px; margin-bottom: 8px;
    animation: slideIn 0.2s ease;
}
.express-card.won { border-color: var(--green); background: rgba(63,185,80,0.05); }
.express-card.liquidated { border-color: var(--red); background: rgba(248,81,73,0.05); }
.express-card.cashed_out, .express-card.settled { border-color: var(--orange); background: rgba(210,153,34,0.05); }
.express-status.settled { color: var(--orange); background: var(--orange-bg); }

.express-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.express-id { font-weight: 700; font-size: 13px; }
.express-status {
    font-size: 11px; font-weight: 700; padding: 2px 10px;
    border-radius: 10px; text-transform: uppercase; letter-spacing: 0.5px;
}
.express-status.active { color: var(--accent); background: rgba(88,166,255,0.12); }
.express-status.won { color: var(--green); background: var(--green-bg); }
.express-status.liquidated { color: var(--red); background: var(--red-bg); }
.express-status.cashed_out { color: var(--orange); background: var(--orange-bg); }

.express-timer {
    font-family: var(--mono); font-size: 12px; color: var(--text-muted);
    margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
}
.timer-bar { flex: 1; height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; }
.timer-fill { height: 100%; background: var(--accent); border-radius: 2px; transition: width 1s linear; }
.timer-fill.ending { background: var(--orange); animation: pulse-bar 0.5s infinite; }
@keyframes pulse-bar { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.express-legs-mini { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 8px; }
.leg-mini {
    font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 4px;
    border: 1px solid var(--border); display: flex; align-items: center; gap: 4px;
}
.leg-mini.active { color: var(--text-secondary); }
.leg-mini.won { color: var(--green); border-color: var(--green); background: var(--green-bg); }
.leg-mini.liquidated { color: var(--red); border-color: var(--red); background: var(--red-bg); }
.leg-mini .leg-dir { font-weight: 800; }

.express-footer { display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.express-stake { color: var(--text-secondary); }
.express-odds { font-family: var(--mono); font-weight: 700; color: var(--accent); }
.express-payout { font-family: var(--mono); font-weight: 700; }
.express-payout.won { color: var(--green); }
.express-payout.lost { color: var(--red); }
.express-payout.pending { color: var(--gold); }

.express-insurance-badge {
    font-size: 10px; color: var(--purple);
    display: flex; align-items: center; gap: 3px; margin-bottom: 4px;
}
.insurance-used { color: var(--orange); }

/* ═══════ RESULT MODAL ═══════ */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.75);
    display: flex; align-items: center; justify-content: center;
    z-index: 5000; animation: fadeIn 0.3s ease; backdrop-filter: blur(4px);
}
.modal-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 36px 32px 28px; width: 440px; max-width: 92vw;
    text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    animation: modalIn 0.4s ease; max-height: 90vh; overflow-y: auto;
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.85) translateY(30px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-card.won { border-color: var(--green); }
.modal-card.lost { border-color: var(--red); }
.wallet-picker-card { width: 360px; }
.wallet-picker-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.wallet-picker-list { display: flex; flex-direction: column; gap: 8px; }
.wallet-picker-item {
    display: flex; align-items: center; gap: 12px; padding: 12px 14px;
    background: var(--bg-primary); border: 1px solid var(--border); border-radius: var(--radius);
    cursor: pointer; font-size: 15px; font-weight: 600; color: var(--text);
    transition: border-color 0.2s, background 0.2s;
}
.wallet-picker-item:hover { border-color: var(--orange); background: rgba(210,153,34,0.08); }
.wallet-picker-item img { width: 32px; height: 32px; border-radius: 8px; }
.wallet-picker-item .wallet-icon-placeholder { width: 32px; height: 32px; border-radius: 8px; background: var(--bg-secondary); font-size: 18px; display: flex; align-items: center; justify-content: center; }

.result-icon { font-size: 56px; margin-bottom: 8px; }
.result-title { font-size: 22px; font-weight: 800; margin-bottom: 18px; }
.result-title.won { color: var(--green); }
.result-title.lost { color: var(--red); }

.result-legs { text-align: left; margin-bottom: 18px; }
.result-leg-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 7px 10px; border-radius: var(--radius-sm); margin-bottom: 4px;
    font-size: 13px; font-weight: 600;
}
.result-leg-row.won { background: var(--green-bg); color: var(--green); }
.result-leg-row.liquidated { background: var(--red-bg); color: var(--red); }
.result-leg-row .leg-info { display: flex; align-items: center; gap: 8px; }
.result-leg-reason {
    margin-top: 6px; padding: 6px 8px; font-size: 11px; line-height: 1.4;
    background: rgba(0,0,0,0.2); border-radius: 6px; color: var(--text-secondary);
    border-left: 3px solid var(--red);
}
.result-leg-row.won .result-leg-reason { display: none; }

.result-summary {
    background: var(--bg-primary); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 14px; margin-bottom: 20px;
}
.result-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 13px; color: var(--text-secondary); }
.result-row.big {
    font-size: 18px; font-weight: 800; padding: 8px 0 0;
    border-top: 1px solid var(--border); margin-top: 6px;
}
.result-row.big.won { color: var(--green); }
.result-row.big.lost { color: var(--red); }

/* ═══════ NOTIFICATIONS ═══════ */
#notifications {
    position: fixed; bottom: 20px; right: 20px; z-index: 9999;
    display: flex; flex-direction: column-reverse; gap: 8px; max-width: 380px;
}
.notification {
    padding: 14px 18px; border-radius: var(--radius); font-size: 13px; font-weight: 600;
    color: white; box-shadow: var(--shadow-lg); animation: notifyIn 0.3s ease;
    display: flex; align-items: center; gap: 10px;
}
.notification.success { background: linear-gradient(135deg, #15803d, #166534); }
.notification.error { background: linear-gradient(135deg, #b91c1c, #991b1b); }
.notification.info { background: linear-gradient(135deg, #1d4ed8, #1e40af); }
.notification.warning { background: linear-gradient(135deg, #a16207, #854d0e); }
.notification.hiding { animation: notifyOut 0.3s ease forwards; }

@keyframes notifyIn { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes notifyOut { to { opacity: 0; transform: translateX(40px); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ═══════ CONFETTI ═══════ */
@keyframes confetti-fall {
    0% { transform: translateY(-10px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}
.confetti-piece {
    position: fixed; top: -10px; width: 8px; height: 8px; border-radius: 2px;
    animation: confetti-fall 3s ease-out forwards; z-index: 10000; pointer-events: none;
}

/* ═══════ CARRY-OVER ═══════ */
.carry-section {
    margin: 8px 8px 0; border: 1px dashed var(--blue);
    border-radius: 8px; padding: 10px; background: rgba(56,139,253,0.06);
}
.carry-header {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px; font-weight: 600; color: var(--blue); margin-bottom: 8px;
}
.carry-fee-badge { font-size: 11px; background: rgba(56,139,253,0.15); padding: 2px 8px; border-radius: 4px; color: var(--blue); }
.carry-legs-list { display: flex; flex-direction: column; gap: 6px; }
.carry-leg-card {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 10px; border-radius: 6px; font-size: 13px; transition: all 0.2s;
}
.carry-leg-card.available { background: var(--bg-primary); border: 1px solid var(--border); }
.carry-leg-card.selected { background: rgba(56,139,253,0.12); border: 1px solid var(--blue); }
.carry-leg-info { display: flex; align-items: center; gap: 8px; }
.carry-leg-icon { font-size: 16px; }
.carry-leg-asset { font-weight: 600; color: var(--text-primary); }
.carry-leg-dir { font-weight: 700; font-size: 14px; }
.carry-leg-dir.long { color: var(--green); }
.carry-leg-dir.short { color: var(--red); }
.carry-leg-odds { font-family: var(--mono); font-size: 12px; color: var(--text-secondary); }
.carry-leg-status { font-size: 11px; color: var(--green); font-weight: 600; }
.btn-carry-add {
    background: rgba(56,139,253,0.15); color: var(--blue); border: 1px solid var(--blue);
    padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.btn-carry-add:hover { background: var(--blue); color: #fff; }
.btn-carry-remove { background: transparent; color: var(--red); border: none; font-size: 14px; cursor: pointer; padding: 4px 8px; border-radius: 4px; }
.btn-carry-remove:hover { background: rgba(248,81,73,0.15); }
.carry-tag {
    display: inline-block; font-size: 11px; background: rgba(56,139,253,0.15);
    color: var(--blue); padding: 2px 8px; border-radius: 4px; margin-left: 4px; font-weight: 600;
}
.carry-available-badge {
    display: flex; align-items: center; gap: 4px;
    background: rgba(56,139,253,0.15); color: var(--blue);
    padding: 4px 10px; border-radius: 6px; font-size: 13px; font-weight: 600;
    cursor: default; animation: carry-pulse 2s ease-in-out infinite;
}
@keyframes carry-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

/* ═══════ REFERRAL SECTION ═══════ */
.referral-section { padding: 16px; }
.referral-card {
    background: var(--bg-primary); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 20px; margin-bottom: 16px;
}
.referral-card h3 {
    font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px;
}
.referral-desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.6; }
.referral-link-box, .referral-code-box { margin-bottom: 12px; }
.referral-link-box label, .referral-code-box label {
    display: block; font-size: 11px; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;
}
.referral-link-row { display: flex; gap: 6px; }
.referral-link-row input {
    flex: 1; padding: 8px 12px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    color: var(--accent); font-family: var(--mono); font-size: 12px; outline: none;
}
.btn-copy {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 8px 12px; cursor: pointer;
    font-size: 14px; transition: all 0.2s;
}
.btn-copy:hover { background: var(--accent); border-color: var(--accent); }
.referral-code-value {
    font-family: var(--mono); font-size: 18px; font-weight: 700;
    color: var(--gold); letter-spacing: 2px;
}

.referral-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px;
}
.ref-stat {
    background: var(--bg-primary); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 14px; text-align: center;
}
.ref-stat-val { display: block; font-size: 20px; font-weight: 800; color: var(--text-primary); font-family: var(--mono); }
.ref-stat-label { display: block; font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.referral-log { max-height: 200px; overflow-y: auto; }
.ref-log-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 10px; border-bottom: 1px solid var(--border);
    font-size: 12px; color: var(--text-secondary);
}
.ref-log-bonus { color: var(--green); font-weight: 700; font-family: var(--mono); }
.empty-log { text-align: center; color: var(--text-muted); font-size: 13px; padding: 20px 0; }

/* ═══════ LEADERBOARD ═══════ */
.leaderboard-list { padding: 10px; }
.lb-row {
    display: grid; grid-template-columns: 36px 1fr auto auto;
    align-items: center; gap: 10px; padding: 10px 12px;
    border-radius: var(--radius-sm); margin-bottom: 4px;
    background: var(--bg-primary); border: 1px solid var(--border);
    transition: all 0.15s;
}
.lb-row.top3 { border-color: var(--gold); background: var(--gold-bg); }
.lb-rank { font-size: 16px; text-align: center; }
.lb-name { font-weight: 700; font-size: 14px; }
.lb-bets { font-size: 12px; color: var(--text-muted); }
.lb-won { font-family: var(--mono); font-weight: 700; color: var(--green); font-size: 14px; }

/* ═══════ RESPONSIVE — WIDE ═══════ */
@media (max-width: 1400px) {
    .app-main { grid-template-columns: 240px 1fr 320px 280px; }
}
@media (max-width: 1200px) {
    .app-main { grid-template-columns: 220px 1fr 300px; }
    .social-panel { display: none; }
}

/* ═══════ RESPONSIVE — TABLET ═══════ */
@media (max-width: 900px) {
    .app-main { grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px; }
    .markets-panel { grid-column: 1 / -1; max-height: 300px; }
    .social-panel { display: flex; grid-column: 1 / -1; max-height: 350px; }
}

/* ═══════ RESPONSIVE — MOBILE ═══════ */
@media (max-width: 768px) {
    html, body { overflow: hidden; }

    .app-header { padding: 0 12px; height: 50px; }
    .header-title { font-size: 13px; letter-spacing: 1px; }
    .balance-value { font-size: 15px; }
    .user-badge { padding: 4px 10px; font-size: 11px; }
    .carry-available-badge { font-size: 11px; padding: 3px 8px; }

    .mobile-nav { display: flex; }

    .app-main {
        display: flex; flex-direction: column;
        grid-template-columns: 1fr;
        height: calc(100vh - 50px - 56px);
        overflow: hidden; padding: 0;
        gap: 0;
    }
    .app-main > .panel {
        display: none;
        flex: 1; border-radius: 0; border: none; border-bottom: 1px solid var(--border);
        overflow-y: auto;
        min-height: 0;
    }
    .app-main > .panel.mobile-visible {
        display: flex;
    }
    .app-main > .markets-panel.mobile-visible { display: flex; }
    .app-main > .builder-panel.mobile-visible { display: flex; }
    .app-main > .expresses-panel.mobile-visible { display: flex; }
    .app-main > .social-panel.mobile-visible { display: flex; }

    .panel-header { padding: 10px 12px; }
    .panel-header h2 { font-size: 13px; }

    .market-item { padding: 8px 10px; gap: 6px; grid-template-columns: 28px 1fr 60px auto; }
    .market-icon { width: 28px; height: 28px; font-size: 14px; }
    .market-symbol { font-size: 12px; }
    .market-price { font-size: 12px; }
    .market-change { font-size: 10px; min-width: 50px; padding: 2px 6px; }

    .builder-footer { padding: 10px 12px; }
    .builder-row input[type="number"] { width: 100px; }

    .leg-card { padding: 10px; }
    .leg-asset-name { font-size: 13px; }

    .express-card { padding: 10px; }
    .leg-mini { font-size: 9px; padding: 2px 6px; }

    .tab { padding: 10px 6px; font-size: 12px; }

    .referral-card { padding: 14px; }
    .referral-card h3 { font-size: 14px; }
    .referral-link-row input { font-size: 11px; }
    .referral-code-value { font-size: 15px; }
    .ref-stat-val { font-size: 18px; }

    .lb-row { grid-template-columns: 30px 1fr auto; gap: 6px; padding: 8px 10px; }
    .lb-bets { display: none; }
    .lb-name { font-size: 13px; }
    .lb-won { font-size: 13px; }

    #notifications { bottom: 70px; right: 10px; left: 10px; max-width: none; }
    .notification { font-size: 12px; padding: 10px 14px; }

    .modal-card { padding: 24px 18px 20px; max-height: 85vh; }
    .result-icon { font-size: 40px; }
    .result-title { font-size: 18px; }
    .result-leg-row { font-size: 12px; padding: 6px 8px; }
    .result-row.big { font-size: 16px; }

    .login-card { padding: 32px 20px; }
    .login-logo h1 { font-size: 22px; }
    .login-subtitle { font-size: 13px; }
    .login-features { gap: 6px; }
    .feature { padding: 6px 8px; font-size: 11px; }
    #username-input, #ref-code-input { font-size: 16px; padding: 12px 14px; }
}

@media (max-width: 380px) {
    .header-title { display: none; }
    .balance-value { font-size: 14px; }
    .login-features { grid-template-columns: 1fr; }
}

/* ═══════ LANGUAGE SWITCHER ═══════ */
.lang-switch { display: flex; gap: 4px; }
.lang-btn {
    background: var(--bg-primary); border: 1px solid var(--border);
    border-radius: 4px; padding: 4px 8px; color: var(--text-muted);
    font-size: 11px; font-weight: 600; cursor: pointer;
    transition: all 0.15s; font-family: var(--font);
}
.lang-btn:hover { border-color: var(--accent); color: var(--text-secondary); }
.lang-btn.active { background: rgba(88,166,255,0.15); border-color: var(--accent); color: var(--accent); }
.login-lang { justify-content: center; margin-bottom: 16px; }
.header-lang .lang-btn { padding: 3px 6px; font-size: 10px; }

/* ═══════ RULES BUTTON ═══════ */
.rules-btn {
    display: flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, rgba(88,166,255,0.15), rgba(188,140,255,0.15));
    border: 1px solid var(--accent); border-radius: 8px;
    padding: 6px 14px; color: var(--accent);
    font-size: 13px; font-weight: 700; cursor: pointer;
    transition: all 0.2s; font-family: var(--font);
    animation: rules-glow 3s ease-in-out infinite;
}
.rules-btn span:first-child { font-size: 16px; }
.rules-btn:hover {
    background: linear-gradient(135deg, rgba(88,166,255,0.25), rgba(188,140,255,0.25));
    transform: translateY(-1px); box-shadow: 0 2px 12px rgba(88,166,255,0.3);
}
@keyframes rules-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(88,166,255,0); }
    50% { box-shadow: 0 0 8px 2px rgba(88,166,255,0.2); }
}
.rules-btn-login {
    display: block; width: 100%; margin-top: 12px; padding: 12px;
    background: transparent; border: 1px dashed var(--accent);
    border-radius: var(--radius); color: var(--accent);
    font-family: var(--font); font-size: 14px; font-weight: 600;
    cursor: pointer; transition: all 0.2s; text-align: center;
}
.rules-btn-login:hover {
    background: rgba(88,166,255,0.1); border-style: solid;
}
.rules-nav-btn { color: var(--accent) !important; }

/* ═══════ RULES MODAL ═══════ */
.rules-modal-card {
    width: 600px; max-width: 95vw; max-height: 90vh;
    text-align: left; overflow: hidden; display: flex; flex-direction: column;
    padding: 0;
}
.rules-modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px 16px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.rules-modal-header h2 { font-size: 18px; }
.rules-content {
    flex: 1; overflow-y: auto; padding: 20px 24px;
    font-size: 14px; line-height: 1.7; color: var(--text-secondary);
}
.rules-content h2 {
    font-size: 16px; color: var(--text-primary); margin: 20px 0 8px;
    padding-bottom: 6px; border-bottom: 1px solid var(--border);
}
.rules-content h2:first-child { margin-top: 0; }
.rules-content p { margin-bottom: 10px; }
.rules-content ul { margin: 8px 0 12px 20px; }
.rules-content li { margin-bottom: 4px; }
.rules-content code {
    background: var(--bg-card); padding: 2px 6px; border-radius: 4px;
    font-family: var(--mono); color: var(--accent); font-size: 13px;
}
.rules-content table {
    width: 100%; border-collapse: collapse; margin: 10px 0;
    font-size: 13px;
}
.rules-content th, .rules-content td {
    padding: 6px 12px; border: 1px solid var(--border); text-align: center;
}
.rules-content th { background: var(--bg-card); color: var(--accent); font-weight: 600; }
.rules-content b { color: var(--text-primary); }
.rules-modal-card > .btn-primary { margin: 16px 24px 20px; flex-shrink: 0; }

@media (max-width: 768px) {
    .header-lang .lang-btn { padding: 2px 5px; font-size: 9px; }
    .rules-btn { padding: 4px 10px; font-size: 12px; }
    .rules-btn span:last-child { display: none; }
    .rules-modal-card { max-height: 85vh; }
    .rules-content { padding: 16px; font-size: 13px; }
    .rules-modal-header { padding: 16px; }
}
@media (min-width: 769px) {
    .rules-nav-btn { display: none; }
}

/* ═══════ CONDITIONAL EXPRESS ═══════ */
.express-card.pending {
    border-color: var(--orange);
    background: linear-gradient(135deg, rgba(210,153,34,0.08), var(--bg-card));
}
.express-status.pending {
    background: rgba(210,153,34,0.15); color: var(--orange); font-weight: 700;
}
.pending-timer { color: var(--orange); }
.pending-timer .timer-bar { background: rgba(210,153,34,0.15); }
.timer-fill.pending-pulse {
    background: var(--orange); opacity: 0.5;
    animation: pendingPulse 2s ease-in-out infinite;
}
@keyframes pendingPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}
.leg-mini.pending-carry {
    border-color: var(--orange); color: var(--orange);
    border-style: dashed;
}
.pending-payout { color: var(--orange) !important; }

/* ═══════ PAYMENT MODAL ═══════ */
.balance-display.clickable { cursor: pointer; }
.balance-display.clickable:hover { opacity: 0.9; }
.payment-modal-card { max-width: 420px; }
.payment-modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.payment-modal-header h2 { font-size: 1.2rem; margin: 0; }
.payment-tabs {
    display: flex; gap: 4px; padding: 12px 20px 0;
    border-bottom: 1px solid var(--border);
}
.payment-tab {
    padding: 8px 16px; border: none; background: transparent;
    color: var(--text-secondary); font-family: var(--font);
    font-size: 13px; font-weight: 600; cursor: pointer;
    border-radius: var(--radius-sm); transition: all 0.2s;
}
.payment-tab:hover { color: var(--text-primary); }
.payment-tab.active { background: var(--accent-bg); color: var(--accent); }
.payment-tab-content {
    display: none; padding: 20px;
}
.payment-tab-content.active { display: block; }
.payment-limits {
    font-size: 12px; color: var(--text-secondary); margin-bottom: 12px;
}
.payment-form-row {
    margin-bottom: 14px;
}
.payment-form-row label {
    display: block; font-size: 12px; color: var(--text-secondary);
    margin-bottom: 4px;
}
.payment-form-row input,
.payment-form-row select {
    width: 100%; padding: 10px 12px; border-radius: var(--radius);
    border: 1px solid var(--border); background: var(--bg-primary);
    color: var(--text-primary); font-family: var(--font);
}
.payment-form-row input:focus,
.payment-form-row select:focus { outline: none; border-color: var(--accent); }
.payment-message { font-size: 12px; margin-top: 12px; min-height: 18px; }
.payment-modal-card .btn-primary { width: 100%; margin-top: 8px; }
.deposit-crypto-block { margin: 12px 0; padding: 12px; background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border); }
.payment-crypto-hint { font-size: 11px; color: var(--text-secondary); margin-bottom: 10px; line-height: 1.4; }
.payment-address-row label { display: block; font-size: 12px; margin-bottom: 4px; color: var(--text-secondary); }
.address-wrap { display: flex; gap: 8px; align-items: center; }
.address-wrap input { flex: 1; padding: 10px 12px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-primary); color: var(--text-primary); font-family: var(--mono); font-size: 12px; }
.btn-copy { padding: 10px 14px; border-radius: var(--radius); border: 1px solid var(--accent); background: var(--accent-bg); color: var(--accent); cursor: pointer; font-size: 14px; }
.btn-wallet-use { padding: 8px 12px; border-radius: var(--radius); border: 1px solid var(--orange); background: rgba(210,153,34,0.15); color: var(--orange); cursor: pointer; font-size: 14px; }

.wallet-connect-wrap { display: flex; align-items: center; }
.btn-wallet-connect {
    display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px;
    border-radius: var(--radius); border: 1px solid var(--accent);
    background: var(--accent-bg); color: var(--accent);
    font-family: var(--font); font-size: 12px; font-weight: 600; cursor: pointer;
    transition: all 0.2s;
}
.btn-wallet-connect:hover { background: rgba(88,166,255,0.25); }
.btn-wallet-connect.hidden { display: none !important; }
.wallet-connected {
    display: inline-flex; align-items: center; gap: 8px; padding: 4px 10px;
    background: var(--bg-card); border: 1px solid var(--green);
    border-radius: var(--radius); font-size: 12px; color: var(--green);
}
.wallet-connected.hidden { display: none !important; }
.wallet-address { font-family: var(--mono); cursor: default; }
.btn-wallet-disconnect { padding: 2px 6px; border: none; border-radius: 4px; background: transparent; color: var(--text-secondary); cursor: pointer; font-size: 14px; }
.btn-wallet-disconnect:hover { color: var(--red); }
.payment-history-list { max-height: 280px; overflow-y: auto; }
.payment-history-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 12px; border-radius: var(--radius-sm);
    margin-bottom: 6px; font-size: 13px;
    background: var(--bg-card); border: 1px solid var(--border);
}
.payment-history-row.won { border-color: var(--green); color: var(--green); }
.payment-history-row.pending { border-color: var(--orange); color: var(--orange); }
.payment-history-row.lost { border-color: var(--red); color: var(--red); }
.ph-date { font-size: 11px; color: var(--text-secondary); }
.ph-type { font-weight: 600; }
.ph-amount { font-weight: 700; }
.ph-status { font-size: 11px; }
.loading-text, .empty-text { color: var(--text-secondary); font-size: 13px; padding: 20px; text-align: center; }

.conditional-carry-section {
    margin-top: 12px; padding-top: 0;
    border-top: 1px dashed var(--border);
}
.conditional-carry-section.accordion { border-top: 1px dashed var(--border); }
.conditional-accordion-header {
    display: flex; align-items: center; gap: 8px; width: 100%;
    padding: 10px 0; margin: 0; border: none; background: transparent;
    font-family: var(--font); font-size: 13px; font-weight: 700; color: var(--orange);
    text-align: left; cursor: pointer; transition: color 0.2s;
    border-radius: var(--radius);
}
.conditional-accordion-header:hover { color: var(--accent); }
.accordion-title { flex: 1; }
.accordion-badge {
    font-size: 11px; font-weight: 600; padding: 2px 8px;
    background: rgba(210,153,34,0.2); border-radius: 10px; color: var(--orange);
}
.accordion-chevron {
    font-size: 10px; transition: transform 0.25s ease; color: var(--text-secondary);
}
.conditional-carry-section.accordion-open .accordion-chevron { transform: rotate(180deg); }
.conditional-accordion-body {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.conditional-carry-section.accordion-open .conditional-accordion-body {
    max-height: 320px; overflow-y: auto;
}
.conditional-accordion-body .conditional-desc {
    font-size: 11px; color: var(--text-secondary); margin: 0 0 8px 0; line-height: 1.4;
}
.conditional-desc {
    font-size: 11px; color: var(--text-secondary); margin-bottom: 8px; line-height: 1.4;
}
.carry-leg-card.conditional-selected {
    border: 1px dashed var(--orange); background: rgba(210,153,34,0.08);
}
.carry-leg-card.conditional-available {
    border: 1px dashed rgba(210,153,34,0.3); background: transparent;
}
.conditional-label { color: var(--orange); font-size: 10px; font-weight: 700; }
.carry-leg-status.cond-src { font-size: 10px; color: var(--text-secondary); }
.btn-carry-cond {
    padding: 4px 10px; border-radius: 6px;
    background: rgba(210,153,34,0.15); border: 1px solid var(--orange);
    color: var(--orange); font-family: var(--font);
    font-size: 11px; font-weight: 600; cursor: pointer; transition: all 0.2s;
    white-space: nowrap;
}
.btn-carry-cond:hover { background: rgba(210,153,34,0.3); }
