/* ==========================================
   SENKU STAKES
   style.css (Part 1)
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#070916;

    color:#ffffff;

    overflow-x:hidden;

    position:relative;

}

/* ===========================
        GLOBAL
=========================== */

.container{

    width:min(1400px,92%);

    margin:auto;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button{

    font-family:inherit;

    border:none;

    outline:none;

    cursor:pointer;

}

/* ===========================
    ANIMATED BACKGROUND
=========================== */

.bg-grid{

    position:fixed;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

    background-size:55px 55px;

    z-index:-5;

}

.glow{

    position:fixed;

    border-radius:50%;

    filter:blur(120px);

    opacity:.18;

    z-index:-4;

}

.glow-one{

    width:420px;

    height:420px;

    background:#7b2cff;

    top:-180px;

    left:-120px;

}

.glow-two{

    width:520px;

    height:520px;

    background:#00d5ff;

    right:-180px;

    bottom:-200px;

}

.glow-three{

    width:340px;

    height:340px;

    background:#8b5cf6;

    top:45%;

    left:45%;

}

/* ===========================
        HEADER
=========================== */

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    backdrop-filter:blur(18px);

    background:rgba(9,12,24,.72);

    border-bottom:1px solid rgba(255,255,255,.05);

}

nav{

    height:84px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* LOGO */

.logo{

    display:flex;

    align-items:center;

    gap:14px;

}

.logo-box{

    width:52px;

    height:52px;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#8b5cf6,#00d5ff);

    font-size:24px;

    font-weight:800;

    color:#fff;

    box-shadow:0 0 30px rgba(139,92,246,.45);

}

.logo-text h2{

    font-size:22px;

    font-weight:800;

}

.logo-text small{

    color:#8f98b5;

    font-size:12px;

}

/* MENU */

.nav-links{

    display:flex;

    gap:40px;

}

.nav-links a{

    color:#c7cde1;

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover{

    color:#ffffff;

}

/* BUTTONS */

.nav-buttons{

    display:flex;

    gap:16px;

}

.btn{

    padding:14px 30px;

    border-radius:14px;

    font-weight:700;

    transition:.35s;

}

.primary{

    background:linear-gradient(135deg,#7b2cff,#5b16ff);

    color:white;

    box-shadow:0 15px 35px rgba(123,44,255,.35);

}

.primary:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 45px rgba(123,44,255,.55);

}

.secondary{

    border:1px solid rgba(255,255,255,.15);

    color:#fff;

    background:rgba(255,255,255,.04);

}

.secondary:hover{

    background:rgba(255,255,255,.08);

}

.menu-btn{

    display:none;

    width:48px;

    height:48px;

    border-radius:12px;

    background:rgba(255,255,255,.08);

    color:white;

    font-size:22px;

}

/* ===========================
        HERO
=========================== */

.hero{

    padding-top:170px;

    padding-bottom:120px;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

/* LEFT */

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 18px;

    border-radius:50px;

    background:rgba(123,44,255,.15);

    border:1px solid rgba(123,44,255,.35);

    margin-bottom:28px;

}

.hero-badge span{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#7b2cff;

    box-shadow:0 0 15px #7b2cff;

}

.hero h1{

    font-size:68px;

    line-height:1.08;

    font-weight:900;

    margin-bottom:24px;

}

.hero h1 span{

    background:linear-gradient(90deg,#8b5cf6,#00d5ff);

    -webkit-background-clip:text;

    color:transparent;

}

.hero p{

    color:#9da8c5;

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:35px;

}

/* USERS */

.hero-users{

    display:flex;

    align-items:center;

    gap:18px;

}

.user-stack{

    display:flex;

}

.user-stack div{

    width:42px;

    height:42px;

    margin-left:-10px;

    border-radius:50%;

    border:3px solid #070916;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    background:linear-gradient(135deg,#8b5cf6,#00d5ff);

}

/* ===========================
      DASHBOARD
=========================== */

.dashboard{

    background:#12172b;

    border-radius:24px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 25px 60px rgba(0,0,0,.45);

}

.dashboard-top{

    height:58px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 20px;

    background:#181d34;

}

.window-buttons{

    display:flex;

    gap:8px;

}

.window-buttons span{

    width:12px;

    height:12px;

    border-radius:50%;

}

.red{background:#ff4d4d;}
.yellow{background:#ffcc00;}
.green{background:#35d16f;}

.dashboard-title{

    color:#b8bfd8;

    font-size:14px;

}

.dashboard-body{

    display:flex;

}

/* SIDEBAR */

aside{

    width:220px;

    background:#0d1222;

    padding:30px 20px;

}

.sidebar-logo{

    width:58px;

    height:58px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:35px;

    font-size:24px;

    font-weight:800;

    background:linear-gradient(135deg,#8b5cf6,#00d5ff);

}

aside ul{

    display:flex;

    flex-direction:column;

    gap:12px;

}

aside li{

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px;

    border-radius:14px;

    color:#9da8c5;

    transition:.3s;

}

aside li.active,
aside li:hover{

    background:#7b2cff;

    color:#fff;

}

/* CONTENT */

.dashboard-content{

    flex:1;

    padding:28px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:28px;

}

.card{

    background:#1b2138;

    padding:22px;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.05);

}

.card h3{

    color:#9ca3b9;

    margin-bottom:12px;

}

.card h2{

    font-size:32px;

    margin-bottom:10px;

}

.card span{

    color:#37d67a;

    font-weight:700;

}

/* GRAPH */

.graph{

    height:230px;

    display:flex;

    align-items:flex-end;

    gap:15px;

    background:#1b2138;

    border-radius:20px;

    padding:25px;

}

.graph div{

    flex:1;

    border-radius:10px 10px 0 0;

    background:linear-gradient(#00d5ff,#7b2cff);

    animation:bars 2.2s infinite alternate;

}

.graph div:nth-child(1){height:45%;}
.graph div:nth-child(2){height:65%;}
.graph div:nth-child(3){height:38%;}
.graph div:nth-child(4){height:85%;}
.graph div:nth-child(5){height:58%;}
.graph div:nth-child(6){height:100%;}
.graph div:nth-child(7){height:75%;}

@keyframes bars{

    from{

        transform:scaleY(.85);

    }

    to{

        transform:scaleY(1);

    }

}

/* ===========================
      RESPONSIVE
=========================== */

@media(max-width:1100px){

.hero-grid{

grid-template-columns:1fr;

}

.dashboard-body{

flex-direction:column;

}

aside{

width:100%;

}

}

@media(max-width:900px){

.nav-links,
.nav-buttons{

display:none;

}

.menu-btn{

display:flex;

align-items:center;

justify-content:center;

}

.hero h1{

font-size:48px;

}

.cards{

grid-template-columns:1fr;

}

}

@media(max-width:600px){

.hero{

padding-top:130px;

}

.hero h1{

font-size:38px;

}

.hero-buttons{

flex-direction:column;

}

}
/* ==========================================
        SECTION HEADINGS
========================================== */

.section-heading{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-heading span{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(123,44,255,.15);

    border:1px solid rgba(123,44,255,.3);

    color:#b18cff;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

}

.section-heading h2{

    font-size:52px;

    font-weight:800;

    margin-bottom:22px;

    line-height:1.2;

}

.section-heading p{

    color:#9ca3b9;

    font-size:18px;

    line-height:1.8;

}

/* ==========================================
        STATISTICS
========================================== */

.stats-section{

    padding:90px 0;

}

.stats-section .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-box{

    background:#12172b;

    border:1px solid rgba(255,255,255,.06);

    border-radius:22px;

    padding:45px 25px;

    text-align:center;

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-8px);

    border-color:#7b2cff;

    box-shadow:0 20px 45px rgba(123,44,255,.15);

}

.stat-box h2{

    font-size:44px;

    font-weight:800;

    background:linear-gradient(90deg,#8b5cf6,#00d5ff);

    -webkit-background-clip:text;

    color:transparent;

    margin-bottom:12px;

}

.stat-box p{

    color:#9ca3b9;

}

/* ==========================================
        FEATURES
========================================== */

.features{

    padding:120px 0;

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.feature-card{

    background:#12172b;

    border-radius:24px;

    padding:40px;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.feature-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(135deg,
        rgba(123,44,255,.18),
        transparent 60%);

    opacity:0;

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:#7b2cff;

}

.feature-card:hover::before{

    opacity:1;

}

.feature-card .icon{

    width:70px;

    height:70px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    background:linear-gradient(135deg,#8b5cf6,#00d5ff);

    margin-bottom:28px;

}

.feature-card h3{

    font-size:24px;

    margin-bottom:18px;

}

.feature-card p{

    color:#9ca3b9;

    line-height:1.8;

}

/* ==========================================
        SERVICES
========================================== */

.services{

    padding:120px 0;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.service-card{

    position:relative;

    overflow:hidden;

    background:#12172b;

    border-radius:24px;

    padding:45px;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.service-card::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(123,44,255,.08);

    top:-120px;

    right:-120px;

}

.service-card:hover{

    transform:translateY(-8px);

    border-color:#7b2cff;

}

.service-card h3{

    font-size:28px;

    margin-bottom:18px;

}

.service-card p{

    color:#9ca3b9;

    line-height:1.9;

}

/* ==========================================
        RESPONSIVE
========================================== */

@media(max-width:1100px){

.stats-section .container{

grid-template-columns:repeat(2,1fr);

}

.features-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:900px){

.section-heading h2{

font-size:40px;

}

.services-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.features-grid{

grid-template-columns:1fr;

}

.stats-section .container{

grid-template-columns:1fr;

}

.section-heading{

margin-bottom:50px;

}

.section-heading h2{

font-size:34px;

}

.feature-card,
.service-card{

padding:30px;

}

}
/* ==========================================
            TESTIMONIALS
========================================== */

.testimonials{

    padding:120px 0;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    position:relative;

    background:#12172b;

    border:1px solid rgba(255,255,255,.06);

    border-radius:24px;

    padding:40px;

    transition:.35s;

    overflow:hidden;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    border-color:#7b2cff;

    box-shadow:0 20px 45px rgba(123,44,255,.18);

}

.quote{

    width:60px;

    height:60px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

    font-size:22px;

    background:linear-gradient(135deg,#8b5cf6,#00d5ff);

}

.testimonial-card p{

    color:#b8bfd8;

    line-height:1.9;

    margin-bottom:30px;

}

.user{

    display:flex;

    align-items:center;

    gap:16px;

}

.avatar{

    width:58px;

    height:58px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    background:linear-gradient(135deg,#8b5cf6,#00d5ff);

}

.user h4{

    font-size:18px;

    margin-bottom:4px;

}

.user span{

    color:#8f98b5;

    font-size:14px;

}

/* ==========================================
                CTA
========================================== */

.cta{

    padding:60px 0 120px;

}

.cta-box{

    position:relative;

    overflow:hidden;

    background:linear-gradient(135deg,#7b2cff,#2b7fff);

    border-radius:32px;

    padding:80px 60px;

    text-align:center;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-250px;

    right:-180px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    left:-120px;

    bottom:-170px;

}

.cta-box>*{

    position:relative;

    z-index:2;

}

.cta-box h2{

    font-size:54px;

    margin-bottom:20px;

    font-weight:800;

}

.cta-box p{

    font-size:18px;

    color:rgba(255,255,255,.88);

    margin-bottom:35px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

.cta-buttons .secondary{

    border:1px solid rgba(255,255,255,.25);

    background:rgba(255,255,255,.08);

}

/* ==========================================
                FOOTER
========================================== */

footer{

    padding:90px 0 30px;

    border-top:1px solid rgba(255,255,255,.06);

    background:#0b0f1d;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.4fr;

    gap:60px;

}

.footer-logo{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:22px;

}

.footer-logo h3{

    font-size:24px;

}

.footer-logo p{

    color:#8f98b5;

}

.footer-text{

    color:#9ca3b9;

    line-height:1.9;

    max-width:380px;

}

footer h4{

    margin-bottom:22px;

    font-size:20px;

}

footer ul{

    display:flex;

    flex-direction:column;

    gap:15px;

}

footer ul a{

    color:#9ca3b9;

    transition:.3s;

}

footer ul a:hover{

    color:#fff;

    padding-left:8px;

}

/* Newsletter */

.newsletter{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.newsletter input{

    width:100%;

    padding:16px;

    border:none;

    outline:none;

    border-radius:14px;

    background:#151b31;

    color:#fff;

}

.newsletter button{

    padding:16px;

    border:none;

    border-radius:14px;

    cursor:pointer;

    font-weight:700;

    color:#fff;

    background:linear-gradient(135deg,#8b5cf6,#00d5ff);

    transition:.35s;

}

.newsletter button:hover{

    transform:translateY(-3px);

}

/* Social */

.socials{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.socials a{

    width:48px;

    height:48px;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#151b31;

    transition:.35s;

}

.socials a:hover{

    background:#7b2cff;

    transform:translateY(-4px);

}

/* Copyright */

.copyright{

    margin-top:70px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.06);

    text-align:center;

    color:#7f89a7;

}

/* ==========================================
            FINAL RESPONSIVE
========================================== */

@media(max-width:1200px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

.testimonial-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:900px){

.cta-box{

padding:60px 35px;

}

.cta-box h2{

font-size:40px;

}

.cta-buttons{

flex-direction:column;

align-items:center;

}

}

@media(max-width:768px){

.testimonial-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

gap:40px;

}

.cta-box{

padding:50px 25px;

}

.cta-box h2{

font-size:32px;

}

.cta-box p{

font-size:16px;

}

.socials{

justify-content:flex-start;

}

}
/*================================
        RESPONSIVE
================================*/

@media(max-width:1100px){

.platform-balance-card{

flex-direction:column;

align-items:flex-start;

gap:25px;

}

.balance-right{

width:100%;

display:grid;

grid-template-columns:1fr 1fr;

}

}

@media(max-width:850px){

.withdraw-grid{

grid-template-columns:1fr;

}

.history-header{

flex-direction:column;

align-items:flex-start;

}

.history-search{

width:100%;

}

.platform-main{

padding:20px;

}

.admin-sidebar{

width:230px;

}

}

@media(max-width:650px){

.balance-right{

grid-template-columns:1fr;

}

.page-header{

flex-direction:column;

align-items:flex-start;

gap:20px;

}

.admin-profile{

width:100%;

}

}
/*================================
        PAGE ANIMATION
================================*/

.platform-main > section,
.page-header{

opacity:0;

animation:pageEnter .7s ease forwards;

}


.page-header{

animation-delay:.1s;

}


.platform-balance-card{

animation-delay:.2s;

}


.platform-withdraw-card{

animation-delay:.35s;

}


.withdraw-history-card{

animation-delay:.5s;

}


@keyframes pageEnter{


from{

opacity:0;

transform:translateY(25px);

}


to{

opacity:1;

transform:translateY(0);

}


}



/*================================
        BALANCE GLOW EFFECT
================================*/


.platform-balance-card{

position:relative;

overflow:hidden;

}


.platform-balance-card::before{

content:"";

position:absolute;

width:300px;

height:300px;

right:-120px;

top:-120px;

background:

radial-gradient(

circle,

rgba(123,44,255,.35),

transparent 70%

);

pointer-events:none;

}



.balance-icon{

animation:

balanceFloat 4s ease-in-out infinite;

}



@keyframes balanceFloat{


0%,
100%{

transform:translateY(0);

}


50%{

transform:translateY(-8px);

}


}



/*================================
        FORM CARD EFFECT
================================*/


.platform-withdraw-card{

position:relative;

overflow:hidden;

}



.platform-withdraw-card::after{

content:"";

position:absolute;

width:250px;

height:250px;

bottom:-120px;

right:-100px;

background:

radial-gradient(

circle,

rgba(0,212,255,.25),

transparent 70%

);

}



/*================================
        INPUT HOVER
================================*/


.form-group input:hover,

.form-group select:hover{


border-color:rgba(123,44,255,.6);

}



.form-group input,

.form-group select{

transform:translateY(0);

}


.form-group input:focus,

.form-group select:focus{


transform:translateY(-2px);


}



/*================================
        BUTTON SHINE EFFECT
================================*/


#platformWithdrawBtn{

position:relative;

overflow:hidden;

}



#platformWithdrawBtn::before{


content:"";


position:absolute;


top:0;


left:-100%;


width:60%;


height:100%;


background:

linear-gradient(

120deg,

transparent,

rgba(255,255,255,.35),

transparent

);


transition:.6s;


}



#platformWithdrawBtn:hover::before{


left:120%;


}



/*================================
        HISTORY TABLE ANIMATION
================================*/


.withdraw-history-card{


animation:

historyReveal .8s ease forwards;


}


@keyframes historyReveal{


from{

opacity:0;

transform:translateY(40px);

}


to{

opacity:1;

transform:translateY(0);

}


}



tbody tr{


animation:

rowEnter .4s ease forwards;


}



@keyframes rowEnter{


from{

opacity:0;

transform:translateX(-20px);

}


to{

opacity:1;

transform:translateX(0);

}


}



/*================================
        SEARCH PREMIUM EFFECT
================================*/


.history-search{

transition:.3s;

}


.history-search:hover{


transform:translateY(-2px);


}



.history-search input{


background:

linear-gradient(

135deg,

#111b2e,

#16233c

);


}



/*================================
        TABLE HEADER STYLE
================================*/


thead th:first-child{

border-radius:14px 0 0 14px;

}


thead th:last-child{

border-radius:0 14px 14px 0;

}



/*================================
        CUSTOM SCROLLBAR
================================*/


::-webkit-scrollbar{

width:8px;

height:8px;

}


::-webkit-scrollbar-track{

background:#08101d;

}


::-webkit-scrollbar-thumb{

background:

linear-gradient(

180deg,

#7b2cff,

#00d4ff

);


border-radius:20px;

}
/*================================
        WITHDRAW HISTORY PANEL
================================*/


.withdraw-history-card{

padding:30px;

border-radius:24px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(20px);

box-shadow:

0 20px 45px rgba(0,0,0,.25);

overflow:hidden;

}



.history-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:25px;

}



.history-header h2{

font-size:26px;

font-weight:800;

color:#fff;

margin-bottom:6px;

}



.history-header p{

font-size:14px;

color:#8f98b5;

}



/*================================
        SEARCH BOX
================================*/


.history-search{

position:relative;

width:300px;

}



.history-search i{

position:absolute;

left:18px;

top:50%;

transform:translateY(-50%);

color:#7b2cff;

font-size:15px;

}



.history-search input{

height:50px;

width:100%;

padding-left:48px;

padding-right:18px;

border-radius:15px;

border:1px solid rgba(255,255,255,.08);

background:#111b2e;

color:white;

outline:none;

transition:.3s;

}



.history-search input::placeholder{

color:#68738f;

}



.history-search input:focus{

border-color:#7b2cff;

box-shadow:

0 0 0 4px rgba(123,44,255,.15);

transform:translateY(-2px);

}



/*================================
        TABLE CONTAINER
================================*/


.withdraw-history-card .table-container{

overflow-x:auto;

border-radius:18px;

}



/*================================
        TABLE
================================*/


.withdraw-history-card table{

width:100%;

border-collapse:collapse;

min-width:850px;

}



.withdraw-history-card thead{

background:#111b2e;

}



.withdraw-history-card th{

padding:18px;

text-align:left;

font-size:13px;

text-transform:uppercase;

letter-spacing:.5px;

color:#94a3b8;

}



.withdraw-history-card td{

padding:18px;

border-bottom:

1px solid rgba(255,255,255,.06);

font-size:14px;

color:#e5e7eb;

}



.withdraw-history-card tbody tr{

transition:.3s;

}



.withdraw-history-card tbody tr:hover{

background:

rgba(123,44,255,.08);

transform:translateX(4px);

}



/*================================
        STATUS BADGES
================================*/


.status{

padding:7px 14px;

border-radius:50px;

font-size:12px;

font-weight:700;

display:inline-flex;

align-items:center;

gap:6px;

}



.status.completed{

background:

rgba(34,197,94,.15);

color:#22c55e;

}



.status.pending{

background:

rgba(245,158,11,.15);

color:#f59e0b;

}



.status.failed{

background:

rgba(239,68,68,.15);

color:#ef4444;

}



/*================================
        EMPTY HISTORY
================================*/


.empty-history{

display:flex;

flex-direction:column;

align-items:center;

justify-content:center;

padding:70px 20px;

}



.empty-history i{

font-size:55px;

color:#7b2cff;

margin-bottom:20px;

animation:

emptyFloat 3s ease-in-out infinite;

}



@keyframes emptyFloat{


0%,
100%{

transform:translateY(0);

}


50%{

transform:translateY(-10px);

}


}



.empty-history h3{

font-size:22px;

font-weight:700;

margin-bottom:10px;

}



.empty-history p{

color:#8f98b5;

font-size:14px;

}



/*================================
        HISTORY RESPONSIVE
================================*/


@media(max-width:900px){


.history-header{

flex-direction:column;

align-items:flex-start;

gap:20px;

}


.history-search{

width:100%;

}


}
#addCardBtn{

height:55px;

padding:0 25px;

border:none;

border-radius:15px;

background:
linear-gradient(
135deg,
#7b2cff,
#00d4ff
);

color:white;

font-weight:700;

cursor:pointer;

align-items:center;

justify-content:center;

gap:10px;

margin-top:15px;
display:flex;

}


#addCardBtn:hover{

transform:translateY(-2px);

box-shadow:
0 15px 35px rgba(123,44,255,.35);

}
 /*================================
        MOBILE SIDEBAR TOP FIX
================================*/


@media(max-width:850px){


.platform-layout{

flex-direction:column;

}


/* Sidebar stays on top */

.admin-sidebar{

width:100%;

min-height:auto;

padding:18px;

border-right:none;

border-bottom:1px solid rgba(255,255,255,.08);

}



/* Brand center */

.admin-brand{

justify-content:center;

margin-bottom:25px;

}



/* Navigation becomes horizontal */

.admin-sidebar nav{

flex-direction:row;

overflow-x:auto;

gap:8px;

}



.admin-sidebar nav a{

white-space:nowrap;

padding:12px 15px;

}



/* Logout stays below menu */

.admin-logout{

margin-top:20px;

}



.platform-main{

padding:20px;

width:100%;

}

}



/*================================
        SMALL MOBILE
================================*/


@media(max-width:600px){


.page-header{

flex-direction:column;

align-items:flex-start;

gap:18px;

}



.platform-balance-card{

padding:22px;

}



.balance-left h2{

font-size:30px;

}



.balance-icon{

width:65px;

height:65px;

font-size:24px;

}



.balance-right{

width:100%;

grid-template-columns:1fr;

}



.balance-mini{

width:100%;

}



.platform-withdraw-card,

.withdraw-history-card{

padding:20px;

border-radius:20px;

}



.withdraw-grid{

grid-template-columns:1fr;

}



#platformWithdrawBtn{

height:55px;

font-size:15px;

}



.history-search{

width:100%;

}


}



/*================================
        EXTRA SMALL PHONE
================================*/


@media(max-width:400px){


.admin-sidebar nav a{

font-size:13px;

padding:10px 12px;

}



.logo-box{

width:48px;

height:48px;

}



.admin-brand h2{

font-size:18px;

}



.platform-main{

padding:15px;

}


}