*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI,sans-serif;
}

*{
    box-sizing:border-box;
}

html,
body{
    width:100%;
    overflow-x:auto;
}

body{
background:#f4f7fb;
padding-bottom:90px;
}

.container{
padding:20px;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
}


.logo{
    font-size:32px;
    font-weight:800;
    background:linear-gradient(
        90deg,
        #ffffff,
        #60a5fa,
        #ffffff
    );

    background-size:200% auto;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:shine 4s linear infinite;
}

@keyframes shine{

    from{
        background-position:-200% center;
    }

    to{
        background-position:200% center;
    }

}

.header-icons{
display:flex;
align-items:center;
gap:20px;
}

.profile{
width:45px;
height:45px;
border-radius:50%;
}

.welcome{
margin-top:30px;
}

.welcome h1{
font-size:28px;
}

.balance-card{

margin-top:25px;

background:
linear-gradient(
135deg,
#0f172a,
#1e3a8a,
#2563eb
);

padding:30px;

border-radius:25px;

color:white;

box-shadow:
0 15px 40px
rgba(0,0,0,.2);

}

.balance-top{
display:flex;
justify-content:space-between;
}

.balance-card h2{
margin-top:15px;
font-size:40px;
}

.currency-tag{

margin-top:15px;

display:inline-block;

background:
rgba(255,255,255,.2);

padding:8px 16px;

border-radius:30px;

}

/* =========================
   BALANCE CARD PREMIUM WAVE
========================= */

.balance-card{

    position:relative;
    overflow:hidden;

}

.balance-card::before{

    content:"";

    position:absolute;

    top:-50%;
    left:-150%;

    width:120%;
    height:220%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.08),
        rgba(255,255,255,.18),
        rgba(255,255,255,.08),
        transparent
    );

    transform:rotate(25deg);

    animation:premiumWave 6s linear infinite;

}

@keyframes premiumWave{

    0%{

        left:-150%;

    }

    100%{

        left:180%;

    }

}

.actions{

display:grid;

grid-template-columns:
repeat(4,1fr);

gap:12px;

margin-top:25px;

}

.action{

background:white;

padding:18px;

border-radius:20px;

text-align:center;

box-shadow:
0 5px 15px
rgba(0,0,0,.08);

}

.action i{
font-size:20px;
margin-bottom:10px;
}

.wallets{

margin-top:30px;

background:white;

padding:20px;

border-radius:20px;

}

.wallet{

display:flex;

justify-content:space-between;

padding:15px 0;

border-bottom:
1px solid #eee;

}

.converter{

margin-top:25px;

background:white;

padding:20px;

border-radius:20px;

}

.converter input,
.converter select{

width:100%;

padding:15px;

margin-top:10px;

border:
1px solid #ddd;

border-radius:12px;

}

.converter button{

width:100%;

padding:15px;

margin-top:15px;

background:#2563eb;

color:white;

border:none;

border-radius:12px;

cursor:pointer;

}

.transactions{

margin-top:25px;

background:white;

padding:20px;

border-radius:20px;

}

.transaction{

display:flex;

justify-content:space-between;

padding:15px 0;

border-bottom:
1px solid #eee;

}

.bottom-nav{

position:fixed;

bottom:0;

left:0;

width:100%;

background:white;

display:flex;

justify-content:space-around;

padding:15px;

box-shadow:
0 -3px 20px
rgba(0,0,0,.1);

}

.bottom-nav a{

text-decoration:none;

color:#333;

display:flex;

flex-direction:column;

align-items:center;

font-size:12px;

}

.transfer-card{

background:white;

padding:25px;

border-radius:20px;

margin-top:20px;

box-shadow:
0 5px 15px rgba(0,0,0,.08);

}

.transfer-card input,
.transfer-card select,
.transfer-card textarea{

width:100%;

padding:15px;

margin-top:12px;

border:1px solid #ddd;

border-radius:12px;

}

.transfer-card textarea{

height:100px;

resize:none;

}

.transfer-card button{

width:100%;

padding:15px;

margin-top:15px;

background:#2563eb;

color:white;

border:none;

border-radius:12px;

cursor:pointer;

font-size:16px;

}

#transferResult{

margin-top:20px;

background:white;

padding:20px;

border-radius:15px;

display:none;

}

.analytics{

margin-top:25px;

background:white;

padding:20px;

border-radius:20px;

}

