body{
        background-color: #0C0E12 !important;

}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
  font-family: "Roboto Serif", serif;
}
.myaccount-header {
  background-color: #181A20;
  color: white;
}



/* *{
  outline: 1px solid red;
}  */

.myaccount-header-logo {
  width: 100px;
}
.myaccount-header-nav{
  display: flex;
  align-items: center;

}
.myaccount-header-nav-profile{
  display: none;
}
.myaccount-header-nav-profile img{
  width: 30px;
}
@media (max-width:986px) {
  .myaccount-header-logo{
    width: 50px;
  }
  .myaccount-header-nav-profile{
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .theme-toggle-label{
    width: 80% !important;
    height: 80% !important;
  }
}
.navbar-expand-lg .navbar-nav {
  gap: 50px;
  margin-right: auto !important;
  margin-left:auto !important;
}
.navbar-brand {
  display: flex;
  align-items: center;
}
.navbar-brand  p{
  padding-left: 10px;
  margin-bottom: 0px !important;
  color:white;
}
.myaccount-header-button {
  width: 150px;
  border: 1px solid #6A6B6B !important;
  color: #6A6B6B !important;
  font-weight: 600 !important;

}
@media (max-width:986px) {
  .myaccount-header-buttons{
    display: none !important;
  }
}
.sidebar-close-wrapper-section-inside{
  display: none;
}


.myaccount-header-button .fa-download {
  color: black;
  font-size: 14px;
}

.myaccount-header-buttons {
  gap: 10px;
  align-items: center;
  display: flex;
}

.myaccount-header-buttons i {
  font-size: 25px;
  color: white;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  background-color: #1E1E1E;
  transition: all 0.3s ease;
}

.navbar-expand-lg .navbar-nav .dropdown-menu li a:hover {
  background-color: #6A6B6B !important;
  color: #FCD535 !important;
}

.myaccount-header .navbar-nav li a {
  color: white;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: yellow !important;
}

.dropdown-toggle::after {
  display: none !important;
}

.myaccount-header-button.nav-button-active {
  background-color: #FCD535 !important;
  color: black !important;
}


/* nav transform into X symbol */
.navbar-toggler{
  border: transparent !important;
}
.navbar-toggler-icon {
  display: none;
}
.navbar-toggler:focus{
  box-shadow: none !important;
}
.custom-toggler .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: 0.3s;
  background-color: #F3BA2F;
  border-radius: 2px;
}

/* When open - add this class */
.custom-toggler.open .top-bar {
  transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler.open .middle-bar {
  opacity: 0;
}

.custom-toggler.open .bottom-bar {
  transform: rotate(-45deg) translate(6px, -6px);
}
#navbarSupportedContent img{
  width: 25px;
}
#navbarSupportedContent .nav-item .nav-link{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: auto;
  padding:10px 15px;
  transition: all 0.3s ease;

}
#navbarSupportedContent .nav-item .nav-link:hover{
  border-radius: 0.5rem;
  background-color: #1E1E1E;
}
#navbarSupportedContent .nav-item .nav-link span{
  color:white;
}
#navbarSupportedContent .nav-item .nav-link i{
  color: white;
}
/* #navbarSupportedContent .nav-item{
  margin-left: 50px;
} */
/* 
#navbarSupportedContent .d-flex{
  display: block !important;
} */
.theme-switch-wrapper {
  position: relative;
  width: 60px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.theme-toggle-label {
  background: #444;
  border-radius: 50px;
  border: 2px solid #f1c40f;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 5px; */
  position: relative;
  height: 100%;
  width: 100%;
}

.theme-toggle-label i {
  color: #ccc;
  width: 20px;
  text-align: center;
  font-size: 14px;
  z-index: 1;
}

.theme-toggle-label .ball {
  border:1px solid #f1c40f;
  border-radius: 50%;
  position: absolute;
    box-shadow: inset 0 0 10px #f8a100;

  /* top: 3px;
  left: 3px; */
  height: 100%;
  width: 50%;
  transition: transform 0.3s linear;
  z-index: 0;
  padding:5px 10px;
  display: flex;
  align-items: center;
}

#theme-toggle-checkbox {
  opacity: 0;
  position: absolute;
}

