@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

:root {
    --primary-color: gold;
    --secondary-color: rgb(112 94 0);
    --tertiary-color: rgb(255, 229, 82);
    --fourth-color: #ac9100;
    --fifth-color: #fff600;
    --linear-gradient: linear-gradient(to left, rgb(83, 67, 0), #000 50%, rgb(83, 67, 0) 100%);
    --linear-gradient-light: linear-gradient(to left, rgb(83, 67, 0), rgb(83, 67, 0) 25%, #000 50%, rgb(83, 67, 0) 75%, rgb(83, 67, 0) 100%);
    --vertical-gradient: linear-gradient(to bottom, rgb(83, 67, 0), #000 50%, rgb(83, 67, 0) 100%);
    --gradient-game: linear-gradient(to bottom, #d1c212, #fee905, #cfbe05);
    --progress-gradient: linear-gradient(180deg, #ffcb30, #f9bb00 37.29%, #603f00 70.1%, #ffcc53);
    --border-color: gold;
    --padding-logo: 101px;
    --footer-background: rgb(29, 24, 24);
    --font-family: Arial, Helvetica, sans-serif;
    --bs-gap: 0.5rem;
    --bs-body-font-size: 0.8rem;
    
    /* New Variables */
    --color-1: #000000;
    --color-2: #dadada;
    --color-3: #fff;
    --color-4: #302b02;
    --color-5: #b29700;
    --color-6: #cbb600;
    --color-7: #d1c02d;
    --color-8: #ff0;
    --color-9: #ffff26;
    --color-10: #ffefae;
    --color-11: #ff0;

    --gradient-1: linear-gradient(to right, var(--color-6), var(--color-8), var(--color-6));
    --gradient-2: linear-gradient(to bottom, var(--color-3), var(--color-2));
    --gradient-3: radial-gradient(circle at center, var(--color-8), var(--color-6));
    --gradient-4: linear-gradient(to bottom, var(--color-9), var(--color-8), var(--color-7), var(--color-8));
    --gradient-5: linear-gradient(to bottom, var(--color-7), var(--color-11), var(--color-7));
    --gradient-6: linear-gradient(to bottom, var(--color-8), var(--color-6), var(--color-4));
}

ol, ul {
    padding-left: 0.5rem;
}

ol li, ul li {
    margin-bottom: 5px;
}

.btn {
    font-size: 0.75rem;
}

.btn:hover {
    color: var(--color-11);
    text-shadow: 0 1px 2px #000, 0 0 3px #000, 0 0 5px #000;
}

.btn[name=btn_process] {
    margin-bottom: 0.75rem
}

.btn-warning {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 15px;
    height: 35px;
    background-image: var(--gradient-4);
    border-color: var(--color-5);
    color: var(--color-3);
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px var(--color-1);
    text-transform: uppercase;
}
.btn-main {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 15px auto 0;
    padding: 5px 10px;
    height: 30px;
    max-width: 120px;
    width: 100%;
    background-image: linear-gradient(to bottom, #7c0505, #c21515, #7c0505);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 0 5px #000;
    text-transform: uppercase;
}
.btn-main:hover {
    animation: jelly 1s ease-in-out infinite;
}

.table>:not(caption)>*>* {
    padding: .5em .2rem;
    vertical-align: middle;
}

[data-bs-theme="dark"] {
    --bs-body-bg: #060606;
    --bs-body-color: var(--color-3);
    --bs-link-color-rgb: 247, 247, 247;
    --bs-link-hover-color-rgb: 255, 255, 255;
}

[data-bs-theme="light"] {
    --bs-body-bg: var(--color-3);
    --bs-body-color: var(--color-1);
    --bs-link-color-rgb: 37, 37, 37;
    --bs-link-hover-color-rgb: 20, 20, 20;
}

@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot');
    src: url('../fonts/icomoon.eot') format('embedded-opentype'), url('../fonts/icomoon.woff2') format('woff2'), url('../fonts/icomoon.ttf') format('truetype'), url('../fonts/icomoon.woff') format('woff'), url('../fonts/icomoon.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

i {
    font-family: 'icomoon';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    padding-top: 76px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

ol,
ul {
    list-style: none;
}

.form-control, .form-select {
    padding: .35rem .7rem;
    font-size: var(--bs-body-font-size);
    min-height: 38px;
}

.form-control,
.form-control:focus {
    background: var(--color-3);
    color: var(--color-1);
}

.form-control::placeholder {
    color: #999;
    font-style: italic;
}

#main {
    width: 0;
    position: fixed;
    height: 100%;
    top: 0px;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.logo {
    z-index: 1;
    position: relative;
}

.border-gold {
    border: 1px solid gold;
    text-shadow: 0 0 2px #000;
}

.light-green {
    color: #8cff4e!important;
}

.light-red {
    color: #ffc0cb!important;

}

.light-blue {
    color: #00ffff!important;
}

.formSearch {
    border: 2px solid var(--border-color);
    border-radius: 5px;
}

.daterangepicker .ranges li,
.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
    color: #000;
}

/********************** Side Nav ***************************/
#menu-sidebar {
    background: var(--secondary-color);
    padding: 0;
    height: auto;
    width: 200px;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: -200px;
    bottom: 0;
    overflow-x: hidden;
    transition: 0.5s;
    -webkit-scroll-bar: none;
}

.logo-menu {
    background: linear-gradient(1turn,
            var(--mobile-background),
            var(--mobile-navbar-background-gradient) 101%);
    display: flex;
    align-items: center;
    padding: 0.5rem;
    width: 300px;
}

.logo-menu {
    display: flex;
    padding: 1rem;
    justify-content: center;
}

.nav-sidenav-list {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
    flex: 1;
    overflow: auto;
    width: 200px;
    padding-top: 40px;
    padding-bottom: 80px;
}

.nav-sidenav-list a {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    font-size: 0.75rem;
    text-align: center;
    color: var(--color-1);
    border-bottom: 1px solid var(--border-color);
    gap: 10px;
    position: relative;
    background-image: linear-gradient(to bottom, var(--color-8) 0%, var(--color-6) 100%);
    box-shadow: inset 0 0 3px 1px var(--fifth-color), inset 0 1px 0 0 var(--primary-color), inset 0 0 0 2px var(--primary-color), 3px 3px 2px 1px rgba(0, 0, 0, 0);
}

.nav-sidenav-list a:hover {
    color: var(--color-11);
    text-shadow: 1px 1px 3px #000, 1px 1px 5px #000, 1px 1px 8px #000;
}

.nav-sidenav-list a:last-child {
    border-bottom: none;
}

.nav-sidenav-list a#download-apk {
    margin: 0;
    padding: 10px;
    animation: moveBackground 5s ease infinite;
    background-image: linear-gradient( 150deg, #ceb424 10%, #d4c009 21%, #faed36 33%, #f7ed5d 44%, #b59509 60%, #edca30 73%, #fae636 85%, #8e8503 100% );
    background-size: 300%;
    border: 0;
    border-radius: 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.nav-sidenav-list a#download-apk img {
    animation: flip 4s linear infinite;
}

.nav-sidenav-list a img,
.nav-sidenav-list a svg {
    width: 30px;
    height: 30px;
}

.nav-sidenav-list form button {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 10px;
    background-image: linear-gradient(to bottom, #f60000 0%, #320000 100%);
    border: 0;
    border-bottom: 2px solid #000;
    box-shadow: inset 0 0 3px 1px #4a0000, inset 0 1px 0 0 #ae0000, inset 0 0 0 2px #770000, 3px 3px 2px 1px rgb(0 0 0 / 0%);
}

.mobile-menu {
    padding: 10px;
    color: var(--color-3);
    z-index: 2;
    position: relative;
}

.mobile-menu svg {
    width: 27px;
    height: 27px;
}

.close-sidebar:hover {
    background: var(--color-6);
}

.close-sidebar {
    position: absolute;
    top: 7px;
    right: 7px;
    font-size: 0.75rem;
    padding: 2px 7px;
    cursor: pointer;
    background: #e41919;
    border: 1px solid var(--color-3);
    border-radius: 100%;
}

.white-bg {
    background: #fefefe;
    padding: 1rem;
    color: #000;
}

.btn.btn-tema {
    background-image: var(--gradient-5);
    margin: 0.25rem;
    background-repeat: repeat-x;
    color: var(--color-1);
    border: 1px solid var(--color-3);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    padding: 0.5rem;
    letter-spacing: 1px;
    font-weight: bolder;
    font-size: 14px;
}

.btn.btn-tema:hover {
    color: var(--color-11);
}

.produk-items .btn.btn-tema {
    padding: 0.15rem 0.15rem 0.5rem 0.15rem;
    width: 100%;
    height: 100%;
}

/*************************************************************/

/************************ Header *****************************/

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: var(--color-1);
    border: 0;
}

.btn-daftar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 15px;
    height: 35px;
    background-image: var(--gradient-4);
    border-color: var(--color-5);
    color: var(--color-1);
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px #fff, 0 0 3px #fff;
    text-transform: uppercase;
    animation: jelly 1s ease-in-out infinite;
    border: 1px solid var(--border-color);
}

.btn-daftar:hover {
    background: var(--color-5);
    border: 1px solid var(--border-color);
}

/*************************************************************/

/************************ Slider *****************************/

#slider img {
    width: 100%;
    min-height: 270px;
}

/*************************************************************/

/*********************** Contact *****************************/

.contact-modern {
    margin-top: 30px;
    padding: 20px 15px;
}

.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-header p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    display: inline-block;
}

.contact-header p:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: rgba(255,255,255,0.5);
    border-radius: 3px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease backwards;
    max-width: 260px;
    margin: 0 auto;
    width: 100%;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin-right: 12px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(360deg);
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 2px;
    font-weight: 500;
}

.contact-detail {
    font-size: 13px;
    font-weight: 600;
    word-break: break-word;
}

/* Warna spesifik untuk setiap platform */
.contact-item.facebook .contact-icon {
    background: #1877f2;
}

.contact-item.twitter .contact-icon {
    background: #000000;
}

.contact-item.instagram .contact-icon {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5);
}

.contact-item.tiktok .contact-icon {
    background: #000000;
}

.contact-item.youtube .contact-icon {
    background: var(--primary-color);
}

.contact-item.phone .contact-icon {
    background: #34b7f1;
}

.contact-item.whatsapp .contact-icon {
    background: #25D366;
}

.contact-item.telegram .contact-icon {
    background: #0088cc;
}

.contact-footer {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-footer p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay animations untuk setiap item */
.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.15s; }
.contact-item:nth-child(3) { animation-delay: 0.2s; }
.contact-item:nth-child(4) { animation-delay: 0.25s; }
.contact-item:nth-child(5) { animation-delay: 0.3s; }
.contact-item:nth-child(6) { animation-delay: 0.35s; }
.contact-item:nth-child(7) { animation-delay: 0.4s; }
.contact-item:nth-child(8) { animation-delay: 0.45s; }

/* Responsive untuk mobile */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-item {
        padding: 10px 12px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
        margin-right: 8px;
    }
    
    .contact-label {
        font-size: 11px;
    }
    
    .contact-detail {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .btn.btn-tema {
        font-size: 11px;
    }
}

.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
}

