@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h2 {
    font-size: 1.2rem
}
.container {
    padding: 0 10px;
    padding-bottom: 20px;
}
body {
    background: #0d131c;
    font-family: "Inter", sans-serif;
    font-family: "Work Sans", sans-serif;
    display: flex;
    justify-content: center;
    color: var(--color);
}
ul, ol {
    font-size: 12px;
    margin-bottom: 10px;
    list-style-type: none;
}
.text-center {
    text-align: center;
}
.mt-10 {
    margin-top: 10px;
}
.mobile-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 430px;
    background: #240046;
    min-height: 100vh;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}
/* === Sidebar === */
.sidebar {
    background-color: #240046;
    color: var(--color);
    padding: 0;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 20;
}
.sidebar.active {
    transform: translateX(0);
}
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #3c096c;
}
.sidebar-logo {
    height: 30px;
}
.sidebar-close {
    font-size: 24px;
    color: var(--color);
    cursor: pointer;
}
.menu-single {
    padding: 10px 16px;
}
.menu-single a {
    display: flex;
    align-items: center;
    background: var(--secondary-item-background);
    border-radius: 8px;
    padding: 12px;
    color: var(--color);
    text-decoration: none;
    font-weight: bold;
}
.menu-single .icon {
    margin-right: 10px;
    font-size: 18px;
}
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
}
.menu-grid a {
    background: #3c096c;
    border-radius: 8px;
    padding: 16px 12px;
    text-align: center;
    text-decoration: none;
    color: var(--color);
    font-size: 14px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.menu-grid a.full {
    grid-column: span 2;
}
.menu-grid a:hover,
.menu-single a:hover {
    background: var(--item-background-hover);
}
.menu-grid .icon {
    font-size: 22px;
    margin-bottom: 6px;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #111923;
    border: 1px solid hsla(0,0%,100%,.04);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--navbar-background);
    padding: 4px 6px;
    color: var(--color);
    border-bottom: 1px solid hsla(0,0%,100%,.04);
}
.hamburger img {
    width: 20px;
}
.hamburger {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    /* background: linear-gradient(1turn, #0c5eff .8%, #1398f9); */
    /* box-shadow: 0 3px 28px #2283f666, inset 0 3px 3px #ffffff4d; */
    /* border-bottom: 2px solid #0547c9; */
    /* background-color: #19283a; */
    /* border: 1px solid hsla(0, 0%, 100%, .04); */
    border-radius: 8px;
    padding: 7px 10px;
    font-weight: 600;
    font-size: 12px;
}
.logo {
    font-size: 18px;
    font-weight: bold;
}
.logo img {
    height: 45px;
}
.category-scroll-wrapper {
    position: relative;
    background: #111923;
    padding: 0px 40px;
}
.category-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.category-scroll::-webkit-scrollbar {
    display: none;
}
.category-scroll .item {
    position: relative;
    flex: 0 0 auto;
    color: var(--color);
    padding: 5px 10px;
    font-size: 14px;
    white-space: nowrap;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    min-width: 70px;
    overflow: visible;
    background: #19283a;
    border: 1px solid hsla(0,0%,100%,.04);
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.category-scroll .item a {
    color: var(--color);
    text-decoration: none;
}
.category-scroll .item:hover {
    background: #0547c9;
    cursor: pointer;
}
.category-scroll .active {
    background-color: var(--primary);
}
.category-scroll .item .badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #ff0000;
    color: var(--color);
    font-size: 10px;
    padding: 1px 6px;
    border-radius: 5px;
    line-height: 1;
    font-weight: bold;
    z-index: 2;
}
.category-scroll .item .label {
    z-index: 1;
}
.category-scroll .item.highlight {
    background: var(--primary);
    color: black;
    font-weight: bold;
}
.category-scroll .item-badge {
    margin-right: 30px !important;
}
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 16px;
    padding: 6px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    user-select: none;
}
.scroll-arrow.left {
    left: 8px;
}
.scroll-arrow.right {
    right: 8px;
}
.scroll-arrow.hidden {
    display: none;
}

.hero-slider {
    position: relative;
}
.hero-slider img {
    height: 135px;
}
.hero-slider .owl-dots {
    position: absolute;
    bottom: 5px;
    width: 100%;
    text-align: center;
}
.hero-slider .owl-dot span {
    width: 5px;
    height: 5px;
    background: rgba(116, 115, 115, 0.679) !important;
    display: inline-block;
    margin: 3px;
    border-radius: 50%;
}
.hero-slider .owl-dot.active span {
    background: rgb(159, 158, 158, 0.679) !important;
}