#theme-toggle-checkbox:checked + .theme-toggle-label .ball {
  transform: translateX(30px);
}

#theme-toggle-checkbox:checked + .theme-toggle-label i.fa-moon {
  color: #999;
}

#theme-toggle-checkbox:checked + .theme-toggle-label i.fa-sun {
  color: #f1c40f;
}

@media (max-width:1100px) {
  .navbar-expand-lg .navbar-nav {
    gap: 20px
  }
}

@media (max-width:986px) {
  .navbar-expand-lg .navbar-nav {
    gap: 0px;
  }
}


@media (max-width: 991.98px) {
  .navbar-collapse {
    /* position: fixed !important; */
    top: 57px;
    /* Height of your navbar (adjust if needed) */
    left: 0;
    width: 100%;
    background: #1c1c1c;
    /* or any dark bg */
    z-index: 9999;
    overflow-y: auto;
    /* padding-bottom: 100px; */
  }

  .navbar-collapse.collapsing {
    transition: height 0.35s ease;
  }

  body.nav-open {
    overflow: hidden;
    /* prevent scrolling the page when nav is open */
  }
}





/* /--------------------- */
/* Sidebar container */
.sidebar-container {
  position: relative;
  gap:10px;
  display: flex;
}
@media (max-width:986px) {
.sidebar-close-wrapper-section-inside{
  display: block;
}
.sidebar-container{
  display: none !important;
}
}
/* .myaccount-page-content{
  padding: 5px;
} */
/* ICON ONLY SIDEBAR */
.sidebar-icons {
  width: 50px;
  background-color: #1c1c1c;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  left: 0;
  top: 10;
  z-index: 1050;
}

.sidebar-icons ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.sidebar-icons ul li {
  padding: 20px 0;
  text-align: center;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.open-full-sidebar {
  text-align: center;
  padding: 10px;
  color: white;
  left: 10px;
  cursor: pointer;
  position: absolute;
}

/* FULL SIDEBAR */
.myaccount-sidebar {
  width: 260px;
  background: #1c1c1c;
  height: 100vh;
  overflow-y: auto;
  position: fixed;
  top: 10;
  left: 0;
  z-index: 1060;
  /* transform: translateX(100%); */
  transition: transform 0.3s ease-in-out;
}

.myaccount-sidebar.show {
  transform: translateX(50px);
  /* Slide right past icon-only bar */
}

.sidebar-close-wrapper {
  text-align: right;
  padding: 10px;
}

.myaccount-page-flex{
  display: flex;
  align-items: center;
  gap: 20px;
}
.sidebar-close {
  font-size: 24px;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
}

/* Hide full sidebar on desktop */
@media (min-width: 987px) {
  .sidebar-icons {
    display: none;
  }

  .myaccount-sidebar {
    transform: translateX(0%) !important;
    position: relative;
  }
}

/* Desktop-specific (≥987px) */
@media (min-width: 987px) {
  .sidebar-icons {
    display: none !important;
  }


}


@keyframes slideIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}
  /* .myaccount-sidebar-wrapper {
    display: block !important;
    position: relative;
    transform: translateX(0) !important;
    padding:10px;
  } */

  .myaccount-sidebar {
    position: relative;
    width: 260px;
    background: #1c1c1c;
    height: 100vh;
    transition: width 0.3s ease;
  }
  .sidebarnav-small{
    width:70px !important;
    gap:40px !important;
    overflow: hidden;
  }
  .sidebarnav-small .sidebar-close-wrapper{
    text-align: center;
  }