.transition {
    transition: all 0.3s ease;
}

/* Efek shimmer untuk background */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.bg-welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

/*************************************************************/

/*********************** Marquee *****************************/
.att {
    font-size: 0.75rem;
}

.running-text {
    background: var(--color-1);
    color: var(--color-1);
    border-bottom: 2px solid var(--border-color);
    padding: 5px 0;
    padding-left: 10px;
    background-image: var(--gradient-1);
}

.running-text .att {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 30px;
    height: 30px;
    background-color: var(--color-1);
    border-radius: 50px;
}

.running-text .att svg-icon {
    margin: 0;
}

.marquee {
    position: relative;
    white-space: nowrap;
    flex-grow: 1;
    overflow: hidden;
    line-height: 30px;
}

.marquee-isi {
    overflow: hidden;
}

/* The sliding span */
.marquee span {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: bold;
    position: relative;
    left: -60%;
    -moz-animation-name: marquee;
    -webkit-animation-name: marquee;

    /* Set the duration, s = seconds */
    -moz-animation-duration: 40s;
    -webkit-animation-duration: 40s;

    /* How many times the animation to repeat */
    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;

    /* Several options available, use linear for this example */
    -moz-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
}

/* Stop the marquee on :hover */
.marquee:hover span {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
}

@-webkit-keyframes marquee {
    0% {
        left: 100%;
    }

    100% {
        left: -100%;
    }
}