.summary-box{

display:flex;

justify-content:space-between;

margin-top:15px;

}

.summary-box div{

text-align:center;

flex:1;

}

.summary-box h4{

margin-bottom:10px;

color:#666;

}

.login-container{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:20px;

    background:
    linear-gradient(
        135deg,
        #0f172a,
        #1e3a8a,
        #2563eb
    );

}

.login-card{

animation:fadeUp 0.8s ease;

background:white;

padding:40px;

border-radius:25px;

width:100%;

max-width:400px;

box-shadow:
0 10px 30px
rgba(0,0,0,.2);

}

.login-card h1{

margin-bottom:10px;

}

.login-card p{

margin-bottom:20px;

color:#666;

}

.login-card input{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:12px;

    transition:all 0.3s ease;
}

.login-card input:focus{

    transform:scale(1.02);

    box-shadow:
    0 0 20px rgba(37,99,235,0.5);

}

.login-card button{

width:100%;

padding:15px;

background:#2563eb;

color:white;

border:none;

border-radius:12px;

cursor:pointer;

font-size:16px;

}

.register-link{

margin-top:20px;

text-align:center;

}

.profile-card{

background:white;

padding:30px;

border-radius:25px;

text-align:center;

margin-top:20px;

box-shadow:
0 5px 15px rgba(0,0,0,.08);

}

.profile-large{

    width:130px;

    height:130px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #2563eb;

    box-shadow:0 0 20px rgba(37,99,235,.4);

}
.info-card{

background:white;

padding:25px;

border-radius:20px;

margin-top:20px;

box-shadow:
0 5px 15px rgba(0,0,0,.08);

}

.info-card p{

margin-top:12px;

}

.logout-btn{

width:100%;

padding:15px;

margin-top:20px;

background:#ef4444;

color:white;

border:none;

border-radius:12px;

font-size:16px;

cursor:pointer;

}

.transaction-page{

margin-top:20px;

}

.history-item{

background:white;

padding:20px;

margin-bottom:15px;

border-radius:20px;

box-shadow:
0 5px 15px rgba(0,0,0,.08);

}

.history-item h3{

margin-bottom:10px;

}

.status{

display:inline-block;

padding:8px 15px;

margin-top:10px;

border-radius:20px;

font-size:12px;

}

.success{

background:#16a34a;

color:white;

font-weight:600;

box-shadow:
0 4px 12px rgba(22,163,74,.35);

}

.pending{

background:#f59e0b;

color:white;

font-weight:600;

box-shadow:
0 4px 12px rgba(245,158,11,.35);

}

.failed{

    background:#dc2626;

    color:white;

    font-weight:600;

    box-shadow:
    0 4px 12px rgba(220,38,38,.35);

}

.failed-receipt{

    background: white;
    color: #111827;

    border-radius: 20px;
    padding: 25px;

    box-shadow:
    0 5px 15px rgba(0,0,0,.1);

}

.failed-receipt h2{
    color:#ef4444;
}

.failed-receipt p{
    color:#111827;
}

.settings-card{

margin-top:20px;

background:white;

border-radius:20px;

padding:20px;

box-shadow:
0 5px 15px rgba(0,0,0,.08);

}

.setting-item{

display:flex;

justify-content:space-between;

align-items:center;

padding:20px 0;

border-bottom:
1px solid #eee;

}

.switch{

position:relative;

display:inline-block;

width:50px;

height:24px;

}

.switch input{

display:none;

}

.slider{

position:absolute;

cursor:pointer;

top:0;
left:0;
right:0;
bottom:0;

background:#ccc;

border-radius:24px;

}

.slider:before{

position:absolute;

content:"";

height:18px;
width:18px;

left:3px;
bottom:3px;

background:white;

border-radius:50%;

transition:.3s;

}

input:checked + .slider{

background:#2563eb;

}

input:checked + .slider:before{

transform:
translateX(26px);

}

.dark-mode{

background:#111827;

color:white;

}


/* =========================
   CARD PAGE
========================= */

.card-page{
    max-width:600px;
    margin:auto;
    padding:20px;
}

.back-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:12px 20px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.1);

    border-radius:12px;

    color:white;

    text-decoration:none;

    font-weight:600;

    margin-bottom:20px;

    box-shadow:0 4px 10px rgba(0,0,0,.08);

    transition:all .3s ease;
}

