*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{

    background:
    radial-gradient(
    circle at top,
    #1f2d72,
    #0b1028,
    #050816
    );

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:100vh;

    padding:20px;
}

/* APP */

.app{

    width:390px;

    min-height:844px;

    border-radius:40px;

    overflow:hidden;

    position:relative;

    background:
    linear-gradient(
    180deg,
    #071124,
    #101b48,
    #131942
    );

    box-shadow:
    0 0 50px rgba(0,255,255,.15),
    0 0 80px rgba(140,0,255,.15);

    padding-bottom:100px;
}

/* HEADER */

.header{

    background:#02040f;

    padding:18px;
}

.top{

    display:flex;

    justify-content:center;

    align-items:center;
}

.close{

    border:none;

    background:none;

    color:#00e5ff;

    font-size:18px;
}

.logo{

    text-align:center;
}

/* TITULO */

.fire-title{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    font-size:34px;

    font-weight:bold;

    letter-spacing:1px;

    color:white;

    text-shadow:
    0 0 10px rgba(0,217,255,.7),
    0 0 20px rgba(143,0,255,.7);
}

/* ICONOS FUTURISTAS */

.fire{

    font-size:40px;

    display:inline-block;

    background:linear-gradient(
    180deg,
    #00d9ff,
    #8f00ff,
    #ff00ff
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    filter:
    drop-shadow(0 0 10px #00d9ff)
    drop-shadow(0 0 18px #8f00ff);

    animation:
    fireGlow 2s infinite ease-in-out;
}
/* ===== CARD USDT ===== */

.trade-card{

    background:
    linear-gradient(
    180deg,
    rgba(22,22,45,.95),
    rgba(14,14,32,.95)
    );

    border-radius:28px;

    padding:28px 20px;

    margin-top:22px;

    box-shadow:
    0 0 25px rgba(0,217,255,.12),
    0 0 35px rgba(143,0,255,.10);

    border:
    1px solid rgba(255,255,255,.05);

    text-align:center;
}

/* TITLE */

.usdt-title{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    margin-bottom:18px;

    font-size:32px;

    font-weight:800;

    color:white;
}

/* ICON */

.usdt-icon{

    width:34px;

    height:34px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
    135deg,
    #8f00ff,
    #00d9ff
    );

    color:white;

    font-size:18px;

    font-weight:bold;

    box-shadow:
    0 0 12px rgba(143,0,255,.6),
    0 0 18px rgba(0,217,255,.4);
}

/* BALANCE */

.trade-balance{

    font-size:72px;

    font-weight:900;

    color:white;

    margin-bottom:10px;

    line-height:1;
}

/* DAILY */

.trade-profit{

    font-size:18px;

    color:white;

    margin-bottom:22px;
}

.trade-profit span{

    color:#48ffd2;

    font-weight:bold;
}

/* TIMER */

.trade-timer{

    width:100%;

    background:
    rgba(255,255,255,.06);

    border-radius:18px;

    padding:14px;

    margin-bottom:22px;

    color:#48ffd2;

    font-size:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;
}

/* BUTTONS */

.trade-buttons{

    display:flex;

    gap:14px;
}

.trade-buttons button{

    flex:1;

    border:none;

    border-radius:18px;

    padding:15px;

    font-size:18px;

    font-weight:bold;

    color:white;

    cursor:pointer;

    background:
    linear-gradient(
    90deg,
    #00d9ff,
    #8f00ff
    );

    box-shadow:
    0 0 15px rgba(0,217,255,.20);
}

/* BUY ICON */

.buy-icon{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:22px;

    height:22px;

    border-radius:50%;

    margin-left:6px;

    background:
    linear-gradient(
    135deg,
    #8f00ff,
    #00d9ff
    );

    font-size:13px;

    font-weight:bold;
}
/* AMOUNT */

.amount{

    font-size:72px;

    font-weight:bold;

    text-align:center;

    color:#ffffff;

    margin-bottom:15px;
}

/* DAILY */

.daily{

    text-align:center;

    font-size:20px;

    color:#d7d7d7;

    margin-bottom:25px;
}

.daily span{

    color:#35ffd0;

    font-weight:bold;
}

/* TIMER */

.timer{

    background:rgba(255,255,255,.08);

    padding:14px;

    border-radius:18px;

    text-align:center;

    margin-bottom:25px;

    color:#7fffd4;

    font-size:18px;
}

/* BUTTONS */

.actions{

    display:flex;

    gap:14px;
}

.buy-btn,
.reward-btn{

    flex:1;

    border:none;

    border-radius:20px;

    padding:14px;

    font-size:16px;

    font-weight:bold;

    cursor:pointer;

    color:white;

    background:
    linear-gradient(
    90deg,
    #00d9ff,
    #8f00ff
    );

    box-shadow:
    0 0 15px rgba(0,217,255,.25),
    0 0 20px rgba(143,0,255,.25);
}
/* ANIMACION */

@keyframes fireGlow{

    0%{

        transform:scale(1);

        opacity:1;
    }

    50%{

        transform:scale(1.15);

        opacity:.9;
    }

    100%{

        transform:scale(1);

        opacity:1;
    }

}

.logo p{

    color:#8f8fff;
}

.menu{

    width:45px;

    height:45px;

    border-radius:50%;

    border:2px solid #00d9ff;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#00d9ff;
}

/* USER */

.user-box{

    padding:18px;
}

.user-top{

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.user{

    display:flex;

    align-items:center;

    gap:12px;
}

.user img{

    width:50px;

    height:50px;

    border-radius:50%;
}

.user span{

    font-size:22px;

    font-weight:bold;

    color:white;
}

.icons{

    color:#8fa8ff;

    font-size:20px;
}
.save-username-btn{

    background:none;
    border:none;

    color:#ffffff;

    font-size:18px;

    cursor:pointer;

    padding:0 4px;

    margin-left:6px;

    transition:.2s;

}

.save-username-btn:hover{

    transform:scale(1.15);

}
/* MONEY */

.money-row{

    margin-top:18px;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.money small{

    color:#b9c4ff;

    font-size:18px;
}

.money h2{

    margin-top:6px;

    font-size:48px;

    color:#00ffb3;
}

.withdraw{

    border:none;

    padding:16px 24px;

    border-radius:18px;

    font-size:18px;

    font-weight:bold;

    color:white;

    background:
    linear-gradient(
    90deg,
    #00d9ff,
    #8f00ff
    );
}

/* BANNER */

.banner{

    margin:0 18px;

    padding:18px;

    border-radius:24px;

    background:
    linear-gradient(
    90deg,
    #6a00ff,
    #aa00ff
    );

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.banner small{

    color:#ffcbff;
}

.banner h3{

    margin-top:4px;

    color:white;

    font-size:24px;
}

.banner button{

    border:none;

    padding:14px 24px;

    border-radius:16px;

    background:#00d9ff;

    color:#071124;

    font-weight:bold;
}
.news-title{

    font-size:28px;

    font-weight:700;

    letter-spacing:1px;

    color:white;

    text-shadow:
    0 0 10px rgba(0,217,255,.6),
    0 0 18px rgba(143,0,255,.6);

}
/* TP */

.tp-box{

    margin:18px;

    padding:24px;

    border-radius:30px;

    background:
    linear-gradient(
    145deg,
    rgba(21,33,90,.95),
    rgba(10,15,40,.95)
    );

    text-align:center;

    border:
    1px solid rgba(255,255,255,.05);
}

.tp-box h2{

    color:white;

    font-size:24px;
}

.tp{

    margin:15px 0;

    font-size:72px;

    font-weight:bold;

    color:white;
}

.daily{

    color:#c7d1ff;

    font-size:20px;
}

.daily span{

    color:#00ffb3;

    font-weight:bold;
}

.timer{

    margin:20px auto;

    width:80%;

    padding:16px;

    border-radius:20px;

    background:
    rgba(255,255,255,.05);

    color:#00d9ff;
}

/* ACTIONS */

.actions{

    margin-top:20px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:12px;
}

.actions button{

    border:none;

    padding:18px;

    border-radius:20px;

    color:white;

    font-size:17px;

    font-weight:bold;

    background:
    linear-gradient(
    90deg,
    #00d9ff,
    #8f00ff
    );
}

/* TABLE */

.table-box{

    margin:18px;

    padding:22px;

    border-radius:30px;

    background:
    rgba(255,255,255,.04);
}

.table-title{

    text-align:center;

    margin-bottom:20px;

    font-size:26px;

    font-weight:bold;

    color:#00d9ff;
}

.row{

    display:flex;

    justify-content:space-between;

    padding:16px 0;

    color:white;

    font-size:18px;

    border-bottom:1px solid rgba(255,255,255,.05);
}

/* NAVBAR */

.navbar{

    position:absolute;

    bottom:0;

    width:100%;

    height:85px;

    background:
    rgba(8,12,30,.98);

    display:flex;

    justify-content:space-around;

    align-items:center;

    border-top:
    1px solid rgba(255,255,255,.05);
}

.nav{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:6px;

    color:#7f89b8;

    font-size:14px;
}

.active{

    color:#00d9ff;
}

/* MOBILE */

@media(max-width:500px){

    body{

        padding:0;
    }

    .app{

        width:100%;

        min-height:100vh;

        border-radius:0;
    }

}
/* USER TOP */

.user-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;
}

/* USER */

.user{

    display:flex;

    align-items:center;

    gap:15px;
}

/* AVATAR */

.profile-icon{

    width:50px;

    height:50px;

    border-radius:50%;

    background:
    linear-gradient(
    145deg,
    #00d9ff,
    #8f00ff
    );

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    color:white;

    box-shadow:
    0 0 15px rgba(0,217,255,.3);

    overflow:hidden;

    cursor:pointer;

    background-size:cover;

    background-position:center;

    flex-shrink:0;
}

/* USERNAME */

#username{

    color:white;

    font-size:18px;

    font-weight:bold;

    outline:none;
}

/* ICONS */

.icons{

    display:flex;

    align-items:center;

    gap:14px;

    color:white;

    font-size:22px;
}

/* SETTINGS */

.settings-btn{

    cursor:pointer;
}
/*========== LANGUAGE ==========*/

.language-box{

    position:relative;

    display:flex;

    align-items:center;

}

.lang-btn{

    width:40px;

    height:40px;

    border:none;

    border-radius:12px;

    background:linear-gradient(135deg,#5b42ff,#19d7ff);

    color:white;

    font-size:20px;

    cursor:pointer;

    transition:.25s;

    display:flex;

    align-items:center;

    justify-content:center;

}

.lang-btn:hover{

    transform:scale(1.08);

    box-shadow:0 0 15px rgba(25,215,255,.45);

}

/*========== MENU ==========*/

.lang-menu{

    position:absolute;

    top:48px;

    right:0;

    width:170px;

    background:#18182d;

    border:1px solid #5f7dff;

    border-radius:14px;

    padding:8px;

    display:none;

    flex-direction:column;

    gap:6px;

    box-shadow:0 12px 30px rgba(0,0,0,.45);

    z-index:999;

}

.lang-menu div{

    display:flex;

    align-items:center;

    gap:10px;

    padding:10px 12px;

    border-radius:10px;

    cursor:pointer;

    transition:.25s;

    color:#6fdcff;

    font-size:15px;

    font-weight:600;

}

.lang-menu div:hover{

    background:rgba(95,125,255,.18);

}

.lang-menu .active{

    background:rgba(95,125,255,.22);

    color:#ffffff;

}
/* WALLET OVERLAY */

.wallet-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.7);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:9999;

    padding:20px;
}

/* MODAL */

.wallet-modal{

    width:100%;

    max-width:380px;

    background:#121226;

    border:1px solid #8f00ff;

    border-radius:24px;

    padding:25px;

    display:flex;

    flex-direction:column;

    gap:18px;

    box-shadow:
    0 0 30px rgba(143,0,255,.35);
}

/* TITLE */

.wallet-modal h2{

    color:white;

    text-align:center;
}

/* INPUTS */

.wallet-modal select,
.wallet-modal input{

    width:100%;

    padding:14px;

    border:none;

    outline:none;

    border-radius:14px;

    background:#1c1c35;

    color:white;

    font-size:15px;
}

/* BUTTONS */

.wallet-actions{

    display:flex;

    gap:12px;
}

.wallet-actions button{

    flex:1;

    border:none;

    padding:14px;

    border-radius:14px;

    cursor:pointer;

    font-weight:bold;

    color:white;

    background:linear-gradient(
    145deg,
    #00d9ff,
    #8f00ff
    );
}
/* INPUTS BLOQUEADOS */

.wallet-modal input:disabled,
.wallet-modal select:disabled{

    opacity:0.7;

    cursor:not-allowed;

    background:#2a2a45;

    color:#00d9ff;
}
.wallet-confirm-overlay{

    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:99999;

}

.wallet-confirm-box{

    width:90%;
    max-width:380px;

    background:#1b1f37;

    border:2px solid #8b5cf6;

    border-radius:18px;

    padding:20px;

    animation:fadeIn .25s;

}

.wallet-confirm-box h2{

    text-align:center;

    color:white;

    margin-bottom:18px;

}

.confirm-item{

    margin-bottom:14px;

}

.confirm-item span{

    color:#7dd3fc;

    font-size:13px;

    display:block;

    margin-bottom:6px;

}

.confirm-item div{

    background:#2b335a;

    color:white;

    padding:10px;

    border-radius:10px;

}

.confirm-address{

    overflow-x:auto;

    white-space:nowrap;

    font-size:13px;

}

.confirm-warning{

    color:#ddd;

    font-size:13px;

    text-align:center;

    margin:18px 0;

}

.confirm-buttons{

    display:flex;

    gap:10px;

}

.edit-wallet-btn{

    flex:1;

    background:#3b82f6;

    color:white;

    border:none;

    border-radius:10px;

    height:44px;

    cursor:pointer;

}

.save-wallet-btn{

    flex:1;

    background:#22c55e;

    color:white;

    border:none;

    border-radius:10px;

    height:44px;

    cursor:pointer;

}
/* WITHDRAW OVERLAY */

.withdraw-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.75);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:9999;

    padding:20px;
}