@-moz-keyframes marquee {
    0% {
        left: 100%;
    }

    100% {
        left: -100%;
    }
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--secondary-color);
}

/*****************************************************/

/********************* Daftar ************************/

.radio_2 {
    padding-left: 0;
    padding-right: 0;
}

.radio_2 label {
    background-color: #fff;
    border: 1px solid var(--fourth-color);
    color: var(--fourth-color);
    display: block;
    transition: .7s;
    width: 100%;
    font-size: 110%;
    cursor: pointer;
    padding: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.radio_2 input[type=radio]:checked~label img {
    filter: invert(1);
}

.radio_2 label .marked {
    background-color: #fff;
    border-radius: 50%;
    color: var(--fourth-color);
    display: inline-block;
    height: 16px;
    line-height: 16px;
    margin-left: 2px;
    opacity: 0;
    transition: .2s;
    vertical-align: middle;
    vertical-align: text-bottom;
    width: 16px;
    padding-top: 2px;
    text-shadow: none;
}

.radio_2 input[type=radio] {
    height: 0;
    opacity: 0;
    position: absolute;
    width: 0
}

.radio_2 input[type=radio]:checked~label {
    background: var(--gradient-4);
    color: #000;
    transition: .7s;
}

.radio_2 input[type=radio]:checked~label .marked {
    opacity: 1;
    transition: .2s
}

.icon-checkmark:before {
    content: "\e914";
}

.icon-refresh::before {
    content: "\f021";
}

.icon-envelop::before {
    content: "\e904";
}

#form-daftar h3 {
    border-left: 6px solid var(--fourth-color);
    padding-left: 0.3rem;
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
}

#form-daftar .btn-tema {
    margin: 1rem auto;
    display: block;
}


/*****************************************************/

/******************** form-login *********************/

#form-login {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    text-align: center;
    color: white;
    padding: 15px 15px 10px 15px;
    border: 1px solid var(--border-color);
    position: relative;
    margin: 0 auto;
    padding: 5px;
    max-width: 335px;
    border: 0;
    border-radius: 10px;
    overflow: hidden;
    z-index: 0;
}

#form-login::before {
    content: '';
    display: block;
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    animation: spin 5s linear infinite;
    background-image: linear-gradient(to right, var(--color-8), var(--color-5), var(--color-4), var(--color-7), var(--color-9));
    border-radius: 10px;
    z-index: -1;
}

#form-login form {
    padding: 20px;
    background-color: var(--color-4);
    border-radius: 8px;
}

#form-login input {
    height: 35px;
    font-size: 0.75rem;
    border: none;
    color: #495057;
}

#form-login .input-group input {
    text-align: left;
}

.showpassword {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    border-radius: 0 0.375rem 0.375rem 0;
    cursor: pointer;
}

.ubahPass {
    border: 1px solid var(--bs-border-color);
    border-radius: 0px 5px 5px 0px;
    -moz-border-radius: 0px 5px 5px 0px;
    -webkit-border-radius: 0px 5px 5px 0px;
}

.showpassword img {
    filter: contrast(0.5);
}

.button-login {
    width: 100%;
    padding: 5px 0px;
    margin-bottom: 5px;
    font-weight: bold;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 15px;
    height: 35px;
    background-image: var(--gradient-4);
    border-color: var(--color-5);
    color: var(--color-1);
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px #ff0, 0 0 3px #ff0;
    text-transform: uppercase;
}

#form-login .button-color:hover {
    background: var(--primary-color);
}

.forget-password {
    font-size: 0.75rem;
    font-style: italic;
    text-decoration: underline;
    text-align: left;
}

.forget-password:hover {
    text-decoration: none;
}

/*****************************************************/

/******************** produk-home ********************/

.gm-ttl,
.rns,
.nv-btn {
    gap: var(--bs-gap);
}

.gm-ttl h3::after {
    content: "";
    display: block;
    width: 1.5rem;
    height: 0.125rem;
    background-color: var(--primary-color);
    margin-top: 0.5rem;
}

.rns-btn {
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: #D3D4D7;
}

.rns-btn svg {
    width: 0.625rem;
    color: #222939;
}

.rns-btn:hover,
.lbx .bp:hover {
    background: #BDBFC4;
}

.nv-btn {
    display: flex;
}

.nv-btn .rns-btn {
    width: 32px;
    border-radius: 50%;
}