.back-btn:hover{
    transform:translateX(-5px);

    background:rgba(255,255,255,.15);

    box-shadow:0 0 20px rgba(37,99,235,.4);
}

.bank-card{
    min-height:400px;
    padding:25px;
    width:100%;
    max-width:520px;
    aspect-ratio:1.58/1;
    min-height:300px;;
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(10px);

    background:linear-gradient(
        135deg,
        #0f172a,
        #1e3a8a,
        #2563eb
    );

    color:white;
    padding:35px;
    border-radius:30px;
    margin:20px auto;
    position:relative;
    overflow:hidden;

    box-shadow:
    0 20px 40px rgba(0,0,0,.25);
}

.bank-card::before{
    content:"";
    position:absolute;

    width:250px;
    height:250px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-100px;
    right:-80px;
}

.bank-card::after{
    content:"";
    position:absolute;

    width:400px;
    height:60px;

    background:
    rgba(255,255,255,.08);

    transform:
    rotate(-30deg);

    top:40px;
    left:-120px;
}

.card-wifi{
    position:absolute;

    top:40px;
    right:35px;

    font-size:30px;
}

.status-badge{
    display:inline-block;
    background:#22c55e;
    color:white;
    padding:8px 16px;
    border-radius:20px;
    font-size:12px;
    font-weight:700;
    margin-bottom:20px;
}

.card-type{
    font-size:12px;
    letter-spacing:3px;
    opacity:.85;
    text-transform:uppercase;
    margin-bottom:15px;
}

.card-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.card-top h3{
    font-size:18px;
}

.card-top i{
    font-size:28px;
}

.chip{
    margin-top:20px;
}

.chip i{
    font-size:48px;
    color:#fbbf24;
}

.card-number{
    margin-top:15px;
    font-size:32px;
    font-weight:700;
    letter-spacing:4px;
}

.card-bottom{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;

    margin-top:25px;
    padding-right:120px;
}

.card-bottom small{
    font-size:11px;
    opacity:.8;
    letter-spacing:1px;
}

.card-bottom h4{
    margin-top:5px;
    font-size:18px;
}

.visa-logo{
    position:absolute;
    right:45px;
    bottom:33px;

    font-size:35px;
    font-weight:600;

    opacity:.9;
}

.cards-actions{
    width:500px;
    margin:25px auto 0;

    display:grid;
    gap:15px;
}

.cards-actions button{
    padding:15px;
    border:none;
    border-radius:15px;

    background:#2563eb;
    color:white;

    font-size:15px;
    cursor:pointer;

    transition:.3s;
}

.cards-actions button:hover{
    transform:translateY(-2px);
}

#cardResult{
    width:500px;
    margin:20px auto 0;

    background:white;
    padding:20px;
    border-radius:15px;

    display:none;

    box-shadow:
    0 5px 15px rgba(0,0,0,.08);
}

/* MOBILE CARD FIX */

@media (max-width:600px){

    .bank-card{
        width:100%;
        max-width:100%;
        min-height:320px;
        padding:25px;
    }

    .cards-actions,
    #cardResult{
        width:100%;
    }

    .card-number{
        font-size:22px;
        letter-spacing:2px;
        word-break:break-all;
    }

    .card-bottom{
        display:flex;
        justify-content:space-between;
        align-items:flex-end;

        margin-top:20px;
        padding-right:0;
        gap:15px;
    }

    .card-bottom h4{
        font-size:14px;
    }

    .card-bottom small{
        font-size:10px;
    }

    .visa-logo{
        right:20px;
        bottom:20px;
        font-size:28px;
    }

    .chip i{
        font-size:38px;
    }

}

/* =========================
   ANALYTICS PAGE
========================= */

.analytics-card{

background:white;

padding:25px;

border-radius:20px;

margin-top:20px;

box-shadow:
0 5px 15px rgba(0,0,0,.08);

text-align:center;

}

.analytics-card h2{

margin-top:10px;

font-size:36px;

color:#2563eb;

}

.analytics-grid{

display:grid;

grid-template-columns:
repeat(2,1fr);

gap:15px;

margin-top:20px;

}

.analytics-box{

background:white;

padding:20px;

border-radius:20px;

text-align:center;

box-shadow:
0 5px 15px rgba(0,0,0,.08);

}

.wallet-summary{

margin-top:20px;

background:white;

padding:20px;

border-radius:20px;

box-shadow:
0 5px 15px rgba(0,0,0,.08);

}

