*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,Helvetica,sans-serif;
}

body{
background:#f4f7fb;
}

.wrapper{
display:flex;
min-height:100vh;
}

.sidebar{
width:240px;
background:#0d1b2a;
color:white;
padding-top:20px;
}

.logo{
text-align:center;
margin-bottom:40px;
}

.logo h2{
color:#00d084;
}

.sidebar ul{
list-style:none;
}

.sidebar ul li{
margin:10px 0;
}

.sidebar ul li a{
display:block;
padding:15px 20px;
color:white;
text-decoration:none;
transition:.3s;
}

.sidebar ul li a:hover{
background:#00d084;
}

.main{
flex:1;
}

.topbar{
background:white;
padding:20px;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.content{
padding:30px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:25px;
}

.card{
background:#fff;
border-radius:18px;
padding:25px;
margin-bottom:20px;
box-shadow:0 8px 25px rgba(0,0,0,.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
}

.card h3{
color:#0d1b2a;
}

.card h4{
margin-bottom:10px;
color:#666;
}

.card h2{
color:#00b36b;
}

.card p{
color:#666;
line-height:1.7;
}

/* ===== Deposit Page ===== */
.deposit-wrap{
    max-width:950px;
    margin:auto;
}
.deposit-header h2{
    color:#0d1b2a;
    margin-bottom:5px;
}
.deposit-header p{
    color:#777;
    margin-bottom:30px;
}
.alert-box{
    padding:15px 20px;
    border-radius:12px;
    margin-bottom:20px;
    font-weight:500;
}
.alert-success{
    background:#e6f9f0;
    color:#0d8a4f;
    border:1px solid #b6ecd3;
}
.alert-error{
    background:#fdeced;
    color:#c0392b;
    border:1px solid #f6c4c4;
}
.dep-card{
    background:#fff;
    border-radius:18px;
    padding:28px;
    margin-bottom:22px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.3s;
}
.dep-card h3{
    color:#0d1b2a;
    margin-bottom:15px;
    font-size:18px;
}
.dep-divider{
    border:none;
    border-top:1px solid #eee;
    margin-bottom:20px;
}
.dep-label{
    display:block;
    font-weight:600;
    color:#333;
    margin-bottom:8px;
    font-size:14px;
}
.dep-input,
.dep-select{
    width:100%;
    padding:13px 15px;
    border:1px solid #e0e0e0;
    border-radius:10px;
    font-size:15px;
    background:#fafbfc;
    transition:.2s;
}
.dep-input:focus,
.dep-select:focus{
    outline:none;
    border-color:#00d084;
    background:#fff;
}
.method-icon{
    width:46px;
    height:46px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    color:#fff;
    margin-bottom:12px;
}
.icon-btc{ background:linear-gradient(135deg,#f7931a,#c76b00); }
.icon-usdt{ background:linear-gradient(135deg,#26a17b,#0e6b53); }
.icon-gift{ background:linear-gradient(135deg,#8b5cf6,#5b21b6); }

.wallet-row{
    display:flex;
    gap:10px;
    align-items:center;
}
.wallet-row .dep-input{
    background:#f4f7fb;
    font-family:monospace;
    font-size:13px;
}
.btn-copy{
    background:#0d1b2a;
    color:#fff;
    border:none;
    padding:13px 18px;
    border-radius:10px;
    cursor:pointer;
    white-space:nowrap;
    transition:.2s;
}
.btn-copy:hover{
    background:#00d084;
}
.btn-submit{
    width:100%;
    background:linear-gradient(135deg,#00d084,#00b36b);
    color:#fff;
    border:none;
    padding:16px;
    border-radius:12px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}
.btn-submit:hover{
    opacity:.9;
    transform:translateY(-2px);
}
.file-drop{
    border:2px dashed #ddd;
    border-radius:12px;
    padding:25px;
    text-align:center;
    background:#fafbfc;
    cursor:pointer;
    transition:.2s;
}
.file-drop:hover{
    border-color:#00d084;
    background:#f0fdf7;
}
.dep-table{
    width:100%;
    border-collapse:collapse;
}
.dep-table th{
    text-align:left;
    padding:12px 10px;
    color:#888;
    font-size:13px;
    text-transform:uppercase;
    border-bottom:2px solid #f0f0f0;
}
.dep-table td{
    padding:14px 10px;
    border-bottom:1px solid #f5f5f5;
    font-size:14px;
}
.status-pill{
    padding:5px 14px;
    border-radius:20px;
    font-size:12px;
    font-weight:700;
    display:inline-block;
}
.status-approved{ background:#e6f9f0; color:#0d8a4f; }
.status-pending{ background:#fff7e6; color:#b8860b; }
.status-rejected{ background:#fdeced; color:#c0392b; }
/* ===== Dashboard ===== */
.dash-wrap{
    max-width:900px;
    margin:0 auto;
}
.balance-card{
    background:#fff;
    border-radius:20px;
    padding:35px 30px;
    text-align:center;
    max-width:420px;
    margin:0 auto 30px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.25s;
}
.balance-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,.1);
}
.balance-card .label-row{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    color:#888;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;
    margin-bottom:6px;
}
.balance-card .sub-label{
    color:#999;
    font-size:13px;
    margin-bottom:18px;
}
.balance-amount{
    font-size:42px;
    font-weight:700;
    letter-spacing:-1px;
    color:#0d1b2a;
    margin-bottom:16px;
}
.btc-pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#fff4e6;
    color:#c76b00;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}
.verified-pill{
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:#0d8a4f;
    background:#e6f9f0;
    padding:7px 16px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    margin-bottom:12px;
}
.unverified-pill{
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:#b8860b;
    background:#fff7e6;
    padding:7px 16px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    margin-bottom:12px;
    text-decoration:none;
    cursor:pointer;
}
.last-updated{
    color:#aaa;
    font-size:12px;
    margin-bottom:24px;
    padding-bottom:24px;
    border-bottom:1px solid #f0f0f0;
}
.balance-actions{
    display:flex;
    gap:12px;
}
.balance-btn{
    flex:1;
    background:#f4f7fb;
    border:1px solid #eee;
    color:#0d1b2a;
    padding:14px;
    border-radius:14px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    transition:.25s;
}
.balance-btn:hover{
    background:#00d084;
    border-color:#00d084;
    color:#fff;
    transform:translateY(-2px);
}
.stat-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}
.stat-card{
    background:#fff;
    border-radius:20px;
    padding:24px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.25s;
}
.stat-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,.1);
}
.stat-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:16px;
}
.stat-top span{
    color:#888;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;
}
.stat-icon{
    width:40px;
    height:40px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:15px;
}
.icon-profit{ background:linear-gradient(135deg,#00d084,#00b36b); }
.icon-deposit{ background:linear-gradient(135deg,#3b82f6,#1d4ed8); }
.icon-withdraw{ background:linear-gradient(135deg,#f97316,#c2410c); }
.stat-value{
    font-size:26px;
    font-weight:700;
    color:#0d1b2a;
    margin-bottom:8px;
}
.stat-sub{
    color:#999;
    font-size:12px;
    display:flex;
    align-items:center;
    gap:6px;
}
.has-submenu .submenu-toggle i:first-child{
    margin-right:0;
}
.submenu-arrow{
    margin-left:auto;
    font-size:12px;
    transition:transform .25s;
}
.submenu-arrow.rotated{
    transform:rotate(180deg);
}
.submenu{
    list-style:none;
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
    background:rgba(0,0,0,.15);
}
.submenu.open{
    max-height:200px;
}
.submenu li a{
    padding:12px 20px 12px 45px;
    font-size:14px;
}
/* ===== Trade Pages ===== */
.direction-pill{
    padding:5px 14px;
    border-radius:20px;
    font-size:12px;
    font-weight:700;
    display:inline-block;
}
.direction-buy{ background:#e6f9f0; color:#0d8a4f; }
.direction-sell{ background:#fdeced; color:#c0392b; }

.pl-positive{ color:#0d8a4f; font-weight:700; }
.pl-negative{ color:#c0392b; font-weight:700; }

.trade-grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}
@media (max-width:600px){
    .trade-grid-2{
        grid-template-columns:1fr;
    }
}
.balance-note{
    color:#777;
    font-size:14px;
    margin-bottom:20px;
}
.balance-note strong{
    color:#0d1b2a;
}
/* ===== Open Trades ===== */
.trade-card{
    background:#fff;
    border-radius:20px;
    padding:26px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.25s;
}
.trade-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,.1);
}
.trade-card-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
}
.trade-card-top h3{
    color:#0d1b2a;
    font-size:18px;
}
.trade-invest-box{
    background:#f7f8fa;
    padding:14px;
    border-radius:12px;
    margin-bottom:18px;
}
.trade-invest-box small{
    color:#777;
    font-size:12px;
}
.trade-invest-box h3{
    margin-top:5px;
    color:#0d1b2a;
    font-size:20px;
}
.trade-pl{
    font-size:30px;
    font-weight:700;
    margin-bottom:18px;
}
.trade-timer-box{
    background:#f7f8fa;
    padding:14px;
    border-radius:12px;
    margin-bottom:18px;
}
.trade-timer-box strong{
    display:block;
    color:#333;
    font-size:13px;
    margin-bottom:6px;
}
.trade-timer-box .countdown{
    color:#0d1b2a;
    font-size:16px;
    font-weight:600;
}
.btn-close-trade{
    display:block;
    width:100%;
    text-align:center;
    background:linear-gradient(135deg,#ef4444,#c0392b);
    color:#fff;
    padding:14px;
    border-radius:12px;
    font-weight:600;
    text-decoration:none;
    transition:.25s;
}
.btn-close-trade:hover{
    opacity:.9;
    transform:translateY(-2px);
}
.no-trades-box{
    background:#fff;
    border-radius:20px;
    text-align:center;
    padding:60px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}
.no-trades-box h2{
    color:#0d1b2a;
}
.no-trades-box p{
    margin-top:12px;
    color:#777;
}
/* ===== Auth Pages ===== */
.auth-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f4f7fb;
    padding:20px;
}
.auth-card{
    width:420px;
    max-width:100%;
    background:#fff;
    padding:40px 35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}
.auth-logo{
    text-align:center;
    margin-bottom:10px;
    overflow:hidden;
}
.auth-logo h2{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    font-size:22px;
    max-width:100%;
    color:#0d1b2a;
}
.auth-logo svg{
    flex-shrink:0;
}
@media (max-width:480px){
    .auth-card{
        padding:30px 20px;
    }
    .auth-logo h2{
        font-size:18px;
    }
    .auth-logo svg{
        width:20px;
        height:20px;
    }
}
.auth-subtitle{
    text-align:center;
    color:#888;
    font-size:14px;
    margin-bottom:25px;
}
.auth-input-group{
    margin-bottom:16px;
}
.auth-input-group label{
    display:block;
    font-weight:600;
    color:#333;
    margin-bottom:6px;
    font-size:13px;
}
.auth-input{
    width:100%;
    padding:13px 15px;
    border:1px solid #e0e0e0;
    border-radius:10px;
    font-size:14px;
    background:#fafbfc;
    transition:.2s;
}
.auth-input:focus{
    outline:none;
    border-color:#00d084;
    background:#fff;
}
.auth-btn{
    width:100%;
    background:linear-gradient(135deg,#00d084,#00b36b);
    color:#fff;
    border:none;
    padding:15px;
    border-radius:12px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    margin-top:8px;
    transition:.3s;
}
.auth-btn:hover{
    opacity:.9;
    transform:translateY(-2px);
}
.auth-footer{
    text-align:center;
    margin-top:20px;
    font-size:14px;
    color:#666;
}
.auth-footer a{
    color:#00d084;
    font-weight:600;
    text-decoration:none;
}
.auth-footer a:hover{
    text-decoration:underline;
}
/* ===== Auth Background Animation ===== */
.auth-page{
    position:relative;
    overflow:hidden;
    background:#0d1b2a;
}
#authCanvas{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:0;
}
.auth-card{
    position:relative;
    z-index:1;
}
/* ===== Cookie Consent Banner ===== */
.cookie-banner{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#0d1b2a;
    color:#cbd5e1;
    padding:18px 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
    z-index:9999;
    box-shadow:0 -5px 20px rgba(0,0,0,.2);
    transform:translateY(100%);
    transition:transform .4s ease;
}
.cookie-banner.show{
    transform:translateY(0);
}
.cookie-banner p{
    font-size:13px;
    margin:0;
    max-width:700px;
}
.cookie-banner a{
    color:#00d084;
    font-weight:600;
}
.cookie-banner-actions{
    display:flex;
    gap:10px;
}
.cookie-btn-accept{
    background:#00d084;
    color:#0d1b2a;
    border:none;
    padding:10px 20px;
    border-radius:8px;
    font-weight:700;
    font-size:13px;
    cursor:pointer;
}
.cookie-btn-decline{
    background:transparent;
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    padding:10px 20px;
    border-radius:8px;
    font-size:13px;
    cursor:pointer;
}
/* ===== Homepage Ticker ===== */
.price-ticker-wrap{
    background:#050c14;
    border-bottom:1px solid rgba(255,255,255,.08);
    overflow:hidden;
    white-space:nowrap;
    padding:12px 0;
}
.price-ticker-track{
    display:inline-block;
    animation: tickerScroll 30s linear infinite;
}
.price-ticker-track:hover{
    animation-play-state: paused;
}
@keyframes tickerScroll{
    0%{ transform: translateX(0); }
    100%{ transform: translateX(-50%); }
}
.ticker-item{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:0 30px;
    font-size:14px;
    color:#cbd5e1;
    border-right:1px solid rgba(255,255,255,.08);
}
.ticker-item i{
    font-size:16px;
}
.ticker-item .t-up{ color:#22c55e; }
.ticker-item .t-down{ color:#ef4444; }

/* ===== Homepage hero animation canvas ===== */
#homeCanvas{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:0;
}
.hero{
    position:relative;
    overflow:hidden;
}
.hero-text, .hero-visual{
    position:relative;
    z-index:1;
}

/* ===== Legal section ===== */
.legal-section{
    background:#0a1622;
    color:#5c6b7d;
    padding:30px 40px;
    font-size:12px;
    line-height:1.8;
}
.legal-section p{
    max-width:1200px;
    margin:0 auto 10px;
}

/* ===== Mobile Sidebar ===== */
.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:22px;
    color:#0d1b2a;
    cursor:pointer;
    padding:8px;
}
.sidebar-overlay{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.5);
    z-index:998;
}
.sidebar-overlay.show{
    display:block;
}

@media (max-width:900px){
    .wrapper{
        position:relative;
        overflow-x:hidden;
        max-width:100vw;
    }
    .sidebar{
        position:fixed;
        top:0;
        left:0;
        height:100vh;
        z-index:999;
        transform:translateX(-100%);
        transition:transform .3s ease;
        overflow-y:auto;
    }
    .sidebar.open{
        transform:translateX(0);
    }
    .main{
        width:100%;
        overflow-x:hidden;
        max-width:100vw;
    }
    .menu-toggle{
        display:inline-block;
        flex-shrink:0;
    }
    .content{
        padding:15px;
        overflow-x:hidden;
    }
    .cards, .stat-grid{
        grid-template-columns:1fr;
        gap:15px;
    }
    .topbar{
        padding:15px;
        gap:10px;
        flex-wrap:nowrap;
    }
    .topbar > div:first-child{
        display:flex;
        align-items:center;
        gap:10px;
        flex:1;
        min-width:0;
    }
    .topbar h2{
        font-size:16px;
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
    }
    .topbar .user{
        font-size:13px;
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
        max-width:120px;
        flex-shrink:0;
    }
    .dep-table, .table-card table{
        min-width:600px;
    }
    .dep-card{
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
    }
    body{
        overflow-x:hidden;
    }
}
/* ===== Trade With Confidence Stats ===== */
.confidence-section{
    background:#fff;
    padding:80px 40px;
    text-align:center;
}
.confidence-section h2{
    font-size:34px;
    color:#0d1b2a;
    margin-bottom:15px;
}
.confidence-section > p{
    color:#777;
    max-width:600px;
    margin:0 auto 50px;
    font-size:15px;
}
.confidence-stats-box{
    background:#f4f7fb;
    border-radius:24px;
    padding:50px 30px;
    max-width:900px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:30px;
}
.confidence-stat{
    text-align:center;
}
.confidence-stat .stat-number{
    font-size:42px;
    font-weight:800;
    color:#0d1b2a;
    opacity:0;
    transform:translateY(20px);
    transition:opacity .6s ease, transform .6s ease;
}
.confidence-stat.visible .stat-number{
    opacity:1;
    transform:translateY(0);
}
.confidence-stat .stat-label{
    color:#777;
    font-size:14px;
    margin-top:8px;
}
.confidence-stat:nth-child(1) .stat-number{ transition-delay:0s; }
.confidence-stat:nth-child(2) .stat-number{ transition-delay:.15s; }
.confidence-stat:nth-child(3) .stat-number{ transition-delay:.3s; }
.confidence-stat:nth-child(4) .stat-number{ transition-delay:.45s; }

/* ===== Crypto Showcase (phone + coins) ===== */
.crypto-showcase{
    background:#f4f7fb;
    padding:80px 40px;
    overflow:hidden;
}
.crypto-showcase-inner{
    max-width:1100px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:60px;
    flex-wrap:wrap;
    position:relative;
}
.crypto-text{
    flex:1;
    min-width:280px;
}
.crypto-text h2{
    font-size:32px;
    color:#0d1b2a;
    margin-bottom:15px;
}
.crypto-text p{
    color:#777;
    font-size:15px;
    max-width:420px;
}
.crypto-visual{
    position:relative;
    width:280px;
    height:420px;
    flex-shrink:0;
}
.crypto-phone{
    position:relative;
    width:220px;
    height:420px;
    margin:0 auto;
    background:#0d1b2a;
    border-radius:36px;
    padding:14px;
    box-shadow:0 30px 60px rgba(0,0,0,.25);
    z-index:2;
}
.crypto-phone-screen{
    background:#132738;
    width:100%;
    height:100%;
    border-radius:24px;
    padding:20px 16px;
    color:#fff;
}
.crypto-phone-screen .ph-pair{
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:700;
    font-size:14px;
    margin-bottom:6px;
}
.crypto-phone-screen .ph-price{
    color:#9fb3c8;
    font-size:12px;
    margin-bottom:20px;
}
.crypto-phone-screen .ph-row{
    display:flex;
    justify-content:space-between;
    background:rgba(255,255,255,.05);
    padding:10px 12px;
    border-radius:10px;
    margin-bottom:10px;
    font-size:12px;
    color:#cbd5e1;
}
.crypto-phone-screen .ph-chart{
    height:110px;
    display:flex;
    align-items:flex-end;
    gap:4px;
    margin:15px 0;
}
.crypto-phone-screen .ph-bar{
    flex:1;
    border-radius:3px;
}
.crypto-coin-card{
    position:absolute;
    top:50%;
    width:130px;
    padding:16px;
    border-radius:16px;
    color:#fff;
    font-weight:700;
    font-size:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.2);
    display:flex;
    align-items:center;
    gap:10px;
    opacity:0;
    z-index:1;
    transition:transform 1s cubic-bezier(.2,.8,.2,1), opacity 1s ease;
}
.coin-btc{
    background:linear-gradient(135deg,#f7931a,#c76b00);
    left:-40px;
    transform:translate(0,-140%) translateX(0);
}
.coin-eth{
    background:linear-gradient(135deg,#627eea,#3b4ba8);
    left:-40px;
    transform:translate(0,40%) translateX(0);
}
.crypto-visual.visible .coin-btc{
    opacity:1;
    transform:translate(-30px,-140%) translateX(-60px);
}
.crypto-visual.visible .coin-eth{
    opacity:1;
    transform:translate(-30px,40%) translateX(-60px);
}
.coin-icon-circle{
    width:32px;
    height:32px;
    border-radius:50%;
    background:rgba(255,255,255,.2);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    flex-shrink:0;
}

@media (max-width:768px){
    .crypto-visual{
        width:100%;
        display:flex;
        justify-content:center;
    }
    .crypto-visual.visible .coin-btc{
        transform:translate(-70px,-140%) scale(1);
    }
    .crypto-visual.visible .coin-eth{
        transform:translate(70px,40%) scale(1);
    }
}
/* ===== Support Chat Widget ===== */
.support-bubble{
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:linear-gradient(135deg,#00d084,#00b36b);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,208,132,.4);
    z-index:9998;
    transition:.25s;
    border:none;
}
.support-bubble:hover{
    transform:scale(1.08);
}
.support-bubble .unread-dot{
    position:absolute;
    top:2px;
    right:2px;
    width:16px;
    height:16px;
    background:#ef4444;
    border-radius:50%;
    border:2px solid #fff;
    display:none;
}
.support-panel{
    position:fixed;
    bottom:100px;
    right:25px;
    width:340px;
    max-width:90vw;
    height:460px;
    max-height:70vh;
    background:#fff;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
    display:none;
    flex-direction:column;
    overflow:hidden;
    z-index:9999;
}
.support-panel.open{
    display:flex;
}
.support-header{
    background:#0d1b2a;
    color:#fff;
    padding:16px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.support-header h4{
    font-size:15px;
}
.support-header span{
    font-size:12px;
    color:#9fb3c8;
}
.support-close{
    background:none;
    border:none;
    color:#fff;
    font-size:18px;
    cursor:pointer;
}
.support-messages{
    flex:1;
    padding:15px;
    overflow-y:auto;
    background:#f4f7fb;
    display:flex;
    flex-direction:column;
    gap:10px;
}
.support-messages{
    flex:1;
    padding:15px;
    overflow-y:auto;
    background:#f4f7fb;
    display:flex;
    flex-direction:column;
    gap:10px;
}
.support-input-row{
    display:flex;
    gap:8px;
    padding:12px;
    border-top:1px solid #eee;
    background:#fff;
}
.support-input-row input{
    flex:1;
    padding:10px 14px;
    border:1px solid #e0e0e0;
    border-radius:20px;
    font-size:13px;
}
.support-input-row input:focus{
    outline:none;
    border-color:#00d084;
}
.support-send-btn{
    background:#00d084;
    color:#fff;
    border:none;
    width:38px;
    height:38px;
    border-radius:50%;
    cursor:pointer;
    flex-shrink:0;
}
.support-guest-name-row{
    padding:12px;
    background:#fff;
    border-top:1px solid #eee;
}
.support-guest-name-row input{
    width:100%;
    padding:10px 14px;
    border:1px solid #e0e0e0;
    border-radius:10px;
    font-size:13px;
    margin-bottom:8px;
}
.support-guest-name-row button{
    width:100%;
    background:#00d084;
    color:#fff;
    border:none;
    padding:10px;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
}