/* MODAL */

.withdraw-modal{

    width:100%;

    max-width:380px;

    background:#121226;

    border:1px solid #8f00ff;

    border-radius:24px;

    padding:24px;

    display:flex;

    flex-direction:column;

    gap:18px;

    box-shadow:
    0 0 35px rgba(143,0,255,.35);
}

/* HEADER */

.withdraw-header{

    display:flex;

    align-items:center;

    justify-content:space-between;
}

.withdraw-header h2{

    color:white;

    font-size:22px;
}

.withdraw-header button{

    background:none;

    border:none;

    color:white;

    font-size:22px;

    cursor:pointer;
}

/* INPUT BOX */

.withdraw-input-box{

    position:relative;
}

/* INPUT */

.withdraw-input-box input{

    width:100%;

    padding:14px 70px 14px 14px;

    border:none;

    outline:none;

    border-radius:14px;

    background:#1c1c35;

    color:white;

    font-size:16px;
}

/* REMOVE ARROWS */

.withdraw-input-box input::-webkit-outer-spin-button,
.withdraw-input-box input::-webkit-inner-spin-button{

    -webkit-appearance:none;

    margin:0;
}

/* TODO BUTTON */

#selectAllBtn{

    position:absolute;

    right:14px;

    top:50%;

    transform:translateY(-50%);

    color:#00d9ff;

    font-weight:bold;

    cursor:pointer;
}