.result {
    border-radius: 8px;
    padding: 0;
    display: grid;
    grid-template-areas:
        "pasaran"
        "keluaran"
        "tanggal";
    overflow: hidden;
    font-weight: 700;
    aspect-ratio: auto;
    background: radial-gradient(ellipse farthest-corner at right bottom, var(--color-9) 0, var(--color-8) 8%, var(--color-6) 30%, var(--color-5) 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, var(--color-9) 0, var(--color-5) 8%, var(--color-6) 25%, var(--color-4) 62.5%, var(--color-9) 100%);
    border: 0;
    border-radius: 12px;
}

.resultBg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    filter: brightness(40%);
    display: none;

}

.result>.pasaran {
    grid-area: pasaran;
    text-align: center;
    width: 100%;
    text-shadow: 0 0 1px var(--primary-color);
    z-index: 3;
    padding: 10px 5px;
    background: transparent;
    font-size: 12px;
}

.result>.keluaran {
    grid-area: keluaran;
    padding: 10px 5px;
    font-family: "Oswald", sans-serif;
    color: var(--color-3);
    line-height: 36px;
    font-size: 36px;
    text-shadow: 0 0 5px var(--primary-color), 0 0 5px #000;
    display: grid;
    place-items: center;
    z-index: 3;
    letter-spacing: 5px;
    background: var(--color-4);
    border-radius: 0;
    text-shadow: 0 0 5px var(--color-4), 0 0 5px var(--color-1);
    line-height: 60px;
}

.result>.tanggal {
    grid-area: tanggal;
    width: 100%;
    height: 100%;
    background: var(--vertical-gradient);
    font-size: 0.7rem;
    padding: 8px;
    display: grid;
    place-items: center;
    font-family: "Abel", sans-serif;
    color: var(--result-tanggal-color);
    border-radius: 50px;
    z-index: 3;
    background: transparent;
    border-radius: 0;
}

/*****************************************************/

/********************* MAINTENANCE *********************/

.btn-tema.disabled {
    background: #6c757d !important;
    border: none;
    pointer-events: none;
}

.maintenance {
    position: relative;
    display: inline-block; /* Memastikan container seukuran gambar */
    overflow: hidden;
}

/* Membuat gambar jadi silver dan tampak "diam" */
.maintenance img {
    filter: grayscale(100%) brightness(0.7) contrast(1.2);
    opacity: 0.6;
    display: block;
}

/* Lapisan Silver untuk 'menghentikan' visual GIF */
.maintenance::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(192, 192, 192, 0.5); /* Warna Silver Metalik */
    z-index: 1;
}