/* 
  
/* Mobile-specific (≤986px) */
@media (max-width: 986px) {
  .sidebar-icons {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50px;
    background-color: #1c1c1c;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1050;
  }

  .sidebar-icons.hide-icons {
    display: none !important;
  }
/* 
  .myaccount-sidebar-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    height: 100vh;
    width: 260px;
    background: #1c1c1c;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }



  .myaccount-sidebar {
    height: 100vh;
    overflow-y: auto;
  } */
}
  /* .myaccount-sidebar-wrapper.show-sidebar {
    display: block;
    transform: translateX(-70%);
  } */
@media (max-width:786px) {
  .sidebar-icons ul li {
    padding: 15px 0px;
  }
}

/* ----------------------- */

.myaccount-sidebar {
  width: 250px;
  height: fit-content;
  background-color: #1E1E1E;
      border-radius: 0.5rem;
}

.myaccount-sidebar .nav-link {
  color: #ccc;
  border-radius: 0.5rem;
}

.myaccount-sidebar .text-danger {
  font-size: 20px;
  padding: 10px
}

.myaccount-sidebar .nav-link:hover,
.myaccount-sidebar .nav-link:focus {
  background-color: #2c2c2c;
  color: #fff;
}

.myaccount-sidebar .nav-item .collapse {
  /* background-color: #2b2b2b; */
  padding-left: 20px;
}
.myaccount-sidebar .dropdown-toggle i{
  font-size: 16px;
}
.myaccount-sidebar .dropdown-toggle::after {
  float: right;
  margin-top: 7px;
}

.myaccount-page {
  background-color: black;
}

.myaccount-page .container-fluid {
  padding-right: 2px !important;
  padding-left: 2px !important;
}

.myaccount-page .myaccount-sidebar .nav {
  gap: 10px
}
.myaccount-page .myaccount-page-content .nav-item{
  width: 80%;
  margin: auto;
}
.myaccount-page .myaccount-page-content .nav-item .dropdown-toggle {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-block: 15px;
  align-items: center;
  font-size: 20px;
}
.myaccount-page .myaccount-page-content .nav-item img{
  width: 30px;
}
.myaccount-page .myaccount-page-content .nav-item span{
  font-size: 16px;
}
.myaccount-page .myaccount-page-content .nav-item .home{
  display: flex;
  gap: 20px;
  padding-block: 20px;
  font-size: 16px;
}
.myaccount-page .myaccount-page-content .nav-item .logout{
  display: flex;
  gap: 20px;
      padding: 20px;
    font-size: 20px;
}

.sidebar-close-wrapper{
  background-color: black;
  border: 1px solid #2c2c2c;
}
.desktop-sidebar-icons.sidebarnav-small .show{
  display: none;
}