/* WITHDRAW BUTTON */

#confirmWithdraw{

    border:none;

    padding:14px;

    border-radius:14px;

    cursor:pointer;

    font-weight:bold;

    color:white;

    background:linear-gradient(
    145deg,
    #00d9ff,
    #8f00ff
    );
}

/* DISABLED */

#confirmWithdraw:disabled{

    opacity:.6;

    cursor:not-allowed;
}

/* STATUS */

#withdrawStatus{

    color:#00d9ff;

    text-align:center;

    font-size:14px;

    min-height:20px;
}
/* ==========================================
   WEEKEND BANNER
========================================== */

.weekend-active{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin:18px 0;

    padding:16px 18px;

    border-radius:22px;

    background:linear-gradient(
        135deg,
        #6d1bff,
        #c14bff
    );

    box-shadow:
    0 0 22px rgba(143,0,255,.35);

}

.weekend-active small{

    display:block;

    color:#d8cfff;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:6px;

}

.news-title{

    color:#ffffff;

    font-size:30px;

    font-weight:900;

    margin:0;

    text-shadow:
    0 0 10px rgba(255,255,255,.18);

}

.event-btn{

    width:120px;

    height:54px;

    border:none;

    border-radius:18px;

    cursor:pointer;

    color:#1d2d55;

    font-size:20px;

    font-weight:900;

    background:linear-gradient(
        135deg,
        #00e5ff,
        #64d8ff
    );

    box-shadow:
    0 0 18px rgba(0,229,255,.45);

    transition:.25s;

}