/* Teks Maintenance Miring */
.maintenance::after {
    content: "MAINTENANCE";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%; /* Lebih lebar supaya background teks penuh */
    transform: translate(-50%, -50%) rotate(-30deg);
    
    /* Styling Teks */
    background: linear-gradient(
0deg, #a8adad 0%, /* Silver gelap di ujung */ #bdc3c7 20%, /* Transisi masuk */ #ffffff 50%, /* Cahaya putih tepat di tengah, spread luas */ #bdc3c7 80%, /* Transisi keluar */ #a8adad 100% /* Kembali gelap di ujung lainnya */);
    color: #333;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 5px 0;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    z-index: 2;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

/*****************************************************/

/********************* dashboard *********************/

.main-head {
    background: var(--secondary-color);
}

.main-head h3 {
    color: var(--fifth-color);
    margin-bottom: 0;
    font-size: 1.25rem;
}

.main-head > div > span {
    font-size: 0.9rem;
}

.list-togel > div {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
}

.angka-togel {
    color: var(--tertiary-color);
    font-weight: bold;
    font-size: 1rem;
}

.bet-closed {
    color: #ff4343;
    font-weight: bold;
}

.scroll-game {
    max-height: 100vh;
    overflow-y: auto;
}

.slot-list,
.casino-list,
.sportbook-list,
.virtualsport-list,
.fishing-list,
.sabung-ayam-list,
.mini-list {
    grid-template-columns: 1fr 1fr 1fr;
}

.slot-list .card {
    border: 1px solid rgb(25,135,84);
}

.dashboard .card,
.slot-list .card {
    border-radius: 1rem;
    margin: 0 auto;
    max-width: 220px;
}

/*  */

.sportbook-list .card {
    border: 1px solid rgb(220,53,69);
}

.dashboard .card,
.sportbook-list .card {
    border-radius: 1rem;
    margin: 0 auto;
    max-width: 220px;
}

/*  */

.casino-list .card {
    border: 1px solid rgb(13,110,253);
}

.dashboard .card,
.casino-list .card {
    border-radius: 1rem;
    margin: 0 auto;
    max-width: 220px;
}

/*  */

.virtualsport-list .card {
    border: 1px solid rgb(108,117,125);
}

.dashboard .card,
.virtualsport-list .card {
    border-radius: 1rem;
    margin: 0 auto;
    max-width: 220px;
}

/*  */

.fishing-list .card {
    border: 1px solid rgb(33,37,41);
}

.dashboard .card,
.fishing-list .card {
    border-radius: 1rem;
    margin: 0 auto;
    max-width: 220px;
}

/*  */

.sabung-ayam-list .card {
    border: 1px solid #0dcaf0;
}

.dashboard .card,
.sabung-ayam-list .card {
    border-radius: 1rem;
    margin: 0 auto;
    max-width: 220px;
}

/*  */

.card-head {
    border-radius: 1rem 1rem 0 0;
    -webkit-border-radius: 1rem 1rem 0 0;
    -moz-border-radius: 1rem 1rem 0 0;
    -ms-border-radius: 1rem 1rem 0 0;
    -o-border-radius: 1rem 1rem 0 0;
    margin: 0.5rem;
}

.card-title,
.popup-title {
    font-weight: bold;
    color: var(--color-3);
    text-shadow: 0 0 2px var(--primary-color);
    word-break: break-word;
    font-size: 0.8rem;
    text-shadow: 0 0 2px #000, 0 0 3px #000;
}

.popup-title {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.modal-content {
    border: 1px solid var(--primary-color);
}

.modal-body .nv-btn .rns-btn {
    border-radius: 0;
    width: 40px;
    height: 40px;
}

.modal-body .rns-btn svg {
    width: 0.75rem;
}

/*****************************************************/

/*********************** Togel ***********************/

.menu-select {
    display: flex;
    flex-wrap: wrap;
    padding: 0.5rem 0.75rem;
    align-items: center;
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    width: 100%;
}

.tipe-betting {
    background: var(--linear-gradient-light);
    border-radius: 0.375rem 0.375rem 0 0;
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 2px solid #26001b;
    margin-top: 1rem;
}

.tipe-betting label,
.menu-generator label {
    width: 15%;
}

.menu-generator {
    background: var(--linear-gradient-light);
    border-radius: 0 0 0.375rem 0.375rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.tab-selector {
    background: var(--secondary-color);
    border-radius: 0.375rem 0.375rem 0 0;
    padding: 0.6rem;
}

.contentset {
    padding: 1rem;
}

.centang {
    margin-right: 0.2rem;
    cursor: pointer;
}

.auto th {
    border-bottom: none;
    padding-bottom: 0;
}

input[type="text"]:disabled {
    background: #dddddd;
}

.no-table {
    width: 6%;
}

[class^="tile color"].color .table-togel>thead>tr>td {
    border-bottom: 0;
    padding-bottom: 0;
    vertical-align: bottom;
}

[class^="tile color"].color .table-togel>thead>tr>td:after {
    background-color: rgba(255, 255, 255, 0.3);
    content: "";
    display: block;
    height: 4px;
    width: 100%;
    margin-top: 0.5rem;
}

[class^="tile color"] input[type=number],
[class^="tile color"] input[type=tel],
[class^="tile color"] input[type=text],
[class^="tile color"] textarea,
[class^="tile color"] select {
    border-radius: 5px;
    font-size: 0.75rem;
    padding: 3px 5px;
    margin: 0;
    border: 1px solid #818285;
    width: 100%;
    text-align: center;
    min-height: 35px;
}

[class^="tile color"] input.auto-colok {
    margin-left: 5px;
}

[class^="tile color"] input.rclass,
[class^="tile color"] input.auto-colok,
[class^="tile color"] input.onlyNumber,
[class^="tile color"] input.autobet {
    font-family: Verdana;
    color: #000000;
    background: #fff;
    border: 1px solid #ffffff;
    cursor: pointer;
    font-weight: bold;
    flex: 1 0 0%;
}

.table-togel {
    width: 100%;
    color: #fff;
    background: transparent;
}

#baris {
    width: auto;
}

.first-no {
    width: 17%;
}

.radbut {
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
}

.radbut input,
.radbut label {
    cursor: pointer;
    margin-right: 0.3rem;
}

.bg-yellow {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity));
    background-image: var(--bs-gradient)!important;
    color: #000!important;
}

[class^="tile color"].color table>thead>tr>td,
[class^="tile color"].color table>thead>tr>th,
[class^="tile color"].color table>tbody>tr>td,
[class^="tile color"].color table>tbody>tr>th,
[class^="tile color"].color table>tfoot>tr>td,
[class^="tile color"].color table>tfoot>tr>th {
    border-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 0.7rem 0.2rem;
    border-bottom: 1px solid #fff;
    vertical-align: middle;
}

.tile.color [class^="tile color-"] {
    color: #fafafa;
    background-color: transparent;
}

.tile.color .tile.color-widget {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.tile.color {
    border-radius: 10px;
}

.tile.color form {
    padding: 1rem;
    color: #fff;
}

.tile.color .tab-pane {
    border-radius: 0 0 0.375rem 0.375rem;
}

.taruhan {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.taruhan .taruh {
    align-self: flex-end;
}

.x1000 {
    flex: 0 0 auto;
    width: auto;
    padding: 5px;
    text-align: left;
}

#caraMain {
    width: 100%;
}

/*****************************************************/

/********************* Peringatan ********************/

.peringatan {
    background: #ffc0cb;
    font-size: smaller;
    color: #000;
}

/*****************************************************/

/********************** Deposit **********************/

.unread {
    font-weight: bold;
}

.laporan a {
    color: var(--primary-color);
    text-decoration: underline;
}

/*****************************************************/

/*********************** table ***********************/

table.centered-table thead th,
table.centered-table tbody td {
    text-align: center!important;
    vertical-align: middle;
}

/*****************************************************/

/******************** Produk-Home ********************/

.produk-home {
    padding-top: 50px;
}

.produk-home .nav-pills {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 7px;
    margin-top: 5px;
}

.produk-home .nav-item {
    margin-top: 65px;
}

.produk-home .nav-link {
    background: var(--linear-gradient);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    font-size: 0.75rem;
    color: var(--color-1);
    padding: 10px 5px;
    border: 1px solid var(--border-color);
    height: 100%;
    text-align: center;
    position: relative;
    padding-top: 20px;
    padding-bottom: 5px;
    background-image: var(--gradient-1);
    font-size: 10px;
    font-weight: 700;
}

.produk-home .nav-link.active,
.produk-home .nav-link:hover {
    background: var(--color-4);
}

.produk-home .nav-link img {
    margin-bottom: 0.25rem;
    display: block;
    position: absolute;
    top: -40px;
    width: 60px;
    height: 60px;
    animation: lift-up 3s ease-in-out infinite;
}

.produk-grids {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 10px;
}

.produk-items {
    text-align: center;
}

.produk-items .game-wrapper {
    display: block;
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 20px;
}

.produk-items .game-wrapper img {
    display: block;
    position: relative;
    animation: gameglow 2s ease-in-out infinite;
    border-radius: 20px;
}

/*****************************************************/

/********************** Payment **********************/

.payment {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(4, 1fr);
}

.payment img {
    object-fit: cover;
}

.bank-boxes {
    text-align: center;
}

.blink {
    text-decoration: blink;
    font-weight: bold;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 0.6s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
}

@-webkit-keyframes blinker {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.box-grid-3 {
    grid-column: span 3;
}

/*****************************************************/

/********************** Layanan **********************/

.layanan {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: var(--color-1);
    border-radius: 10px;
    color: #f1f1f1;
}

.icon-atm:before {
    content: "\e90f";
}

.icon-coinbag:before {
    content: "\e925";
}

.icon-home:before {
    content: "\e91e";
}

.icon-gift:before {
    content: "\e901";
}

.icon-chat:before {
    content: "\e913";
}

.progress-lyn i {
    color: #a5a3a1;
    background: linear-gradient(180deg, #a5a3a1, #fefefe 37.29%, #adaba9 70.1%, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 26px;
}

.progress-lyn {
    padding: 16px 9px;
    box-shadow: 0 4px 24px 1px rgba(0, 0, 0, .15);
    border-radius: 10px;
    margin: 5px 0;
    width: 49.5%;
    border: 1px solid #f1f1f1;
    background-image: var(--vertical-gradient);
    border-color: var(--border-color);
}

.progress-lyn .footer-lyn .progress .progress-bar {
    background: var(--progress-gradient);
}

.progress-lyn .text-lyn .txt-titleLyn {
    color: var(--color-10);
    text-shadow: 1px 1px 2px #000, 1px 1px 4px #000;
}

.head-lyn {
    display: flex;
    align-items: center;
}

.circle-lyn {
    width: 2em;
    height: 2em;
    font-size: 25px;
    display: inline-block;
    line-height: 2em;
    vertical-align: middle;
    background: var(--color-1);
    border-radius: 50%;
    text-align: center;
    margin-right: 0.5rem;
    border: 1px solid #f1f1f1;
}

.text-lyn .txt-titleLyn {
    font-size: 18px;
    line-height: 18px;
    font-weight: bold;
    margin: 0;
    color: var(--tertiary-color);
}

.text-lyn span {
    font-size: 0.75rem;
    line-height: 1.2;
    margin: 0;
}

.footer-lyn p {
    margin-bottom: 0.5rem;
    text-align: right;
    font-size: 0.75rem;
}

.footer-lyn .progress {
    background: var(--color-3);
    border-radius: 10px;
    height: 12px;
    margin-bottom: 10px;
}

.footer-lyn .progress .progress-bar {
    background: linear-gradient(180deg, #a5a3a1, #fefefe 37.29%, #adaba9 70.1%, var(--color-3));
    border-radius: 150px;
    line-height: 12px;
}

/*****************************************************/

/********************** Footer ***********************/

footer {
    background: var(--footer-background);
    padding: 0.5rem 0 6rem;
    padding-top: 15px;
}

article .accordion h1,
article .accordion p {
    text-align: center;
}

article h1.accordion-button {
    font-size: calc(1rem + 1.5vw);
}

.footer-img {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
    margin-top: 20px;
}

.fixed-footer {
    background: var(--secondary-color);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-top: 2px solid var(--border-color);
    z-index: 99;
    background: var(--gradient-3);
    border-radius: 20px 20px 0 0;
}

.fixed-footer > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    flex: 1 0 0%;
    margin-top: -30px;
    padding: 5px;
    color: var(--color-3);
}

.fixed-footer img {
    display: block;
    position: relative;
    padding: 3px;
    width: 50px;
    height: 50px;
    background-color: var(--color-4);
    border: 3px solid var(--color-7);
    border-radius: 50px;
}

.fixed-footer span {
    font-size: 1rem;
    color: var(--color-1);
}

/* ===== NEW CUSTOMIZE CSS ===== */
#main-content .main-head {
    border-radius: 0 0 6px 26px;
    background: url(https://i.gyazo.com/cddf800c6f3c790ace224e1275062a7a.webp);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border-left: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

#main-content .main-head h3 {
    font-size: 20px;
    color: var(--color-10);
    position: relative; 
    padding: 5px 0;
}

#main-content .main-head h3::after {
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    background-color: var(--color-9);
    position: absolute;
    bottom: 0;
    left: 0; 
}

#main-content .main-head .btn-dark {
    background-color: transparent;
    background-image: none;
    background: linear-gradient(to bottom, #59c303, #00aa08)!important;
    text-shadow: 1px 1px 2px #000;
}

#refresh_balance {
    background: var(--gradient-5);
    border: 2px solid #e5e5e5;
}

#display_balance {
    color: var(--color-10);
}

#main-content .my-3 .btn {
    background: var(--gradient-3);
    border: 2px solid var(--border-color);
    color: var(--color-1);
    font-size: 13px;
    font-weight: bold;
    padding: 5px;
    text-transform: capitalize;
}