.runningtext {
    background-color: var(--runingtext-background);
}
.running-text-container {
    width: 100%;
    overflow: hidden;
    background-color: var(--runingtext-background);
    padding: 10px 0; 
    white-space: nowrap;
    display: flex;
    align-items: center;
}
.announcement-label {
    display: flex;
    align-items: center;
    color: var(--secondary);
    padding: 0 15px;
    flex-shrink: 0; 
    background-color: var(--runingtext-background);
    z-index: 1;
}
.announcement-label i {
    margin-right: 8px;
    color: var(--primary);
}
.running-text {
    color: var(--color);
    display: inline-block;
    padding-left: 100%;
    animation: runningText 20s linear infinite;
}
@keyframes runningText {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.running-text-wrapper {
    display: flex;
    align-items: center;
    background: #1f1f1f;
    color: var(--color);
    
    overflow: hidden;
}
.running-text-wrapper .icon {
    flex-shrink: 0;
    margin-right: 8px;
}
.running-text-wrapper .icon img {
    width: 20px;
    height: 20px;
}
.marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    flex: 1;
}
.running-text {
    display: inline-block;
    padding-left: 100%;
    font-size: 12px;
    animation: marquee 15s linear infinite;
}
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.button-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 0 5px;
    margin-top: 16px;
}
.btn-gold {
    flex: 1;
    text-align: center;
    background: linear-gradient(1turn, #0c5eff .8%, #1398f9);
    box-shadow: 0 3px 28px #2283f666, inset 0 3px 3px #ffffff4d;
    border-bottom: 4px solid #0547c9;
    padding: 12px 0;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.carousel-section {
    margin-top: 5px;
    margin-bottom: 2px;
    padding-right: 5px;
    padding-left: 5px;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px;
}
.section-title {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: var(--primary);
}
.section-title-hot {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: var(--color);
}
.section-title .icon {
    width: 20px;
    margin-right: 6px;
}
.section-title-hot .icon {
    width: 20px;
    margin-right: 6px;
}
.section-time {
    margin-left: 8px;
    margin-bottom: 20px;
    font-size: 12px;
    color: var(--primary);
}
.nav-buttons {
    display: flex;
    gap: 4px;
}
.nav-1 {
    background-color: var(--primary);
    border: none;
    color: var(--secondary);
    font-size: 18px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
}
.nav-2 {
    background-color: #0547c9;
    border: none;
    color: var(--secondary);
    font-size: 18px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
}
.carousel-wrapper {
    overflow-x: auto;
}
.carousel {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
}
.slot-card {
    position: relative;
}
.slot-card .slot-name {
    width: 100% !important;
    position: absolute;
    bottom: 0;
    background-color: #19283a !important;
}
.game-card {
    background-color: var(--secondary-item-background);
    border: 1px solid hsla(0,0%,100%,.04);
    border-radius: 5px;
    overflow: hidden;
    width: 85px;
    flex-shrink: 0;
    text-align: center;
    position: relative;
    margin-bottom: 5px;
}
.game-card img {
    width: 100%;
    height: 120px;
    display: block;
    object-fit: cover;
}
.game-card .label {
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: #19283a !important;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.carousel-section .label {
    font-size: 10px;
    color: var(--color);
    padding: 4px 2px;
}

.slots-section {
    margin-top: 0px;
    padding: 0 5px;
}
.slots-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px;
}
.slots-title {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: var(--color);
}
.slots-title .icon {
    width: 20px;
    margin-right: 6px;
}
.show-all-button {
    background-color: #19283a;
    border: 1px solid hsla(0,0%,100%,.04);
    color: var(--color);
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
}
.slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.slot-card {
    background-color: var(--secondary-item-background);
    border: 1px solid hsla(0,0%,100%,.04);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.slot-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.slot-icon {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 20px;
}
.slot-name {
    font-size: 12px;
    color: var(--color);
    padding: 6px 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* === Togel Section */
.togel-section {
    margin-top: 32px;
}
.togel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px;
}
.togel-title {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: var(--color);
}
.togel-title .icon {
    width: 20px;
    margin-right: 6px;
}
.togel-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}
.togel-card {
    background-color: var(--secondary-item-background);
    border-radius: 12px;
    padding: 12px;
    min-width: 120px;
    flex-shrink: 0;
    text-align: center;
}
.togel-name {
    font-size: 16px;
    color: var(--color);
    margin-bottom: 8px;
    font-weight: 600;
}
.togel-numbers {
    display: flex;
    justify-content: center;
    gap: 6px;
}
.togel-numbers span {
    width: 28px;
    height: 28px;
    border: 2px solid var(--color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--color);
    font-size: 14px;
}
/* === BANKS ===  */
.bank-status-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    padding: 25px 5px;
}
.bank-item {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}
.bank-item img {
    width: 75px;
    max-height: 50px;
    object-fit: contain;
}
.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.status-indicator.online {
    background-color: #00cc66; /* Green */
}
.status-indicator.offline {
    background-color: #e63946; /* Red */
}
/* === Footer === */
.footer {
    margin: 8px;
    margin-bottom: 80px;
    color: var(--footer-color);
    padding: 0 5px;
}
/* === Bottom Nav === */
.bottom-nav {
    max-width: 430px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #19283a;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    z-index: 999;
    border-top: 1px solid hsla(0,0%,100%,.04);
}
.bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color);
    font-size: 12px;
    text-decoration: none;
}
.bottom-nav .nav-item img {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}
/* MODAL (PROVIDERS, TOGEL) */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.modal-box {
    background-color: var(--item-background);
    color: var(--color);
    border-radius: 12px;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h3 {
    margin: 0;
    font-size: 18px;
}
.modal-close {
    background: none;
    border: none;
    color: var(--color);
    font-size: 22px;
    cursor: pointer;
}
.modal-divider {
    border: none;
    border-top: 1px solid var(--footer-color);
    margin: 12px 0;
}
.modal-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.btn-modal {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    background-color: var(--background);
    border: 1px solid var(--third);
    border-radius: 8px;
    color: var(--color);
    text-decoration: none;
    font-size: 14px;
    position: relative;
}
.btn-modal.active {
    background-color: var(--primary);
    border: none;
}
.btn-modal.has-ribbon .ribbon {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--badge);
    color: var(--color);
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
}
/*  === PROVIDERS ===  */
.providers {
    background-color: var(--secondary);
    padding: 15px;
    border-radius: 5px;
    margin: 10px 5px;
}
.provider-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--secondary-item-background);
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 10px;
    padding: 0 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.provider-toggle .label {
    display: flex;
    align-items: center;
    gap: 6px;
}
.new-badge {
    background-color: red;
    color: white;
    font-size: 10px;
    padding: 1px 5px;
    border-radius: 12px;
    font-weight: bold;
    line-height: 1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.provider-toggle .chevron {
    font-size: 14px;
    color: #fff;
}
.provider-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}
/* === PROVIDERS LOBBY === */
.provider-lobby {
    padding: 20px 2px;
    color: var(--primary);
}
.lobby-title {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px;
}
.provider-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 5px;
}
.provider-card {
    width: 120px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--secondary-background);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-family: sans-serif;
}
.provider-card .card-image {
    position: relative;
    width: 120px;
    height: 92px;
}
.provider-card .card-image img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.provider-card .badge-icon {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 28px;
    height: 28px;
    z-index: 2;
    border-radius: 50%;
}
.provider-card .card-label {
    background-color: var(--secondary-background);
    color: var(--color);
    padding: 8px;
    font-size: 14px;
    font-weight: 500;
}
/* === togel provider games ===  */
.togel-table-games {
    color: var(--primary);
    font-family: sans-serif;
    padding: 10px 0;
}
.togel-table-title {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px;
}
.togel-games-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 5px;
}
.togel-game-card {
    width: 120px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--secondary-background);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-family: sans-serif;
}
.togel-game-image {
    position: relative;
}
.togel-game-image img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.togel-game-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 24px;
    height: 24px;
    z-index: 2;
    border-radius: 50%;
}
.togel-game-label {
    background-color: var(--secondary-background);
    color: var(--color);
    padding: 8px;
    font-size: 14px;
    font-weight: 500;
}
/* === TOGEL DIVIDER === */
.togel-divider {
    border: none;
    height: 1px;
    margin: 24px 0;
    background: var(--gold-gradient);
    box-shadow: 0 0 4px rgba(255, 215, 0, 0.2);
}
/* === Search Slot Modal Sections === */
.slot-filter-box {
    padding: 12px;
    background-color: var(--secondary);
    border-radius: 8px;
    margin-top: 8px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.slot-search-container {
    background-color: var(--secondary-item-background);
    padding: 10px;
    border-radius: 10px;
}
.slot-filter-search {
    position: relative;
    margin: 5px;
}
.slot-filter-search input {
    width: 100%;
    padding: 10px 32px 10px 10px;
    border-radius: 6px;
    border: 1px solid var(--third);
    background-color: var(--item-background);
    color: var(--color);
    font-size: 14px;
}
.slot-filter-search-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 16px;
    color: var(--color);
    cursor: pointer;
}
.slot-filter-options {
    display: flex;
    gap: 8px;
}
.slot-filter-select {
    flex: 1;
    background-color: var(--item-background);
    border: 1px solid var(--third);
    padding: 10px;
    margin: 5px;
    border-radius: 6px;
    color: var(--color);
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.slot-promo-badge {
    position: absolute;
    right: 28px;
    top: -8px;
    height: 20px;
}
/* === Slot Game === */
.slot-game-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Always 3 per row */
    gap: 12px;
}
.slot-game-card {
    background: var(--item-background);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary);
    width: 100%;
    border-radius: 10px 0 20px 0;
}
.slot-game-card .badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: linear-gradient(to right, #ff3c3c, #ffba00);
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 2;
}
.slot-game-card .badge-top-right {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 2;
}
.slot-game-card .badge-top-right img {
    width: 20px;
    height: 20px;
}
.slot-game-card .game-thumb {
    width: 100%;
    margin-bottom: 6px;
    display: block;
}
.slot-game-card .rtp-info {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--color);
}
.rtp-bar {
    flex: 1;
    height: 6px;
    background: var(--secondary-item-background);
    border-radius: 3px;
    overflow: hidden;
}
.rtp-fill {
    height: 100%;
    background: #00ff7f;
}
.rtp-fill-danger {
    height: 100%;
    background: #dc3545;
}
.rtp-fill-warning {
    height: 100%;
    background: #ffc107;
}
.rtp-percent {
    font-weight: bold;
    color: var(--color);
    font-size: 11px;
}
.game-title {
    margin-top: 4px;
    padding: 2px;
    font-size: 12px;
    font-weight: bold;
    color: var(--color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.favorite-icon {
    position: absolute;
    bottom: 1px;
    right: 8px;
    font-size: 10px;
    color: var(--third);
}
/* === Modal Login Regsiter === */
.loginregister-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}
.loginregister-content {
    background-color: var(--secondary-item-background);
    width: 320px;
    padding: 20px;
    border-radius: 16px;
    position: relative;
    color: white;
    box-shadow: 0 0 20px #000;
}
.loginregister-content a {
    width: 100%;
    text-decoration: none;
    color: var(--color);
}
.loginregister-logo {
    display: block;
    margin: 0 auto 10px;
    max-width: 150px;
}
.loginregister-title {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}
.loginregister-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: none;
    border-radius: 4px;
}
.loginregister-password-wrapper {
    position: relative;
}
.loginregister-toggle-password {
    position: absolute;
    right: 10px;
    top: 8px;
    cursor: pointer;
}
.loginregister-button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.loginregister-gold {
    background: var(--primary-gradient);
    color: var(--color);
}
.loginregister-orange {
    background: var(--item-background);
    color: var(--color);
}
.loginregister-link {
    text-align: center;
    font-size: 14px;
    margin: 6px 0;
    cursor: pointer;
}
.loginregister-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    color: var(--color);
    cursor: pointer;
}
/* === Register Page === */
.register-container {
    max-width: 350px;
    margin: 20px auto;
    padding: 10px;
    background-color: var(--secondary-item-background);
    border-radius: 10px;
}
.register-form input,
.register-form select {
    width: 100%;
    padding: 10px 12px;
    margin: 6px 0 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}