.event-btn:hover{

    transform:scale(1.05);

}
/* BOTÓN WEEKEND DESACTIVADO */

.event-btn.weekend-off{

    background:linear-gradient(
        135deg,
        #5f7d87,
        #6f6f8e
    );

    color:#ffffff;

    opacity:.65;

    cursor:not-allowed;

    box-shadow:none;

    font-size:12px;

    font-weight:700;

    line-height:1.15;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    position:relative;

}

/* ======================================
   WEEKEND OVERLAY
====================================== */

.weekend-overlay{

    position:fixed;
    inset:0;

    display:none;

    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,.82);

    z-index:9999;

    padding:20px;

    backdrop-filter:blur(6px);

}

/* CAJA */

.weekend-box{

    width:100%;
    max-width:390px;

    background:#17172b;

    border:2px solid #8f00ff;

    border-radius:28px;

    padding:25px;

    box-shadow:
    0 0 35px rgba(143,0,255,.35);

}

/* CABECERA */

.weekend-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.weekend-header h2{

    color:white;

    font-size:28px;

    font-weight:900;

    margin:0;

}

.close-weekend{

    background:none;

    border:none;

    color:white;

    font-size:30px;

    cursor:pointer;

}

/* TEXTO */

.weekend-subtitle{

    color:#ffffff;

    text-align:center;

    line-height:1.6;

    font-size:18px;

    font-weight:700;

    margin-bottom:25px;

}