.wallet-line{

display:flex;

justify-content:space-between;

padding:15px 0;

border-bottom:
1px solid #eee;

}

/* =========================
   PROFILE UPGRADE
========================= */

.profile-card h2{
margin-top:10px;
}

.profile-card p{
margin-top:5px;
color:#666;
}

.profile-large{
border:4px solid #2563eb;
}

.info-card h3{
margin-bottom:15px;
}

.info-card p{
padding:8px 0;
border-bottom:1px solid #eee;
}

.notification-wrapper{
    position:relative;
    cursor:pointer;
}

#notificationBadge{
    position:absolute;
    top:-8px;
    right:-8px;

    background:#ef4444;
    color:white;

    min-width:18px;
    height:18px;

    padding:0 5px;

    border-radius:50px;

    font-size:11px;
    font-weight:bold;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* =========================
   DARK MODE
========================= */

.dark-mode{
    background:#0f172a;
    color:white;
}

.dark-mode .container{
    background:#0f172a;
}

.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode p,
.dark-mode strong,
.dark-mode small,
.dark-mode a{
    color:white !important;
}

.dark-mode .wallet,
.dark-mode .action,
.dark-mode .converter,
.dark-mode .analytics,
.dark-mode .transactions,
.dark-mode .settings-card,
.dark-mode .history-item,
.dark-mode .transfer-card{

    background:#1e293b;
    color:white;
    border:none;
    box-shadow:0 4px 20px rgba(0,0,0,.25);

}

.dark-mode .wallets{

    background:#1e293b;
    border:none;
    box-shadow:0 4px 20px rgba(0,0,0,.25);

}

.dark-mode .balance-card{

    background:
    linear-gradient(
        135deg,
        #16213e,
        #1d4ed8
    );

    box-shadow:
    0 10px 30px
    rgba(37,99,235,.25);

}

.dark-mode .action:hover{

    transform:translateY(-3px);

    transition:.3s;

}

.dark-mode .back-btn{
    background:#1e293b;
    color:white;
    border:none;
}

.dark-mode input,
.dark-mode select,
.dark-mode textarea{
    background:#334155;
    color:white;
    border:1px solid #475569;
}

.dark-mode .bottom-nav{
    background:#1e293b;
}

.dark-mode .bottom-nav a{
    color:white;
}


/* Extra Dark Mode Fixes */

.dark-mode .card-result,
.dark-mode #cardResult,
.dark-mode .analytics-card,
.dark-mode .analytics-box,
.dark-mode .chart-card,
.dark-mode .stat-card,
.dark-mode .summary-card,
.dark-mode .summary-box,
.dark-mode .graph-card{

    background:#1e293b !important;
    color:white !important;
    border:none !important;
    box-shadow:0 4px 20px rgba(0,0,0,.25);

}

.dark-mode .wallet-summary{
    background:#1e293b;
    color:white;
}

.dark-mode .wallet-line{
    border-bottom:1px solid #334155;
}

.dark-mode .wallet-line span,
.dark-mode .wallet-line strong{
    color:white;
}

.dark-mode .profile-card{
    background:#1e293b;
    color:white;
}

.dark-mode .info-card{
    background:#1e293b;
    color:white;
}

.dark-mode .info-card h3,
.dark-mode .info-card p,
.dark-mode .profile-card h2,
.dark-mode .profile-card p{
    color:white;
}

.dark-mode .login-card{
    background:#1e293b;
}

.dark-mode .login-card h1,
.dark-mode .login-card p{
    color:white;
}

.dark-mode .container,
.dark-mode .container p,
.dark-mode .container span,
.dark-mode .container strong,
.dark-mode .container h1,
.dark-mode .container h2,
.dark-mode .container h3,
.dark-mode .container h4{
    color:white;
}

.dark-mode #transferResult,
.dark-mode #transferResult *{
    color:#111827 !important;
}

.dark-mode .receipt,
.dark-mode .receipt-card,
.dark-mode #transferResult{

    background:#1e293b !important;
    color:white !important;
    border:1px solid #334155;

}

.dark-mode .failed-receipt{

    background:#1e293b;
    color:white;

    border:none;

    box-shadow:
    0 4px 20px rgba(0,0,0,.25);

}

.dark-mode .failed-receipt p,
.dark-mode .failed-receipt strong{

    color:white;

}