.register-form label {
    font-weight: 500;
    font-size: 15px;
}
.register-form small {
    color: #777;
    font-size: 13px;
}
.register-section-title {
    font-size: 18px;
    color: #b88900;
    margin: 24px 0 10px;
    border-left: 5px solid #b88900;
    padding-left: 10px;
}
.input-icon-wrapper {
    position: relative;
}
.input-icon-wrapper .icon-eye {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}
.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}
.captcha-box {
    background: black;
    color: hotpink;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 5px;
    letter-spacing: 4px;
}
.captcha-refresh {
    cursor: pointer;
    font-size: 20px;
}
.register-warning {
    font-size: 13px;
    color: red;
    margin: 10px 0;
}
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin: 10px 0 20px;
}
.btn-register {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    background: #5b4100;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.mb100 {
    margin-bottom: 100px;
}
.text-danger {
    color: var(--danger);
}
.text-success {
    color: var(--success);
}
.popup-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5) !important;
    justify-content: center;
    align-items: center;
}
.popup-modal img {
    border-radius:15px;
}
.popup-content {
    background-color: #111923;
    border: 2px solid #111923;
    width: 320px;
    padding: 7px;
    border-radius: 16px;
    position: relative;
    color: white;
    box-shadow: 0 0 20px #000;
    box-shadow: rgb(0 0 0 / 84%) 0px 54px 55px, rgb(0 0 0 / 88%) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    color: var(--color);
    cursor: pointer;
}
.w-100 {
    max-width: 100% !important;
}
.promo-container {
    font-family: Arial, sans-serif;
    color: white;
    max-width: 950px;
    margin: auto;
}
.promo-block {
    margin-top: 20px;
}
.promo-banner {
    position: relative;
}
.promo-banner img {
    width: 100%;
    height: auto;
    display: block;
}
.rincian-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 8px 14px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}
.promo-details {
    background-color: var(--background);
    padding: 16px;
    border-radius: 8px;
    margin-top: 10px;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    overflow: hidden;
}
.hidden {
    display: none;
}
.masuk-daftar {
    margin-top: 0px;
    margin-bottom: 0px;
}
.span-3 {
    grid-column: span 3;
}
.center-row-flex-nowrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
.loadmore-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 8px 14px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}
.coming_soon_provider_image {
    height: 100px !important;
    max-height: 100% !important;
    object-fit: contain !important;
}
.playbtn {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s;
  font-weight: 600;
  letter-spacing: 2px;
  overflow: hidden;
}
.playbtn span {
  position: absolute;
  display: block;
}
.playbtn span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, #ffff00);
  animation: animate1 1s linear infinite;
}
@keyframes animate1 {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 100%;
  }
}
.playbtn span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #ffff00);
  animation: animate2 1s linear infinite;
  animation-delay: 0.25s;
}
@keyframes animate2 {
  0% {
    top: -100%;
  }
  50%,
  100% {
    top: 100%;
  }
}
.playbtn span:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(270deg, transparent, #ffff00);
  animation: animate3 1s linear infinite;
  animation-delay: 0.5s;
}
@keyframes animate3 {
  0% {
    right: -100%;
  }
  50%,
  100% {
    right: 100%;
  }
}
.playbtn span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #ffff00);
  animation: animate4 1s linear infinite;
  animation-delay: 0.75s;
}
@keyframes animate4 {
  0% {
    bottom: -100%;
  }
  50%,
  100% {
    bottom: 100%;
  }
}
.animated {
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
@keyframes tada {
  0% {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}
.elixr{
  font-weight: 900;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text, border-box;
  background-image: linear-gradient(
      15deg,
      rgb(77, 255, 246) 20%,
      rgb(121, 37, 255) 30%,
      rgb(255, 110, 195) 40%,
      rgb(255, 65, 65) 50%,
      rgb(132, 65, 255) 50%,
      rgb(65, 255, 166) 50%,
      rgb(255, 242, 65) 50%
    ),
    url(https://res.cloudinary.com/dkxnijged/image/upload/v1759386226/bg1_w6jrew.webp);
  background-size: 400% 400%, 10em;
  animation: elixreffect 1.5s infinite;
}
@keyframes elixreffect{
  0% {
    -webkit-filter: hue-rotate(360deg);
  }
  100% {
    -webkit-filter: hue-rotate(0deg);
  }
}
h1 {
    font-size: 1.6em;
    color: #ffffff;
    text-transform: uppercase;
}
p {
    font-size: 12px;
    color: #ddd;
    margin-bottom: 10px;
}
::-webkit-scrollbar {
    width: 10px; 
    height: 10px;
}
::-webkit-scrollbar-track {
    background: #19283a;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #0547c9;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0547c9;
}
h1, h2, h3, h4, h5, h6 {
	margin-bottom:10px;
	font-weight: 500;
}
h3, h4, h5, h6 {
	font-size: 13px;
}
#hidden-content {
	transition: all 0.5s ease-in-out;
	overflow: hidden;
}
/* Tambahkan efek hover pada tombol */
#read-more-btn:hover {
	opacity: 0.9;
	transform: translateY(-1px);

}

.mb {
	margin-bottom:10px;
}