/* INPUT */

.weekend-input{

    width:100%;

    padding:18px;

    border:none;

    outline:none;

    border-radius:18px;

    background:#242442;

    color:white;

    font-size:22px;

    font-weight:bold;

    text-align:center;

    margin-bottom:18px;

    box-sizing:border-box;

}

.weekend-input::placeholder{

    color:#9e9ebf;

}

/* BOTÓN */

.weekend-btn{

    width:100%;

    padding:17px;

    border:none;

    border-radius:18px;

    cursor:pointer;

    background:
    linear-gradient(
    90deg,
    #00d9ff,
    #8f00ff
    );

    color:white;

    font-size:20px;

    font-weight:900;

    margin-bottom:25px;

    transition:.25s;

}

.weekend-btn:hover{

    transform:scale(1.02);

}
.weekend-status-text{

    margin-top:12px;

    text-align:center;

    color:#ffcc66;

    font-size:14px;

    font-weight:600;

    min-height:20px;

}
/* TEXTO */

.status-text{

    color:white;

    text-align:center;

    font-size:18px;

    font-weight:700;

    line-height:1.6;

}

/* TEMPORIZADOR */

.timer{

    background:

    linear-gradient(

    135deg,

    #5d27ff,

    #00d9ff

    );

    border-radius:18px;

    padding:18px;

    color:white;

    font-size:34px;

    font-weight:900;

    text-align:center;

}

/*==========================================
 STATUS CARD COMPACTA
==========================================*/

.weekend-status{

    display:none;

    margin-top:8px;

    padding:16px;

    border-radius:18px;

    background:linear-gradient(
        180deg,
        rgba(38,28,92,.98),
        rgba(22,18,58,.98)
    );

    border:2px solid rgba(145,70,255,.40);

    box-shadow:
    0 0 18px rgba(143,0,255,.22);

    text-align:center;

}