.dark-mode .failed-receipt h2{

    color:#ef4444;

}

#transferResult{
    display:none;
    margin-top:20px;
    padding:25px;
    border-radius:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

#transferResult h2{
    color:#16a34a;
}

#transferResult p{
    color:#111827;
    margin:10px 0;
}

#transferResult button{
    margin-top:15px;
}

.dark-mode #transferResult p,
.dark-mode #transferResult strong,
.dark-mode #transferResult span{

    color:white !important;

}

.dark-mode #transferResult h2{
    color:#22c55e !important;
}

/* Notifications Button */

.notification-actions{
    display:flex;
    gap:15px;
    margin:20px 0;
}

.read-btn,
.clear-btn{

    width:220px;

    height:55px;

    border:none;

    border-radius:14px;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:0.3s;

}

.read-btn{

    background:#2563eb;

    color:white;

}

.clear-btn{

    background:#ef4444;

    color:white;

}

.read-btn:hover,
.clear-btn:hover{

    transform:translateY(-2px);

}

.welcome-title{
    animation: floatText 4s ease-in-out infinite;
}

.wave{

    display:inline-block;

    animation:waveHand 1.5s infinite;

    transform-origin:70% 70%;

}

@keyframes waveHand{

    0%{
        transform:rotate(0deg);
    }

    15%{
        transform:rotate(14deg);
    }

    30%{
        transform:rotate(-8deg);
    }

    40%{
        transform:rotate(14deg);
    }

    50%{
        transform:rotate(-4deg);
    }

    60%{
        transform:rotate(10deg);
    }

    100%{
        transform:rotate(0deg);
    }

}
@keyframes floatText{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-4px);
    }

    100%{
        transform:translateY(0);
    }

}

.read-btn{
    background:#2563eb;
    color:white;
    border:none;
    padding:12px 20px;
    border-radius:12px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    margin:15px 0;
    transition:0.3s;
}

.read-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 5px 15px rgba(37,99,235,.4);
}

.info-card input{

    width:100%;

    padding:14px 16px;

    margin-top:8px;

    margin-bottom:18px;

    background:#111827;

    color:white;

    border:1px solid rgba(255,255,255,.12);

    border-radius:12px;

    font-size:15px;

    box-sizing:border-box;

    outline:none;

}

.info-card input:focus{

    border-color:#2563eb;

    box-shadow:0 0 10px rgba(37,99,235,.3);

}

.save-profile-btn{

    width:100%;

    padding:15px;

    margin-top:15px;

    border:none;

    border-radius:12px;

    background:linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );

    color:white;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

}

.save-profile-btn{

    width:100%;

    padding:15px;

    margin-top:15px;

    border:none;

    border-radius:12px;

    background:linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );

    color:white;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

}

#profileUpload{

    margin-top:15px;

    display:none;

    color:white;

}

.profile-card{

    text-align:center;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:10px;

}

/* =========================
   LOGIN / REGISTER TITLE
========================= */

.animated-title{

    background:linear-gradient(
        90deg,
        #ffffff,
        #60a5fa,
        #ffffff
    );

    background-size:200% auto;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:
    titleReveal 1.5s ease-out forwards,
    shineMove 4s linear infinite,
    titleGlow 4s ease-in-out infinite;

    opacity:0;
}

/* Fade Up */

@keyframes titleReveal{

    0%{
        opacity:0;
        transform:translateY(30px);
    }

    100%{
        opacity:1;
        transform:translateY(0);
    }

}

/* Shine Effect */

@keyframes shineMove{

    from{
        background-position:-200% center;
    }

    to{
        background-position:200% center;
    }

}

/* Glow Pulse */

@keyframes titleGlow{

    0%{
        text-shadow:
        0 0 10px rgba(59,130,246,.2);
    }

    50%{
        text-shadow:
        0 0 25px rgba(59,130,246,.8),
        0 0 50px rgba(59,130,246,.4);
    }

    100%{
        text-shadow:
        0 0 10px rgba(59,130,246,.2);
    }

}


.upload-btn{

    padding:10px 20px;

    background:#2563eb;

    color:white;

    border-radius:12px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.upload-btn:hover{

    transform:translateY(-2px);

}

#welcomeName{

    animation:floatText 3s ease-in-out infinite;

}

@keyframes floatText{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-4px);
    }

    100%{
        transform:translateY(0);
    }

}

