body{
    margin:0;
    font-family:Arial, sans-serif;
    background: radial-gradient(circle at top, #0b1b33, #050914);
    color:white;
}

html {
    scroll-behavior: smooth;
}

/* ================= TOP BAR ================= */

.topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 60px;
    position:relative;
    flex-wrap:wrap;
}

.logo{
    font-size:2.6rem;
    font-weight:bold;
    color:#fff;
}

.logo span{
    color:#19d3ff;
}

/* NAV */

nav{
    display:flex;
    gap:20px;
}

nav a{
    color:#cfe6ff;
    text-decoration:none;
    opacity:0.8;
    transition:0.2s;
}

nav a:hover{
    color:#19d3ff;
    opacity:1;
}

/* RIGHT SIDE */

.right{
    display:flex;
    align-items:center;
    gap:16px;
}

/* LOGIN */

.login{
    padding:10px 18px;
    border:none;
    border-radius:999px;
    background:linear-gradient(135deg,#19d3ff,#3b5bff,#8a5bff);
    color:white;
    cursor:pointer;
}

/* ================= HERO ================= */

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:80px 60px;
    gap:40px;
}

.hero-left{
    max-width:520px;
}

.tag{
    display:inline-block;
    padding:6px 12px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.1);
    border-radius:999px;
    font-size:12px;
    margin-bottom:20px;
}

.hero h1{
    font-size:52px;
    margin:0 0 20px;
}

