* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.mobile-section { display: none; }
.desktop-section { display: block; }
@media (max-width: 768px) {
.mobile-section { display: block; }
.desktop-section { display: none; }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1e0018;
    color: #222;
    display: flex;
    height: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}
.hr-color {
    border: none;  
    height: 1px;    
    background: linear-gradient(145deg, #ad1b91, #6d0057);
}

.alert-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999; 
    width: 90%;
    max-width: 500px;
    padding: 16px 20px;
    border-radius: 16px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: slideDown 0.5s forwards;
}
.alert-success {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    color: #fff;
}
.alert-error {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    color: #fff;
}
@keyframes slideDown {
    0% {
        top: -80px;
        opacity: 0;
    }
    100% {
        top: 20px;
        opacity: 1;
    }
}


.sidebar {
  width: 280px;
  background: #070707;
  height: 100vh;
  position: fixed;
  top: 65px;
  left: 0;
  padding: 10px 18px;
  display: none;
  transform: translateX(-100%);
  flex-direction: column;
  z-index: 1000;
  overflow-y: auto;
  transition: transform 0.3s ease;
}

@media (min-width: 300px) and (max-width: 600px) {
  .sidebar {
    top: 64.5px;
  }
}


.sidebar h4 {
  font-size: 18px;
  font-weight: 600;
  color: #c250c1;
  margin-bottom: 10px;
}

.sidebar .login-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.sidebar .login-form input {
  padding: 10px 12px;
  border: 1px solid #444;
  border-color: #c250c1;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border 0.2s ease;
}

.sidebar .login-form input:focus {
  border-color: #8b5cf6;
}


.btn-side {
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s ease;
}

.p-right-sidebar {
  align-self: flex-end;
  font-size: 13px;
  color: #c250c1;
  cursor: pointer;
}

.p-center-sidebar {
  align-self: center;
  font-size: 13px;
  color: #c250c1;
  cursor: pointer;
}