#main-content .my-3 .btn:hover {
    color: var(--color-3);
}

#table-togel img {
    width: 30px;
    height: 30px;
    margin-right: 0.25rem;
}

button.active[data-target="game-togel"] {
    text-shadow: none;
    color: #fff;
}

#main-content .my-3 .btn.active {
    background: linear-gradient(to bottom, #000000, #191700);
    color: #fff;
}

#game-togel .bg-gradient,
#game-slot .bg-gradient,
#game-sportbook .bg-gradient,
#game-casino .bg-gradient,
#game-virtualsport .bg-gradient,
#game-fishing .bg-gradient,
#game-sabung-ayam .bg-gradient,
#game-mini .bg-gradient {
    border-radius: 12px;
    border: 2px solid var(--border-color);
    background: var(--gradient-game)!important;
    color: var(--color-1);
    margin-top: 1rem;
}

#game-sections .form-control {
    border-radius: 16px;
}

/* Grid provider cards: 5 kolom desktop, 3 tablet, 2 mobile */
.slot-provider-list {
    grid-template-columns: repeat(5, 1fr);
}

.slot-provider-list .provider-card {
    border: 1px solid rgb(25,135,84);
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
}

.slot-provider-list .provider-card .card-head img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.slot-provider-list .provider-card .card-head .provider-placeholder {
    width: 100%;
    height: 160px;
    border-radius: 10px 10px 0 0;
}