/* =========================
   LIGHT MODE LOGIN PAGES
========================= */

body:not(.dark-mode){

    background:#f8fafc;

    color:#111827;

}

body:not(.dark-mode) .login-container{

    background:
    linear-gradient(
        135deg,
        #dbeafe,
        #eff6ff,
        #ffffff
    );

}

body:not(.dark-mode) .login-card{

    background:white;

    color:#111827;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

}

body:not(.dark-mode) .login-card p{

    color:#475569;

}

body:not(.dark-mode) .login-card input{

    background:white;

    color:#111827;

    border:1px solid #cbd5e1;

}

#wireReceipt{

    display:none;

    margin-top:25px;

    background:white;

    padding:25px;

    border-radius:20px;

    box-shadow:
    0 5px 15px rgba(0,0,0,.1);

}

.dark-mode #wireReceipt{

    background:#1e293b;

    color:white;

}#wireReceipt{

    display:none;

    margin-top:25px;

    background:white;

    padding:25px;

    border-radius:20px;

    box-shadow:
    0 5px 15px rgba(0,0,0,.1);

}

.dark-mode #wireReceipt{

    background:#1e293b;

    color:white;

}

/* =========================
   WIRE TRANSFER RECEIPT
========================= */

#wireReceipt{
    display:none;
    margin-top:20px;
    padding:20px;
    border-radius:20px;
    background:#111827;
    border:1px solid rgba(255,255,255,0.1);
    color:white;
    text-align:left;
    box-shadow:0 0 25px rgba(59,130,246,.25);
}

#wireReceipt h2{
    margin-bottom:15px;
}

#wireReceipt p{
    margin:10px 0;
    color:#d1d5db;
}

#wireReceipt button{
    width:100%;
    padding:14px;
    border:none;
    border-radius:12px;
    cursor:pointer;
    background:#2563eb;
    color:white;
    font-weight:600;
}

.auth-container{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.login-card{
    width:100%;
    max-width:550px;
    background:#111827;
    padding:35px;
    border-radius:25px;
    box-shadow:0 0 40px rgba(37,99,235,.3);
}

.login-card h1{
    margin-bottom:10px;
}

.login-card p{
    color:#9ca3af;
    margin-bottom:20px;
}

.login-card input{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:none;
    border-radius:12px;
    background:#1f2937;
    color:white;
}

.login-card button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:12px;
    background:#2563eb;
    color:white;
    font-weight:bold;
    cursor:pointer;
}

@keyframes fadeUp {

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.login-card{

    animation:fadeUp 0.8s ease;

}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.login-card{

    position:relative;
    overflow:hidden;

}

.login-card::before{

    content:"";

    position:absolute;

    width:300px;
    height:300px;

    background:
    rgba(37,99,235,0.15);

    border-radius:50%;

    top:-120px;
    right:-120px;

    filter:blur(50px);

}

#depositResult{

    display:none;

    margin-top:20px;

    padding:20px;

    border-radius:20px;

    background:white;

    box-shadow:
    0 5px 15px rgba(0,0,0,.08);

}

.dark-mode #depositResult{

    background:#1e293b;

    color:white;

}

.admin-table{
    width:100%;
    table-layout:fixed;
}

.admin-table th,
.admin-table td{
    word-wrap:break-word;
    overflow-wrap:break-word;
}

.btn-view{
    background:#2563eb !important;
}

.btn-credit{
    background:#16a34a !important;
}

.btn-debit{
    background:#f59e0b !important;
}

.btn-freeze{
    background:#dc2626 !important;
}

.btn-unfreeze{
    background:#0891b2 !important;
}

.btn-delete{
    background:#7f1d1d !important;
}

.btn-view:hover{

    box-shadow:
    0 0 15px rgba(37,99,235,.8);

    transform:translateY(-2px);

}

.btn-credit:hover{

    box-shadow:
    0 0 15px rgba(22,163,74,.8);

    transform:translateY(-2px);

}

.btn-debit:hover{

    box-shadow:
    0 0 15px rgba(245,158,11,.8);

    transform:translateY(-2px);

}

.btn-freeze:hover{

    box-shadow:
    0 0 15px rgba(220,38,38,.8);

    transform:translateY(-2px);

}

.btn-unfreeze:hover{

    box-shadow:
    0 0 15px rgba(8,145,178,.8);

    transform:translateY(-2px);

}