/* Participaste */

.weekend-result-text{

    color:#ffffff;

    font-size:16px;

    font-weight:800;

    line-height:1.4;

    margin-bottom:10px;

}

/* Texto gris */

.weekend-profit{

    color:#d7d5f5;

    font-size:15px;

    line-height:1.4;

}

/* +15 */
#weekendProfitPercent{

    display:inline;

    color:#38ff74;

    font-size:16px;

    font-weight:700;

}
/* Ganancia */
.weekend-banner{

    margin-top:2px;

    margin-bottom:6px;

    padding-top:4px;

}
/* Título */
.weekend-banner-title{

    color:#ffffff;

    font-size:15px;

    font-weight:700;

    margin-bottom:2px;

}
/* Total */

.weekend-banner b{

    display:block;

    color:#38ff74;

    font-size:24px;

    font-weight:900;

}

/* Reloj */

.weekend-countdown{

    margin-top:4px;

    padding:12px;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        #5530d8,
        #3d22b0
    );

    color:#61d8ff;

    font-size:28px;

    font-weight:900;

    letter-spacing:2px;

    text-shadow:
    0 0 10px rgba(0,217,255,.40);

}
/* BOTÓN RECLAMAR */

.weekend-claim-box{

    display:none;

    margin-top:12px;

    text-align:center;

}

.weekend-claim-btn{

    width:100%;

    height:54px;

    border:none;

    border-radius:18px;

    background:linear-gradient(
        90deg,
        #38ff74,
        #2be365
    );

    color:#ffffff;

    font-size:20px;

    font-weight:900;

    letter-spacing:1px;

    cursor:pointer;

    transition:.25s;

    box-shadow:
    0 0 18px rgba(56,255,116,.45);

}

.weekend-claim-btn:hover{

    background:linear-gradient(
        90deg,
        #45ff82,
        #32ef6f
    );

    transform:translateY(-2px);

    box-shadow:
    0 0 26px rgba(56,255,116,.70);

}
/* =========================
   BUY OVERLAY
========================= */
.buy-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.82);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:9999;

    padding:20px;

}

/* BOX */

.buy-box{

    width:100%;

    max-width:420px;

    background:#121225;

    border:1px solid #8f00ff;

    border-radius:30px;

    padding:25px;

    box-shadow:
    0 0 35px rgba(143,0,255,.45);

    text-align:center;
}

/* HEADER */

.buy-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;
}

.buy-header h2{

    color:white;

    font-size:28px;

    font-weight:800;
}

.close-buy{

    background:none;

    border:none;

    color:white;

    font-size:30px;

    cursor:pointer;
}

/* BOXES */

.network-box,
.address-box{

    background:#1a1a35;

    border-radius:20px;

    padding:18px;

    margin-bottom:18px;

    text-align:left;

    border:1px solid rgba(255,255,255,.05);
}

.network-box small,
.address-box small{

    color:#8f8fb0;

    font-size:14px;
}

.network-value{

    margin-top:10px;

    color:#00d9ff;

    font-size:24px;

    font-weight:800;
}

.address-value{

    margin-top:10px;

    color:white;

    font-size:16px;

    word-break:break-all;

    line-height:1.5;
}

/* COPY BUTTON */

.copy-btn{

    width:100%;

    padding:18px;

    border:none;

    border-radius:18px;

    background:
    linear-gradient(
        90deg,
        #00d9ff,
        #8f00ff
    );

    color:white;

    font-size:20px;

    font-weight:800;

    cursor:pointer;

    box-shadow:
    0 0 25px rgba(143,0,255,.45);

    transition:.25s;
}

.copy-btn:hover{

    transform:scale(1.02);
}
/* DAILY BUTTON */

.daily-btn{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;
}

/* LOADER */

.daily-loader{

    display:none;

    animation:
    spinLoader .8s linear infinite;
}

@keyframes spinLoader{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}
/* ==========================================
   FRIENDS PAGE
========================================== */

.friends-page{
    position:fixed;
    inset:0;
    display:none;
    z-index:9999;
    background:#070b1d;
    overflow-y:auto;
    padding:20px;
}

