.footer__top img{
    max-width:250px;
    max-height:43px;
}

/* =========================
   GLOBAL
========================= */

:root{
    --gold:#f5b941;
    --dark:#050505;
    --card:#111111;
    --text:#f3f4f6;
}

body{
    background:#050505 !important;
    color:var(--text);
    font-family:'Poppins',sans-serif !important;
}

/* =========================
   MODALS
========================= */

.modal-content{
    background:#111111 !important;
    border:1px solid rgba(255,255,255,0.06);
}

.close,
.close:hover{
    color:#fff;
    opacity:1;
}

/* =========================
   INPUTS
========================= */

.form-control,
.form--control{
    background:#0f0f0f !important;
    border:1px solid rgba(255,255,255,0.08) !important;
    border-radius:14px !important;
    color:#fff !important;
    box-shadow:none !important;
}

.form-control:focus{
    border-color:var(--gold) !important;
    box-shadow:0 0 0 4px rgba(245,185,65,0.12) !important;
}

.form-control::placeholder{
    color:#94a3b8 !important;
}

.custom-input-group{
    background:transparent !important;
    border:none !important;
    padding:0;
}

.input-group{
    overflow:hidden;
    border-radius:16px;
}

.input-group-text{
    background:linear-gradient(135deg,#f5b941,#ffdd95) !important;
    border:none !important;
    color:#111 !important;
}

/* PHONE INPUT */

.country-select{
    height:50px;
}

#phoneInput .letter{
    border:1px solid #cca354 !important;
    background:transparent !important;
}

#phoneInput .letter + .letter{
    border-left:1px solid #cca354 !important;
}

/* =========================
   BUTTONS
========================= */

.btn,
.btn--base,
.cmn-btn{
    border:none !important;
    border-radius:14px !important;
    padding:12px 28px !important;
    font-weight:600 !important;
    transition:all .3s ease;
}

.btn:hover,
.btn--base:hover,
.cmn-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(245,185,65,0.25);
}

.cmn-btn{
    background:linear-gradient(135deg,#f5b941,#ffdd95) !important;
    color:#111827 !important;
}

/* =========================
   HEADER
========================= */

.header{
    background:#111111 !important;
    border-bottom:1px solid rgba(255,255,255,0.05);
    backdrop-filter:blur(14px);
}

.header .main-menu li a{
    color:#f3f4f6 !important;
    font-weight:500;
    transition:all .3s ease;
}

.header .main-menu li a:hover{
    color:var(--gold) !important;
}

.header .main-menu li .sub-menu li a{
    color:#ffffff !important;
}

/* =========================
   CARDS
========================= */

.card{
    background:#111111 !important;
    border-radius:20px !important;
    border:1px solid rgba(245,185,65,0.15) !important;
    box-shadow:0 10px 40px rgba(0,0,0,0.35) !important;
}

.card .card-header{
    background:#1a1a1a !important;
    border-bottom:1px solid rgba(255,255,255,0.06);
}

/* =========================
   LIST GROUP
========================= */

.list-group-item{
    background:transparent;
    border:1px dashed rgba(245,185,65,0.15);
    color:#fff;
}

/* =========================
   TABLES
========================= */

.table{
    color:#ffffff !important;
    border-radius:18px;
    overflow:hidden;
}

.table td,
.table th{
    border-color:rgba(255,255,255,0.05) !important;
}

.table.style--two{
    background:#111111;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.05);
}

.table.style--two thead{
    background:#151515;
}

.table.style--two thead th{
    color:#f3f4f6 !important;
    border:none !important;
    padding:22px 18px !important;
    font-size:14px;
    font-weight:700;
}

.table.style--two tbody td{
    color:#d1d5db !important;
    padding:20px 18px !important;
}

.table.style--two tbody tr:hover{
    background:rgba(255,255,255,0.03);
}

/* =========================
   DASHBOARD WIDGETS
========================= */

.d-widget{
    position:relative;
    overflow:hidden;

    padding:30px !important;

    border-radius:26px !important;

    background:
    linear-gradient(
        145deg,
        #111111,
        #161616
    ) !important;

    border:1px solid rgba(255,255,255,0.06);

    box-shadow:
    0 15px 40px rgba(0,0,0,0.35);

    transition:all .35s ease;
}

.d-widget:hover{
    transform:translateY(-8px);

    border-color:
    rgba(245,185,65,0.20);
}

.d-widget::before{
    content:'';
    position:absolute;

    top:-80px;
    right:-80px;

    width:180px;
    height:180px;

    background:rgba(245,185,65,0.08);

    border-radius:50%;

    filter:blur(40px);
}

.d-widget .caption{
    color:#94a3b8 !important;
    font-size:14px;
    font-weight:500;
}

.currency-amount{
    margin-top:12px;

    font-size:32px !important;

    font-weight:800 !important;

    color:#fff !important;
}

.d-widget .icon{
    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:20px;

    background:
    linear-gradient(
        135deg,
        rgba(245,185,65,0.18),
        rgba(245,185,65,0.08)
    );

    border:
    1px solid rgba(245,185,65,0.12);
}

.d-widget .icon i{
    font-size:34px;
    color:#f5b941;
}

/* =========================
   HERO
========================= */

.hero{
    position:relative;
    overflow:hidden;
    min-height:100vh;
    display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(11,17,32,0.96) 0%,
        rgba(11,17,32,0.82) 45%,
        rgba(11,17,32,0.45) 100%
    );
}