.header-globe-sidebar{
  padding:10px 20px;
  position: absolute;
  right: 80px;
  top: 80px;
  background-color: #1c1c1c;
}
.header-globe-sidebar ul{
  padding-left: 0px !important;
}
.header-globe-sidebar ul li{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.header-globe-sidebar ul li p{
  margin-bottom: 0px !important;
}

.header-globe-sidebar {
  display: none;
}

.header-globe-sidebar.d-none-show {
  display: block;
}


/* -------------------------------- */
/* ----------------- */
/* .myaccount-page.dark-theme {
  background-color: #ffffff !important;
  color: #070606 !important;
}
.dark-theme .myaccount-header{
  box-shadow: 0px 0px 5px black;
  background-color: white;
  color:black !important;
}
.dark-theme .myaccount-header .navbar-nav li a{
  color:black
}
.dark-theme .myaccount-sidebar{
  background-color:#ffffff ;
  box-shadow: 0px 0px 5px black;
  color:black
}
.dark-theme .myaccount-sidebar .nav-link{
  color:black
} */

/* ------------------------------------------ */
.myaccount-home-hero{
    background-color: #0C0E12;
    padding-block: 100px;
}
.myaccount-home-hero-container a{
    text-decoration: none;
    color: #F0B90B;
    border: 1px solid #FFFFFF1A;
    background-color: #99E39E1A;
    padding: 5px;
    border-radius: 1rem;

}
.myaccount-home-hero-container{
    text-align: center;
}

.myaccount-home-hero-container h1{
    color: white;
    text-align: center;
    font-size: 70px;
    padding-block: 20px;
}
.myaccount-home-hero-container-p{
    text-align: center;
    color: white;
    margin-block: 20px;
  
}
.myaccount-home-hero-container button{
    padding: 10px 20px;
    background-color: #F0B90B;
    border: none;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-inline: auto;
 
}
.myaccount-home-hero-banner{
    position: relative;

}
.myaccount-home-hero-banner img{
    width: 100%;
}
.myaccount-home-hero-banner::before{
    width: 100%;
    height: 200px;
    background: linear-gradient(#00000079,#0C0E12);
    z-index: 1;
    content: "";
    position: absolute;
    bottom: 0;
    filter: blur(100px);
}

.myaccount-home-hero-container h2{
    color: white;
    margin-block: 50px;
}

.myaccount-home-hero-box{
    background-color: #FFFFFF1A;
        border-radius: 16px;
    border: 1px solid #FFFFFF1C;
    padding-block: 20px;
}
.myaccount-home-hero-box h5{
    color:#F0B90B;
    font-size: 32px;

}

.myaccount-home-hero-box p{
    color: white;
    margin-bottom: 0px !important;
}
@media (max-width:786px) {
    .myaccount-home-hero{
        padding-top: 40px;
    }
    .myaccount-home-hero-container h1{
        font-size: 40px;
    }
    .myaccount-home-hero-banner{
        margin-top: 20px;
    }
    .myaccount-home-hero-container h2{
        margin-top: 40px;
        margin-bottom: 10px;
    }
    .myaccount-home-hero{
        padding-bottom: 20px;
    }
    .myaccount-home-hero-box{
        padding-block: 5px;
        margin-bottom: 10px;
    }
}

/* -------------------------------- */
.sparkline {
  width: 80px !important;
  height: 40px !important;
}
.myaccount-home-trade{
    background-color: #000000;
    padding: 20px;
    width: 90%;
    margin: auto;
}
.myaccount-home-trade-header{
    color: white;
    margin-block: 20px;
}
.myaccount-home-trade-left{
    border: 1px solid #F9F6F61A;
    color: white;
    border-radius:0.5rem ;
}
.tab-header{
    display: flex;
    background-color: #E7974017;
    border-radius: 0.5rem 0px 0px;
    padding-inline: 10px;
         padding-bottom: 5px;
}
 .tab-header div {
    
      text-align: center;
      padding: 10px;
      cursor: pointer;
      font-weight: bold;
      color: #aaa;
 
    }
  .tab-header .active {
      color: #f8b400;
      border-bottom: 2px solid #f8b400;
    }
    .tab-content {
      display: none;
      margin-top: 15px;
    }
    .tab-content.active {
        height: 360px;
        overflow: auto;
      display: block;
    }
    .tab-content.active::-webkit-scrollbar{
        display: none;
    }
 .tab-content .coin-row div{
        display: flex;
        flex-direction: column;
     }
    .tab-content .coin-row{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
    }
      .tab-content .coin-row .green{
        color: #00C32B;
        font-weight: 600;
      }
 
    .coin-row-col1{
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        gap: 10px;
    }
    .coin-row-col1-flex{
        display: flex ;
        flex-direction: column;
    }

         .coin-row-col1-img {
    padding: 10px 15px;
    width: fit-content;
    border: 1px solid black;
    border-radius: 50%;
    background-color: #FEE71526;
   }
    .coin-row-col1-img img{
        width: 20px;

    }

    .trade-btn{
         background: radial-gradient(
    circle,
    #F0B90BD1
  );
  box-shadow:inset -3px -4px 7px 0px #FFFFFF26;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
    }


     .side-box {
      background: #1c1c1c;
      border-radius: 12px;
      padding: 20px;
      width: 100%;
      min-height: 100%;
      color: white;
     
    }
     .side-box-wrapper{
 height: 350px;
      overflow: auto;
     }
    
     .side-box-wrapper::-webkit-scrollbar{
        display: none;
     }
    .side-box h3 {
      margin-bottom: 10px;
      color: #f8b400;
    }
    .gainer-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 0;
      border-bottom: 1px solid #333;
    }
    .gainer-row:last-child {
      border: none;
    }
    .green {
      color: #0f0;
    }
    .red {
      color: #f33;
    }

    .myaccout-home-trade-left{
        min-height: 100%;
    }

   .gainer-row-col1{
    display: flex;
    align-items: center;
    gap: 20px;
   }
      .gainer-row-col1 img{
        width: 50px;
      }
          .gainer-row-col1-flex{
        display: flex;
        flex-direction: column;
    }
@media (max-width:786px) {
    .myaccount-home-trade{
        width: 100%;
    }
   .tab-content .coin-row {
    gap: 20px;
    font-size: 14px;
   }
   .tab-content{
    overflow: auto;
   }
   .myaccout-home-trade-left{
    margin-top: 20px;
   }
   .coin-row > *  {
  flex: 1; 
}
}

    /* ----------------------------------- */
    .myaccount-home-crypto{
        padding-block: 50px;
    }
       .myaccount-home-crypto-right{
        color: white;
       }
    .myaccount-home-crypto-right-box{
        display: flex;
        align-items: center;
        gap: 20px;
        background-color: #FFFFFF1A;
        margin-bottom: 20px;
        padding: 10px;
        border-radius: 5px;
        border: 1px solid #FFFFFF1A;
    }
        .myaccount-home-crypto-right h2{
            margin-bottom: 20px;
        }

    .myaccount-home-crypto-right-box img{
        width: 100px;
    }

.myaccount-home-crypto-left{
    height: 100%;
}
    .step-box {
      background: #0A090952;
      padding: 30px;
      border-radius: 12px;
      width: 80%;
      height: 80%;
      margin: auto;
      box-shadow: 0 0 15px rgba(0,0,0,0.6);
      display: none;
      animation: fadeIn 0.6s ease forwards;
      color: white;
    }
    .step-box.active {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
      min-height: 100%;
    }
    .input-field {
      width: 100%;
      margin-bottom: 15px;
    }
    .input-field input {
      width: 100%;
      padding: 10px;
      border: none;
      border-radius: 6px;
      background: #2a2a2a;
      color: white;
    }

      @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }


    .create-account h2{
        margin-bottom: 30px;
        text-align: center;
    }
    .create-account .input-field{
        margin-bottom: 20px;
    }
     .create-account button{
        width: fit-content;
        margin-inline: auto;
        background-color: #F0B90B;
        color: white;
        border-radius: 100px;
        padding: 10px 15px;
        cursor: pointer;
     }

     .create-account button:hover{
       box-shadow: 0px 0px 5px #F0B90B;
     }

     .verification img{
        width: 100px;
        margin-inline: auto;
     }
     .verification-inside{
       padding: 10px;
       text-align: center;
       background-color: black;
       margin-block: 20px;
     }
      .verification button{
        width: fit-content;
        padding: 12px 24px;
        border: none;
        border-radius: 100px;
        background-color: #E79740;
        color: white;
        margin-inline: auto;
      }


      .deposit-header h5{
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        background-color: black;
        color: white;
        position: relative;
      }
        .deposit-header h5 i{
            position: absolute;
            left: 10px;
        }