.sidebar a {
  text-decoration: none;
  color: #ccc;
  font-size: 15px;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 5px;
  transition: background 0.2s ease, color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar a:hover {
  background: #333;
  color: #fff700;
}

.sidenav-games {
  margin-top: 10px;
  margin-bottom: 100px;
}

.sidenav-games ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.sidenav-games li {
  position: relative;
}

.sidenav-games img.sub-menu {
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin-right: 10px;
  color: white;
}
.sidenav-games a.active span {
  color: #fff700;
}

.sidenav-games a.active img.sub-menu {
  filter: brightness(0) saturate(100%) invert(81%) sepia(100%) 
          saturate(385%) hue-rotate(9deg) brightness(108%) contrast(105%);
}


.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: linear-gradient(145deg, #ad1b91, #6d0057);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-bottom: 5px;
}

.menu-row:hover {
  background: linear-gradient(145deg, #ad1b91, #6d0057);
}

.menu-row svg.arrow {
  transition: transform 0.3s ease;
}

.menu-row.active svg.arrow {
  transform: rotate(180deg);
}

.sidenav-games ul > li > a {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  background: linear-gradient(145deg, #ad1b91, #6d0057);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
}

.sidenav-games ul > li > a:hover {
  background: #333;
}

.all-games {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 5px;
  padding-left: 30px;
}

.all-games.open {
  max-height: 1600px;
}

.all-games li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  color: #aaa;
  border-radius: 6px;
  font-size: 16px;
  transition: background 0.2s ease, color 0.2s ease;
  margin-left: 25px;
}

.all-games li a:hover {
  background: #333;
  color: #fff;
}

.all-games img.sub-menu {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.main {
    margin-left: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

.navbar {
    background-color: #450137;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 16px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 999;
    top: 0;
    position: sticky;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    height: 90px;
}

.toggle-btn {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #de08cc;
}

.nav-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center; }

.nav-form .input-group {
    display: flex;
    gap: 8px;
}

.nav-form input {
    flex: 1;
    height: 32px;
    padding: 0 10px;
    background: #111;
    border: 1px solid #c250c1;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
    transition: 0.2s;
    color: #fff;
}

.nav-form input:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 2px rgba(13,110,253,0.2);
    color: #fff;
}

.button-group {
    display: flex;
    gap: 10px;
    justify-content: start;
    align-items: center;
}

.btn-nav {
    border: none;
    border-radius: 6px;
    height: 32px;
    padding: 0 18px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-google {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    color: #000;
    border: 1px solid #ccc;
}
.google-icon {
    width: 18px;
    height: 18px;
}
.text-lupa {
    margin-left: auto;
    font-size: 14px;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    transition: color 0.2s ease;
}
.text-lupa:hover {
    color: #fff700;
}
.btn-primary {
    background: linear-gradient(145deg, #ad1b91, #6d0057);
    color: #fff;
}
.btn-secondary {
    background: linear-gradient(145deg, #614a5e, #910202);
    transition: background 0.2s ease, color 0.2s ease;
    color: #fff;
}
.btn-primary:hover {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
}
.btn-secondary:hover {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    color: #fff;
}
.content {
    flex: 1;
    padding: 30px 25px;
}
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
  }

  .sidebar.show {
    transform: translateX(0);
  }

  .toggle-btn {
    display: block;
  }

  .main.sidebar-open {
    margin-left: 0;
  }
}
@media (max-width: 600px) {
.nav-form .input-group {
    flex-direction: column;
}
.button-group {
    justify-content: center;
    }
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 900;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay.show {
    display: block;
    opacity: 1;
}
@media (max-width: 768px) {
    .nav-form, 
    .button-group {
        display: none;
    }

    .toggle-btn {
        display: block;
    }

    .nav-container {
        justify-content: space-between; 
    }
    .nav-logo {
        display: block;
        height: 40px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .topbar-right-container {
    display: none;
}
}

.sidebar p {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    padding: 4px 0;
    letter-spacing: 0.2px;
}


.sidebar-balance {
    margin: 0px;
    margin-bottom: 8px;
    text-align: center;
    width: 100%;
}

.sidebar-coin-balance {
    background: linear-gradient(145deg, rgba(173,27,145,0.15), rgba(109,0,87,0.15));
    border: 1px solid #ad1b91;
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.25s ease;
}

.sidebar-coin-balance:hover {
    background: linear-gradient(145deg, rgba(173,27,145,0.25), rgba(109,0,87,0.25));
    transform: scale(1.02);
}

.sidebar-coin-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.sidebar-total_balance {
    flex-grow: 1;
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.sidebar-reload-btn {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.sidebar-reload-btn:hover {
    transform: rotate(20deg);
}

.sidebar-reload-btn.spin {
    animation: spin 1s linear;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sidebar-user-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    justify-content: center;
    align-items: stretch;
    margin: 0px;
    margin-bottom: 8px;
    width: 100%;
    text-align: center;
}

.user-menu-item {
    background: linear-gradient(145deg, rgba(173,27,145,0.12), rgba(109,0,87,0.12));
    border: 1px solid rgba(173,27,145,0.4);
    border-radius: 10px;
    padding: 0px;
    transition: all 0.25s ease;
    box-shadow: 0 0 6px rgba(173,27,145,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 58px;
}

.user-menu-item:hover {
    background: linear-gradient(145deg, rgba(173,27,145,0.25), rgba(109,0,87,0.25));
    box-shadow: 0 0 10px rgba(173,27,145,0.5);
    color: #fff700;
}

.user-menu-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 0px;
}

.user-menu-item span {
    color: #fff;
    font-size: 10px;
}

.user-menu-item a:hover {
    color: #fff700;
}


.user-menu-item img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.user-menu-item:hover img {
    transform: scale(1.1);
}





@media (min-width: 768px) {
    .topbar-right-container {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 6px;
        padding: 0px;
    }

    .topbar-coins {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .reload-btn {
        width: 16px;
        height: 16px;
        cursor: pointer;
        transition: transform 0.2s ease;
    }
    
    .reload-btn.spin {
        animation: spin 1s linear;
    }
    
    @keyframes spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .reload-btn:hover {
        transform: rotate(20deg);
    }

    .coin-icon {
        width: 24px;
        height: 24px;
    }
    
    .topbar-username {
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        background-color: transparent;
        border: 1px solid #ad1b91;
        padding: 6px 12px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 120px;
        text-align: center;
        box-shadow: 0 0 6px rgba(173,27,145,0.3);
        transition: all 0.2s ease;
    }

    .topbar-username:hover {
        background-color: rgba(173,27,145,0.1);
        border-color: #8b5cf6;
    }
    .coin-balance {
        color: #fff;
        font-weight: bold;
        font-size: 14px;
        border: 1px solid #ad1b91;
        padding: 6px 12px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(145deg, rgba(173,27,145,0.1), rgba(109,0,87,0.1));
        box-shadow: 0 0 6px rgba(173,27,145,0.5), 0 0 12px rgba(109,0,87,0.3);
        transition: all 0.2s ease;
    }

    .coin-balance:hover {
        background: linear-gradient(145deg, rgba(173,27,145,0.2), rgba(109,0,87,0.2));
        box-shadow: 0 0 8px rgba(173,27,145,0.7), 0 0 14px rgba(109,0,87,0.5);
        transform: scale(1.05);
    }

    .profile-btn {
        background-color: transparent;
        color: #fff;
        border: 1px solid #ad1b91;
        padding: 6px 12px;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: all 0.2s ease;
    }

    .profile-btn img {
        width: 16px;
        height: 16px;
        vertical-align: middle;
    }

    .profile-btn:hover {
        background-color: rgba(173,27,145,0.1);
        border-color: #8b5cf6;
    }

    .topbar-actions {
        display: flex;
        gap: 5px;
    }

    .topbar-actions button {
        background-color: transparent;
        color: #fff;
        border: 1px solid #ad1b91;
        padding: 6px 12px;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .topbar-actions button:hover {
        background: linear-gradient(145deg, #8b5cf6, #ec4899);
        border-color: #8b5cf6;
    }

    .topbar-actions img {
        width: 16px;
        height: 16px;
        vertical-align: middle;
    }
}




/* =========================
   Menu Navbar
========================= */


.navbar-menu {
  position: sticky;
  background: linear-gradient(145deg, #ad1b91, #1e0018);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 8px 0;
  z-index: 100;
  top: 122px;
}
.navbar-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 45px;
  margin: 0;
  padding: 0;
}

.navbar-menu li {
  position: relative;
}

.navbar-menu a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease, border-bottom 0.2s ease;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

.dropdown-toggle:hover {
  color: #fff700;
  border-bottom: 2px solid #fff700;
  transform: scale(1.1);
}

.bottom-color:hover {
  color: #fff700;
  border-bottom: 2px solid #ec4899;
}

.navbar-menu li.active a {
  color: #fff700;
  border-bottom: 2px solid #fff700;
}


.dropdown-menu {
  position: fixed;
  top: 158px;
  left: 0;
  width: 100%;
  /*width: 100vw;*/
  background: rgba(10,10,10,0.95);
  box-shadow: 0 1px 6px rgba(0,0,0,0.35);
  border-radius: 0 0 12px 12px;
  padding: 40px 60px;
  box-sizing: border-box;
  z-index: 9999;
  display: none;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.25s ease;
  pointer-events: none;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu__detail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  justify-items: center;
}

.dropdown-menu__detail-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 170px; 
}

.dropdown-menu__detail-list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
  border-radius: 10px;
  padding: 10px;
}

.dropdown-menu__detail-list a:hover {
  background: rgba(236, 72, 153, 0.15);
  transform: translateY(-5px);
}

.img-thumbnail {
  width: 200px;
  height: 110px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
  position: relative;
}

.img-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    margin-top: 4px;
    padding: 6px 12px; 
    background: linear-gradient(145deg, #ad1b91, #1e0018); 
    color: #fff; 
    transition: background 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    width: 100%;
    border-top-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.dropdown-menu__detail-list a:hover .title {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    transform: translateY(-2px);
}


.dropdown-menu__detail-list .inactive img {
    filter: grayscale(100%) brightness(60%);
}


.dropdown-menu__detail-list .inactive {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-menu__detail-list .inactive:hover {
    background: none;
    transform: none;
    cursor: default;
}

.flex-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}



.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: 700;
    background: rgba(0,0,0,0.6);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    pointer-events: none;
}


@media (max-width: 1024px) {
  .dropdown-menu {
    padding: 30px 20px;
  }
  .img-thumbnail {
    width: 160px;
    height: 90px;
  }
}

@media (max-width: 768px) {
  .dropdown-menu__detail {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
  }
  .img-thumbnail {
    width: 140px;
    height: 80px;
  }
}
   
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }
    
    ul.menu-2-mobile a.active span {
        color: #fff700;
        border-bottom: 2px solid #fff700;
    }

    ul.menu-2-mobile {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        width: 100%;
        max-width: 100vw;
        background-color: #1e0018;
        border-color: #333;
        border-width: 1px 0;
        padding: 8px 8px;
        gap: 8px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        position: relative;
        z-index: 2;
        list-style: none;
    }

    ul.menu-2-mobile::-webkit-scrollbar {
        display: none;
    }

    ul.menu-2-mobile li {
        flex: 0 0 auto;
        width: 70px;
        text-align: center;
        margin-top: 6px;
        flex-direction: column;
        align-items: center;
        display: flex;
    }

    ul.menu-2-mobile a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        text-align: center;
        width: 100%;
    }

    ul.menu-2-mobile a img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        margin-bottom: 4px;
    }

    ul.menu-2-mobile span {
        font-size: 14px;
        white-space: nowrap;
        display: block;
        text-align: center;
        width: 100%;
    }

    ul.menu-2-mobile a:hover span {
        color: #fff700;
    }
}

/* =========================
   TICKER TOAST
========================= */

.navbar-ticker {
    background: #1e0018;
    padding: 6px 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    gap: 10px;
}

.ticker-left svg,
.ticker-icon svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.ticker-icon {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ticker-icon:hover svg {
    transform: scale(1.2);
}

.ticker-time {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    font-family: monospace;
}

.ticker-text {
    flex: 1;
}

.ticker-text marquee {
    font-size: 14px;
    color: #fff;
}

.navbar-ticker-mobile {
    display: none;
    background: #000;
    color: #000;
    padding: 8px 12px;
    font-size: 13px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.ticker-mobile-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticker-mobile-icon {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.ticker-mobile-icon svg {
    stroke: #de08cc;
}

.ticker-mobile-label {
    font-weight: 600;
    color: #fff;
}

.ticker-mobile-wrapper marquee {
    flex: 1;
    color: #fff;
    font-size: 13px;
    font-style: bold;
}


@media (max-width: 768px) {
    .navbar-ticker {
        display: none;
    }
    .navbar-ticker-mobile {
        display: block;
    }
}


/* =========================
   BANNER SLIDER
========================= */

.banner-slider {
    position: relative;
    width: 100%;
    max-width: 2200px;
    height: 620px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.banner-slider .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

.banner-slider .slides img.slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
}


.banner-slider .dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.banner-slider .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #bbb;
    cursor: pointer;
    transition: background 0.3s ease;
}

.banner-slider .dot.active {
    background: #c250c1;
}


.banner-slider { display: flex; }
.banner-slider-mobile { display: none; }
.quick-btn-mobile { display: none; }

@media (min-width: 769px) {
    .banner-slider {
        height: 100%;
    }
}
@media (max-width: 768px) {
    .banner-slider { display: none; }
    .banner-slider-mobile { 
        display: flex; 
        position: relative;
        width: 100%;
        max-width: 100%; 
        height: auto;
        margin: 0 auto;
        overflow: hidden;
        box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    }

    .banner-slider-mobile .slides-mobile {
        display: flex;
        transition: transform 0.4s ease-in-out;
        width: 100%;
        height: auto;
    }

    .banner-slider-mobile .slides-mobile img.slide-mobile {
        flex-shrink: 0;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    .banner-slider-mobile .dots-mobile {
        position: absolute;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 5px;
    }

    .banner-slider-mobile .dot-mobile {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
    }

    .banner-slider-mobile .dot-mobile.active {
        background: #ec4899;
    }
}
@media (max-width: 768px) {

    .quick-btn-mobile {
        display: flex
    }
    .quick-btn-mobile a {
        flex: 1;
        text-align: center;
        padding: 10px 0;
        font-weight: 700;
        letter-spacing: 1px;
        background: linear-gradient(145deg, #8b5cf6, #ec4899);
        transition: background 0.2s ease, color 0.2s ease;
        color: #fff;
        text-decoration: none;

    }
    .quick-btn-mobile a:last-child {
        background: linear-gradient(145deg, #614a5e, #910202);
        color: #fff;
        text-decoration: none;
        border: none;
    }    
    
}

/* =========================
   TOTO
========================= */


.container-pool {
  max-width: 1200px;
  overflow-x: auto;
  padding: 10px;
  background-color: #1e0018;
  margin: 0 auto;
}

.container-pool .pool-list-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 12px;
  padding-top: 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.container-pool .pool-list-grid::-webkit-scrollbar {
  display: none;
}

.container-pool .pool-list-grid .item {
  flex: 0 0 auto;
  width: 160px;
  text-align: center;
  border-radius: 8px;
  background-color: #1e1e1e;
  transition: transform 0.2s ease, background 0.2s ease;
}

.container-pool .pool-list-grid .item:hover {
  transform: translateY(-3px);
  background-color: #2a0c30;
}

.container-pool .pool-list-grid .box-pull {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  padding-top: 8px;
  border: 1px solid #7b0062;
  border-radius: 8px;
  background-color: #12000f;
}

.container-pool .pull-head {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.container-pool .pull-body span {
  font-size: 22px;
  font-weight: bold;
  color: #ec4899;
}

.container-pool .pull-body p {
  font-size: 14px;
  font-weight: 700;
  color: #ff4d4f;
  margin: 0;
}

.container-pool .pull-foot {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  margin-top: 6px;
  padding: 6px 12px;
  background: linear-gradient(145deg, #ad1b91, #1e0018);
  border-radius: 0 0 6px 6px;
}

.container-pool .pool-list-grid {
    scroll-behavior: smooth;
}


@media (max-width: 768px) {
  .container-pool-toto-mobile {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .container-pool-toto-mobile .pool-list-grid-toto-mobile {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    width: 100%;
    max-width: 100vw;
    background-color: #1e0018;
    border: 1px solid #ec4899;
    padding: 10px 8px;
    gap: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  .container-pool-toto-mobile .pool-list-grid-toto-mobile::-webkit-scrollbar {
    display: none;
  }

  .container-pool-toto-mobile .pool-list-grid-toto-mobile .item-toto-mobile {
    flex: 0 0 auto;
    width: 140px;
    text-align: center;
    border-radius: 6px;
    background-color: #1e1e1e;
    white-space: normal; 
  }

  .container-pool-toto-mobile .pool-list-grid-toto-mobile .box-pull-toto-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    padding: 0px;
    border: 1px solid #7b0062;
    border-radius: 8px;
    background-color: #1e1e1e;
  }

  .container-pool-toto-mobile .pool-list-grid-toto-mobile .pull-head-toto-mobile {
    font-size: 14px;
    padding: 12px 8px;
    font-weight: 600;
    color: #ccc;
    margin-bottom: -10px;
  }

  .container-pool-toto-mobile .pool-list-grid-toto-mobile .pull-body-toto-mobile {
    display: flex;
    align-items: center;    
    justify-content: center;
    height: 26px;
    margin: 0;    
  }

  .container-pool-toto-mobile .pool-list-grid-toto-mobile .pull-body-toto-mobile span {
    font-size: 20px;
    font-weight: bold;
    color: #ec4899;
    line-height: 1;   
  }
  
  .container-pool-toto-mobile .pool-list-grid-toto-mobile .pull-body-toto-mobile p {
    color: #ff4d4f;  
    font-weight: 700; 
    font-size: 14px;
    animation: none;
  }
  .container-pool-toto-mobile .pool-list-grid-toto-mobile .pull-foot-toto-mobile {
    font-size: 11px;
    color: #fff; 
    margin-top: 6px;
    background: linear-gradient(145deg, #ad1b91, #1e0018);
    padding: 6px 14px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    width: 100%;
    text-align: center;
    font-weight: 600;
    box-sizing: border-box;
  }  
}


/* =========================
   PROGRESSIVE JACKPOT
========================= */
.benefits.jackpot-home {
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.benefits.jackpot-home .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 20px;
}

.progressive-jackpot .jackpot-container {
    position: relative;
    display: inline-block;
}

.progressive-jackpot .jackpot-container img.jackpot-image {
    display: block;
    max-width: 100%;
    height: auto;
}

.progressive-jackpot .jackpotNumber {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(0,0,0,0.8);
    letter-spacing: 2px;
    white-space: nowrap;
    z-index: 2;
}

.jackpotNumber .currency {
    font-size: 3rem;
    font-weight: 700;
    margin-right: -6px;
    opacity: 0.9;
}

/* Desktop visible */
.benefits.jackpot-home.desktop {
    display: block;
}

/* Mobile hidden by default */
.benefits.jackpot-home.mobile {
    display: none;
}

/* =========================
   RESPONSIVE (MOBILE)
========================= */
@media (max-width: 768px) {
    .benefits.jackpot-home.desktop {
        display: none;
    }

    .benefits.jackpot-home.mobile {
        display: block;
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }

    .progressive-jackpot .jackpotNumber {
        font-size: 1.1rem;
        letter-spacing: 1px;
        top: 60%;
        flex-direction: row;
    }

    .jackpotNumber .currency {
        font-size: 1.1rem;
        margin-right: -5px;
        top: 60%;
    }
}




/* =========================
   List Games
========================= */


.featured.desktop  {
    padding: 20px;
    color: #fff;
    font-family: Arial, sans-serif;
}

.featured .wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.home-ggegrids {
    margin-bottom: 10px;
}

.home-ggegrids .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.home-ggegrids .title .section-label {
    font-size: 20px;
    font-weight: bold;
}

.home-ggegrids .title .highlight {
    color: #fff;
    margin-left: 5px;
}

.home-ggegrids .title .line {
    flex: 1;
    height: 2px;
    background: #ec4899;
    margin: 0 10px;
}

.home-ggegrids .title .view-all {
    display: inline-block;
    padding: 6px 15px;
    background: linear-gradient(145deg, #ad1b91, #1e0018);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 26px;
    transition: background 0.3s, transform 0.2s;
}

.home-ggegrids .title .view-all:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}


.home-ggegrids .ggegrid-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
}

.ggegrid-box {
    display: flex;
    flex-direction: column;
    background: #111;
    border: 2px solid #7b0062;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    text-decoration: none;
}

.ggegrid-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.ggegrid-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.ggegrid-name {
    display: block;
    padding: 10px 5px;
    font-size: 14px;
    color: #fff;
    background: #1e0018;
}

@media (max-width: 768px) {
  .featured.desktop {
    display: none;
  }
  .featured.mobile {
    display: block;
    padding: 10px;
    font-family: Arial, sans-serif;
    max-width: 100vw;
    margin-top: -15px;
  }
  .home-ggegrids .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    gap: 5px;
    margin-bottom: 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .section-label {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
  }

  .highlight {
    color: #ec4899;
  }

  .home-ggegrids .title .view-all {
    font-size: 8px;
    padding: 10px 10px;
    border-radius: 20px;
    background: linear-gradient(145deg, #ad1b91, #1e0018);
    color: #fff;
    text-decoration: none;
    margin-top: 5px;
    align-items: center;
    margin: 0;
  }
  
  .home-ggegrids .title .section-label {
    font-size: 16px;
    font-weight: bold;
  }

  .ggegrid-items.horizontal-scroll {
    display: flex;
    flex-direction: row;
    overflow-x: auto;     
    overflow-y: hidden;
    gap: 10px;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
  }

  .ggegrid-items.horizontal-scroll .ggegrid-box {
    flex: 0 0 auto;
    width: 120px;
    background: #111;
    border: 2px solid #7b0062;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  }

  .ggegrid-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    border-color: #8b5cf6;
  }

  .ggegrid-box .ggegrid-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .ggegrid-name {
    font-size: 12px;
    padding: 5px 2px;
    color: #fff;
  }
}


/* =========================
   INFO PELAYANAN
========================= */



.services {
    color: #fff;
    font-family: Arial, sans-serif;
}

.services .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.services .box {
    background: #12000f;
    border-radius: 12px;
    padding: 20px;
    flex: 1 1 350px;
    min-width: 300px;
}

.services .box h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.services .text-color {
    color: #ec4899;
}

.services .text-white {
    color: #fff;
}

.deposit-withdraw {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card {
    background: linear-gradient(145deg, #ad1b91, #1e0018);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.card-header {
    display: flex;
    align-items: center;
    width: 100%;
}

.circle-wrp .ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0d6efd33;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-right: 0;
}

.circle-wrp .icon {
    width: 40px;
    height: 40px;
}

.text-wrp {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-left: 10px;
}

.text-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-bg.title-servicess {
    font-weight: bold;
    margin-bottom: 4px;
}

.text-time-new span {
    font-weight: bold;
}

.progress {
    height: 6px;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #ec4899;
}

.text-note {
    font-size: 12px;
    color: #fff;
    margin-top: 5px;
}


.box.half .download {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.box.half .download img {
    max-width: 75%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.member-service .member-links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  max-height: 240px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory; 
  -webkit-overflow-scrolling: touch; 
  scrollbar-width: none; 
}

.member-service .member-links::-webkit-scrollbar {
  display: none; 
}


.member-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(145deg, #ad1b91, #1e0018);
    padding: 10px 15px;
    min-width: 340px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

.member-links a:hover {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
}

.member-links i {
    font-size: 20px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  gap: 6px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  background-color: #555;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.slider-dots .dot.active {
  background: linear-gradient(145deg, #8b5cf6, #ec4899);
}


.services-mobile {
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 0px;
  justify-content: center;
}

.wrapper-mobile {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.box-mobile {
  border-radius: 10px;
  padding: 8px;
  margin-top: -6px;
}

.box-mobile h4 {
  font-size: 16px;
  text-align: center;
  margin-bottom: 10px;
  align-items: center;
}

.text-color-mobile {
  color: #ec4899;
}

.text-white-mobile {
  color: #fff;
}

.deposit-withdraw-mobile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-items: stretch;
}

.card-mobile {
  background: linear-gradient(145deg, #ad1b91, #1e0018);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-header-mobile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.circle-wrp-mobile .ring-mobile {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #0d6efd33;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-mobile {
  width: 28px;
  height: 28px;
}

.text-wrp-mobile {
  flex: 1;
}

.text-row-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-bg-mobile.title-mobile {
  font-weight: bold;
  font-size: 9px;
}

.text-bg-mobile.title-mobile-rate {
  font-weight: bold;
  font-size: 12px;
}



.text-time-new-mobile {
  font-size: 12px;
}

.progress-mobile {
  height: 5px;
  background: #333;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 5px;
}

.progress-bar-mobile {
  height: 100%;
  background: #ec4899;
}

.services-mobile {
    display: none;
}

@media (min-width: 992px) and (max-width: 1100px) {
    .services .wrapper {
        padding: 20px 0px;
    }
}

@media (max-width: 768px) {
.services {
    display: none;
}
.services-mobile {
    display: flex;
}
}



/* =========================
   INFO PAYMENT
========================= */
.payment-method {
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 25px 0;
}

.payment-method .wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.box-row-title {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.box-title {
    font-size: 20px;
    display: flex;
    align-items: center;
}

.text-white {
    color: #fff;
    margin-right: 6px;
    font-weight: bold;
}

.text-color {
    color: #ec4899;
    font-weight: bold;
}

.box-hr {
    border: 0;
    border-top: 2px solid #ec4899;
    margin: 15px 0;
}

.list-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.button-pay {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(145deg, #ad1b91, #1e0018);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
    flex: 1 1 250px;
}

.button-pay:hover {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
}

.button-pay .icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.button-pay .text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.text-title {
    font-weight: bold;
    margin: 0;
    color: #fff;
    text-align: left;
    margin-bottom: 4px;
    font-size: 12px;
}

.text-description {
    font-size: 12px;
    color: #ccc;
    margin: 0;
}

.information-pay {
    display: flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(145deg, #ad1b91, #1e0018);
    padding: 10px 15px;
    border-radius: 12px;
    flex: 1 1 250px;
    justify-content: center; 
}
.information-pay:hover {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
}

.information-pay .text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.information-pay .icon {
    width: 30px;
    height: 30px;
}

.img {
  display: flex;
  justify-content: center; 
  align-items: center;
}
.asf {
  display: flex;
  justify-content: center; 
  align-items: center;
  width: 100%;
  height: 45px;
}


.white-icon {
  filter: brightness(0) invert(0.9);
  width: 22px;
  height: 22px;
  opacity: 1;
  color: white;
}

@media (max-width: 768px) {
    .list-wrapper {
        flex-direction: column;
    }
    .button-pay, .information-pay {
        flex: 1 1 100%;
    }

   .payment-method {
     display: none
   } 
    
   .payment-method-mobile {
     display: flex
   }    
    
}

.payment-method-mobile {
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 4px;
}

.box-mobile-pay {
  border-radius: 12px;
  padding: 4px;
}

.box-row-title-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
}

.box-title-mobile {
  font-size: 15px;
  display: flex;
  align-items: center;
  text-align: center;
}

.text-white-mobile {
  color: #fff;
  margin-right: 4px;
  font-weight: bold;
}

.text-color-mobile {
  color: #ec4899;
  font-weight: bold;
}

.box-hr-mobile {
  border: 0;
  border-top: 2px solid #ec4899;
  margin: 10px 0 15px;
}

.grid-pay-mobile {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 12px;
  justify-items: center;
  align-items: stretch;
}
.button-pay-mobile {
  background: linear-gradient(145deg, #ad1b91, #1e0018);
  border-radius: 8px;
  padding: 8px 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  transition: background 0.3s, transform 0.2s;
  width: 100%;
  min-width: 0; 
}

.button-pay-mobile:hover {
  background: linear-gradient(145deg, #8b5cf6, #ec4899);
}

.icon-mobile-pay {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.white-icon {
  filter: brightness(0) invert(0.9);
  width: 22px;
  height: 22px;
  opacity: 1;
  color: white;
}

.text-title-mobile {
  font-weight: bold;
  color: #fff;
  margin: 0;
  font-size: 11px;
  line-height: 1.3;
  text-align: center;
}

.information-pay-mobile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(145deg, #ad1b91, #1e0018);
  padding: 12px;
  border-radius: 10px;
}

.information-mobile-engine {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(145deg, #ad1b91, #1e0018);
  padding: 12px;
  border-radius: 10px;
  margin-top: 6px;
}

.info-row-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.icons-group-mobile {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-wide-mobile {
  width: 100px;
  height: auto;
}

.text-description-mobile {
  font-size: 11px;
  color: #ccc;
  margin: 0;
}

.icon-mobile-engine {
  display: flex;
  justify-content: center; 
  align-items: center;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .payment-method-mobile {
    display: none;
  }
}

@media (min-width: 820px) and (max-width: 830px) {
    .navbar-menu {
        top: 121px;
    }
    .navbar-menu ul {
        gap: 15px;
    }
    .payment-method {
        padding: 25px 20px;
    }
    .information-pay {
        padding: 8px 12px;
        gap: 10px;
        border-radius: 10px;
        flex-wrap: wrap;
    }
    .img, .asf {
        height: 38px;
        width: auto;
    }    
}

/* =========================
   INFO PAYMENT - iPad Pro 1024x1366
========================= */
@media (min-width: 992px) and (max-width: 1100px) {
    .payment-method {
        padding: 25px 20px;
    }
    
    .list-wrapper {
        gap: 15px;
    }

    .button-pay {
        flex: 1 1 220px;
        padding: 12px 16px;
        gap: 10px;
    }

    .button-pay .icon {
        width: 26px;
        height: 26px;
    }

    .text-title {
        font-size: 11px;
    }

    .text-description {
        font-size: 11px;
    }

    .information-pay {
        padding: 8px 12px;
        gap: 10px;
        border-radius: 10px;
        flex-wrap: wrap;
    }

    .information-pay .icon {
        width: 26px;
        height: 26px;
    }

    .information-pay .text {
        flex-direction: column;
        justify-content: center;
    }

    .img, .asf {
        height: 38px;
        width: auto;
    }

    .white-icon {
        width: 20px;
        height: 20px;
    }

    .box-title {
        font-size: 18px;
    }
}


/* =========================
   Bottom Footer
========================= */


.nav-bottom {
    background-color: #12000f;
    padding: 20px 0;
    font-family: Arial, sans-serif;
}
.nav-bottom ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin: 0;
}
.nav-bottom ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}
.nav-bottom ul li a:hover {
    color: #fff700;
}
@media (max-width: 768px) {
    .nav-bottom ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .nav-bottom {
        display: none;
    }    
    
}

/* =========================
   PROMOTIONS
========================= */


.promotion.info {
   max-width: 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  background-color: #12000f;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 15px;
  margin-top: 10px;
}
.info__left {
  background: #1e0018;
  border-radius: 10px;
  padding: 15px;
  overflow-y: auto;
  max-height: 80vh;
}

.promotab {
  list-style: none;
  padding: 0;
  margin: 0;
}

.promotab li {
  margin-bottom: 8px;
}

.promotab a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  background: #2b0024;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}

.promotab li.active a,
.promotab a:hover {
  background: linear-gradient(145deg, #ad1b91, #1e0018);
}
.info__right {
  background: #1e0018;
  border-radius: 10px;
  padding: 20px;
}

.ptbox {
  display: none;
  border: 1px solid #3a0030;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.ptbox.active {
  display: block;
}

.ptbox img {
  width: 100%;
  height: auto;
  display: block;
}

.promotion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2b0024;
  padding: 10px 15px;
  font-weight: bold;
  border-top: 1px solid #3a0030;
}

.detail-btn {
  background: linear-gradient(145deg, #ad1b91, #1e0018);
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  color: #fff;
  font-size: 13px;
  transition: 0.2s;
}

.detail-btn:hover {
  background: linear-gradient(145deg, #8b5cf6, #ec4899);
}
.panel-content {
  display: none;
  background: #190014;
  padding: 15px;
}

.ptbox.show-detail .panel-content {
  display: block;
}

.panel-body ul {
  padding-left: 18px;
  list-style: disc;
}

.panel-body li {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .promotion.info {
    grid-template-columns: 1fr;
  }

  .info__left {
    max-height: none;
  }
}

.promotion-mobile {
  background: #12000f;
  color: #fff;
  padding: 15px;
  border-radius: 12px;
  max-width: 100%;
  margin: 10px auto;
}
.dropdown-wrapper {
  position: relative;
  user-select: none;
}

.dropdown-selected {
  background: #1e0018;
  border: 1px solid #3a0030;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px #ad1b91;
}

.dropdown-selected:hover {
  border-color: #ad1b91;
  box-shadow: 0 0 5px #ad1b91;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.dropdown-wrapper.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-options {
  list-style: none;
  position: absolute;
  width: 100%;
  background: #1e0018;
  border: 1px solid #3a0030;
  border-radius: 8px;
  margin-top: 6px;
  padding: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10;
}

.dropdown-wrapper.active .dropdown-options {
  max-height: 200px;
  opacity: 1;
}

.dropdown-options li {
  padding: 10px 14px;
  border-bottom: 1px solid #2b0024;
  cursor: pointer;
  transition: background 0.2s;
}

.dropdown-options li:last-child {
  border-bottom: none;
}

.dropdown-options li:hover,
.dropdown-options li.active {
  background: #ad1b91;
}
.promolist-mobile .ptbox-mobile {
  display: none;
  background: #1e0018;
  border-radius: 10px;
  margin-bottom: 15px;
  margin-top: 15px;
  overflow: hidden;
  border: 1px solid #3a0030;
}

.promolist-mobile .ptbox-mobile.active {
  display: block;
}

.promolist-mobile .ptbox-mobile img {
  width: 100%;
  height: auto;
  display: block;
}

.promotion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2b0024;
  padding: 10px 15px;
  font-weight: bold;
  border-top: 1px solid #3a0030;
}

.detail-btn-mobile {
  background: linear-gradient(145deg, #ad1b91, #1e0018);
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  color: #fff;
  font-size: 12px;
}

.detail-btn-mobile:hover {
  background: linear-gradient(145deg, #8b5cf6, #ec4899);
}

.panel-content-mobile {
  display: none;
  background: #190014;
  padding: 12px;
}

.ptbox-mobile.show-detail .panel-content-mobile {
  display: block;
}

.panel-content-mobile ul {
  padding-left: 18px;
  list-style: disc;
}

@media (min-width: 769px) {
  .promotion-mobile {
    display: none;
  }
}






/* =========================
   PROFILE ACCOUNT & RESET PASSWORD & REFERRAL
========================= */


.user-standard-main-content-profile-desktop {
    background-color: #12000f;
    color: #fff;
    border-radius: 8px;
    padding: 0PX;
    display: flex;
    flex-direction: column;
    gap: 0px;
    font-family: 'Arial', sans-serif;
}

.user-top-tab-container-profile-desktop {
    display: flex;
    gap: 5px;
}


.user-tab-link-profile-desktop {
    padding: 10px 15px;
    background-color: #1c1c1c;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-tab-link-profile-desktop[data-active="true"] {
    background: linear-gradient(145deg, #ad1b91, #6d0057);
}

.user-tab-link-profile-desktop:hover {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    color: #fff;
}

.user-tab-content-container-profile-desktop {
    display: grid;
    gap: 4px;
    padding: 10px;
}
.user-standard-bar-profile-desktop {
    background: linear-gradient(145deg, #ad1b91, #6d0057);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.user-field-profile-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.user-profile-image-wrapper-desktop {
    flex-shrink: 0;
}

.user-profile-image-profile-desktop {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.user-info-profile-desktop {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.user-email-profile-desktop {
    font-size: 0.85rem;
    color: #ccc;
}

.user-actions-profile-desktop {
    display: flex;
    gap: 10px;
    margin-left: auto;
    align-items: center;
}

.user-action-item-profile-desktop a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    color: #fff;
    font-size: 0.75rem;

    width: 100px;
    box-sizing: border-box;
    padding: 8px 12px;
    border: 2px solid #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.user-action-item-profile-desktop a:hover {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    border-color: #ad1b91;
}

.user-action-item-profile-desktop img {
    width: 30px;
    height: 30px;
}


.user-username-profile-desktop {
    font-weight: bold;
    font-size: 2rem;
}

.user-referral-profile-desktop {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.user-referral-label-profile-desktop {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 3px;
}

.user-referral-code-container-profile-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 2px solid #fff;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.05);
    min-width: 180px;
    justify-content: center;
    border: 1px dashed #fff;
}

.user-referral-code-profile-desktop {
    font-family: monospace;
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
}

.user-copy-referral-profile-desktop {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.user-copy-referral-profile-desktop img {
    width: 20px;
    height: 20px;
}

.user-standard-form-title-profile-desktop {
    background:linear-gradient(145deg, #ad1b91, #1e0018);
    color: #fff;
    padding: 15px 20px;
    line-height: 16px;
    font-size: 18px;
    border-radius: 8px;
    font-weight: bold;
}
.user-standard-content-info-profile-desktop {
    margin-bottom: 20px;
    border-top: 0;
    display: flex;
    gap: 10px;
}

.user-standard-content-block-profile-desktop:last-child {
  flex: 1.2; 
  background-color: #0a1849;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 8px;
}

.user-standard-content-block-profile-desktop {
    background: linear-gradient(145deg, #ad1b91, #6d0057);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
}

.user-table-profile-summary-table-profile-desktop {
    border: 0;
    vertical-align: middle;
    color: #fff;
}

.user-banking-details-header-profile-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    padding: 5px;   
}
.user-banking-details-header-profile-desktop label {
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}

.user-banking-details-header-profile-desktop a img {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    height: 20px;
    width: auto;
}

.user-banking-details-header-profile-desktop a {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    border-radius: 5px;
    padding: 2px 2px 2px 4px;
}


.user-table-profile-summary-table-profile-desktop {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.user-table-profile-summary-table-profile-desktop th,
.user-table-profile-summary-table-profile-desktop td {
  padding: 6px 8px;
  vertical-align: middle;
}

.user-table-profile-summary-table-profile-desktop th {
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

.user-table-profile-summary-table-profile-desktop td:first-of-type {
  width: 10px;
  text-align: center;
}

.user-table-profile-summary-table-profile-desktop td:last-of-type {
  text-align: left;
  font-weight: 500;
}

.user-table-profile-summary-table-profile-desktop tr {
  line-height: 1.6;
}
.user-bank-info-container-profile-desktop {
  background: linear-gradient(145deg, #8b5cf6, #ec4899);
  border-radius: 10px;
  box-shadow: 0 0 8px rgb(141 2 114);
  padding: 16px 20px 30px; 
  width: calc(100% - 20px);
  max-width: none;
  margin: 0 10px;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #f1f1f1;
  position: relative;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.user-bank-info-container-profile-desktop .user-account-name-profile-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  color: #fff;
}


.user-carousel-inner-profile-desktop {
    display: flex;
    overflow: hidden;
    position: relative;
}

.user-bank-info-block-profile-desktop {
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
}



.user-bank-info-container-profile-desktop .user-account-name-profile-desktop img.user-bank-icon-profile-desktop {
  width: 70px;
  height: auto;
  object-fit: contain;
  margin-left: 8px;
  filter: brightness(0) invert(1);
}

.user-bank-info-container-profile-desktop .user-account-number-profile-desktop {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ffffff;
}

.user-bank-info-container-profile-desktop hr {
  margin: 12px 0;
  border: none;
  border-top: 1px solid #444;
}

.user-bank-info-container-profile-desktop .user-bank-name-profile-desktop {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.user-bank-info-container-profile-desktop .user-carousel-indicators-profile-desktop {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: -6px;
}
.user-bank-info-container-profile-desktop .user-carousel-indicators-profile-desktop li {
  background-color: #666;
  border-radius: 10px;
  width: 10px;
  height: 4px;
  transition: all 0.3s ease;
}

.user-bank-info-container-profile-desktop .user-carousel-indicators-profile-desktop .active {
  background-color: #fff700; 
  width: 20px;
  height: 4px;
  border-radius: 4px;
}

@media (max-width: 768px) {
    .user-standard-main-content-profile-desktop {
        display: none;
    }
    .user-standard-main-content-profile-mobile {
        display: flex;
    }  
    
}

.user-standard-main-content-profile-mobile {
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: -8px;
}

.user-top-tab-container-profile-mobile {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    margin-left: 4px;
}

.user-tab-link-profile-mobile {
    padding: 8px 6px;
    background-color: #1c1c1c;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-tab-link-profile-mobile[data-active="true"] {
    background: linear-gradient(145deg, #ad1b91, #6d0057);
}

.user-tab-link-profile-mobile:hover {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    color: #fff;
}

.user-standard-form-container-mobile {
    min-height: 500px;
    margin-bottom: 10px;
}


.user-actions-profile-mobile {
    display: flex;
    gap: 10px;
    margin-left: auto;
    align-items: center;
    flex-wrap: wrap;
}


.user-referral-profile-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    background: linear-gradient(145deg, #ad1b91, #1e0018);
    padding-top: 6px;
    padding-bottom: 6px;
    margin-bottom: 6px;
}

.user-referral-label-profile-mobile {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 3px;
    padding-left: 6px;
    text-transform: uppercase;
}

.user-referral-code-container-profile-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 2px dashed #fff;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.05);
    min-width: 180px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.user-referral-code-profile-mobile {
    font-family: monospace;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
}

.user-referral-code-url-container-profile-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 2px dashed #fff;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.05);
    min-width: 180px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.user-referral-code-url-profile-mobile {
    font-family: monospace;
    font-weight: bold;
    font-size: 12px;
    color: #fff;
}


.user-copy-referral-profile-mobile {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}







.user-referral-profile-desktop-no {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    background: linear-gradient(145deg, #ad1b91, #1e0018);
    padding-top: 6px;
    padding-bottom: 16px;
    margin-bottom: 6px;
}

.user-referral-label-profile-desktop {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 3px;
    padding-left: 6px;
    text-transform: uppercase;
}

.user-referral-code-container-profile-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 2px dashed #fff;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.05);
    min-width: 180px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.user-referral-code-profile-desktop {
    font-family: monospace;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
}

.user-referral-code-url-container-profile-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 2px dashed #fff;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.05);
    min-width: 180px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.user-referral-code-url-profile-desktop {
    font-family: monospace;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
}



.user-copy-referral-profile-mobile img {
    width: 20px;
    height: 20px;
}

.user-standard-form-title-profile-mobile {
    background: linear-gradient(145deg, #ad1b91, #1e0018);
    color: #fff;
    padding: 10px 0;
    line-height: 16px;
    font-size: 18px;
    margin-bottom: 5px;
    text-align: center;
    font-weight: bold;
}

.user-standard-content-info-profile-mobile {
    margin-bottom: 5px;
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.user-standard-content-block-profile-mobile {
    background: linear-gradient(145deg, #ad1b91, #6d0057);
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
    margin-left: 2px;
    margin-right: 2px;
}

.user-standard-content-block-profile-mobile:last-child {
    flex: 1.2;
    background-color: #0a1849;
}
.user-table-profile-summary-table-profile-mobile {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
    font-family: "Inter", "Segoe UI", sans-serif;
}

.user-table-profile-summary-table-profile-mobile th,
.user-table-profile-summary-table-profile-mobile td {
    vertical-align: middle;
}

.user-table-profile-summary-table-profile-mobile th {
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
    font-size: 14px;
}

.user-table-profile-summary-table-profile-mobile td:first-of-type {
    width: 10px;
    text-align: center;
}

.user-table-profile-summary-table-profile-mobile td:last-of-type {
    font-weight: 500;
    font-size: 14px;
    padding: 5px;
}

.user-banking-details-header-profile-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    padding: 5px;
}

.user-banking-details-header-profile-mobile label {
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
}

.user-banking-details-header-profile-mobile a {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    border-radius: 5px;
    padding: 2px 2px 2px 4px;
}

.user-banking-details-header-profile-mobile a img {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    height: 20px;
    width: auto;
}

.user-bank-info-container-profile-mobile {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    border-radius: 10px;
    box-shadow: 0 0 8px rgb(141 2 114);
    padding: 16px 20px 12px; 
    width: 100%;
    font-family: "Inter", "Segoe UI", sans-serif;
    color: #f1f1f1;
    position: relative;
    box-sizing: border-box;
    margin-bottom: 20px;
    height: 125px;
}

.user-bank-info-container-profile-mobile .user-account-name-profile-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
}

.user-carousel-inner-profile-mobile {
    display: flex;
    overflow: hidden;
    position: relative;
}

.user-bank-info-block-profile-mobile {
    display: none;
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
}

.user-bank-info-block-profile-mobile.active {
    display: block;
}

.user-bank-info-container-profile-mobile .user-account-name-profile-mobile img.user-bank-icon-profile-mobile {
    width: 70px;
    height: auto;
    object-fit: contain;
    margin-left: 8px;
    filter: brightness(0) invert(1);
}


.user-bank-info-container-profile-mobile hr {
    margin: 12px 0;
    border: none;
    border-top: 1px solid #fff;
}

.user-bank-info-container-profile-mobile .user-bank-name-profile-mobile {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}
.user-bank-info-container-profile-mobile .user-carousel-indicators-profile-mobile {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: -6px;
}

.user-bank-info-container-profile-mobile .user-carousel-indicators-profile-mobile li {
    background-color: #666;
    border-radius: 10px;
    width: 10px;
    height: 4px;
    transition: all 0.3s ease;
}

.user-bank-info-container-profile-mobile .user-carousel-indicators-profile-mobile .active {
    background-color: #fff700;
    width: 20px;
    height: 4px;
    border-radius: 4px;
}






.reset-password-desktop {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 95%;
    margin: 15px auto;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(145deg, #ad1b91, #6d0057);
    font-family: "Inter", sans-serif;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.form-group-reset-password-desktop {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group-reset-password-desktop label {
    width: 200px;
    font-weight: 600;
    color: #fff;
}

.input-wrapper-reset-password-desktop {
    position: relative;
    flex: 1;
    flex-direction: column;
    gap: 4px;
}

.form-control-reset-password-desktop {
    width: 100%;
    padding: 12px 44px 12px 14px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #fff;
    color: #222;
}

.form-control-reset-password-desktop::placeholder {
    color: #888;
}

.form-control-reset-password-desktop:focus {
    border-color: #6d0057;
    box-shadow: 0 0 6px rgba(173, 27, 145, 0.5);
}

.toggle-password-reset-password-desktop {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    cursor: pointer;
    fill: #666;
    transition: fill 0.3s;
}

.toggle-password-reset-password-desktop:hover {
    fill: #6d0057;
}

.form-action-reset-password-desktop {
    margin-top: 24px;
    text-align: right;
}

.btn-reset-password-desktop {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-reset-password-desktop:hover {
    background: linear-gradient(145deg, #614a5e, #910202);
}

@media (max-width: 768px) {
    .reset-password-desktopp {
        display: none;
    }
    .reset-password-mobile {
        display: flex;
    }  
    
}

.reset-password-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 95%;
    margin: 20px auto;
    padding: 30px;
    border-radius: 12px;
    background: linear-gradient(145deg, #ad1b91, #6d0057);
    font-family: "Inter", sans-serif;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.form-group-reset-password-mobile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group-reset-password-mobile label {
    width: 200px;
    font-weight: 600;
    color: #fff;
}

.form-group-reset-password-mobile small {
    color: #fff;
}

.input-wrapper-reset-password-mobile {
    position: relative;
    flex: 1;
    flex-direction: column;
    gap: 4px;
}

.form-control-reset-password-mobile {
    width: 100%;
    padding: 12px 44px 12px 14px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #fff;
    color: #222;
}

.form-control-reset-password-mobile::placeholder {
    color: #888;
}

.form-control-reset-password-mobile:focus {
    border-color: #6d0057;
    box-shadow: 0 0 6px rgba(173, 27, 145, 0.5);
}

.toggle-password-reset-password-mobile {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    cursor: pointer;
    fill: #666;
    transition: fill 0.3s;
}

.toggle-password-reset-password-mobile:hover {
    fill: #6d0057;
}

.form-action-reset-password-mobile {
    margin-top: 24px;
    text-align: right;
}

.btn-reset-password-mobile {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-reset-password-mobile:hover {
    background: linear-gradient(145deg, #614a5e, #910202);
}


.no-referral-mobile-site-content-container {
    box-sizing: border-box;
}
.no-referral-mobile-standard-form-container {
    min-height: 500px;
}
.no-referral-mobile-banner-container img {
    width: 100%;
    height: auto;
}
.no-referral-mobile-banner-container-asf {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.no-referral-mobile-banner-container-asf picture {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 30px;
}

.no-referral-mobile-banner-container-asf img {
    width: 60%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.no-referral-mobile-features-item-process {
  display: flex;
  gap: 12px;
  align-items: center;
  background: linear-gradient(145deg, #8b5cf6, #ec4899);
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin: 4px;
  color: #fff;
  justify-content: center;
}

.no-referral-mobile-features-item-rejected {
  display: flex;
  gap: 12px;
  align-items: center;
  background: linear-gradient(145deg, #8b5cf6, #ec4899);
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin: 4px;
  color: #fff;
  justify-content: center;
}

.no-referral-mobile-feature-container {
  padding: 0 16px;
}
.no-referral-mobile-guidance-note {
    margin: 15px 0;
    font-size: 12px;
    color: #fff;
}
.no-referral-mobile-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.no-referral-mobile-features-item {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.no-referral-mobile-feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: linear-gradient(145deg, #ad1b91, #6d0057);
    flex-shrink: 0;
}

.no-referral-mobile-feature-icon img {
    width: 32px; 
    height: 32px;
}
.no-referral-mobile-feature-info span {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.no-referral-mobile-feature-info p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.no-referral-mobile-standard-button-group {
  margin-top: 16px;
  text-align: center;
}
.no-referral-mobile-btn.btn-primary {
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  border: none;
}



.no-referral-form-title-profile-mobile {
    background: linear-gradient(145deg, #ad1b91, #1e0018);
    color: #fff;
    padding: 10px 0;
    line-height: 16px;
    font-size: 18px;
    margin-bottom: 5px;
    text-align: center;
    font-weight: bold;    
}








.no-referral-desktop-site-content-container {
background-color: #12000f;
    color: #fff;
    border-radius: 8px;
    padding: 0PX;
    display: flex
;
    flex-direction: column;
    gap: 0px;
    font-family: 'Arial', sans-serif;
}
.no-referral-desktop-standard-form-container {
    min-height: 500px;
    padding: 6px;
}
.no-referral-desktop-banner-container img {
    width: 100%;
    height: auto;
}

.no-referral-desktop-features-item-process {
  display: flex;
  gap: 12px;
  align-items: center;
  background: linear-gradient(145deg, #8b5cf6, #ec4899);
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin: 4px;
  color: #fff;
  justify-content: center;
}

.no-referral-desktop-features-item-rejected {
  display: flex;
  gap: 12px;
  align-items: center;
  background: linear-gradient(145deg, #8b5cf6, #ec4899);
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin: 4px;
  color: #fff;
  justify-content: center;
}

.no-referral-desktop-feature-container {
  padding: 0 16px;
}
.no-referral-desktop-guidance-note {
    margin: 15px 0;
    font-size: 12px;
    color: #fff;
}
.no-referral-desktop-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.no-referral-desktop-features-item {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.no-referral-desktop-feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: linear-gradient(145deg, #ad1b91, #6d0057);
    flex-shrink: 0;
}

.no-referral-desktop-feature-icon img {
    width: 32px; 
    height: 32px;
}
.no-referral-desktop-feature-info span {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  color: #000;
}
.no-referral-desktop-feature-info p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.no-referral-desktop-standard-button-group {
  margin-top: 16px;
  text-align: center;
}
.no-referral-desktop-btn.btn-primary {
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  border: none;
}

.no-referral-desktop-site-content-container {
    display: flex;
}

.no-referral-form-title-profile-desktop {
    background: linear-gradient(145deg, #ad1b91, #1e0018);
    color: #fff;
    padding: 15px 20px;
    line-height: 16px;
    font-size: 18px;
    border-radius: 8px;
    font-weight: bold;  
}



@media (max-width: 768px) {
    .no-referral-desktop-site-content-container {
        display: none;
    }
    .no-referral-mobile-banner-container-asf picture {
        display: flex;
    }

    
    .no-referral-mobile-site-content-container{
        display: flex;
    }  
    
}




/* =========================
   PAYMENT ACCOUNT PROFILE
========================= */


.user-standard-main-content-payment-account-user-desktop {
    display: flex;
    background-color: #12000f;
    color: #fff;
    border-radius: 8px;
    padding: 0PX;
    display: flex;
    flex-direction: column;
    gap: 0px;
    font-family: 'Arial', sans-serif;
}

.user-top-tab-container-payment-account-user-desktop {
    display: flex;
    gap: 5px;
}


.user-tab-link-payment-account-user-desktop {
    padding: 10px 15px;
    background-color: #1c1c1c;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-tab-link-payment-account-user-desktop[data-active="true"] {
    background: linear-gradient(145deg, #ad1b91, #6d0057);
}

.user-tab-link-payment-account-user-desktop:hover {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    color: #fff;
}

.user-standard-form-title-payment-account-user-desktop {
    background:linear-gradient(145deg, #ad1b91, #1e0018);
    color: #fff;
    padding: 15px 20px;
    line-height: 16px;
    font-size: 18px;
    border-radius: 8px;
    margin-top: 8px;
    font-weight: bold;
}




.user-bank-info-wrapper-payment-account-user-desktop {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px;
}

.user-bank-info-wrapper-view-payment-account-user-desktop {
    display: flex;
    justify-content: center;
    align-items: center; 
    width: 100%;
}

.user-bank-info-container-payment-account-user-desktop {
  background: linear-gradient(145deg, #8b5cf6, #ec4899);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(141, 2, 114, 0.4);
  padding: 20px 25px 30px;
  width: 100%;
  max-width: 380px;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #f1f1f1;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.user-bank-info-container-payment-account-user-desktop:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(141, 2, 114, 0.5);
}

.user-account-name-payment-account-user-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  color: #fff;
}

.user-account-name-payment-account-user-desktop span {
    width: 250px;
}

.user-bank-icon-payment-account-user-desktop {
  width: 60px;
  height: auto;
  object-fit: contain;
  margin-left: 8px;
}

.user-account-number-payment-account-user-desktop {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
}

.user-bank-info-container-payment-account-user-desktop hr {
  margin: 12px 0;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.3);
}

.user-bank-name-payment-account-user-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
}


.btn-add-payment-account-user {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 2px solid #fff;
    border-radius: 8px;
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    min-width: 180px;
    justify-content: center;
    border: 1px dashed #fff;
    color: #fff;
    cursor: pointer;
}

.btn-add-payment-account-user-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 2px solid #fff;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    min-width: 110px;
    justify-content: center;
    border: 1px dashed #fff;
    color: #fff;
    cursor: pointer;
}






.dropdown-payment-account-user-desktop {
  position: relative;
  user-select: none;
}

.dropdown-payment-account-user-desktop .dropdown-selected-payment-account-user-desktop {
  background: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000;
  margin-bottom: 12px;
}

.dropdown-payment-account-user-desktop .dropdown-selected-payment-account-user-desktop:hover {
  border-color: #ad1b91;
}

.dropdown-payment-account-user-desktop .dropdown-arrow-payment-account-user-desktop {
  transition: transform 0.3s ease;
}

.dropdown-payment-account-user-desktop.active .dropdown-arrow-payment-account-user-desktop {
  transform: rotate(180deg);
}

.dropdown-payment-account-user-desktop .dropdown-options-payment-account-user-desktop {
  list-style: none;
  position: relative;
  width: 100%;
  background: #fff;
  border: 1px solid #c750be;
  border-radius: 8px;
  margin-top: 6px;
  padding: 0;
  overflow: hidden;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.dropdown-payment-account-user-desktop.active .dropdown-options-payment-account-user-desktop {
  height: auto;
  opacity: 1;
  overflow: visible;
  pointer-events: auto;
  visibility: visible;
}
.dropdown-payment-account-user-desktop .dropdown-options-payment-account-user-desktop li {
  padding: 10px 14px;
  border-bottom: 1px solid #c750be;
  cursor: pointer;
  transition: background 0.2s;
  color: #000;
  box-shadow: 0 0 0 0 #c750be;
  text-align: left;
}

.dropdown-payment-account-user-desktop .dropdown-options-payment-account-user-desktop li:last-child {
  border-bottom: none;
}

.dropdown-payment-account-user-desktop .dropdown-options-payment-account-user-desktop li:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.dropdown-payment-account-user-desktop .dropdown-options-payment-account-user-desktop li:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}



.dropdown-options-payment-account-user-desktop.show {
  display: block;
}


@media (max-width: 768px) {
.user-standard-main-content-payment-account-user-desktop {
    display: none;
}
.user-standard-main-content-payment-account-user-mobile {
    display: flex;
}  
    
}


.user-standard-main-content-payment-account-mobile {
    background-color: #12000f;
    color: #fff;
    border-radius: 8px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
}

.user-top-tab-container-payment-account-mobile {
    display: flex;
    gap: 5px;
}


.user-tab-link-payment-account-mobile {
    padding: 10px 15px;
    background-color: #1c1c1c;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-tab-link-payment-account-mobile[data-active="true"] {
    background: linear-gradient(145deg, #ad1b91, #6d0057);
}

.user-tab-link-payment-account-mobile:hover {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    color: #fff;
}

.user-standard-form-title-payment-account-mobile {
    background:linear-gradient(145deg, #ad1b91, #1e0018);
    color: #fff;
    padding: 15px 20px;
    line-height: 16px;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
}

.user-bank-info-wrapper-payment-account-mobile {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 5px;
  justify-content: center;
  margin-top: 5px;
  margin-bottom: 5px;
}

.user-bank-info-wrapper-view-payment-account-mobile {
    display: flex;
    justify-content: center;
    align-items: center; 
    width: 100%;
    height: 150px;
}

.user-bank-info-container-payment-account-mobile {
  background: linear-gradient(145deg, #8b5cf6, #ec4899);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(141, 2, 114, 0.4);
  padding: 15px 15px 15px;
  width: 100%;
  max-width: 330px;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #f1f1f1;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
   flex: 0 0 auto;
}

.user-bank-info-container-payment-account-mobile:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(141, 2, 114, 0.5);
}

.user-account-name-payment-account-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  color: #fff;
}

.user-account-name-payment-account-mobile span {
    width: 250px;
}

.user-bank-icon-payment-account-mobile {
  width: 60px;
  height: auto;
  object-fit: contain;
  margin-left: 8px;
}

.user-account-number-payment-account-mobile {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
}

.user-bank-info-container-payment-account-mobile hr {
  margin: 12px 0;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.3);
}

.user-bank-name-payment-account-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
}


.btn-add-payment-account {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 2px solid #fff;
    border-radius: 8px;
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    min-width: 180px;
    justify-content: center;
    border: 1px dashed #fff;
    color: #fff;
    cursor: pointer;
}

.btn-add-payment-account-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 2px solid #fff;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    min-width: 110px;
    justify-content: center;
    border: 1px dashed #fff;
    color: #fff;
    cursor: pointer;
}

.dropdown-payment-account-mobile {
  position: relative;
  user-select: none;
}

.dropdown-payment-account-mobile .dropdown-selected-payment-account-mobile {
  background: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000;
  margin-bottom: 12px;
}

.dropdown-payment-account-mobile .dropdown-selected-payment-account-mobile:hover {
  border-color: #ad1b91;
}

.dropdown-payment-account-mobile .dropdown-arrow-payment-account-mobile {
  transition: transform 0.3s ease;
}

.dropdown-payment-account-mobile.active .dropdown-arrow-payment-account-mobile {
  transform: rotate(180deg);
}

.dropdown-payment-account-mobile .dropdown-options-payment-account-mobile {
  list-style: none;
  position: relative;
  width: 100%;
  background: #fff;
  border: 1px solid #c750be;
  border-radius: 8px;
  margin-top: 6px;
  padding: 0;
  overflow: hidden;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.dropdown-payment-account-mobile.active-payment-account .dropdown-options-payment-account-mobile {
  height: auto;
  opacity: 1;
  overflow: visible;
  pointer-events: auto;
  visibility: visible;
}
.dropdown-payment-account-mobile .dropdown-options-payment-account-mobile li {
  padding: 10px 14px;
  border-bottom: 1px solid #c750be;
  cursor: pointer;
  transition: background 0.2s;
  color: #000;
  box-shadow: 0 0 0 0 #c750be;
  text-align: left;
}

.dropdown-payment-account-mobile .dropdown-options-payment-account-mobile li:last-child {
  border-bottom: none;
}

.dropdown-payment-account-mobile .dropdown-options-payment-account-mobile li:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.dropdown-payment-account-mobile .dropdown-options-payment-account-mobile li:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}



.dropdown-options-payment-account-mobile.show-payment-account {
  display: block;
}

/* =========================
   FOOTER
========================= */

.footer {
    background-color: #12000f; 
    border-top: 5px solid #ec4899;
    width: 100%; 
    padding: 8px 20px;
    color: #fff;
}

.footer-container {
    max-width: 1200px; 
    margin: 0 auto;
    text-align: center;
}
.footer a {
    color: #b89f58;
    text-decoration: none;
    transition: color 0.3s;
}

.btn-class-footer-2 {
    display: block;
    margin-top: 6px;
    margin-bottom:6px;
    padding:4px 8px;
    background: linear-gradient(145deg, #ad1b91, #1e0018);
    color:#fff;
    border:none;
    border-radius:4px;
    width: 50%;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 6px auto;
    border-top-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.footer a:hover {
    color: #0d6efd;
}

.footer-bottom {
    border-top: 1px solid #ec4899;
    margin-top: 12px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    
}
.footer-buttons button {
    background-color: transparent;
    color: #ec4899;
    border: 2px solid #ec4899;
    padding: 5px 10px;
    margin-left: 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
}
.footer-buttons button:hover {
    background: linear-gradient(145deg, #ad1b91, #1e0018);
    color: #fff;
}
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .footer-buttons button {
        margin-left: 0;
    }
    .footer {
        display: none;
    }
}

.footer-mobile {
    background-color: #12000f; 
    border-top: 1px solid #ec4899;
    width: 100%; 
    padding: 6px 6px;
    color: #fff;
}

.btn-class-footer {
    display: block;
    margin-top: 6px;
    margin-bottom:6px;
    padding:4px 8px;
    background: linear-gradient(145deg, #ad1b91, #1e0018);
    color:#fff;
    border:none;
    border-radius:4px;
    width: 50%;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 6px auto;
    border-top-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.footer-top-mobile {
    display: none;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    align-items: center;
    justify-content: space-between;
}

.footer-top-mobile:hover {
    color: #fff700;
}

.footer-bottom-mobile {
    border-top: 1px solid #ec4899;
    margin-top: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-left: -6px;
    margin-right: -6px;
}

.footer-bottom-mobile-none {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-left: -6px;
    margin-right: -6px;
}

@media (min-width: 768px) {
    .footer-mobile {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-mobile {
        margin-bottom: 65px;
    }
}


/* =========================
   Footer Bottom
========================= */

.bottom-nav {
    display: none;
}
@media (max-width: 768px) {
    .bottom-nav ul {
        list-style: none;
        padding: 8px;
        margin: 0;
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100%;
    }

    .bottom-nav li {
        flex: 1;
        text-align: center;
    }

    .bottom-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #fff;
        font-size: 13px;
    }

    .bottom-nav a:hover {
        color: #ff4c4c;
    }

    .bottom-nav img {
        display: block;
        max-width: 30px;
        height: auto;
    }
    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 60px;
        background: linear-gradient(180deg, #1e0018, #4a083d);
        box-shadow: 0 -2px 10px rgb(233 233 233 / 9%);
        z-index: 999;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
    }
    .bottom-nav li.active a {
        color: #fff700;
    }
    .bottom-nav .wrap {
        height: 24px;
        width: 24px;
        margin: 5px auto;
        border-radius: 100%;
        background: linear-gradient(145deg, #ad1b91, #6d0057);
        -webkit-transform: scale(2.5) translateY(-5px);
        transform: scale(2.5) translateY(-5px);
        -webkit-border-radius: 100%;
    }
    .bottom-nav .wrap svg {
        position: relative;
        top: 3px;
        height: 18px;
        width: 18px;
    }
     @keyframes pulse {
       0%, 100% {
         opacity: 1;
         transform: scale(1);
         filter: drop-shadow(0 0 0px #ff4c4c);
       }
       50% {
         opacity: 0.6;
         transform: scale(1.1);
         filter: drop-shadow(0 0 8px #ff4c4c);
       }
     }
     .svg-pulse {
         animation: pulse 6s infinite;
         color: #fff;
     }
}


/* =========================
   ALL TABLE
========================= */


.container-table-mobile-user {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 6px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(145deg, #ad1b91, #1e0018);
    padding-top: 6px;
    padding-bottom: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    min-height: 450px;
}

.container-table-mobile-user h3 {
    text-align: left;
    font-size: 1.1rem;
    color: #fff;
    margin-left: 6px;
    margin-bottom: 6px;    
}

.container-table-mobile-user table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.container-table-mobile-user th {
    background: #000;
    color: #fff;
    padding: 6px;
    text-align: center;
    border: 1px solid #ddd;
}

.container-table-mobile-user td {
    padding: 6px;
    border: 1px solid #ddd;
    color: #fff;
    text-align: center;
}

.container-table-mobile-user tbody tr:nth-child(even) {
    background: #210b1c;
}

.pagination-table-mobile-user {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-top: auto;
}

.page-link-table-mobile-user, .page-disabled-table-mobile-user {
    padding: 6px 14px;
    border: 1px solid #fff700;
    border-radius: 5px;
    text-decoration: none;
    color: #fff700;
    font-weight: 500;
}

.page-link-table-mobile-user:hover {
    background-color: #ec4899;
    border: 1px solid #ec4899;
    color: #fff;
}

.page-disabled-table-mobile-user {
    color: #c9c9c9;
    border-color: #fff;
    cursor: not-allowed;
}

.page-info-table-mobile-user {
    margin: 0 10px;
    font-weight: bold;
    color: #fff;
}


.container-table-desktop-user {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 6px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(145deg, #ad1b91, #1e0018);
    padding-top: 6px;
    padding-bottom: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    min-height: 450px;
}

.container-table-desktop-user h3 {
    text-align: left;
    font-size: 1.1rem;
    color: #fff;
    margin-left: 6px;
    margin-bottom: 6px;    
}

.container-table-desktop-user table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.container-table-desktop-user th {
    background: #000;
    color: #fff;
    padding: 6px;
    text-align: center;
    border: 1px solid #ddd;
}

.container-table-desktop-user td {
    padding: 6px;
    border: 1px solid #ddd;
    color: #fff;
    text-align: center;
}

.container-table-desktop-user tbody tr:nth-child(even) {
    background: #210b1c;
}

.pagination-table-desktop-user {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-top: auto;
}

.page-link-table-desktop-user, .page-disabled-table-desktop-user {
    padding: 6px 14px;
    border: 1px solid #fff700;
    border-radius: 5px;
    text-decoration: none;
    color: #fff700;
    font-weight: 500;
}

.page-link-table-desktop-user:hover {
    background-color: #ec4899;
    border: 1px solid #ec4899;
    color: #fff;
}

.page-disabled-table-desktop-user {
    color: #c9c9c9;
    border-color: #fff;
    cursor: not-allowed;
}

.page-info-table-desktop-user {
    margin: 0 10px;
    font-weight: bold;
    color: #fff;
}
.container-table-desktop-user {
    display: flex;
}

@media (max-width: 768px) {
    .container-table-desktop-user {
        display: none;
    }
    .container-table-mobile-user{
        display: flex;
    }  
    
}







.user-standard-form-container-history-mobile {
    min-height: 400px;
    margin-bottom: 10px;
}
    
.user-standard-history-container-history-mobile {
    color: #fff;
    padding-top: 15px;
    background: #0b0b0b;
    padding-left: 12px;
}
.user-tab-link-history-mobile {
    padding: 10px 15px;
    background-color: #1c1c1c;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
.user-tab-link-history-mobile[data-active="true"] {
    background: linear-gradient(145deg, #ad1b91, #6d0057);
}
    
.no-history-mobile-site-content-container {
    color: #fff;
    border-radius: 8px;
    padding: 0PX;
    display: flex;
    flex-direction: column;
    gap: 0px;
    font-family: 'Arial', sans-serif;
}
.no-history-mobile-standard-form-container {
    min-height: 500px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 0px;
    padding-right: 0px;
}
.no-history-form-title-profile-mobile {
    background: linear-gradient(145deg, #ad1b91, #1e0018);
    color: #fff;
    padding: 15px 20px;
    line-height: 16px;
    font-size: 18px;
    border-radius: 8px;
    font-weight: bold;
}
    
.standard-history-control-group-mobile {
    display: block;
    align-items: flex-start;
    gap: 10px;
    margin: 15px 0;
}
.date-mobile-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    max-width: 100%;
}
.date-input-mobile {
    width: calc(50% - 5px);
    padding: 6px 10px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #fff;
    cursor: pointer;
    background: #fff;
    color: #000;
    box-sizing: border-box;
    text-align: center;
}
.date-picker-popup-mobile {
    position: absolute;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    padding: 12px;
    display: none;
    z-index: 1000;
    border-radius: 10px;
    min-width: 280px;
}

.date-picker-popup-mobile table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
}

.date-picker-popup-mobile th, .date-picker-popup-mobile td {
    padding: 8px 0;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
    color: #000;
    background: #fff;
}

.date-picker-popup-mobile th {
    color: #0056b3;
    font-weight: bold;
    font-size: 14px;
}

.date-picker-popup-mobile td:hover {
    background: #cce5ff;
    color: #004080;
    transform: scale(1.1);
}

.date-picker-popup-mobile td.today-mobile {
    background: #fff176;
    border: 1px solid #ffb300;
    font-weight: bold;
    color: #000;
}

.date-picker-popup-mobile td.selected-mobile {
    background: #0056b3;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.date-picker-popup-mobile .header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    background: #ba53c9;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
}

.date-picker-popup-mobile .month-year-mobile {
    font-size: 15px;
}

.date-picker-popup-mobile .nav-btn-mobile {
    cursor: pointer;
    font-weight: bold;
    user-select: none;
    color: #fff;
    font-size: 16px;
    padding: 0 6px;
    border-radius: 4px;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-picker-popup-mobile .nav-btn-mobile:hover {
    background: rgba(255,255,255,0.3);
}


.date-picker-popup-mobile td, .date-picker-popup-mobile th {
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn-filter-date-mobile {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    color: #fff;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all .2s ease-in-out;
    width: 100%;
    box-sizing: border-box;
}
.btn-filter-date-mobile:hover {
    transform: scale(1.05);
}
.btn-filter-date-mobile:active {
    transform: scale(0.96);
}





.user-standard-form-container-history-desktop {
    min-height: 400px;
    margin-bottom: 10px;
}
    
.user-standard-history-container-history-desktop {
    color: #fff;
    padding-top: 15px;
    background: #0b0b0b;
    padding-left: 12px;
}
.user-tab-link-history-desktop {
    padding: 10px 15px;
    background-color: #1c1c1c;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
.user-tab-link-history-desktop[data-active="true"] {
    background: linear-gradient(145deg, #ad1b91, #6d0057);
}
    
.no-history-desktop-site-content-container {
    color: #fff;
    border-radius: 8px;
    padding: 0PX;
    display: flex;
    flex-direction: column;
    gap: 0px;
    font-family: 'Arial', sans-serif;
}
.no-history-desktop-standard-form-container {
    min-height: 500px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 0px;
    padding-right: 0px;
}
.no-history-form-title-profile-desktop {
    background: linear-gradient(145deg, #ad1b91, #1e0018);
    color: #fff;
    padding: 15px 20px;
    line-height: 16px;
    font-size: 18px;
    border-radius: 8px;
    font-weight: bold;
}
    
.standard-history-control-group-desktop {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin: 15px 0;
    gap: 6px;
}

    
.date-input-desktop {
    width: 95px;
    padding: 6px 10px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #fff;
    cursor: pointer;
    background: #fff;
    color: #000;
}

.date-picker-popup-desktop {
    position: absolute;
    background: #fff;
    border: 1px solid #0056b3;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    padding: 12px;
    display: none;
    z-index: 1000;
    border-radius: 10px;
    min-width: 280px;
}

.date-picker-popup-desktop table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
}

.date-picker-popup-desktop th, .date-picker-popup-desktop td {
    padding: 8px 0;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
    color: #000;
    background: #fff;
}

.date-picker-popup-desktop th {
    color: #0056b3;
    font-weight: bold;
    font-size: 14px;
}

.date-picker-popup-desktop td:hover {
    background: #cce5ff;
    color: #004080;
    transform: scale(1.1);
}

.date-picker-popup-desktop td.today-desktop {
    background: #fff176;
    border: 1px solid #ffb300;
    font-weight: bold;
    color: #000;
}

.date-picker-popup-desktop td.selected-desktop {
    background: #0056b3;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.date-picker-popup-desktop .header-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    background: #ba53c9;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
}

.date-picker-popup-desktop .month-year-desktop {
    font-size: 15px;
}

.date-picker-popup-desktop .nav-btn-desktop {
    cursor: pointer;
    font-weight: bold;
    user-select: none;
    color: #fff;
    font-size: 16px;
    padding: 0 6px;
    border-radius: 4px;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-picker-popup-desktop .nav-btn-desktop:hover {
    background: rgba(255,255,255,0.3);
}


.date-picker-popup-desktop td, .date-picker-popup-desktop th {
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn-filter-date-desktop {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    color: #fff;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.btn-filter-date-desktop:hover {
    transform: scale(1.05);
}

.btn-filter-date-desktop:active {
    transform: scale(0.96);
}




.container-table-desktop-history {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 6px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(145deg, #ad1b91, #1e0018);
    padding: 6px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    min-height: 490px;
}

.container-table-desktop-history h3 {
    text-align: left;
    font-size: 1.1rem;
    color: #fff;
    margin: 6px;
}

.container-table-desktop-history table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.container-table-desktop-history th {
    background: #000;
    color: #fff;
    padding: 6px;
    text-align: center;
    border: 1px solid #ddd;
}

.container-table-desktop-history td {
    padding: 6px;
    border: 1px solid #ddd;
    text-align: center;
}

.container-table-desktop-history tbody tr:nth-child(even) {
    background: #210b1c;
}

.pagination-table-desktop-history {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-top: auto;
}

.page-link-table-desktop-history, .page-disabled-table-desktop-history {
    padding: 6px 14px;
    border: 1px solid #fff700;
    border-radius: 5px;
    text-decoration: none;
    color: #fff700;
    font-weight: 500;
}

.page-link-table-desktop-history:hover {
    background-color: #ec4899;
    border: 1px solid #ec4899;
    color: #fff;
}

.page-disabled-table-desktop-history {
    color: #c9c9c9;
    border-color: #fff;
    cursor: not-allowed;
}

.page-info-table-desktop-history {
    margin: 0 10px;
    font-weight: bold;
    color: #fff;
}


@media (max-width: 768px) {
    .container-table-desktop-history,
    .user-standard-form-container-history-desktop,
    .user-standard-history-container-history-desktop {
        display: none;
    }  
}

.container-table-mobile-history {
    display: block; 
    margin: 6px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(145deg, #ad1b91, #1e0018);
    padding: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    max-width: 100vw;
    overflow: hidden;
}

.standard-history-control-group-mobile {
    display: block;
    margin-bottom: 15px;
}

.standard-history-control-group-mobile h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.1rem;
}

.reporting-scroll-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #888 #000;
}

.table-mobile-history {
    display: table;
    border-collapse: collapse;
    min-width: 700px; 
    width: auto;
    max-width: none;
}

.table-mobile-history th,
.table-mobile-history td {
    white-space: nowrap;
    padding: 6px 10px;
    border: 1px solid #ddd;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 120px;
}

.table-mobile-history th {
    background: #000;
    color: #fff;
}

.table-mobile-history tbody tr:nth-child(even) {
    background: #210b1c;
}

.table-mobile-history td:nth-child(9) {
    white-space: normal;
    max-width: 150px;
}

.reporting-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.reporting-scroll-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
    opacity: 0.8;
}

.reporting-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.pagination-table-mobile-history {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-top: 10px;
}

.page-link-table-mobile-history, .page-disabled-table-mobile-history {
    padding: 6px 14px;
    border: 1px solid #fff700;
    border-radius: 5px;
    text-decoration: none;
    color: #fff700;
    font-weight: 500;
}

.page-link-table-mobile-history:hover {
    background-color: #ec4899;
    border: 1px solid #ec4899;
    color: #fff;
}

.page-disabled-table-mobile-history {
    color: #c9c9c9;
    border-color: #fff;
    cursor: not-allowed;
}

.page-info-table-mobile-history {
    margin: 0 10px;
    font-weight: bold;
    color: #fff;
}

@media (max-width: 768px) {
    .container-table-mobile-history {
        display: block;
        padding: 4px;
        overflow-x: hidden;
    }

    .reporting-scroll-container {
        overflow-x: scroll;
    }

    .table-mobile-history th,
    .table-mobile-history td {
        font-size: 12px;
        padding: 4px 6px;
        white-space: normal;
        max-width: 100px;
    }

    .pagination-table-mobile-history {
        font-size: 12px;
        gap: 5px;
    }
}




/* =========================
   TRANSACTION PAGE
========================= */
.user-standard-main-content-deposit-desktop {
    background-color: #12000f;
    color: #fff;
    border-radius: 8px;
    padding: 0PX;
    display: flex;
    flex-direction: column;
    gap: 0px;
    font-family: 'Arial', sans-serif;
}
.user-top-tab-container-deposit-desktop {
    display: flex;
    gap: 5px;
}
.user-tab-link-deposit-desktop {
    padding: 10px 15px;
    background-color: #1c1c1c;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-tab-link-deposit-desktop[data-active="true"] {
    background: linear-gradient(145deg, #ad1b91, #6d0057);
}

.user-tab-link-deposit-desktop:hover {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    color: #fff;
}

.user-tab-content-container-deposit-desktop {
    display: grid;
    gap: 4px;
    padding: 10px;
}





.user-standard-form-container-deposit-desktop {
    min-height: 400px;

    margin-bottom: 10px;
}

.user-standard-deposit-container-deposit-desktop {
    color: #fff;
    padding-top: 15px;
    background: #0b0b0b;
}

.user-standard-deposit-container-deposit-desktop hr.user-standard-deposit-gap-container-deposit-desktop {
    height: 1px;
    border: 0;
    background: -webkit-gradient(linear, 0 0, 100% 0, from(transparent), to(transparent), color-stop(50%, #fff));
}


.user-standard-center-container-deposit-desktop {
    padding: 0 15px;
    margin: 0 auto;
}

.user-standard-row-container-deposit-desktop {
    margin-right: -15px;
    margin-left: -15px;
}

.user-standard-sm-12-container-deposit-desktop {
    padding: 0 16px;
}

.user-standard-deposit-form-group-container-deposit-desktop {
    background-color: transparent;
    padding: 10px 0;
    border-radius: 5px;
    margin-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
}

.user-standard-label-container-deposit-desktop {
    color: #fff;
    font-weight: normal;
    display: inline-block;
    margin-bottom: 8px;
    font-size: 16px;
}
.user-standard-payment-method-selection-container-deposit-desktop {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 100%;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
}

.user-standard-payment-option-info-container-deposit-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px 0px;
    border-radius: 10px;
    background-color: #2a2a2a;
    cursor: pointer;
    text-align: center;
    color: #ccc;
    font-size: 11px;
    transition: all 0.15s ease-in-out;
    line-height: 1.2;
    width: 95%;
}

.user-standard-payment-option-info-container-deposit-desktop img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    transition: filter 0.2s ease-in-out;
}

.user-standard-payment-option-info-container-deposit-desktop[data-active="true"] {
    background: linear-gradient(145deg, #ad1b91, #6d0057);
    color: #fff;
    transform: scale(1.05);
}

.user-standard-payment-option-info-container-deposit-desktop[data-active="true"] img {
    filter: brightness(0) invert(1);
}

.user-standard-payment-option-info-container-deposit-desktop:hover {
    background-color: #3d3d3d;
    transform: scale(1.03);
}


.user-standard-balance-info-container-deposit-desktop {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 15px;
    text-transform: initial;
    padding: 0 10px;
}

.user-standard-balance-info-container-deposit-desktop>a {
    color: #fff;
    text-decoration: underline;
    font-size: 16px;
}

.user-standard-balance-info-container-deposit-desktop .user-standard-total-balance-container-deposit-desktop {
    text-align: right;
    flex-grow: 1;
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 8px;
}

.user-standard-balance-info-container-deposit-desktop .user-standard-total-balance-container-deposit-desktop>p {
    font-size: 16px;
    margin: 0;
    color: #fff;   
}

.user-standard-balance-info-container-deposit-desktop .user-standard-total-balance-container-deposit-desktop>span {
    color: #fff; 
}




.user-standard-payment-info-badge-container-deposit-desktop {
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.user-standard-payment-info-badge-container-deposit-desktop[data-type="instant"] {
    background: #148e00;
    color: #fff;
}




.user-standard-deposit-amount-container-container-deposit-desktop {
    background-color: transparent;
    border-radius: 5px;
}

.user-standard-deposit-amount-container-container-deposit-desktop [data-section="depo-amount"] {
    display: flex;
    margin-bottom: 10px;
}



.user-standard-deposit-amount-container-container-deposit-desktop [data-section="depo-amount"] [data-field="amount"] {
    flex-basis: 100%;
}
.user-standard-deposit-amount-container-deposit-desktop {
    position: relative;
    display: flex;
    align-items: center;
    line-height: normal;
}
.user-standard-deposit-amount-container-deposit-desktop input[type="text"] {
   background-color: #000;
   border: 1px solid #393939;
   color: #fff;
}


.user-standard-deposit-amount-container-deposit-desktop .user-standard-currency-label-container-deposit-desktop {
    position: absolute;
    left: 12px;
}
.user-standard-deposit-amount-container-deposit-desktop input.form-control {
    text-align: right;
}

.user-standard-deposit-amount-range-container-deposit-desktop {
    font-size: 12px;
    margin-top: 6px;
    color: #fff;
}

.user-standard-qr-to-account-form-group-container-deposit-desktop {
    display: none;
}

.user-standard-deposit-summary-header-container-deposit-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  padding: 10px;
  background-color: #222;
  color: #fff;
  border-radius: 5px 5px 0 0;
}

.user-standard-deposit-summary-header-container-deposit-desktop .user-standard-summary-right-container-deposit-desktop {
  display: flex;
  align-items: center;
  gap: 6px;
}

.user-standard-summary-title-detail-container-deposit-desktop {
    font-size: 12px;
    font-weight: bold;
}

.user-standard-summary-amount-container-deposit-desktop {
  font-weight: bold;
  color: #fff700;
}

.user-standard-summary-toggle-container-deposit-desktop {
  background: none;
  border: none;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.user-standard-summary-toggle-container-deposit-desktop.user-standard-open-container-deposit-desktop {
  transform: rotate(180deg);
}

.user-standard-deposit-summary-dropdown-container-deposit-desktop {
  display: none;
  flex-direction: column;
  padding: 10px;
  border: 1px solid #222;
  border-top: none;
  background-color: #111;
  color: #fff;
  border-radius: 0 0 5px 5px;
}

.user-standard-deposit-summary-dropdown-container-deposit-desktop .user-standard-summary-detail-row-container-deposit-desktop {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 13px;
}

.user-standard-deposit-summary-dropdown-container-deposit-desktop .user-standard-summary-detail-row.user-standard-total-container-deposit-desktop {
  margin-top: 6px;
  font-weight: bold;
  color: #fff700;
}


.user-standard-deposit-action-container-deposit-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
}

.user-standard-deposit-action-button-deposit-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 360px;
  padding: 12px 8px;
  border: none;
  border-radius: 4px;
  background: linear-gradient(145deg, #ad1b91, #6d0057);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.user-standard-deposit-action-button-deposit-desktop:hover {
  background: linear-gradient(145deg, #c028a7, #810070);
  transform: translateY(-1px);
}

.user-standard-deposit-action-button-deposit-desktop:active {
  transform: translateY(0);
  box-shadow: 0 0 0 rgba(0,0,0,0);
}




.user-standard-main-content-deposit-mobile {
    padding: 0;
    display: flex;
    flex-direction: column;
    margin-bottom: -8px;
}

.user-top-tab-container-deposit-mobile {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    margin-left: 4px;
}

.user-tab-link-deposit-mobile {
    padding: 8px 6px;
    background-color: #1c1c1c;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
}

.user-tab-link-deposit-mobile[data-active="true"] {
    background: linear-gradient(145deg, #ad1b91, #6d0057);
}

.user-tab-link-deposit-mobile:hover {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    color: #fff;
}

.user-standard-form-container-deposit-mobile {
    min-height: 400px;

    margin-bottom: 10px;
}

.user-standard-deposit-container-deposit-mobile {
    color: #fff;
    padding-top: 15px;
    background: #0b0b0b;
}

.user-standard-deposit-container-deposit-mobile hr.user-standard-deposit-gap-container-deposit-mobile {
    height: 1px;
    border: 0;
    background: -webkit-gradient(linear, 0 0, 100% 0, from(transparent), to(transparent), color-stop(50%, #fff));
}


.user-standard-center-container-deposit-mobile {
    padding: 0 15px;
    margin: 0 auto;
}

.user-standard-row-container-deposit-mobile {
    margin-right: -15px;
    margin-left: -15px;
}

.user-standard-sm-12-container-deposit-mobile {
    padding: 0 16px;
}

.user-standard-deposit-form-group-container-deposit-mobile {
    background-color: transparent;
    padding: 10px 0;
    border-radius: 5px;
    padding-left: 5px;
    padding-right: 5px;
}

.user-standard-label-container-deposit-mobile {
    color: #fff;
    font-weight: normal;
    display: inline-block;
    margin-bottom: 8px;
    font-size: 16px;
}
.user-standard-payment-method-selection-container-deposit-mobile {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 100%;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
}

.user-standard-payment-option-info-container-deposit-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px 0px;
    border-radius: 10px;
    background-color: #2a2a2a;
    cursor: pointer;
    text-align: center;
    color: #ccc;
    font-size: 11px;
    transition: all 0.15s ease-in-out;
    line-height: 1.2;
}

.user-standard-payment-option-info-container-deposit-mobile img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    transition: filter 0.2s ease-in-out;
}

.user-standard-payment-option-info-container-deposit-mobile[data-active="true"] {
    background: linear-gradient(145deg, #ad1b91, #6d0057);
    color: #fff;
    transform: scale(1.05);
}

.user-standard-payment-option-info-container-deposit-mobile[data-active="true"] img {
    filter: brightness(0) invert(1);
}

.user-standard-payment-option-info-container-deposit-mobile:hover {
    background-color: #3d3d3d;
    transform: scale(1.03);
}


.user-standard-balance-info-container-deposit-mobile {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    text-transform: initial;
    padding: 0 10px;
}

.user-standard-balance-info-container-deposit-mobile>a {
    color: #fff;
    text-decoration: underline;
    font-size: 12px;
}

.user-standard-balance-info-container-deposit-mobile .user-standard-total-balance-container-deposit-mobile {
    text-align: right;
    flex-grow: 1;
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 8px;
}

.user-standard-balance-info-container-deposit-mobile .user-standard-total-balance-container-deposit-mobile>p {
    font-size: 12px;
    margin: 0;
    color: #fff;   
}

.user-standard-balance-info-container-deposit-mobile .user-standard-total-balance-container-deposit-mobile>span {
    color: #fff; 
}




.user-standard-payment-info-badge-container-deposit-mobile {
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
}

.user-standard-payment-info-badge-container-deposit-mobile[data-type="instant"] {
    background: #148e00;
    color: #fff;
}




.user-standard-deposit-amount-container-container-deposit-mobile {
    background-color: transparent;
    border-radius: 5px;
}

.user-standard-deposit-amount-container-container-deposit-mobile [data-section="depo-amount"] {
    display: flex;
    margin-bottom: 10px;
}



.user-standard-deposit-amount-container-container-deposit-mobile [data-section="depo-amount"] [data-field="amount"] {
    flex-basis: 100%;
}
.user-standard-deposit-amount-container-deposit-mobile {
    position: relative;
    display: flex;
    align-items: center;
    line-height: normal;
}
.user-standard-deposit-amount-container-deposit-mobile input[type="text"] {
   background-color: #000;
   border: 1px solid #393939;
   color: #fff;
}


.user-standard-deposit-amount-container-deposit-mobile .user-standard-currency-label-container-deposit-mobile {
    position: absolute;
    left: 12px;
}
.user-standard-deposit-amount-container-deposit-mobile input.form-control {
    text-align: right;
}

.user-standard-deposit-amount-range-container-deposit-mobile {
    font-size: 12px;
    margin-top: 6px;
    color: #fff;
}

.user-standard-qr-to-account-form-group-container-deposit-mobile {
    display: none;
}

.user-standard-deposit-summary-header-container-deposit-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  padding: 10px;
  background-color: #222;
  color: #fff;
  border-radius: 5px 5px 0 0;
}

.user-standard-deposit-summary-header-container-deposit-mobile .user-standard-summary-right-container-deposit-mobile {
  display: flex;
  align-items: center;
  gap: 6px;
}

.user-standard-summary-title-detail-container-deposit-mobile {
    font-size: 12px;
    font-weight: bold;
}

.user-standard-summary-amount-container-deposit-mobile {
  font-weight: bold;
  color: #fff700;
}

.user-standard-summary-toggle-container-deposit-mobile {
  background: none;
  border: none;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.user-standard-summary-toggle-container-deposit-mobile.user-standard-open-container-deposit-mobile {
  transform: rotate(180deg);
}

.user-standard-deposit-summary-dropdown-container-deposit-mobile {
  display: none;
  flex-direction: column;
  padding: 10px;
  border: 1px solid #222;
  border-top: none;
  background-color: #111;
  color: #fff;
  border-radius: 0 0 5px 5px;
}

.user-standard-deposit-summary-dropdown-container-deposit-mobile .user-standard-summary-detail-row-container-deposit-mobile {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 13px;
}

.user-standard-deposit-summary-dropdown-container-deposit-mobile .user-standard-summary-detail-row.user-standard-total-container-deposit-mobile {
  margin-top: 6px;
  font-weight: bold;
  color: #fff700;
}


.user-standard-deposit-action-container-deposit-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
}

.user-standard-deposit-action-button-deposit-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 360px;
  padding: 12px 8px;
  border: none;
  border-radius: 4px;
  background: linear-gradient(145deg, #ad1b91, #6d0057);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.user-standard-deposit-action-button-deposit-mobile:hover {
  background: linear-gradient(145deg, #c028a7, #810070);
  transform: translateY(-1px);
}

.user-standard-deposit-action-button-deposit-mobile:active {
  transform: translateY(0);
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.user-standard-deposit-qr-label-container-container-deposit-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;    
}

.user-standard-deposit-qr-label-container-container-deposit-desktop .user-standard-deposit-qr-label-bank-info-container-container-deposit-desktop {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}
.user-standard-deposit-qr-label-container-container-deposit-desktop .user-standard-deposit-qr-label-bank-info-container-container-deposit-desktop img {
    width: auto;
    height: 26px;
}

.user-standard-deposit-qr-label-container-container-deposit-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;    
}

.user-standard-deposit-qr-label-container-container-deposit-mobile .user-standard-deposit-qr-label-bank-info-container-container-deposit-mobile {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}
.user-standard-deposit-qr-label-container-container-deposit-mobile .user-standard-deposit-qr-label-bank-info-container-container-deposit-mobile img {
    width: auto;
    height: 20px;
}








@media (max-width: 768px) {
    .user-standard-main-content-deposit-desktop {
        display: none;
    }
    .user-standard-main-content-deposit-Desktop {
        display: flex;
    }
}


.user-standard-deposit-player-account-container-container-deposit-desktop {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.user-standard-deposit-player-account-container-container-deposit-desktop .user-standard-deposit-player-account-input-container-deposit-desktop {
    flex: 1;
    position: relative;
}

.user-standard-deposit-select-players-input-container-deposit-desktop {
    width: 100%;
    height: 34px;
    padding: 8px 36px 8px 12px;
    border-radius: 6px;
    border: 1px solid #393939;
    cursor: pointer;
    background-color: #000;
    font-size: 14px;
    transition: border-color 0.2s;
    color: #fff;
}

.user-standard-deposit-select-players-proof-container-deposit-desktop {
    width: 100%;
    height: auto;
    padding: 8px 8px 8px 8px;
    border-radius: 6px;
    border: 1px solid #393939;
    cursor: pointer;
    background-color: #000;
    font-size: 14px;
    transition: border-color 0.2s;
    color: #fff;
}

.user-standard-deposit-select-players-pending-container-deposit-desktop {
    width: 100%;
    height: auto;
    padding: 8px 8px 8px 8px;
    border-radius: 6px;
    border: 1px solid #393939;
    background-color: #000;
    font-size: 14px;
    transition: border-color 0.2s;
    color: #fff;
    text-align: center;
}

.user-standard-deposit-select-players-pending-btn-container-deposit-desktop {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.user-standard-deposit-select-players-pending-btn-a-container-deposit-desktop {
    background: linear-gradient(145deg, #ad1b91, #6d0057);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    padding: 12px 25px;
    width: 100%;
    max-width: 360px;
    text-align: center;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

.user-standard-deposit-select-players-pending-btn-a-container-deposit-desktop:hover {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
}


.user-standard-deposit-select-players-input-container-deposit-desktop:focus {
    border-color: #ad1b91;
    box-shadow: 0 0 5px rgba(179, 0, 0, 0.4);
    outline: none;
}

.user-standard-summary-toggle-players-container-deposit-desktop {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #fff;
}

.user-standard-deposit-players-modal-container-deposit-desktop {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.5);
}

.user-standard-deposit-players-modal-content-container-deposit-desktop {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(35% - 32px);
    max-height: 80vh;
    overflow: auto;
    padding: 16px 8px;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
}

.user-standard-deposit-players-modal-close-container-deposit-desktop {
    position: absolute;
    top: 4px;
    right: 12px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.user-standard-deposit-players-modal-close-container-deposit-desktop:hover {
    color: #000;
}

.user-standard-deposit-players-title-modal-content-container-deposit-desktop {
    font-size: 14px;
    color: #000;
    font-weight: 700;
    margin-bottom: 8px;
    padding: 0 5px;
}

.user-standard-deposit-players-list-container-deposit-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 300px;
    overflow-y: auto;
}

.user-standard-deposit-players-item-container-deposit-desktop {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.user-standard-deposit-players-left-container-container-deposit-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-standard-deposit-players-item-container-deposit-desktop:hover {
    background: #f0f0f0;
}

.user-standard-deposit-players-online-item-container-deposit-desktop {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #12b612;
    flex-shrink: 0;
}

.user-standard-deposit-players-logo-container-deposit-desktop {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.user-standard-deposit-players-info-container-deposit-desktop {
    display: flex;
    flex-direction: column;
    margin-left: 8px;
}

.user-standard-deposit-players-account-name-container-deposit-desktop {
    font-weight: 500;
    font-size: 14px;
}

.user-standard-deposit-players-account-no-container-deposit-desktop {
    font-size: 13px;
    color: #666;
}


.user-standard-players-toggle-circle-container-deposit-desktop {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #ccc;
    margin-left: auto;
    flex-shrink: 0;
    transition: all 0.2s;
    background-color: #fff;
}

.user-standard-deposit-players-item-container-deposit-desktop.selected .user-standard-players-toggle-circle-container-deposit-desktop {
    border-color: #4CAF50;
    background-color: #4CAF50;
}




.user-standard-deposit-add-payment-container-container-deposit-desktop {
    text-align: center;
    margin-top: 16px;
}

.user-standard-deposit-add-payment-button-container-deposit-desktop {
    background: linear-gradient(145deg, #ad1b91, #6d0057);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.user-standard-deposit-add-payment-button-container-deposit-desktop:hover {
    background-color: #43a047;
}




.user-standard-selected-account-summary-deposit-desktop {
  border-radius: 10px;
  background-color: #222;
  padding: 15px 10px;
}

.user-standard-selected-account-info-deposit-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-bottom: 12px;
}

.user-standard-selected-account-footer-deposit-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.user-standard-selected-account-right-deposit-desktop {
    align-items: center;
    display:flex;
    gap:6px;
}


.user-standard-selected-account-copy-deposit-desktop {
    background: none;
    border: 0;
    padding: 0;
    font-size: 18px;
    color: #fff;
    filter: invert(1);
    height: 24px;
    width: auto;
    align-items: center;
    cursor: pointer;
}

.user-standard-selected-account-admin-fee-deposit-desktop {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffb82e;
    font-size: 14px;
    font-weight: bold;
}

.user-standard-selected-account-logo-deposit-desktop {
  width: auto;
  height: 20px;
}

.user-standard-deposit-players-list-container-deposit-desktop::-webkit-scrollbar {
    width: 6px;
}

.user-standard-deposit-players-list-container-deposit-desktop::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.user-standard-deposit-players-list-container-deposit-desktop::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.user-standard-deposit-players-list-container-deposit-desktop::-webkit-scrollbar-thumb:hover {
    background: #999;
}


.user-standard-deposit-player-account-container-container-deposit-mobile {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.user-standard-deposit-player-account-container-container-deposit-mobile .user-standard-deposit-player-account-input-container-deposit-mobile {
    flex: 1;
    position: relative;
}

.user-standard-deposit-select-players-input-container-deposit-mobile {
    width: 100%;
    height: 34px;
    padding: 8px 36px 8px 12px;
    border-radius: 6px;
    border: 1px solid #393939;
    cursor: pointer;
    background-color: #000;
    font-size: 14px;
    transition: border-color 0.2s;
    color: #fff;
}

.user-standard-deposit-select-players-proof-container-deposit-mobile {
    width: 100%;
    height: auto;
    padding: 8px 8px 8px 8px;
    border-radius: 6px;
    border: 1px solid #393939;
    cursor: pointer;
    background-color: #000;
    font-size: 14px;
    transition: border-color 0.2s;
    color: #fff;
}



.user-standard-deposit-select-players-pending-container-deposit-mobile {
    width: 100%;
    height: auto;
    padding: 8px 8px 8px 8px;
    border-radius: 6px;
    border: 1px solid #393939;
    background-color: #000;
    font-size: 14px;
    transition: border-color 0.2s;
    color: #fff;
    text-align: center;
}

.user-standard-deposit-select-players-pending-btn-container-deposit-mobile {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.user-standard-deposit-select-players-pending-btn-a-container-deposit-mobile {
    background: linear-gradient(145deg, #ad1b91, #6d0057);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    padding: 12px 25px;
    width: 100%;
    max-width: 360px;
    text-align: center;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

.user-standard-deposit-select-players-pending-btn-a-container-deposit-mobile:hover {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
}



















.user-standard-deposit-select-players-input-container-deposit-mobile:focus {
    border-color: #ad1b91;
    box-shadow: 0 0 5px rgba(179, 0, 0, 0.4);
    outline: none;
}

.user-standard-summary-toggle-players-container-deposit-mobile {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #fff;
}

.user-standard-deposit-players-modal-container-deposit-mobile {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.5);
}

.user-standard-deposit-players-modal-content-container-deposit-mobile {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(95% - 32px);
    max-height: 80vh;
    overflow: auto;
    padding: 16px 8px;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
}

.user-standard-deposit-players-modal-close-container-deposit-mobile {
    position: absolute;
    top: 4px;
    right: 12px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.user-standard-deposit-players-modal-close-container-deposit-mobile:hover {
    color: #000;
}

.user-standard-deposit-players-title-modal-content-container-deposit-mobile {
    font-size: 14px;
    color: #000;
    font-weight: 700;
    margin-bottom: 8px;
    padding: 0 5px;
}

.user-standard-deposit-players-list-container-deposit-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 300px;
    overflow-y: auto;
}

.user-standard-deposit-players-item-container-deposit-mobile {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.user-standard-deposit-players-left-container-container-deposit-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-standard-deposit-players-item-container-deposit-mobile:hover {
    background: #f0f0f0;
}

.user-standard-deposit-players-online-item-container-deposit-mobile {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #12b612;
    flex-shrink: 0;
}

.user-standard-deposit-players-logo-container-deposit-mobile {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.user-standard-deposit-players-info-container-deposit-mobile {
    display: flex;
    flex-direction: column;
    margin-left: 8px;
}

.user-standard-deposit-players-account-name-container-deposit-mobile {
    font-weight: 500;
    font-size: 14px;
}

.user-standard-deposit-players-account-no-container-deposit-mobile {
    font-size: 13px;
    color: #666;
}


.user-standard-players-toggle-circle-container-deposit-mobile {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #ccc;
    margin-left: auto;
    flex-shrink: 0;
    transition: all 0.2s;
    background-color: #fff;
}

.user-standard-deposit-players-item-container-deposit-mobile.selected .user-standard-players-toggle-circle-container-deposit-mobile {
    border-color: #4CAF50;
    background-color: #4CAF50;
}




.user-standard-deposit-add-payment-container-container-deposit-mobile {
    text-align: center;
    margin-top: 16px;
}

.user-standard-deposit-add-payment-button-container-deposit-mobile {
    background: linear-gradient(145deg, #ad1b91, #6d0057);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.user-standard-deposit-add-payment-button-container-deposit-mobile:hover {
    background-color: #43a047;
}




.user-standard-selected-account-summary-deposit-mobile {
  border-radius: 10px;
  background-color: #222;
  padding: 15px 10px;
}

.user-standard-selected-account-info-deposit-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-bottom: 12px;
}

.user-standard-selected-account-footer-deposit-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.user-standard-selected-account-right-deposit-mobile {
    align-items: center;
    display:flex;
    gap:6px;
}


.user-standard-selected-account-copy-deposit-mobile {
    background: none;
    border: 0;
    padding: 0;
    font-size: 18px;
    color: #fff;
    filter: invert(1);
    height: 24px;
    width: auto;
    align-items: center;
    cursor: pointer;
}

.user-standard-selected-account-admin-fee-deposit-mobile {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffb82e;
    font-size: 14px;
    font-weight: bold;
}

.user-standard-selected-account-logo-deposit-mobile {
  width: auto;
  height: 20px;
}
.user-standard-deposit-players-list-container-deposit-mobile::-webkit-scrollbar {
    width: 6px;
}

.user-standard-deposit-players-list-container-deposit-mobile::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.user-standard-deposit-players-list-container-deposit-mobile::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.user-standard-deposit-players-list-container-deposit-mobile::-webkit-scrollbar-thumb:hover {
    background: #999;
}






@media (max-width: 768px) {
    .user-standard-deposit-player-account-container-container-deposit-desktop {
        display: none;
    }
    .user-standard-deposit-player-account-container-container-deposit-mobile {
        display: flex;
    }
}


/* =========================
   Login Page
========================= */


.login-form-login-page {
    max-width: 600px;
    margin: 0px auto;
    background: #f8f8f8;
    padding: 20px 0px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 35px;
}

.section-title-login-page {
    background: linear-gradient(145deg, #ad1b91, #6d0057);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    padding: 10px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}


.form-group-login-page {
    padding: 8px;
    position: relative;
}

.text-center-login-page {
    text-align: center;
}

.form-group-login-page label {
    font-weight: 600;
    display: block;
    color: #222;
    margin-bottom: 6px;
    font-size: 14px;
}

.form-control-login-page {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    background: #fff;
    transition: 0.2s ease;
}

.form-control-login-page:focus {
    border-color: #ad1b91;
    box-shadow: 0 0 5px rgba(179, 0, 0, 0.4);
    outline: none;
}

.toggle-password-login-page {
    position: absolute;
    right: 20px;
    top: 38px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    fill: #ad1b91;
    transition: 0.2s ease;
}

.toggle-password-login-page:hover {
    transform: scale(1.1);
    fill: #ad1b91;
}

.toggle-password-login-page.active {
    fill: #ad1b91;
}

.text-danger-login-page {
    color: #ad1b91;
    font-size: 13px;
}

.form-actions-login-page {
    text-align: center;
    margin-top: 6px;
}

input[type="radio"],
input[type="checkbox"] {
    accent-color: #ad1b91;
}

.btn-login-page {
    width: 60%;
    height: 40px;
    font-size: 16px;
}

.login-page-button {
    color: #ad1b91;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.login-page-button:hover {
    color: #6d0057;
    text-decoration: underline;
}

/* =========================
   Complain Page
========================= */
.complain-form {
    max-width: 600px;
    margin: 0px auto;
    background: #f8f8f8;
    padding: 20px 0px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 14px;
}

.complain-info-list {
    margin-left: 20px;
    padding-left: 20px;
    line-height: 1.6;
    list-style-position: outside;
}

/* =========================
   captcha Page
========================= */



.captcha-wrapper-desktop {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-control-captcha-desktop {
    flex: 1;
    max-width: 200px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 14px;
    background: #fff;
}

.form-control-captcha-desktop:focus {
    border-color: #ad1b91;
    box-shadow: 0 0 5px rgba(179, 0, 0, 0.4);
    outline: none;
}

.captcha-image-reload-desktop {
    display: flex;
    align-items: center;
    gap: 6px;
}

.captcha-img-desktop {
    border: 1px solid #ff0000;
    padding: 2px 4px;
    height: 40px;
    width: auto;
}

.reload-captcha-desktop {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #333;
    transition: 0.2s;
}

.reload-captcha-desktop:hover {
    color: #6d0057;
}

.reload-captcha-desktop svg {
    transition: transform 0.4s ease;
}

.reload-captcha-desktop.spin-desktop svg {
    animation: spin 0.6s linear;
}

@keyframes spin-desktop {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}



.captcha-wrapper-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-control-captcha-mobile {
    flex: 1;
    max-width: 200px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 14px;
    background: #fff;
}

.form-control-captcha-mobile:focus {
    border-color: #ad1b91;
    box-shadow: 0 0 5px rgba(179, 0, 0, 0.4);
    outline: none;
}

.captcha-image-reload-mobile {
    display: flex;
    align-items: center;
    gap: 6px;
}

.captcha-img-mobile {
    border: 1px solid #ff0000;
    padding: 2px 4px;
    height: 40px;
    width: auto;
}

.reload-captcha-mobile {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #333;
    transition: 0.2s;
}

.reload-captcha-mobile:hover {
    color: #6d0057;
}

.reload-captcha-mobile svg {
    transition: transform 0.4s ease;
}

.reload-captcha-mobile.spin-mobile svg {
    animation: spin 0.6s linear;
}

@keyframes spin-mobile {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* =========================
   Register Page
========================= */

.register-form {
    max-width: 600px;
    margin: 0px auto;
    background: #f8f8f8;
    padding: 20px 0px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
    font-family: 'Poppins', sans-serif;
}

.section-title {
    background: linear-gradient(145deg, #ad1b91, #6d0057);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    padding: 10px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.form-group {
    padding: 8px;
    position: relative;
}

.form-group label {
    font-weight: 600;
    display: block;
    color: #222;
    margin-bottom: 6px;
    font-size: 14px;
}

.form-control {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    background: #fff;
    transition: 0.2s ease;
}

.form-control:focus {
    border-color: #ad1b91;
    box-shadow: 0 0 5px rgba(179, 0, 0, 0.4);
    outline: none;
}

.toggle-password {
    position: absolute;
    right: 20px;
    top: 38px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    fill: #ad1b91;
    transition: 0.2s ease;
}

.toggle-password:hover {
    transform: scale(1.1);
    fill: #ad1b91;
}

.toggle-password.active {
    fill: #b30000;
}
.text-danger {
    color: #b30000;
    font-size: 13px;
}

.form-actions {
    text-align: center;
    margin-top: 6px;
}


select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='gray' viewBox='0 0 20 20'%3E%3Cpath d='M5.516 7.548l4.484 4.482 4.484-4.482L16 9.064l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
}

input[type="radio"],
input[type="checkbox"] {
    accent-color: #b30000;
}

.btn-register {
    width: 60%;
    height: 40px;
    font-size: 16px;
}

.dropdown-register {
  position: relative;
  user-select: none;
}

.dropdown-register .dropdown-selected-register {
  background: #fff;
  border: 1px solid #3a0030;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000;
}

.dropdown-register .dropdown-selected-register:hover {
  border-color: #ad1b91;
}

.dropdown-register .dropdown-arrow-register {
  transition: transform 0.3s ease;
}

.dropdown-register.active .dropdown-arrow-register {
  transform: rotate(180deg);
}

.dropdown-register .dropdown-options-register {
  list-style: none;
  position: relative;
  width: 100%;
  background: #fff;
  border: 1px solid #3a0030;
  border-radius: 8px;
  margin-top: 6px;
  padding: 0;
  overflow: hidden;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.dropdown-register.active .dropdown-options-register {
  height: auto;
  opacity: 1;
  overflow: visible;
  pointer-events: auto;
  visibility: visible;
}
.dropdown-register .dropdown-options-register li {
  padding: 10px 14px;
  border-bottom: 1px solid #000;
  cursor: pointer;
  transition: background 0.2s;
  color: #000;
}

.dropdown-register .dropdown-options-register li:last-child {
  border-bottom: none;
}

.dropdown-register .dropdown-options-register li:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.dropdown-register .dropdown-options-register li:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.must {
    color: #ff0000;
}

@media (min-width: 768px) {

.section-title-main-desktop {
    font-size: 24px;
    font-weight: 700;
    padding: 10px 20px;
    color: #fff;
    background: linear-gradient(145deg, #ad1b91, #6d0057);
    margin-bottom: 12px;
}    
.container-desktop-wrapper {
    padding: 10px 20px;
    background: #12000f;
    margin: 0 auto;
    max-width: 1200px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.container-desktop {
    display: flex;
    justify-content: center;
    background: #12000f;
    min-width: 768px;
}

.form-grid-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
}

.register-form-desktop {
    width: 100%;
    border-radius: 12px;
}

.form-section-desktop {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.section-title-register-desktop {
    background: linear-gradient(145deg, #ad1b91, #6d0057);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    padding: 10px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
    
.register-form-desktop {
    max-width: 600px;
    margin: 0px auto;
    background: #f8f8f8;
    padding: 20px 0px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
    font-family: 'Poppins', sans-serif;
}

.section-title-desktop {
    background: linear-gradient(145deg, #ad1b91, #6d0057);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    padding: 10px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.form-group-desktop {
    padding: 8px;
    position: relative;
}

.form-group-desktop label {
    font-weight: 600;
    display: block;
    color: #222;
    margin-bottom: 6px;
    font-size: 14px;
}

.form-group-desktop {
    position: relative;
}

.form-control-desktop {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    background: #fff;
    transition: 0.2s ease;
}

.form-control-desktop:focus {
    border-color: #ad1b91;
    box-shadow: 0 0 5px rgba(179, 0, 0, 0.4);
    outline: none;
}

.toggle-password-desktop {
    position: absolute;
    right: 20px;
    top: 38px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    fill: #ad1b91;
    transition: 0.2s ease;
}

.toggle-password-desktop:hover {
    transform: scale(1.1);
    fill: #ad1b91;
}

.toggle-password-desktop.active {
    fill: #ad1b91;
}
.text-danger-desktop {
    color: #b30000;
    font-size: 13px;
}

.form-actions-desktop {
    text-align: center;
    margin-top: 6px;
    margin-bottom: 6px;
}


select.form-control-desktop {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='gray' viewBox='0 0 20 20'%3E%3Cpath d='M5.516 7.548l4.484 4.482 4.484-4.482L16 9.064l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
}

input[type="radio"],
input[type="checkbox"] {
    accent-color: #b30000;
}

.btn-register-desktop {
    width: 60%;
    height: 40px;
    font-size: 16px;
}

.dropdown-register-desktop {
  position: relative;
  user-select: none;
}

.dropdown-register-desktop .dropdown-selected-register-desktop {
  background: #fff;
  border: 1px solid #3a0030;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000;
}

.dropdown-register-desktop .dropdown-selected-register-desktop:hover {
  border-color: #ad1b91;
}

.dropdown-register-desktop .dropdown-arrow-register-desktop {
  transition: transform 0.3s ease;
}

.dropdown-register-desktop.active .dropdown-arrow-register-desktop {
  transform: rotate(180deg);
}

.dropdown-register-desktop .dropdown-options-register-desktop {
  list-style: none;
  position: relative;
  width: 100%;
  background: #fff;
  border: 1px solid #3a0030;
  border-radius: 8px;
  margin-top: 6px;
  padding: 0;
  overflow: hidden;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.dropdown-register-desktop.active .dropdown-options-register-desktop {
  height: auto;
  opacity: 1;
  overflow: visible;
  pointer-events: auto;
  visibility: visible;
}
.dropdown-register-desktop .dropdown-options-register-desktop li {
  padding: 10px 14px;
  border-bottom: 1px solid #000;
  cursor: pointer;
  transition: background 0.2s;
  color: #000;
}

.dropdown-register-desktop .dropdown-options-register-desktop li:last-child {
  border-bottom: none;
}

.dropdown-register-desktop .dropdown-options-register-desktop li:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.dropdown-register-desktop .dropdown-options-register-desktop li:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
    
}

/* =========================
   POP UP
========================= */
.modalpopup,
.modalpopupmobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: rgb(0 0 0 / 53%);

  display: flex;
  justify-content: center;
  align-items: center;
}
.modalpopup-content,
.modalpopupmobile-content {
  background-color: #12000f;
  padding: 20px;
  border-radius: 15px;
  width: 90%;
  max-width: 450px;
  color: #fff;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  pointer-events: auto;
}

.modalpopupp,
.modalpopupmobilep {
  text-align: center;
}

.modalpopupa,
.modalpopupmobilea {
  color: #ffd700;
}

.modalpopupimg,
.modalpopupmobileimg {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 15px;
}

.modalpopup-footer,
.modalpopupmobile-footer {
  margin-top: 20px;
}

.btnpopup {
  background: linear-gradient(145deg, #ad1b91, #1e0018);
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  transition: 0.2s;
}

.btnpopup:hover {
  background: linear-gradient(145deg, #8b5cf6, #ec4899);
}

@media (max-width: 768px) {
  .modalpopup {
    display: none;
  }

  .modalpopupmobile {
    display: none;
  }
}




.modalpopup-payment-account-user-desktop,
.modalpopupmobile-payment-account-user-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: rgb(0 0 0 / 53%);

  justify-content: center;
  align-items: center;
}
.modalpopup-content-payment-account-user-desktop,
.modalpopupmobile-content-payment-account-user-mobile {
  background: linear-gradient(145deg, #ad1b91, #1e0018);
  padding: 20px;
  border-radius: 6px;
  width: 90%;
  max-width: 450px;
  color: #fff;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  pointer-events: auto;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #c750be transparent;
}


.modalpopupp-payment-account-user-desktop,
.modalpopupmobilep-payment-account-user-mobile {
  text-align: center;
}

.modalpopupa-payment-account-user-desktop,
.modalpopupmobilea-payment-account-user-mobile {
  color: #ffd700;
}

.modalpopup-label-payment-account-user-desktop,
.modalpopupmobile-label-payment-account-user-mobile {
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 8px;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
}

.modalpopup-input-payment-account-user-desktop,
.modalpopupmobile-input-payment-account-user-mobile {
  display: flex;
  flex-direction: column;
  margin-bottom: 6px;
}

.modalpopup-text-payment-account-user-desktop,
.modalpopupmobile-text-payment-account-user-mobile {
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: #000;
  outline: none;
  transition: border 0.3s ease;
  margin-bottom: 10px;
}

.modalpopupimg-payment-account-user-desktop,
.modalpopupmobileimg-payment-account-user-mobile {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 15px;
}

.modalpopup-footer-payment-account-user-desktop,
.modalpopupmobile-footer-payment-account-user-mobile {
  margin-top: 10px;
}

.btnpopup-payment-account-user-desktop {
  background: linear-gradient(145deg, #8b5cf6, #ec4899);
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  transition: 0.2s;
}

.btnpopup-payment-account-user-desktop:hover {
  background: linear-gradient(145deg, #614a5e, #910202);
}


.btnpopup-payment-account-user-mobile {
  background: linear-gradient(145deg, #8b5cf6, #ec4899);
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  transition: 0.2s;
}

.btnpopup-payment-account-user-mobile:hover {
  background: linear-gradient(145deg, #614a5e, #910202);
}

.modalpopup-payment-account-user-desktop {
  display: none;
}

.modalpopup-payment-account-user-desktop.show {
  display: flex !important;
}

@media (max-width: 768px) {
  .modalpopup-payment-account-user-desktop {
    display: none;
  }

  .modalpopupmobile-payment-account-user-mobile {
    display: none;
  }

  .modalpopupmobile-payment-account-user-mobile.show-payment-account {
    display: flex;
  }
}




.modalpopup-no-referral-user-desktop,
.modalpopupmobile-no-referral-user-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modalpopup-content-no-referral-user-desktop,
.modalpopupmobile-content-no-referral-user-mobile {
  background: linear-gradient(145deg, #ad1b91, #1e0018);
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 450px;
  color: #fff;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  max-height: 80vh;
  overflow-y: auto;
}

.modalpopupmobile-label-no-referral-user-mobile {
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 6px;
  color: #fff;
  font-size: 14px;
  text-align: left;
}

.modalpopup-label-no-referral-user-desktop {
    display: block;
    font-weight: 600; 
    margin-bottom: 6px;
    color: #fff;
    font-size: 14px;
    text-align: left;
}


.modalpopup-text-no-referral-user-desktop,
.modalpopupmobile-text-no-referral-user-mobile {
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: #fff;
}

.modalpopupmobile-text-no-referral-user-mobile small {
    text-align:left;
    margin-bottom:10px;
}
.modalpopup-text-no-referral-user-desktop small {
    display: block;
    margin-top: 4px;
    color: #ccc;
    font-size: 12px;
    text-align: left;
}

.btnpopup-no-referral-user-desktop,
.btnpopup-no-referral-user-mobile {
  background: linear-gradient(145deg, #8b5cf6, #ec4899);
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  margin: 5px;
  transition: 0.2s;
}

.btnpopup-no-referral-user-desktop:hover,
.btnpopup-no-referral-user-mobile:hover {
  background: linear-gradient(145deg, #614a5e, #910202);
}

.modalpopupmobile-input-no-referral-user-mobile {
    text-align: left;
    gap: 6px;
}

.modalpopupmobile-footer-no-referral-user-mobile {
    margin-top: 12px;
}





.modalpopup-input-no-referral-user-desktop {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    margin-bottom: 12px;
}

.modalpopup-label-no-referral-user-desktop {
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.modalpopup-text-no-referral-user-desktop {
    width: 100%;
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: #fff;
}



.modalpopup-no-referral-user-desktop.show {
  display: flex !important;
}

.modalpopupmobile-no-referral-user-mobile.show-no-referral {
  display: flex !important;
}

@media (max-width: 768px) {
  .modalpopup-no-referral-user-desktop {
    display: none !important;
  }
}



/* =========================
   SIDENAVCOK log
========================= */

.container-sidebar-log {
    max-width: 1200px;
    margin: 10px auto 15px auto;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
    background-color: #1e0018;
    color: #fff;
    padding: 0px;
    border-radius: 12px;
}
.standard-side-menu-sidebar-log {
    background: #12000f;
    color: #333;
    padding-bottom: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.player-account-section-sidebar-log {
    font-weight: bold;
    background-color: #a01986;
    padding: 4px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.username-sidebar-log {
    font-size: 16px;
    color: #fff;
}

.last-login-date-sidebar-log {
    font-size: 12px;
    color: #fff;
}

.menu-section-sidebar-log hr {
    width: 80%;
    border: 0.5px solid #5d0c4d;
    margin: 5px auto 10px auto;
}


.menu-section-sidebar-log {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    align-items: center;
}

.title-sidebar-log {
    color: #fff;
    font-size: 18px;
}

.menu-link-sidebar-log {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 8px 15px;
    width: 90%;
    text-decoration: none;
    color: #fff;
    border-radius: 6px;
    box-sizing: border-box;
    text-align: center;
}

.menu-link-sidebar-log span {
    font-size: 14px;
}

.icon-sidebar-log {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.menu-link-sidebar-log[data-active="true"] {
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(145deg, #ad1b91, #6d0057);
}

.menu-link-sidebar-log:hover {
    background: linear-gradient(145deg, #8b5cf6, #ec4899);
    color: #fff;
}

@media (max-width: 768px) {
.container-sidebar-log {
    display: none;
}
}