.hero-modern{
    position:relative;
    z-index:2;
    max-width:720px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(245,185,65,0.12);

    border:1px solid rgba(245,185,65,0.25);

    color:#f5b941;

    font-size:14px;

    font-weight:600;

    margin-bottom:28px;
}

.hero-title{
    font-size:72px;
    line-height:1.05;
    font-weight:800;
    letter-spacing:-3px;
    color:#fff;
    margin-bottom:28px;
}

.hero-title span{
    color:#f5b941;
}

.hero-text{
    font-size:20px;
    line-height:1.8;
    color:#d1d5db;
    max-width:650px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 38px;

    border-radius:16px;

    background:
    linear-gradient(
        135deg,
        #f5b941,
        #ffdd95
    );

    color:#111827 !important;

    font-weight:700;

    box-shadow:
    0 15px 40px rgba(245,185,65,0.30);

    transition:all .3s ease;
}

.hero-btn:hover{
    transform:translateY(-4px);
}

.hero-btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 38px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,0.12);

    background:rgba(255,255,255,0.03);

    color:#fff !important;
}

/* =========================
   AUTH
========================= */

.account-section{
    min-height:100vh;
    display:flex;
    align-items:center;
}

.account-card{
    background:rgba(17,24,39,0.78) !important;

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    border-radius:30px !important;

    overflow:hidden;

    box-shadow:
    0 25px 70px rgba(0,0,0,0.45);
}

.account-card__header{
    padding:50px 45px !important;

    background:
    linear-gradient(
        135deg,
        rgba(245,185,65,0.10),
        rgba(255,255,255,0.02)
    ) !important;
}

.account-card__body{
    padding:45px !important;
}

/* =========================
   REFERRALS TREE
========================= */

.referral-ul li{
    padding-left:1em;
    border:1px dotted #fff;
    border-width:0 0 1px 1px;
}

.referral-ul li.container{
    border-bottom:0;
    width:100%;
}

.referral-ul li.empty{
    font-style:italic;
    color:silver;
    border-color:silver;
}

.referral-ul li p{
    margin:0;
    position:relative;
    top:.5em;
    padding-bottom:3px;
}

.referral-ul li ul{
    border-top:1px dotted #fff;
    margin-left:-1em;
    padding-left:2em;
}

.referral-ul ul li:last-child ul{
    border-left:1px dotted #fff;
    margin-left:-17px;
}

/* =========================
   HELPERS
========================= */

.pt-60{
    padding-top:60px !important;
}

.cmn-section{
    padding:150px 0;
}

.btn-disabled{
    opacity:.5;
    cursor:auto !important;
}

.text-success{
    color:#22c55e !important;
}

.text-danger{
    color:#ef4444 !important;
}

.text-primary{
    color:#f5b941 !important;
}

.base--color{
    color:#f5b941 !important;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .hero-title{
        font-size:48px;
        line-height:1.1;
    }

    .hero-text{
        font-size:17px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }

}

@media(max-width:768px){

    .currency-amount{
        font-size:24px !important;
    }

    .d-widget{
        padding:25px !important;
    }

    .account-card__header,
    .account-card__body{
        padding:30px !important;
    }

}