#game-sections .card,
#game-slot .slot-list .card {
    background: var(--gradient-4);
    border: 1px solid #eeeeee;
    width: 100%;
    height: 100%;
}

#game-sections .card:nth-child(odd),
#game-slot .slot-list .search:nth-child(odd) .card {
    border-radius: 12px 4px;
}

#game-sections .card:nth-child(even),
#game-slot .slot-list .search:nth-child(even) .card  {
    border-radius: 4px 12px;
}

#game-sections .card .card-body,
#game-slot .slot-list .card .card-body  {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.5rem;
}

#game-sections .card .card-body h6,
#game-slot .slot-list .card .card-body h6  {
    border-top: 2px solid var(--color-3);
    padding-top: 10px;
}

/* SECTION TOGEL */

#game-sections #game-togel #table-togel {
    margin-top: 10px;
}

#table-togel tbody td,
#table-togel tbody tr,
#table-togel thead td,
#table-togel thead tr {
    border: 0;
}

#table-togel tbody td:first-child {
    text-align: left;
    display: flex;
    align-items:center;
    height: 55.6px;
}

#game-slot .scroll-game {
    overflow-x: auto;
    max-width: 100%; 
    -webkit-overflow-scrolling: touch; 
}

#table-togel {
    border-radius: 12px;
    border-collapse: separate;
}

#table-togel thead td {
    background: var(--gradient-4);
    color: var(--color-1);
}

#table-togel thead td:first-child {
    border-top-left-radius: 14px;
}

#table-togel thead td:last-child {
    border-top-right-radius: 14px;
}

#table-togel tbody td {
    padding: 6px;
}

#table-togel tbody tr:last-child td:first-child {
    border-bottom-left-radius: 14px;
}

#table-togel tbody tr:last-child td:last-child{
    border-bottom-right-radius: 14px;
}

/* END SECTION TOGEL */

/* X ***** DEPOSIT ***** X */
#main-content .white-bg {
    background-color: transparent;
    background: linear-gradient(to bottom, #000000, #191700);
    border-radius: 30px 30px 0 0;
    margin-top: 20px;
    border-top: 2px solid var(--border-color);
    color: #fff;
}

#main-content .white-bg h2 {
    color: #fff;
}

#form-deposit {
    color: #fff;
}

#form-deposit .btn-tema {
    background: var(--gradient-1);
}
/* X ***** END DEPOSIT ***** X */

/* X ***** WIDTHDRAW ***** X */
.status-bank {
    width: 100%;
    color: #fff;
}

.status-bank .payment {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%; 
}

.status-bank .payment img {
    width: 49%;
    flex-grow: 0;
}
/* X ***** END WIDTHDRAW ***** X */

/* X ***** REFERRAL ***** X */
#main-content .white-bg #referralLink,
#referralCode {
    color: #000;
    background-color: transparent;
    background: linear-gradient(to bottom, #efefef, #d1d1d1);
    border: 2px solid #cdcdcd;
}

#copyReferralLink,
#copyReferralCode {
    background-color: transparent;
    background: var(--gradient-4);
    color: #fff;
    border: 1px solid var(--color-10);
}

#main-content .white-bg .bg-warning {
    background-color: transparent;
    background: var(--gradient-4);
    border-radius: 14px;
    border-top: 2px solid var(--border-color);
}

.nav-pills [data-bs-target="#bonus-referral"],
.nav-pills [data-bs-target="#list-referral"] {
    border-radius: 20px;
    color: #000;
    background-color: transparent;
    background: linear-gradient(to bottom, #efefef, #d1d1d1);
    border: 2px solid #cdcdcd;
}

.nav-pills .active[data-bs-target="#bonus-referral"],
.nav-pills .active[data-bs-target="#list-referral"] {
    background: linear-gradient(to bottom, #000000, #191700);
    color: #fff;
}

#bonus-referral,
#list-referral {
    width: 100%;
    padding: 5px 10px;
}

#bonus-referral .table-responsive-md,
#list-referral .table-responsive-md {
    margin-left: 0;
    margin-right: 0;
}

#bonus-referral #bonus-ref,
#list-referral #list-ref {
    width: 100%;
    border-collapse: collapse;
}

#bonus-referral #bonus-ref thead th:first-child,
#list-referral #list-ref thead th:first-child {
    border-top-left-radius: 14px;
}

#bonus-referral #bonus-ref thead th:last-child,
#list-referral #list-ref thead th:last-child {
    border-top-right-radius: 14px;
}

#bonus-referral #bonus-ref tfoot tr:last-child td:first-child,
#list-referral #list-ref tbody tr:last-child td:first-child {
    border-bottom-left-radius: 14px;
}

#bonus-referral #bonus-ref tfoot tr:last-child td:last-child,
#list-referral #list-ref tbody tr:last-child td:last-child{
    border-bottom-right-radius: 14px;
}
/* X ***** END REFERRAL ***** X */

/* X ***** TRANSAKSI ***** X */
form[action="https://blg-staging.com/history-transaksi"] {
    padding: 5px 10px;
    border-radius: 12px;
}
/* X ***** END TRANSAKSI ***** X */