.friends-box{
    width:100%;
    max-width:520px;
    margin:auto;
    padding-bottom:120px;
}

/* ---------- HEADER ---------- */

.friends-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:28px;
}

.back-home{

    border:none;

    border-radius:16px;

    padding:12px 18px;

    cursor:pointer;

    color:white;

    font-size:16px;

    font-weight:700;

    background:linear-gradient(
        90deg,
        #00d9ff,
        #8f00ff
    );
}

.friends-header h2{
    color:white;
    font-size:34px;
    font-weight:900;
}

/* ---------- DESCRIPCIÓN ---------- */

.friends-description{

    color:white;

    font-size:18px;

    line-height:1.6;

    margin-bottom:28px;
}

/* ---------- CAJA DEL LINK ---------- */

.referral-container{

    background:#151633;

    border-radius:22px;

    padding:22px;

    margin-bottom:22px;

    border:1px solid rgba(255,255,255,.05);

    box-shadow:
    0 0 20px rgba(143,0,255,.15);
}

.referral-title{

    display:block;

    color:#9ca2d9;

    margin-bottom:12px;

    font-size:15px;

    font-weight:700;
}

.referral-link{

    color:#00d9ff;

    font-size:16px;

    word-break:break-word;

    font-weight:700;
}

/* ---------- BOTÓN ---------- */

.copy-referral{

    width:100%;

    border:none;

    border-radius:18px;

    padding:18px;

    cursor:pointer;

    margin-bottom:28px;

    color:white;

    font-size:20px;

    font-weight:800;

    background:linear-gradient(
        90deg,
        #00d9ff,
        #8f00ff
    );

    box-shadow:
    0 0 20px rgba(143,0,255,.35);
}

/* ---------- ESTADÍSTICAS ---------- */

.friends-stats{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin-bottom:28px;
}

.stat-card{

    background:#151633;

    border-radius:18px;

    padding:20px;

    text-align:center;

    box-shadow:
    0 0 16px rgba(143,0,255,.18);
}

.stat-title{

    display:block;

    color:#aab0df;

    margin-bottom:10px;

    font-size:14px;
}

.stat-value{

    color:#00d9ff;

    font-size:28px;

    font-weight:900;
}
/* =========================
   EMPTY REFERRALS
========================= */

.empty-referrals{

    background:#14142b;

    border-radius:24px;

    padding:35px 25px;

    margin-top:25px;

    text-align:center;

    box-shadow:
    0 0 18px rgba(143,0,255,.18);

}

.empty-icon{

    font-size:50px;

    margin-bottom:15px;

}

.empty-referrals h3{

    color:white;

    font-size:25px;

    font-weight:800;

    margin-bottom:15px;

}

.empty-referrals p{

    color:#bfc7d7;

    font-size:17px;

    line-height:1.6;

}
/* ==========================================
   TARJETA REFERIDO
========================================== */

.friend-card{

    background:linear-gradient(180deg,#181836,#121226);
    border-radius:24px;
    padding:22px;
    margin-top:18px;
    box-shadow:
    0 0 20px rgba(143,0,255,.18);
    border:1px solid rgba(255,255,255,.05);

}

.friend-top{

    display:flex;
    align-items:center;
    gap:14px;

}

.friend-number{

    color:#00e5ff;
    font-size:32px;
    font-weight:900;
    min-width:42px;

}

.friend-info{

    flex:1;

}

.friend-name{

    color:#fff;
    font-size:24px;
    font-weight:800;

}

.friend-status{

    font-size:16px;
    font-weight:800;

}

.friend-status.pending{

    color:#ffffff;

}

.friend-status.active{

    color:#38ff72;

}

.friend-status.claimed{

    color:#38ff72;

}

.friend-invest{

    margin-top:14px;
    font-size:18px;
    color:#ffffff;
    font-weight:700;

}

.friend-invest span{

    color:#38ff72;
    font-weight:900;

}

.friend-btn{

    margin-top:18px;
    width:100%;
    height:46px;
    border:none;
    border-radius:14px;
    color:#fff;
    font-size:18px;
    font-weight:800;
    cursor:pointer;
    transition:.25s;

}

.friend-btn.pending{

    background:#2fa95f;

    opacity:.55;

}

.friend-btn.claim{

    background:#2cff77;

    box-shadow:
    0 0 15px rgba(44,255,119,.45);

}

.friend-btn.claimed{

    background:#22c55e;

    box-shadow:
    0 0 15px rgba(34,197,94,.35);

}
/* =========================
   INTRO PAGE
========================= */

.intro-page{

    position:fixed;

    inset:0;

    background:#0b0f2a;

    z-index:99999;

    display:none;

    overflow-y:auto;

    padding:25px;
}

.intro-box{

    max-width:500px;

    margin:auto;
}

/* HEADER */

.intro-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;
}

