:root{
         /* --primary: #00b69e;
        --primary-glow: #00b69ede;
        --primary-fade: #00b69e1c; */
        --primary: #8a13eb;
    --primary-glow: #8914e9;
    --primary-fade: #691fca1c;
        --primary-f1: #00b69e77; 
        --danger-f1: #f7454571;
        --text: #c7c7c7;
        --card-bg: #121212;
        --success: #00b894;
        --green: #00cc66;
        --danger: #f74545;
        --warning: #fdcb6e;
        --dark: #000; 
        --text-muted: #ffffffa2;
        --text-muted2: #ffffff69;
         --primary-color: #667eea;
    --secondary1: #fa6aff;
    --bg-top: #141414a9;
    --secondary: #fa6aff;
    /* Option 2 Variables as an example */
    --background: #111827;
    --text: #f9fafb;
    --border: #374151;
    --top-nav: #1f2937;
    --bottom-nav: #030712;
}

     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'PSemiBold';
        }
    .shade{
        position: fixed;
        inset: 0;
        backdrop-filter: blur(5px);
        z-index: 9999;
        display: none;
    }
    .divBtn:hover{
        opacity: 0.6;
        transform: scale(0.95);
    }
    body{
        background: #000;
        min-height: 100vh;
        /*font-family: Poppins;*/
        color: var(--text);
        position: relative;
        display: grid;
        grid-template-columns: 40vw 50vw;
        gap: 10px;
        max-width: 100vw;
        overflow-y: auto;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .pin-inputs {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin: 1.2rem 0 0.5rem 0;
    margin-bottom: 30px;
}
.pin-inputs input {
    width: 44px;
    height: 54px;
    font-size: 2rem;
    text-align: center;
    border: 2px solid var(--primary, var(--primary));
    border-radius: 10px;
    background: #181c24;
    color: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    font-family: 'PMedium';
}
.pin-inputs input:focus {
    border-color: #fff;
    background: #23272f;
    box-shadow: 0 0 0 2px var(--primary, var(--primary));
}
.pin-inputs input::-webkit-input-placeholder { color: #888; }
.pin-inputs input:-ms-input-placeholder { color: #888; }
.pin-inputs input::placeholder { color: #888; }

    /* Animated Circles Background */
.circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animating 25s linear infinite;
    bottom: -150px;
    border-radius: 50%;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animating {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}
    .error_msg{
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 10px;
        backdrop-filter: blur(5px);
        z-index: 99999;
        background: var(--card-bg);
        padding: 8px 5px;
        min-width: 200px;
        width: fit-content;
        color: var(--text); 
        display: flex;
        border: 1px solid #00b67f30;

    }
    #error_msg{
        width: 100%;
        font-size: 15px;
        font-family: 'PMedium';
    }
    .error_msg i{
        margin-right: 10px;
        display: flex;
        font-size: 16px;
    }
    .danger{
        color: var(--danger);
    }
    .success{
        color: var(--success);
    }
     div.support{
        position: fixed;
        top: 80%;
        right: 15px;
        height: 56px;
        width: 56px;
        border-radius: 50%;
        background: var(--primary);
        z-index: 99999;
        box-shadow: 0 0 9px #050505;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
        animation: gingle 1s;
    }
    div.support:hover {
        background: #0a0a0a;
        border: 4px solid var(--primary);
        box-shadow: 0 0 19px var(--primary);
        transform: translateY(-10px) scale(1.1);
        transition: 0.3s;
    }
    div.support i.uil-comments {
        color: #000000;
        font-size: 2rem;
        transition: color 0.3s;
    }
    div.support div.message{
        position: absolute;
        top: -190px;
        left: -100px;  
        padding: 5px 5px;
        text-align: center;
        background: #2d3436;
        border-radius: 10px;
        display: none; 
        flex-direction: column;
    }
    .welcome-message{
        margin:5px auto;
        max-width:300px;
        background:#23272f;
        color:var(--primary);
        padding: 10px 10px;
        border-radius:12px;
        text-align:center;
    }
    div.message .icon{
        /* padding: 5px; */
        /* background: var(--text-muted); */
        border-radius: 100%;
        display: flex;
        width: fit-content;
        height: fit-content;
    }
    div.support i{
        font-size: 25px;
    }
    div.support .id{
        position: absolute;
        top: -30px;
        left: -50px;  
        width: 80px; 
        padding: 5px 5px;
        text-align: center;
        background: #2d3436;
        border-radius: 10px;
        display: none;
    }
    div.support:hover .id{
        display: flex;
    }
    div.support .unread-count{
        padding: 2px 5px;
        background: #0bb15e;
        font-size: 13px;
        border-radius: 20px;
        position: absolute;
        bottom: -5px;
        left: 7px;
        /* font-weight: 700; */
        
    }
    div.support i.uil-comments{
        color: #000;
    }
    div.support:hover i.uil-comments {
        color: var(--primary);
    }
   
    @keyframes gingle {
        0% { transform: translateY(-10px) scale(1.1);}
        50% { transform: translateY(10px) scale(0.9);}
        100% { transform: translateY(-10px) scale(1.1);}
    }
    .TopNav{
        position: fixed;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
        border-radius: 25px;
        height: 50px;
        max-width: 400px;
        padding-inline: 10px;
        backdrop-filter: blur(5px);
        display: none;
        flex-direction: row;
        z-index: 9999; 
        background: var(--card-bg);
        overflow: hidden;
    }
    
    .TopNav .logo{
        position: relative;
        /* box-shadow: 1px 1px 5px var(--primary-glow);  */
        display: flex;
        flex-direction: row;
        place-items: center;
        
    } 

   
    .TopNav .logo font{
        background: linear-gradient(to right, var(--primary), var(--secondary1));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        font-size: 18px;
        align-self: center;
    }
    .TopNav .input{
        display: flex;
        flex-direction: row;
        align-self: center;
        padding: 5px 5px;
        height: fit-content;
        max-width: 200px;
        width: fit-content;
        border-radius: 10px;
        margin-left: 10px;
    }
    .TopNav .input i{
        align-self: center;
        color: #5f5f5f;
        font-size: 15px;
        margin-left: 10px;
    }
    .TopNav .input input{
        background: transparent;
        border: none;
        margin-left: 10px;
        height: 20px;
        align-self: center;
        width: 70%;
        color: #c7c7c7;
        outline: none;

    }
    .TopNav .logoName{
        background: linear-gradient(to right, var(--primary), var(--secondary1));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        /* font-weight: 600; */
        font-size: 14px;
        align-self: center;
         margin-left: 10px;
         position: relative;
    }
  .back_btn{
        max-width: 20px;
        max-height: 20px;
        color: var(--primary); 
        display: flex;
        position: relative;
    }
    @keyframes width {
        0%{
            width: 0;
        }
    }
    @keyframes TopUp {
        0%{
            top: 100vh;
            opacity: 0.4;
        }
    }
    .TopNav .navBox{ 
        position: absolute;
        right: 10px;
        align-self: center;
        display: flex;
        flex-direction: row;
    }
    
   
    
    
    .TopNav button{
        color: var(--primary);
        font-size: 25px;
        position: relative;
        display: flex;
        flex-direction: row; 
        gap: 8px;
        /* font-weight: 100; */
        justify-content: center;
        place-items: center;
        background: transparent;
        min-height: 30px;
        min-width: 30px;
        border-radius: 100%;
        transition:  1s ease;
        color: var(--primary); 
        align-self: center;
        border: none;

    }
    
    .TopNav button span{
        position: absolute;
        background: var(--danger);
        border-radius: 100%;
        top: 4px;
        right: 4px;
        font-size: 8px;
        height: 10px;
        width: 10px;
        color: #000;

    }
    /* for wallet */ 
    .TopNav .listBtn{
        height: fit-content;
        background: transparent;
        margin-inline: 5px;
        border: none;
        align-self: center;
        color: var(--primary);
        font-size: 16px;
        opacity: 0.4;



    }
    .TopNav .listBtn.active, .TopNav .listBtn:hover{
        max-height: fit-content;
        color: var(--primary);
        transform: scale(1.2);
        margin-inline: 10px;
        opacity: 1;
    }
     
     
     
    
    /* .botNav button#_trade{
        transform: translateY(-25px);
        background: var(--primary);
        min-height: 45px;
        min-width: 45px;
        justify-content: center;
        border-radius: 100%;
        transition:  1s ease;
        box-shadow: 0 0 5px #000, 0 0 5px #000, 0 0 5px #000;
        position: absolute;align-self: center;
    } */

    .botNav{
        display: flex;
        flex-direction: column;
        backdrop-filter: blur(5px);
        padding: 0px;
        padding-top: 0.5rem;
        position: absolute;
        left: 10px;
        top: 10px;
        width: 100%;
        border-radius: 20px;
        background: var(--primary-fade);
        max-width: 50px;

    }
    
    .botNav button{
        position: relative;
        display: flex;
        flex-direction: column;
        align-self: center;
        background: transparent;
        border: 3px solid transparent;
        margin-block: 15px;
        background: transparent;
        color: var(--text-muted);
        width: 100%;
    }
    .botNav img{
        margin-top: 20px;
        margin-bottom: 50px;
        align-self: center;
    }
    .profile{
        position: relative;
        display: flex;
        flex-direction: column;
        align-self: center;
        background: transparent;
        border: none;
        margin-block: 10px;
    }
    .botNav button.active, .botNav button:hover{
        /* background: var(--primary); */
        color: var(--primary);
        min-height: 35px;
        min-width: 35px;
        justify-content: center;
        border-radius: 0px;
        transition:  1s ease;
        border-right: 3px solid var(--primary);

    }
    .profile{
        background: var(--primary);
        color: var(--dark);
        min-height: 35px;
        min-width: 35px;
        justify-content: center;
        border-radius: 100%;
        transition:  1s ease;

    }
    
    .botNav button:hover font, .profile:hover font{
        display: flex;
        transition: 1s ease;
    }
    .botNav button:hover i, .TopNav button:hover i, .profile:hover i{
        animation: fa-bounce 1s;
    }
    .botNav button i{ 
        align-self: center;
        font-size: 20px; 
        
    }
    .botNav button font{
        display: none;
        position: absolute;
        left: 40px;
        background: var(--card-bg);
        color: var(--primary);
        border-radius: 20px;
        padding: 5px 6px;
    }
     .profile font{
        display: none;
        position: absolute;
        align-self: center;
        bottom: -20px;
        background: var(--card-bg);
        color: var(--primary);
        border-radius: 20px;
        padding: 5px 6px;
        font-size: 15px;
    }
    .botNav button span{
        position: absolute;
        background: var(--danger);
        border-radius: 100%;
        top: -7px;
        right: -7px;
        font-size: 10px;
        height: 15px;
        width: 15px;
        color: #000;

    }
    
    .botNav button.active span{
         top: 0;
        right: 0;
    }

        /* Buttons */
        .btn {
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: animates 1s;
        }
        
        .btn-primary, .btn-fill {
            /* background: var(--primary); */
            color: var(--text);
            border: none;
            background: linear-gradient(to right, var(--primary), var(--secondary1));
            
        }
        
        .btn-primary:hover, .btn-fill:hover {
            transform: translateY(-2px);
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        .btn-red {
            background: var(--danger);
            color: var(--dark);
            border: none;
        }
        
        .btn-red:hover {
            transform: translateY(-2px);
            background: transparent;
            color: var(--danger);
            border: 2px solid var(--danger);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-outline:hover {
             background: var(--primary);
            color: var(--dark);
            border: none;
            transform: translateY(-2px);
        }
        ._btn:hover{
            opacity: 0.8;
            transition: 1s ease;
        }


.slideBox{
    background: #000; 
    padding: 10px 10px;
    display: none;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 600px;
    max-height: 500px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    box-shadow: 0 0 9px #ffffff40;
    z-index: 99999;
    overflow-y: auto;
}
.pinBox{
    background: #000;
    padding: 10px 10px;
    display: none;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 600px;
    max-height: 300px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    box-shadow: 0 0 9px #ffffff40;
    z-index: 99999;
}
 .pinBox h2{
    font-family: 'PMedium';
    align-self: center;
    font-size: 15px;
 }
  @media (max-width: 2024px) {
    
    
  
  }

   @media (max-width: 768px) {
    body{
         display: flex;
        flex-direction: column;
    }
    .slideBox{
        left: 0;
        right: 0;
        max-height: 1000px;
        top: 18vh;
        transform: none;
        bottom: 0;
        z-index: 99999;
        border-radius: 20px 20px 0 0;

    }
    .pinBox{
        left: 0;
        right: 0;
        max-height: 1000px;
        top: 60vh;
        transform: none;
        bottom: 0;
        z-index: 99999;
        border-radius: 20px 20px 0 0;
        animation: TopUp 1s;
    }
    .botNav{
            display: flex;
            flex-direction: row;
            backdrop-filter: blur(5px);
            padding: 0px;
            position: fixed; 
            top: 92%;
            width: 100%;
            left: 50%;
            transform: translateX(-50%);
            bottom: 0px;
            max-height: 60px;
            max-width: 700px; 
            background: var(--dark);
            justify-content: space-around;
            border-radius: 0px;
    }
    .botNav button{
        position: relative;
        display: flex;
        flex-direction: column;
        align-self: center;
        background: transparent;
        height: 35px;
        width: 35px;
        height: 100%;
        justify-content: center;
        border-radius: 0px;
        border: 3px solid transparent;
         margin-block: 10px;
         border-right: none;
          
    }
    .botNav button i{
        color: var(--text-muted);
        font-size: 25px;
    }
    .botNav button.notification, .botNav img{
        display: none;
    }
    .botNav button span{
        top: 2px;
        right: -4px;
        

    }
    .botNav button.home{
        height: 55px;
        width: 55px;
        justify-content: center;
        margin-bottom: 30px;
        border-radius: 100%;
        transition:  1s ease;
        background: var(--dark);
        border: none;
        border-right: none;
        border: 1px solid var(--primary);
    }
    .botNav button.home i{
        background: linear-gradient(to right, var(--primary), var(--secondary1));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
    }
    .botNav button.home font{
        display: none;
    }
   
    
.botNav button:hover, .botNav button.active{
        background: none;
        color: var(--primary);
        min-width: 35px;
        justify-content: center;
        border-radius: 0px;
        transition:  1s ease;
        border-top: 3px solid var(--primary);
        border-right: none;
    }
     button.active.home,  button.home:hover{
        background: linear-gradient(to right, var(--primary), var(--secondary1));
        justify-content: center;
        border-radius: 100%;
        transition:  1s ease;
        border-top: none;
        min-height: 55px;
        min-width: 55px;
    }
    .botNav button.active.home i, .botNav button.home:hover i{
        color: var(--text-muted);
        background: var(--text-muted);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
    }
    .botNav button.active i, .botNav button:hover i{
        color: var(--primary);
    }
    .botNav button font{ 
        display: flex;
        position: relative;
        left: 0;
        background: transparent;
        border-radius: 0px;
        padding: 0px;
        align-self: center;
        font-family: 'PMedium';
        font-size: 10px;
        color: var(--text-muted);
       
    }
    .botNav button.active font, .botNav button:hover font{
        color: var(--primary);
    }
    .TopNav{
       display: flex;
        
    }
 }

.linkified {
  color: var(--primary);
  text-decoration: underline;
}

  @media (max-width: 480px) {
    
    
 }
.loaderBox{
    
    justify-content: center;
    place-items: center;
    

}
.loaderBox{
    display: flex;
position: fixed;
z-index: 99999;
height: 100vh;
background: #000000;
inset: 0;
width: 100vw;
}
.loaderBox.L{
    background: #000000ad;
}
#loaderBox2, #loaderBox3{
    display: flex;
    position: absolute;
    z-index: 1;
    background: #000000;

}
.loaderBox .loader{
    padding: 5px;
    height: 25px;
    display: flex;
    gap: 5px;
    border-radius: 20px;
    place-items: center;

}
.loaderBox .loader2{
    display: flex;
    align-self: center;
    overflow-x: hidden;
    transition: 1s ease;
    width: 32px;
    place-items: center;
    flex-direction: row;
    gap: 2px;
    

}
.loaderBox .loader2 font{
    font-size: 25px;
    font-size: PSemiBold;
    background: linear-gradient(to right, var(--primary), var(--secondary1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.loaderBox .loader2{
    animation: fa-bounce 1s;
}
.loaderBox .loader span{
    background: var(--primary);
    height: 15px;
    padding-inline: 2px;
    border-radius: 20px;
}
@keyframes loader {
    0%{
        height: 5px; 
    }
    100%{
        height: 15px;
    }
}
@keyframes maxwidth {
    0%{
        width: 34px;
    }
    
}
.toggle_tog {
      position: relative;
      width: 50px;
      height: 25px;
      align-self: center;
      

    }

    .toggle_tog input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider_tog {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #444;
  transition: 0.4s;
  border-radius: 23px;
}

.slider_tog::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;  
  transition: 0.4s;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

input:checked + .slider_tog {
  background-color: #00b652;
}

input:checked + .slider_tog::before {
  transform: translateX(18px);
}