/* X ***** PESAN ***** X */
.nav-pills [data-bs-target="#inbox"],
.nav-pills [data-bs-target="#compose"],
.nav-pills [data-bs-target="#sent"] {
    border-radius: 20px;
    background-color: transparent;
    background: var(--gradient-5);
    border: 2px solid var(--border-color);
    color: var(--color-1);
}
.nav-pills [data-bs-target="#inbox"]:hover,
.nav-pills [data-bs-target="#compose"]:hover,
.nav-pills [data-bs-target="#sent"]:hover {
    text-shadow: 0 0 2px #fff;
}

.nav-pills .active[data-bs-target="#inbox"],
.nav-pills .active[data-bs-target="#compose"],
.nav-pills .active[data-bs-target="#sent"] {
    background: linear-gradient(to bottom, #000000, #191700);
    color: #fff;
}

#inbox .formContent,
#sent .formContent {
    margin-left: 0;
    margin-right: 0;
}
/* X ***** END PESAN ***** X */

/* X ***** PROMO ***** X */
.promo.rounded {
padding: 0;
}

.promo .d-flex {
    margin-bottom: 0;
    border: none;
}

.promo .d-flex .col-sm.col-12 {
    border: none;
    width: 80%;
    flex-grow: 1;
}

.promo .d-flex:last-child .col-sm.col-12 img {
    border-bottom-left-radius: var(--bs-border-radius)!important;
}

.promo .d-flex:first-child .col-sm.col-12 img {
    border-top-left-radius: var(--bs-border-radius)!important;
}

.promo .d-flex .col-sm.col-12 img {
    width: 100%;
    border: none;
    border-radius: 0!important;
}

.promo .d-flex .bg-warning {
    width: calc(20% - 10px);
}

.promo .d-flex .bg-warning .btn {
    margin: 0;
    letter-spacing: 0;
    padding: 0;
    font-weight: bold;
    font-size: 2vw;
    padding: 0.5rem 0;
    width: 100%;
}

.promo .d-flex .collapse {
    width: 100%;
    flex-basis: 100%; 
    margin-bottom: 10px;
}
/* X ***** END PROMO ***** X */
/* ===== END NEW CUSTOMIZE CSS ===== */

/* Animation Keyframes */
@keyframes moveBackground {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes flip {
    0% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

@keyframes jelly {
    50% {
        transform: scale(0.90);
    }
}

@keyframes gameglow {
    0% {
        box-shadow: 0 0 3px 0px var(--color-6);
    }
    50% {
        box-shadow: 0 0 10px 3px var(--color-9);
    }
    100% {
        box-shadow: 0 0 3px 0px var(--color-6);
    }
}

@keyframes shine {
    0% {
        left: -100px;
    }
    60% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

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

@keyframes lift-up {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes text-shine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* Media Queries */
@media screen and (max-width: 1200px) {
    
}

@media screen and (min-width: 768px) {
    .slot-list,
    .casino-list,
    .sportbook-list,
    .virtualsport-list,
    .fishing-list,
    .sabung-ayam-list,
    .mini-list {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    .slot-provider-list {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media screen and (max-width: 767px) and (min-width: 577px) {
    .slot-provider-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .slot-provider-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .logo img {
        width: auto;
        height: 50px;
    }

    .progress-lyn {
        width: 100%;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: calc(var(--swiper-navigation-size) / 2);
    }

    .marquee span {
        font-size: 0.75rem;
        -moz-animation-duration: 15s;
        -webkit-animation-duration: 15s;
    }

    .produk-grids {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 576px) {
    .tipe-betting label,
    .menu-generator label {
        width: 22%;
    }

    .table-responsive-md {
        margin-left: -1rem;
        margin-right: -1rem;
    }
}

@media (max-width: 424px) {
    .produk-grids,
    .produk-home .nav-pills,
    .payment {
        grid-template-columns: repeat(3, 1fr);
    }

    #table-togel .btn-tema {
        letter-spacing: 0;
        padding: 0.5rem;
    }

    #table-togel tr td {
        padding: 0.15rem;
    }
}

@media (max-width: 992px) {
    .layanan {
        flex-wrap: nowrap;
        gap: 10px;
    }
    .progress-lyn .circle-lyn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 35px;
        height: 35px;
    }
    .progress-lyn .circle-lyn i {
        font-size: 18px;
    }
    .progress-lyn .text-lyn .txt-titleLyn {
        font-size: 16px;
    }
    .progress-lyn .text-lyn span {
        font-size: 11px;
    }
}

@media (min-width: 993px) {

    footer {
        padding-top: 30px;
    }
    .footer-img {
        grid-template-columns: repeat(6, 1fr);
    }

    .payment {
        grid-template-columns: repeat(10, 1fr);
        margin-bottom: 20px;
    }
    .payment img {
        max-height: 63.3px;
    }

    .produk-home .nav-pills {
        grid-template-columns: repeat(7, 1fr);
    }
    .produk-home .nav-item {
        margin-top: 0;
    }
    .produk-home .nav-link {
        padding-top: 25px;
        font-size: 14px;
    }
    .produk-home .nav-link img {
        top: -60px;
        width: 80px;
        height: 80px;
    }
}

@media(max-width: 720px) {
    footer {
        border-top: 2px solid var(--border-color);
    }

    table tbody tr:nth-child(odd) td {
        background-color: #000;
        --bs-table-bg-type: #000;
    }
    table tbody tr:nth-child(even) td {
        background-color: #393939;
        --bs-table-bg-type: #393939;
    }
}

urlset {
    display: none;
}


#forgotStep1 input {
    height: 42px;
}

#forgotStep1 .input-group-text {
    min-width: 100px;
}

#forgotStep1 b {
    font-size: larger;
    color: var(--border-color);
}