.intro-header h2{

    color:white;

    font-size:42px;

    font-weight:900;
}

/* CONTENT */

.intro-content{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.intro-content p{

    white-space: pre-line;
    
    background:#171b3a;

    padding:20px;

    border-radius:22px;

    color:white;

    font-size:20px;

    line-height:1.7;

    box-shadow:
    0 0 25px rgba(0,217,255,.12);
}
/* =========================
   NOTIFICATIONS
========================= */

/* ICON */

.notify-icon{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;
}

/* RED DOT */

.notify-dot{

    position:absolute;

    top:-8px;

    right:-10px;

    min-width:18px;

    height:18px;

    padding:0 4px;

    border-radius:50px;

    background:red;

    color:white;

    font-size:11px;

    font-weight:800;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:
    0 0 10px red;
}

/* PAGE */

.notify-page{

    position:fixed;

    inset:0;

    background:#070b1f;

    z-index:99999;

    display:none;

    overflow-y:auto;

    padding:25px;
}

/* TOP */

.notify-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;
}

.notify-top button{

    border:none;

    padding:12px 18px;

    border-radius:16px;

    background:
    linear-gradient(
        90deg,
        #00d9ff,
        #8f00ff
    );

    color:white;

    font-weight:800;

    cursor:pointer;
}

.notify-top h2{

    color:white;

    font-size:36px;
}

/* LIST */

.notify-list{

    display:flex;

    flex-direction:column;

    gap:18px;
}

/* ITEM */

.notify-item{

    background:#121b3a;

    padding:22px;

    border-radius:22px;

    color:white;

    font-size:18px;

    line-height:1.6;

    border:1px solid rgba(255,255,255,.05);

    box-shadow:
    0 0 20px rgba(0,217,255,.08);
}

/* =========================
   NAVBAR FIX
========================= */

.nav{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:6px;

    cursor:pointer;

    position:relative;

    color:#00e5ff;

    font-size:14px;

    font-weight:600;
}

/* ICONS */

.nav-icon{

    display:flex;

    align-items:center;

    justify-content:center;
}
#walletAddress:disabled,
#networkSelect:disabled{

    opacity:1;

    background:#1b2347;

    color:#00e5ff;

    cursor:not-allowed;
}
.history-btn{

    background:none;

    border:none;

    cursor:pointer;

    font-size:18px;

    margin-left:8px;

    color:#00d9ff;
}

.history-page{

    display:none;

    position:fixed;

    inset:0;

    background:#000000cc;

    z-index:9999;

    overflow:auto;
}
.history-box{

    width:90%;

    max-width:450px;

    margin:40px auto;

    background:#111827;

    border-radius:20px;

    padding:20px;

    box-shadow:0 0 20px #00d9ff33;
}

.history-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

    color:white;
}

.history-item{

    background:#1f2937;

    padding:14px;

    border-radius:14px;

    margin-bottom:12px;

    color:white;

    font-size:14px;

    line-height:1.6;

    border-left:4px solid #00d9ff;
}
.deposit-pending{

    border-left:4px solid orange;
}

.deposit-approved{

    border-left:4px solid #00ff88;
}

.withdraw-pending{

    border-left:4px solid #ff4d4d;
}

.withdraw-approved{

    border-left:4px solid #00e5ff;
}

.empty-history{

    text-align:center;

    color:#cccccc;
}