.hero h1 span{
    background:linear-gradient(135deg,#19d3ff,#8a5bff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    opacity:.7;
    line-height:1.6;
}

/* BUTTONS */

.buttons{
    margin-top:25px;
}

.primary{
    padding:12px 22px;
    border:none;
    border-radius:999px;
    background:linear-gradient(135deg,#19d3ff,#3b5bff,#8a5bff);
    color:white;
    cursor:pointer;
    margin-right:10px;
}

.secondary{
    padding:12px 22px;
    border-radius:999px;
    background:transparent;
    border:1px solid rgba(255,255,255,.2);
    color:white;
    cursor:pointer;
}

/* ================= MOCKUP (RESTORED FULL) ================= */

.mockup{
    width:600px;
    border-radius:18px;
    overflow:hidden;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.1);
    box-shadow:0 30px 80px rgba(0,0,0,.6);
    backdrop-filter:blur(20px);
    transition:0.3s ease;
}

.mockup:hover{
    transform:translateY(-5px);
}

/* MAC BAR */

.mac-bar{
    display:flex;
    align-items:center;
    padding:10px 15px;
    background:#0b1220;
    position:relative;
}

.mac-bar span{
    width:10px;
    height:10px;
    border-radius:50%;
    margin-right:8px;
}

.red{background:#ff5f57;}
.yellow{background:#ffbd2e;}
.green{background:#28c840;}

.url{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    font-size:12px;
    opacity:0.6;
}

/* SCREEN */

.screen{
    padding:25px;
    position:relative;
}

/* MOCK HEADER */

.mock-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.mock-logo{
    font-weight:bold;
    color:#19d3ff;
}

.mock-nav span{
    display:inline-block;
    width:30px;
    height:5px;
    background:rgba(255,255,255,.2);
    margin-left:5px;
    border-radius:10px;
}

/* MOCK TITLE */

.mock-title{
    margin-top:25px;
    font-size:20px;
    opacity:.9;
}

.mock-title b{
    color:#8a5bff;
}

/* MOCK WAVE */

.mock-wave{
    height:120px;
    margin:20px 0;
    background:linear-gradient(135deg,#19d3ff33,#8a5bff33);
    border-radius:12px;
}

/* MOCK CARDS */

.mock-cards{
    display:flex;
    gap:10px;
}

.mock-cards div{
    flex:1;
    height:60px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:10px;
}

/* ================= USER AREA ================= */

.right{
    display:flex;
    align-items:center;
    gap:16px;
}

/* PROFILE BUTTON */

.profile-wrapper{
    position:relative;
}

.profile-mini{
    display:flex;
    align-items:center;
    gap:12px;

    padding:10px 18px;
    min-width:190px;

    border-radius:999px;
    border:none;

    background:linear-gradient(135deg,#0f2a3d,#1a3d5c,#2a1f4d);
    box-shadow:0 10px 25px rgba(0,0,0,0.35);

    cursor:pointer;
    transition:0.25s;
}

.profile-mini:hover{
    transform:translateY(-2px);
}

.profile-mini img{
    width:34px;
    height:34px;
    border-radius:50%;
}

/* BALANCE */

.balance{
    padding:6px 12px;
    border-radius:999px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);
    font-size:14px;
}

/* BELL */

.bell{
    width:38px;
    height:38px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:linear-gradient(135deg,#1b2f44,#1c1f3a);
    border:1px solid rgba(255,255,255,0.08);

    cursor:pointer;
    transition:0.2s;
}

.bell:hover{
    transform:scale(1.1);
    background:linear-gradient(135deg,#2a4bff,#8a5bff);
}

.bell svg{
    width:18px;
    height:18px;
    fill:#cfe6ff;
}

/* DROPDOWN */

.dropdown{
    position:absolute;
    right:0;
    top:60px;

    width:200px;

    background:rgba(10,15,25,0.95);
    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,0.08);
    border-radius:14px;

    display:none;
    flex-direction:column;

    overflow:hidden;
    z-index:999999;

    box-shadow:0 20px 60px rgba(0,0,0,0.6);
}

.dropdown a{
    padding:12px 14px;
    color:#dbe9ff;
    text-decoration:none;
    font-size:14px;
    transition:0.2s;
}

.dropdown a:hover{
    background:rgba(255,255,255,0.08);
    color:white;
}

.dropdown a.logout:hover{
    background:#ff3b3b;
}

/* ================= RESPONSIVE ================= */

@media (max-width:1024px){
    .hero{
        flex-direction:column;
        text-align:center;
    }

    .mockup{
        width:100%;
    }
}

@media (max-width:768px){

    .topbar{
        padding:15px 20px;
        flex-direction:column;
        gap:15px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .right{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:38px;
    }
}

.nav-links{
    display:flex;
    gap:20px;
}

.hamburger{
    display:none;
    cursor:pointer;
    margin-left:auto; /* IMPORTANT: pushes it to the far right */
    z-index:1000000;
}
.side-drawer{
    position:fixed;
    top:0;
    right:-340px;

    width:340px;
    max-width:90%;

    height:100vh;

    background:#081322;

    transition:.3s;

    overflow-y:auto;
    overflow-x:hidden;

    -webkit-overflow-scrolling:touch;

    z-index:10000;
}

.side-drawer.active{
    right:0;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 60px;
}

.drawer-links a {
    color: #cfe6ff;
    text-decoration: none;
    font-size: 16px;
}

.drawer-user {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.drawer-user .profile-mini {
    display: flex;
    gap: 10px;
    align-items: center;
}

.drawer-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.drawer-bell {
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg,#2a4bff,#8a5bff);
    color: white;
    cursor: pointer;
}

/* overlay */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 99998;
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

.right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 10000;
}

.side-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: rgba(10,15,25,0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    transition: 0.3s ease;
    z-index: 99999;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.side-drawer.active {
    right: 0;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 60px;
}

.drawer-links a,
.drawer-user a {
    color: #cfe6ff;
    text-decoration: none;
}

.drawer-user {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
}

.drawer-user .profile-mini {
    display: flex;
    gap: 10px;
    align-items: center;
}

.drawer-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.drawer-bell {
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg,#2a4bff,#8a5bff);
    color: white;
}




.why-header h2{
    font-size:42px;
    margin-bottom:10px;
}

.why-header h2 span{
    background:linear-gradient(135deg,#19d3ff,#8a5bff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.why-header p{
    opacity:0.7;
    max-width:600px;
    margin:0 auto 50px;
    line-height:1.6;
}



/* CARD */

.why{
    padding:100px 20px;
}

.container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* HEADER */
.why-header{
    text-align:center;
    margin-bottom:50px;
}

.why-header h2{
    font-size:42px;
    color:white;
    margin-bottom:10px;
}

.why-header p{
    color:rgba(255,255,255,0.7);
}



/* CARD */
.why-card{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:16px;
    padding:25px;
    backdrop-filter:blur(15px);
}

/* ICON FIX */
.icon{
    font-size:24px;
    margin-bottom:12px;
    display:block;
}

/* TEXT */
.why-card h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.why-card p{
    color:rgba(255,255,255,0.65);
    font-size:14px;
}

/* RESPONSIVE */
@media (max-width:1024px){
    .why-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width:768px){
    .why-grid{
        grid-template-columns:1fr;
    }

    .why-header h2{
        font-size:30px;
    }
}


.icon {
    font-size: 28px;
    margin-bottom: 12px;

    background: linear-gradient(135deg,#19d3ff,#8a5bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    filter: drop-shadow(0 0 10px rgba(25,211,255,0.3));
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.why-card {
    background: linear-gradient(135deg, rgba(25,211,255,0.06), rgba(138,91,255,0.04));
    border: 1px solid rgba(25,211,255,0.15);
    border-radius: 16px;
    padding: 25px;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: 0 15px 40px rgba(0,0,0,0.25);

    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-8px);
    border: 1px solid rgba(25,211,255,0.5);
    box-shadow: 0 25px 70px rgba(25,211,255,0.15),
                0 25px 70px rgba(138,91,255,0.1);
}

.why-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(25,211,255,0.08), transparent 60%);
    transform: rotate(0deg);
    opacity: 0;
    transition: 0.4s ease;
}

.why-card:hover::before {
    opacity: 1;
}

.icon {
    font-size: 26px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.why-card h3 {
    margin: 0 0 8px;
}

.why-card p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.5;
}




/* MOBILE NAV */
@media (max-width:768px){

    nav{
        display:none;
        flex-direction:column;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:rgba(10,15,25,0.95);
        backdrop-filter:blur(15px);
        padding:20px 0;
        z-index:9999;
    }

   

    .hamburger{
        display:block;
        position:relative;
        z-index:10000;
    }

    .topbar{
        flex-wrap:wrap;
    }
}



@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .right {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .topbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/*================ PRICING ================*/

.pricing{
    padding:110px 20px;
}

.pricing-header{
    text-align:center;
    margin-bottom:60px;
}

.pricing-header h2{
    font-size:42px;
    margin-bottom:10px;
}

.pricing-header p{
    color:rgba(255,255,255,.7);
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.price-card{

    position:relative;

    background:linear-gradient(
        135deg,
        rgba(25,211,255,.06),
        rgba(138,91,255,.04)
    );

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:40px 30px;

    backdrop-filter:blur(18px);

    box-shadow:0 20px 50px rgba(0,0,0,.35);

    transition:.35s;
}

.price-card:hover{

    transform:translateY(-10px);

    border-color:rgba(25,211,255,.45);

    box-shadow:
        0 25px 60px rgba(25,211,255,.15),
        0 25px 60px rgba(138,91,255,.12);

}

.featured{

    transform:scale(1.05);

    border:2px solid #19d3ff;

    box-shadow:
        0 0 25px rgba(25,211,255,.18),
        0 25px 60px rgba(0,0,0,.45);
}

.featured:hover{
    transform:scale(1.08) translateY(-10px);
}

.badge{

    position:absolute;

    top:-15px;
    left:50%;

    transform:translateX(-50%);

    background:linear-gradient(135deg,#19d3ff,#8a5bff);

    color:white;

    font-size:12px;

    font-weight:bold;

    padding:8px 16px;

    border-radius:999px;

    letter-spacing:1px;
}

.plan-name{

    text-align:center;

    font-size:26px;

    font-weight:700;

    margin-bottom:20px;
}

.price{

    text-align:center;

    font-size:54px;

    font-weight:bold;

    color:#19d3ff;

    margin-bottom:30px;
}

.price span{

    display:block;

    font-size:15px;

    color:rgba(255,255,255,.6);

    margin-top:8px;
}

.price-card ul{

    list-style:none;

    padding:0;

    margin:0 0 35px;
}

.price-card li{

    padding:13px 0;

    border-bottom:1px solid rgba(255,255,255,.06);

    color:#d9ebff;
}

.price-card li i{

    color:#19d3ff;

    width:22px;
}

.price-card li.disabled{

    color:rgba(255,255,255,.35);
}

.price-card li.disabled i{

    color:#ff5f57;
}

.buy-btn{

    width:100%;

    padding:15px;

    border:none;

    border-radius:999px;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    color:white;

    background:linear-gradient(135deg,#19d3ff,#3b5bff,#8a5bff);

    transition:.25s;
}

.buy-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 30px rgba(25,211,255,.3);
}

/* Responsive */

@media(max-width:1000px){

    .pricing-grid{
        grid-template-columns:1fr;
    }

    .featured{
        transform:none;
    }

    .featured:hover{
        transform:translateY(-10px);
    }

}

*{
    box-sizing:border-box;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:30px;
}

.price-card{
    width:100%;
}

/*================ FOOTER ================*/

.footer{

    margin-top:120px;
    padding:70px 20px 30px;

    background:rgba(255,255,255,.03);

    border-top:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

    margin-bottom:50px;

}

.footer-logo{

    font-size:36px;

    margin:0 0 20px;
}

.footer-logo span{

    color:#19d3ff;
}

.footer-column h3{

    margin-bottom:18px;

    font-size:18px;
}

.footer-column p{

    color:rgba(255,255,255,.65);

    line-height:1.7;
}

.footer-column a{

    display:block;

    margin-bottom:14px;

    color:rgba(255,255,255,.75);

    text-decoration:none;

    transition:.25s;
}

.footer-column a:hover{

    color:#19d3ff;

    transform:translateX(5px);
}

.footer-column i{

    width:22px;
}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:30px;

    flex-wrap:wrap;

    gap:20px;
}

.footer-bottom p{

    color:rgba(255,255,255,.55);

    margin:0;
}

.socials{

    display:flex;

    gap:14px;
}

.socials a{

    width:44px;

    height:44px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:white;

    text-decoration:none;

    transition:.3s;
}

.socials a:hover{

    transform:translateY(-5px);

    background:linear-gradient(135deg,#19d3ff,#3b5bff,#8a5bff);

    box-shadow:0 12px 30px rgba(25,211,255,.3);
}

@media(max-width:900px){

    .footer-grid{

        grid-template-columns:1fr 1fr;

        gap:40px;
    }

}

@media(max-width:600px){

    .footer-grid{

        grid-template-columns:1fr;

        text-align:center;
    }

    .footer-bottom{

        flex-direction:column;
    }

    .socials{

        justify-content:center;
    }

}




/* ================= PROFILE IMAGE FIX ================= */

/* Fix ALL user profile images globally */
.profile-mini img,
.drawer-user img,
.profile-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ensure circular containers behave correctly */
.profile-mini {
    overflow: hidden;
}

.drawer-user img {
    overflow: hidden;
}

/* Fix specifically the navbar profile image container */
.profile-mini img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

/* Fix main profile page image (override conflicts) */
.profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.2);
}

/* =========================
   WHY US + PRICING MOBILE FIX
========================= */

/* Prevent horizontal overflow globally inside sections */
.why, .pricing {
    overflow-x: hidden;
}

/* ===== WHY US ===== */
@media (max-width: 1024px) {

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {

    .why {
        padding: 70px 15px;
    }

    .container {
        padding: 0 10px;
    }

    .why-grid {
        grid-template-columns: 1fr; /* ONE COLUMN = full width cards */
        gap: 16px;
    }

    .why-card {
        padding: 20px;
    }

    .why-header h2 {
        font-size: 30px;
    }

    .why-header p {
        font-size: 14px;
        padding: 0 10px;
    }
}

/* ===== PRICING ===== */
@media (max-width: 1024px) {

    .pricing-grid {
        grid-template-columns: 1fr; /* stack cards earlier */
        gap: 25px;
    }
}

@media (max-width: 768px) {

    .pricing {
        padding: 80px 15px;
    }

    .pricing-header h2 {
        font-size: 30px;
    }

    .pricing-header p {
        font-size: 14px;
        padding: 0 10px;
    }

    .price-card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .price {
        font-size: 44px;
    }

    .plan-name {
        font-size: 22px;
    }

    .price-card li {
        font-size: 14px;
    }

    .buy-btn {
        font-size: 15px;
        padding: 14px;
    }

    /* Featured card should not "break layout" on mobile */
    .featured {
        transform: none !important;
    }
}

/* Extra small phones */
@media (max-width: 420px) {

    .why-header h2,
    .pricing-header h2 {
        font-size: 26px;
    }

    .price {
        font-size: 38px;
    }

    .price-card {
        padding: 22px 16px;
    }
}

/* ================= LOADING SCREEN ================= */

#loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, #0b1b33, #050914);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;

    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* IMPORTANT FIX */
#loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-box {
    text-align: center;
}

/* SPINNER */
.spinner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.1);
    border-top-color: #19d3ff;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* TEXT */
.loader-text {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    letter-spacing: 1px;
}

.mobile-account-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.mobile-account-menu a {
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #cfe6ff;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.2s;
}

.mobile-account-menu a:hover {
    background: rgba(25,211,255,0.12);
    border-color: rgba(25,211,255,0.3);
}

.mobile-account-menu .logout:hover {
    background: rgba(255,59,59,0.15);
    border-color: rgba(255,59,59,0.4);
}





/* ================= MOBILE DRAWER UPGRADE ================= */

.drawer-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* USER HEADER */
.drawer-profile {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px;
    border-radius: 14px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.drawer-profile img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.drawer-profile .name {
    font-weight: 600;
    color: #fff;
}

.drawer-profile .balance {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* SECTION */
.drawer-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.section-title {
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin: 8px 0 6px;
}

/* LINKS */
.drawer-section a {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 12px;
    border-radius: 12px;

    color: #cfe6ff;
    text-decoration: none;
    font-size: 14px;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);

    transition: 0.2s ease;
}

.drawer-section a i {
    width: 18px;
    text-align: center;
    opacity: 0.9;
}

/* hover */
.drawer-section a:hover {
    background: rgba(25,211,255,0.12);
    border-color: rgba(25,211,255,0.3);
    transform: translateX(4px);
}

/* LOGOUT SPECIAL */
.drawer-section a.logout {
    color: #ff6b6b;
}

.drawer-section a.logout:hover {
    background: rgba(255,59,59,0.15);
    border-color: rgba(255,59,59,0.35);
}

/* ================= NOTIFICATIONS ================= */

.notifications-wrapper{
    position:relative;
}

.notifications-panel{

    position:absolute;
    top:55px;
    right:0;

    width:360px;
    max-height:460px;

    overflow-y:auto;

    display:none;

    background:rgba(10,15,25,.97);
    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    box-shadow:0 25px 70px rgba(0,0,0,.55);

    z-index:999999;
}

.notifications-header{

    padding:18px 20px;

    font-size:18px;
    font-weight:600;

    border-bottom:1px solid rgba(255,255,255,.08);

    background:linear-gradient(
        135deg,
        rgba(25,211,255,.08),
        rgba(138,91,255,.05)
    );
}

.notifications-list{
    padding:10px;
}

.notification{

    display:flex;
    gap:14px;

    padding:14px;

    border-radius:14px;

    transition:.25s;

    cursor:pointer;
}

.notification:hover{

    background:rgba(255,255,255,.05);
}

.notification.unread{

    background:rgba(25,211,255,.07);

    border:1px solid rgba(25,211,255,.18);
}

.notification-icon{

    width:42px;
    height:42px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    color:white;
}

.notification-icon.success{

    background:linear-gradient(135deg,#19d3ff,#3b5bff);
}

.notification-icon.info{

    background:linear-gradient(135deg,#8a5bff,#5f5fff);
}

.notification-icon.warning{

    background:linear-gradient(135deg,#ff9d00,#ff5f57);
}

.notification-content{
    flex:1;
}

.notification-content h4{

    margin:0;

    font-size:15px;
}

.notification-content p{

    margin:6px 0;

    font-size:13px;

    color:rgba(255,255,255,.72);

    line-height:1.4;
}

.notification-content span{

    font-size:11px;

    color:rgba(255,255,255,.45);
}

/* Badge */

.notification-badge{

    position:absolute;

    top:-5px;
    right:-3px;

    width:18px;
    height:18px;

    border-radius:50%;

    background:#ff4d4d;

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:11px;
    font-weight:bold;

    border:2px solid #050914;
}

/* Scrollbar */

.notifications-panel::-webkit-scrollbar{

    width:6px;
}

.notifications-panel::-webkit-scrollbar-thumb{

    background:rgba(255,255,255,.12);

    border-radius:999px;
}

/* Mobile */

@media(max-width:768px){

.notifications-panel{

    width:300px;

    right:-40px;
}

}

.notifications-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}


.clear-notifications{

    background:rgba(25,211,255,.15);

    border:1px solid rgba(25,211,255,.3);

    color:#19d3ff;

    padding:6px 12px;

    border-radius:20px;

    cursor:pointer;

    font-size:12px;

    transition:.3s;

}


.clear-notifications:hover{

    background:#19d3ff;

    color:#050914;

}

.alert-box{

    position:fixed;
    top:90px;
    right:30px;

    min-width:320px;

    padding:15px 20px;

    border-radius:12px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    color:white;
    font-weight:600;

    z-index:99999;

    box-shadow:0 10px 30px rgba(0,0,0,.3);

}


.alert-box.success{
    background:#19c37d;
}


.alert-box.error{
    background:#ff4757;
}


.alert-box button{

    background:none;
    border:none;

    color:white;

    font-size:24px;

    cursor:pointer;

    margin-left:20px;

}

.wallet-wrapper{
    position:relative;
}

.balance{
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
}

.small-arrow{
    font-size:11px;
    opacity:.7;
}

.wallet-menu{
    position:absolute;
    top:55px;
    right:0;
    width:220px;

    background:#0d1b33;
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;

    overflow:hidden;

    opacity:0;
    visibility:hidden;
    transform:translateY(-8px);

    transition:.25s;
    z-index:999;
}

.wallet-menu.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.deposit-btn{
    display:flex;
    align-items:center;
    gap:10px;

    padding:15px;

    color:white;
    text-decoration:none;

    transition:.2s;
}

.deposit-btn:hover{
    background:#19d3ff;
    color:#000;
}

.drawer-notification{
    background:#13284a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    padding:12px;
    margin-bottom:12px;
}

.drawer-notification strong{
    display:block;
    margin-bottom:4px;
    color:#19d3ff;
}

.drawer-notification p{
    margin:0;
    font-size:.9rem;
    color:#d8e5ff;
}

.drawer-notification small{
    display:block;
    margin-top:8px;
    color:#8da6c7;
    font-size:.75rem;
}

.drawer-empty{
    color:#9fb3d4;
    font-size:.9rem;
}





.drawer-content{
    flex:1;
    overflow-y:auto;
    padding:25px;
}

body.menu-open{
    overflow:hidden;
    height:100vh;
}

.drawer-notifications-scroll{
    max-height:220px;
    overflow-y:auto;
    padding-right:5px;
}


.drawer-notifications-scroll::-webkit-scrollbar{
    width:5px;
}


.drawer-notifications-scroll::-webkit-scrollbar-thumb{
    background:#19d3ff;
    border-radius:10px;
}


.view-all-notifications{
    display:block;
    margin-top:12px;
    text-align:center;
    padding:10px;
    border-radius:10px;
    background:rgba(255,255,255,0.08);
    color:white;
    text-decoration:none;
    font-size:14px;
}


.view-all-notifications:hover{
    background:rgba(255,255,255,0.15);
}

.drawer-clear-form{
    margin-top:12px;
}


.clear-drawer-notifications{
    width:100%;
    border:none;
    padding:10px;
    border-radius:10px;

    background:rgba(255,255,255,0.08);
    color:white;

    font-size:14px;
    cursor:pointer;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;

    transition:0.25s;
}


.clear-drawer-notifications:hover{
    background:rgba(255,80,80,0.25);
}

.purchase-overlay{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,0.65);
    backdrop-filter:blur(8px);

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    pointer-events:none;

    transition:.3s;

    z-index:9999;

}


.purchase-overlay.active{

    opacity:1;
    pointer-events:auto;

}



.purchase-box{

    width:380px;
    max-width:90%;

    padding:35px;

    border-radius:22px;

    background:
    linear-gradient(
        145deg,
        rgba(25,211,255,.18),
        rgba(138,91,255,.18)
    );

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(20px);

    text-align:center;

    color:white;

    transform:translateY(30px);
    transition:.3s;

}



.purchase-overlay.active .purchase-box{

    transform:translateY(0);

}



.purchase-icon{

    width:65px;
    height:65px;

    margin:auto;
    margin-bottom:15px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#19d3ff;

    color:#06111f;

    font-size:28px;

}



.purchase-box h2{

    margin-bottom:15px;

}



.purchase-box p{

    color:#d9eaff;
    line-height:1.6;

}



.purchase-actions{

    display:flex;
    gap:15px;

    margin-top:25px;

}



.purchase-actions button{

    flex:1;

    padding:12px;

    border:none;

    border-radius:12px;

    cursor:pointer;

    font-weight:bold;

}



.cancel-purchase{

    background:rgba(255,255,255,.15);
    color:white;

}



.confirm-purchase{

    background:linear-gradient(135deg,#19d3ff,#8a5bff);
    color:white;

}

body.ocean{
    background:radial-gradient(circle at top,#0b1b33,#050914);
}

body.midnight{
    background:linear-gradient(180deg,#111827,#020617);
}

body.dark{
    background:#111;
}