.btn-delete:hover{

    box-shadow:
    0 0 15px rgba(127,29,29,.8);

    transform:translateY(-2px);

}


.admin-table button{

    width:auto !important;

    display:inline-block !important;

    margin:2px;

    padding:8px 12px;

    white-space:nowrap;

    transition:.3s;

}

.status-active{
    color:#00ff88 !important;
    font-weight:bold;
}

.status-frozen{
    color:#ff4d4d !important;
    font-weight:bold;
}

.admin-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin-bottom:20px;
}

.stat-card{
    background:#1f2937;
    padding:20px;
    border-radius:15px;
    text-align:center;
}

.stat-card h3{
    margin-bottom:10px;
    font-size:16px;
}

.stat-card p{
    font-size:24px;
    font-weight:bold;
}

#searchUser{
    width:100%;
    padding:12px;
    margin:15px 0;
    border:none;
    border-radius:10px;
    font-size:16px;
}

/* =========================
   MOBILE RESPONSIVE FIXES
========================= */

@media(max-width:768px){

    .actions{

        grid-template-columns:
        repeat(2,1fr);

        gap:15px;

    }

    .action{

        padding:20px 10px;

    }

    .action i{

        font-size:24px;

    }

}

/* =========================
   MOBILE RESPONSIVE FIXES
========================= */

@media(max-width:768px){

    .actions{

        grid-template-columns:
        repeat(2,1fr);

        gap:15px;

    }

    .action{

        min-height:100px;

        display:flex;

        flex-direction:column;

        justify-content:center;

        align-items:center;

        padding:20px 10px;

    }

    .action i{

        font-size:24px;

        margin-bottom:10px;

    }

    .action span{

        font-size:14px;

        text-align:center;

    }

}

#supportButton{

position:fixed;

bottom:100px;
right:20px;

width:60px;
height:60px;

border-radius:50%;

background:#2563eb;

color:white;

display:flex;
align-items:center;
justify-content:center;

font-size:26px;

cursor:pointer;

z-index:999;

box-shadow:
0 5px 20px rgba(37,99,235,.4);

}

#supportBox{

position:fixed;

bottom:180px;
right:20px;

width:320px;

background:white;

border-radius:20px;

padding:15px;

display:none;

box-shadow:
0 5px 25px rgba(0,0,0,.15);

z-index:999;

}

.dark-mode #supportBox{

background:#1e293b;

color:white;

}

#supportMessages{

height:250px;

overflow-y:auto;

margin:15px 0;

}

.support-message{

background:#2563eb;

color:white;

padding:10px;

border-radius:12px;

margin-bottom:10px;

}

#supportInput{

width:100%;

padding:12px;

border-radius:10px;

margin-bottom:10px;

}

.sidebar h2{
    color:white;
    margin-bottom:30px;
}

.sidebar a{
    display:block;
    color:white;
    text-decoration:none;
    padding:12px;
    margin-bottom:10px;
    border-radius:8px;
}

.sidebar a:hover{
    background:#1f2937;
}

.admin-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    flex: wrap;
    gap: 15px;

    position:sticky;
    top:0;
    z-index:100;

    background:#111827;
    padding:15px;
    border-radius:12px;
}

.sidebar a.active{
    background:#2563eb;
    color:white;
    font-weight:bold;
}

.admin-layout{
    display:flex;
    min-height:100vh;
}

.sidebar{
    width:250px;
    min-width:250px;
    background:#111827;
    padding:25px;
    position:fixed;
    top:0;
    left:0;
    height:100vh;
    overflow-y:auto;
}

.admin-layout .container{
    margin-left:250px;
    width:calc(100% - 250px);
    padding:20px;
}

.admin-banner{
    background: linear-gradient(
        135deg,
        #2563eb,
        #1e40af
    );

    padding: 25px;

    border-radius: 20px;

    margin-bottom: 25px;

    color: white;

    box-shadow:
    0 10px 30px rgba(0,0,0,.2);
}

.admin-banner h2{
    margin-bottom: 10px;
}

.admin-title{
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;

    background: linear-gradient(
        90deg,
        #ffffff,
        #60a5fa,
        #2563eb,
        #60a5fa,
        #ffffff
    );

    background-size: 300% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: adminGlow 4s linear infinite;
}

@keyframes adminGlow{

    0%{
        background-position: 0% center;
    }

    100%{
        background-position: 300% center;
    }

}