.deposit-input{
    margin-bottom: 10px;
}
.deposit-input label{
    padding-bottom: 5px;
}
        .deposit-input-inside{
            display: flex;
            align-items: center;
            border: 1px solid #D4D6DB;
            padding: 5px;
      
        }
        .deposit-input-inside input{
             border: none;
             height: 100%;
             background-color: #0A090952;
             width: 100%;
             color: white;
        }
      .deposit-input-inside button{
             border: none;
             background-color: #0A090952;
             color: white;
             font-size: 1.5rem;
             height: fit-content;
        }
    .deposit-button{
        display: flex;
        align-items: center;
        margin-inline: auto;
        gap: 20px;
    }
    .deposit-button button{
        padding:10px 15px;
        background-color: #E79740;
        color: white;
        border: none;
        border-radius: 100px;
    }


    .Trade img{
        width: 100%;
        height: 100%;
    }

@media (max-width:786px) {
    .myaccount-home-crypto-right{
        margin-block: 30px;
    }
}
    /* ---------------------------------------------- */
    .myaccount-home-product{
        padding-block: 50px;
    }
    .myaccount-home-product-container{
        margin-inline: 30px;
    }
    .myaccount-home-product h2{
        text-align: center;
        color: white;
        margin-bottom: 50px;
    }
    .myaccount-home-product-left-box{
        background-color: #0B0B0B;
        padding:10px 18px;
        color: white;
        text-align: left;
        border-radius: 21px;
    }
        .myaccount-home-product-left-box p{
            color: #646060;
        }
        .myaccount-home-product-left-box a{
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 20px;
            color: white;
        }
        .myaccount-home-product-right img{
            width: 100%;
        }


        /* --------------------------------- */
        .myaccount-home-earn-container{
            margin-inline: 30px;
        }
        .myaccount-home-earn-left img{
            width: 80%;
            display: flex;
            margin: auto;
        }
        .myaccount-home-earn-right{
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }
       
          .myaccount-home-earn-right p{
            margin-block: 30px;
          }
        .myaccount-home-earn-right-button{
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .myaccount-home-earn-right-button a{
            display: flex;
            align-items: center;
            gap: 20px;
            
            
        }
        @media (max-width:786px) {
            .myaccount-home-earn-container{
                margin-inline: 20px;
            }
            .myaccount-home-earn-left{
                margin-top: 20px;
            }
        }

        /* --------------------------- */
        .myaccount-home-demo{
            padding-block: 50px;
        }
         .myaccount-home-demo h2{
            color: white;
            text-align: center;
         }
          .myaccount-home-demo p{
            color: white;
            text-align: center;
            margin-top: 20px;
            margin-bottom: 40px;
          }
 .myaccount-home-demo-box {
    position: relative; /* needed for pseudo-element */
    text-align: center;
    color: white;
    background-color: #000;
    padding: 10px;
    clip-path: polygon(5% 0%, 95% 0%, 100% 5%, 100% 80%, 95% 85%, 25% 85%, 20% 100%, 40% 85%, 5% 85%, 0% 80%, 0% 5%);
    margin-bottom: 20px;
}

/* pseudo-element for border */
.myaccount-home-demo-box::before {
    content: "";
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px; /* adjust thickness */
    background: transparent;
    clip-path: polygon(5% 0%, 95% 0%, 100% 5%, 100% 80%, 95% 85%, 25% 85%, 20% 100%, 40% 85%, 5% 85%, 0% 80%, 0% 5%);
    border: 2px solid yellow; /* your border color & thickness */
    pointer-events: none; /* so it doesn't block clicks */
}
.myaccount-home-demo-box p{
    padding-bottom: 40px;
}

        .myaccount-home-demo-box img{
            width: 50px;
        }



        /* -------------------------------- */
        .myaccount-home-news-container{
            background-color: #FFFFFF21;
            color: white;
            padding: 40px;
            border-radius: 16px;
            margin-bottom: 40px;
        }
             .home-news-right{
                width: 100%;
                display: flex;
                align-items: center;
                padding: 5px;
                                background-color: #383838;
border: 1px solid #B1B1B1;
             }

             .home-news-right input{
                width: 100%;
                background-color: #383838;
                border: none;
                outline: none;
                color: white;
             }
             .home-news-right button{
                padding: 10px;
                border: none;
                width: 40%;
                background-color: #F0B90B;
                color: white;

             }

             /* ------------------------------- */
             .myaccount-home-footer{
                padding-block: 50px;
                background-color: #000510;
                 padding-inline: 50px;
                display: grid;
                grid-template-columns: repeat(5,1fr);
                color:white;
                gap: 20px;
             }
              .myaccount-home-footer h4{
                color: #F0B90B;
              }
              .myaccount-home-footer ul{
                padding-left: 0px !important;
              }
              .myaccount-home-footer ul li{
                list-style: none;
                margin-bottom: 20px;
              }
                 .myaccount-home-footer a{
                    text-decoration: none;
                    color: white;
                 }
             .myaccount-home-footer5-flex{
                display: grid;
                grid-template-columns: repeat(4,1fr);
                gap: 20px;
             }
             .myaccount-home-footer5-flex img{
                width: 30px;
             }
@media (max-width:786px) {
    .myaccount-home-footer{
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }
    .myaccount-home-footer{
        text-align: center;
        padding-inline: 20px;
    }
}

             /* -------------------------------- */
             .myaccount-home-top{
                padding-block: 50px;
                background-color: #000;
             }
.myaccount-home-top h2{
    color: white;
    text-align: center;
    margin-bottom: 40px;
}
 .myaccount-home-top-wrapper {
  width: 80%;
  margin: auto;
  overflow: hidden;
  position: relative;
}
 .myaccount-home-top-wrapper2 {
  width: 90%;
  margin: auto;
  overflow: hidden;
  position: relative;
  margin-top: 30px;
}

.slides {
  display: flex;
  gap: 20px;
  animation: scroll-left 5s linear infinite;
  will-change: transform;
  
}
.myaccount-home-top-wrapper::before{
    
    bottom:0;
    position: absolute;
    content: "";
    left: 0;
    width: 100px;
    top: 0;
  background: linear-gradient(to right, black 0%, transparent 100%);
    z-index: 1;
}
.myaccount-home-top-wrapper::after{
     bottom:0;
    position: absolute;
    content: "";
    right: 0;
    width: 100px;
    top: 0;
  background: linear-gradient(to left, black 0%, transparent 100%);
    z-index: 1;
}
.myaccount-home-top-wrapper2::before{
    
    bottom:0;
    position: absolute;
    content: "";
    left: 0;
    width: 100px;
    top: 0;
  background: linear-gradient(to right, black 0%, transparent 100%);
    z-index: 1;
}
.myaccount-home-top-wrapper2::after{
     bottom:0;
    position: absolute;
    content: "";
    right: 0;
    width: 100px;
    top: 0;
  background: linear-gradient(to left, black 0%, transparent 100%);
    z-index: 1;
}
.slides:hover {
  animation-play-state: paused; /* pause when hovering over whole ticker */
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%); /* move by half because we duplicated content */
  }
}

.myaccount-home-top-slide {
  display: flex;
  min-width: 230px;
  align-items: center;
  gap: 20px;
  color: white;
  border: 1px solid #FFFFFF1F;
  background-color: #FFFFFF1F;
  padding: 10px;
  border-radius: 12px;
  flex: 0 0 auto;
}

.myaccount-home-top-slide div h5 {
  margin-bottom: 0 !important;
}

.myaccount-home-top-slide div p {
  margin-bottom: 0 !important;
}

.myaccount-home-top-slide img {
  width: 40px;
}
@media (max-width:786px) {
    .myaccount-home-top-slide{
        min-width: fit-content;
    }
}


/* -------------- */