.admin-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.admin-actions button{

    background:#2563eb;

    border:none;

    color:white;

    padding:12px 20px;

    border-radius:12px;

    cursor:pointer;

    font-weight:600;

    transition:.3s;
}

.admin-actions button:hover{

    transform:translateY(-3px);

    box-shadow:
    0 0 15px rgba(37,99,235,.6);

}

.activity-card{

    background: rgba(255,255,255,0.05);

    padding: 20px;

    border-radius: 20px;

    margin-bottom: 25px;

}

.activity-card h2{

    margin-bottom: 15px;

}

.activity-item{

    padding: 12px;

    margin-bottom: 10px;

    background: rgba(255,255,255,0.05);

    border-left: 4px solid #2563eb;

    border-radius: 10px;

}

.admin-controls{
    display:flex;
    align-items:center;
    gap:15px;
}

.admin-bell{
    position:relative;
}

#adminNotificationBadge{

    position:absolute;

    top:-8px;

    right:-8px;

    background:red;

    color:white;

    border-radius:50%;

    width:20px;

    height:20px;

    font-size:12px;

    display:flex;

    align-items:center;

    justify-content:center;
}

.admin-logout-btn{

    background:#ef4444;

    color:white;

    border:none;

    padding:10px 18px;

    border-radius:10px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.admin-logout-btn:hover{

    background:#dc2626;

    transform:translateY(-2px);

    box-shadow:
    0 0 15px rgba(239,68,68,.5);

}

.admin-bell{

    position:relative;

    width:38px;

    height:38px;

    border:none;

    border-radius:50%;

    background:#2563eb;

    color:white;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;

    box-shadow:
    0 0 10px rgba(37,99,235,.6);

    animation:
    bellGlow 2s infinite;
}

.admin-bell:hover{

    transform:translateY(-2px);

    box-shadow:
    0 0 20px rgba(37,99,235,.8);

}

@keyframes bellGlow{

    0%{

        box-shadow:
        0 0 5px rgba(37,99,235,.4);

    }

    50%{

        box-shadow:
        0 0 18px rgba(37,99,235,.9);

    }

    100%{

        box-shadow:
        0 0 5px rgba(37,99,235,.4);

    }

}

.bell-icon{

    font-size:20px;

}

.admin-table td{

    white-space: nowrap;

}

.admin-table button{

    width:auto !important;

    display:inline-block !important;

    margin:2px;

}

.transaction-status{

    display:inline-block;

    margin-top:8px;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    color:white;

}

/* Approved */

.transaction-status.approved,
.transaction-status.completed{

    background:#00d84a;

    box-shadow:
    0 0 15px rgba(0,216,74,.5);

}

/* Pending */

.transaction-status.pending{

    background:#ff9800;

    box-shadow:
    0 0 15px rgba(255,152,0,.5);

}

/* Rejected */

.transaction-status.rejected{

    background:#ff3b30;

    box-shadow:
    0 0 15px rgba(255,59,48,.5);

}

/* Failed */

.transaction-status.failed{

    background:#c62828;

    box-shadow:
    0 0 15px rgba(198,40,40,.5);

}

/* Processing */

.transaction-status.processing{

    background:#2196f3;

    box-shadow:
    0 0 15px rgba(33,150,243,.5);

}

#cardPinDisplay{

    display:none;

    margin:15px auto;

    max-width:520px;

    padding:15px;

    border-radius:15px;

    background:rgba(255,255,255,.08);

    color:white;

    text-align:center;

    font-size:20px;

    font-weight:700;

}

/* MOBILE HOMEPAGE FIX */

@media (max-width:768px){

    .container{
        width:100%;
        overflow:hidden;
    }

    .balance-card,
    .wallets,
    .converter,
    .transactions,
    .analytics{
        width:100%;
        max-width:100%;
    }

}

.table-wrapper{
    width:100%;
    overflow-x:auto;
}

.admin-table{
    min-width:1200px;
}

.action-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:5px;
}

.action-buttons{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:5px;
}
.action-buttons button{
    flex:1 1 auto;
}

.table-wrapper{
    overflow-x:auto;
    width:100%;
}

@media(max-width:1024px){

    .sidebar{
        position:relative;
        width:100%;
        min-width:100%;
        height:auto;
    }

    .admin-layout{
        flex-direction:column;
    }

    .admin-layout .container{
        margin-left:0;
        width:100%;
    }

}