/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html,
body {
    width: 100%;
    min-height: 100%;
}


body {

    background: #000;

    color: #fff;

    font-family: 'Poppins', sans-serif;

    overflow-x: hidden;

}



/* =========================================
   NAVBAR
========================================= */

.index-navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 72px;

    background:
        linear-gradient(180deg,
            #000000 0%,
            #000000 100%);

    border-bottom: 1px solid rgb(0, 0, 0);

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 1000;

    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.8);

}



/* GARIS EMAS ATAS */

.index-navbar::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 2px;

    background:
        linear-gradient(90deg,
            transparent,
            #f7c600,
            #fff1a8,
            #f7c600,
            transparent);

}



/* =========================================
   BAGIAN KIRI / KANAN
========================================= */

.index-navbar-left,
.index-navbar-right {

    width: 75px;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

}



/* =========================================
   HAMBURGER
========================================= */

.index-menu-button {

    width: 42px;
    height: 42px;

    border: 1px solid rgba(247, 199, 0, 0.35);

    border-radius: 10px;

    background:
        linear-gradient(145deg,
            #181818,
            #080808);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;

    cursor: pointer;

    transition: 0.3s;

}


.index-menu-button span {

    width: 19px;

    height: 2px;

    border-radius: 5px;

    background: #f7c600;

    transition: 0.3s;

}


.index-menu-button:hover {

    border-color: #f7c600;

    box-shadow:
        0 0 18px rgba(247, 199, 0, 0.25);

}



/* =========================================
   LOGO GIF
========================================= */

.index-navbar-logo {

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 150px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

}


.index-navbar-logo img {

    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

}



/* =========================================
   AKUN
========================================= */

.index-account-button {

    width: 42px;
    height: 42px;

    border-radius: 50%;

    border: 1px solid rgba(247, 199, 0, 0.5);

    background:
        radial-gradient(circle at 35% 30%,
            #292929,
            #080808 70%);

    color: #f7c600;

    font-size: 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: 0.3s;

}


.index-account-button:hover {

    color: #fff;

    border-color: #f7c600;

    box-shadow:
        0 0 18px rgba(247, 199, 0, 0.35);

}



/* =========================================
   OVERLAY
========================================= */

.index-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.75);

    backdrop-filter: blur(3px);

    opacity: 0;

    visibility: hidden;

    transition: 0.35s;

    z-index: 1090;

}


.index-overlay.active {

    opacity: 1;

    visibility: visible;

}



/* =========================================
   SIDEBAR
========================================= */

.index-sidebar {

    position: fixed;

    top: 0;
    left: 0;

    width: 310px;

    max-width: 85vw;

    height: 100vh;

    background:
        linear-gradient(160deg,
            #161616 0%,
            #080808 50%,
            #000 100%);

    border-right: 1px solid rgba(247, 199, 0, 0.25);

    z-index: 1100;

    transform: translateX(-105%);

    transition:
        transform 0.4s cubic-bezier(.77, 0, .18, 1);

    box-shadow:
        15px 0 50px rgba(0, 0, 0, 0.8);

}


.index-sidebar.active {

    transform: translateX(0);

}



/* =========================================
   SIDEBAR HEADER
========================================= */

.index-sidebar-header {

    height: 80px;

    padding: 0 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

}


.index-sidebar-title {

    font-size: 18px;

    font-weight: 800;

    letter-spacing: 2px;

}


.index-sidebar-title::after {

    content: "";

    display: block;

    width: 30px;

    height: 2px;

    margin-top: 5px;

    background: #f7c600;

}



/* =========================================
   TOMBOL CLOSE
========================================= */

.index-close-button {

    width: 38px;
    height: 38px;

    border-radius: 10px;

    border: 1px solid rgba(255, 255, 255, 0.1);

    background: #111;

    color: #aaa;

    font-size: 18px;

    cursor: pointer;

    transition: 0.3s;

}


.index-close-button:hover {

    color: #fff;

    border-color: #f7c600;

}



/* =========================================
   MEMBER BOX
========================================= */

.index-member-box {

    margin: 20px;

    padding: 16px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    gap: 13px;

    background:
        linear-gradient(135deg,
            rgba(247, 199, 0, 0.12),
            rgba(255, 255, 255, 0.025));

    border: 1px solid rgba(247, 199, 0, 0.18);

}


.index-member-icon {

    width: 45px;
    height: 45px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #f7c600;

    color: #000;

    display: flex;

    align-items: center;

    justify-content: center;

}


.index-member-info {

    display: flex;

    flex-direction: column;

}


.index-member-info strong {

    font-size: 13px;

}


.index-member-info span {

    margin-top: 2px;

    color: #888;

    font-size: 10px;

}



/* =========================================
   MENU LIST
========================================= */

.index-menu-list {

    padding: 5px 15px;

}


.index-menu-item {

    position: relative;

    height: 55px;

    padding: 0 17px;

    margin-bottom: 5px;

    display: flex;

    align-items: center;

    gap: 15px;

    color: #999;

    text-decoration: none;

    border-radius: 10px;

    transition: 0.25s;

}


.index-menu-item i {

    width: 22px;

    text-align: center;

    font-size: 16px;

}


.index-menu-item span {

    font-size: 13px;

    font-weight: 500;

}


.index-menu-item:hover {

    color: #fff;

    background: rgba(247, 199, 0, 0.08);

}


.index-menu-item.active {

    color: #f7c600;

    background:
        linear-gradient(90deg,
            rgba(247, 199, 0, 0.14),
            transparent);

}


.index-menu-item.active::before {

    content: "";

    position: absolute;

    left: 0;

    top: 13px;

    width: 3px;

    height: 29px;

    border-radius: 5px;

    background: #f7c600;

    box-shadow:
        0 0 10px rgba(247, 199, 0, 0.7);

}



/* =========================================
   SIDEBAR FOOTER
========================================= */

.index-sidebar-footer {

    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 25px;

    padding-top: 15px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);

    display: flex;

    align-items: center;

    gap: 12px;

}


.index-sidebar-footer>i {

    color: #f7c600;

    font-size: 19px;

}


.index-sidebar-footer div {

    display: flex;

    flex-direction: column;

}


.index-sidebar-footer strong {

    font-size: 10px;

}


.index-sidebar-footer span {

    margin-top: 2px;

    color: #666;

    font-size: 9px;

}



/* =========================================
   CONTENT
========================================= */

.index-content {

    min-height: 100vh;

    padding-top: 120px;

    text-align: center;

}


.index-content h1 {

    color: #f7c600;

    font-size: 30px;

}


.index-content p {

    margin-top: 8px;

    color: #777;

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 430px) {

    .index-navbar {

        height: 65px;

    }

    .index-navbar-left,
    .index-navbar-right {

        width: 62px;

    }

    .index-navbar-logo {

        width: 100px;
        height: 50px;

    }

    .index-navbar-logo img {

        width: 100%;
        height: 100%;

        object-fit: contain;

    }

    .index-menu-button {

        width: 38px;
        height: 38px;

    }

    .index-account-button {

        width: 38px;
        height: 38px;

        font-size: 15px;

    }

    .index-sidebar {

        width: 290px;

    }

}


/* =========================================
   DESKTOP
========================================= */

@media (min-width: 768px) {

    .index-navbar {

        height: 78px;

    }

    .index-navbar-left,
    .index-navbar-right {

        width: 90px;

    }

    .index-navbar-logo {

        width: 150px;
        height: 60px;

    }

}

/* =========================================
   BANNER SLIDER
========================================= */

.index-banner {

    width: 100%;

    max-width: 1200px;

    margin: 78px auto 0;

}


.index-slider {

    position: relative;

    width: 100%;

    overflow: hidden;

    background: #111;

}


.index-slides {

    display: flex;

    width: 100%;

    transition: transform 0.5s ease-in-out;

}


.index-slide {

    min-width: 100%;

    aspect-ratio: 16 / 9;

    position: relative;

}


.index-slide img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

}



/* =========================================
   TOMBOL SLIDER
========================================= */

.index-slider-button {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 38px;

    height: 38px;

    border: 1px solid rgba(247, 199, 0, 0.5);

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.65);

    color: #f7c600;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    z-index: 5;

    transition: 0.3s;

}


.index-slider-button:hover {

    background: #f7c600;

    color: #000;

}


.index-slider-prev {

    left: 12px;

}


.index-slider-next {

    right: 12px;

}



/* =========================================
   DOTS
========================================= */

.index-slider-dots {

    position: absolute;

    left: 50%;

    bottom: 12px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 7px;

    z-index: 5;

}


.index-slider-dot {

    width: 7px;

    height: 7px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.45);

    cursor: pointer;

    transition: 0.3s;

}


.index-slider-dot.active {

    width: 22px;

    border-radius: 10px;

    background: #f7c600;

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 430px) {

    .index-banner {

        width: 100%;

        margin-top: 65px;

    }


    .index-slider-button {

        width: 32px;

        height: 32px;

        font-size: 12px;

    }


    .index-slider-prev {

        left: 8px;

    }


    .index-slider-next {

        right: 8px;

    }


    .index-slider-dots {

        bottom: 8px;

    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 430px) {

    .index-banner {

        width: 100%;

        margin-top: 65px;

    }


    .index-banner img {

        width: 100%;

        aspect-ratio: 16 / 9;

        object-fit: cover;

    }

}

/* =========================================
   SERVER SECTION
========================================= */

.index-server-section {

    width: 100%;

    padding: 15px 15px 20px;

    display: flex;

    justify-content: center;

}


.index-server-button {

    width: 100%;

    max-width: 430px;

    height: 48px;

    border: 1px solid rgba(247, 199, 0, 0.45);

    border-radius: 10px;

    background:
        linear-gradient(135deg,
            #202020,
            #101010);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-family: 'Poppins', sans-serif;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.35);

    transition: 0.3s;

}


.index-server-button i:first-child {

    color: #f7c600;

}


.index-server-button i:last-child {

    margin-left: 5px;

    color: #888;

    font-size: 11px;

}


.index-server-button:hover {

    border-color: #f7c600;

    background:
        linear-gradient(135deg,
            #292929,
            #151515);

}



/* =========================================
   SERVER OVERLAY
========================================= */

.index-server-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.78);

    backdrop-filter: blur(5px);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    opacity: 0;

    visibility: hidden;

    transition: 0.3s;

    z-index: 2000;

}


.index-server-overlay.active {

    opacity: 1;

    visibility: visible;

}



/* =========================================
   SERVER MODAL
========================================= */

.index-server-modal {

    width: 100%;

    max-width: 430px;

    max-height: 90vh;

    overflow-y: auto;

    padding: 20px;

    border-radius: 18px;

    background:
        linear-gradient(145deg,
            #222222,
            #101010);

    border: 1px solid rgba(247, 199, 0, 0.25);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.8);

    transform: translateY(20px) scale(0.96);

    transition: 0.3s;

}


.index-server-overlay.active .index-server-modal {

    transform: translateY(0) scale(1);

}



/* =========================================
   SERVER HEADER
========================================= */

.index-server-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 17px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

}


.index-server-label {

    font-size: 9px;

    color: #f7c600;

    font-weight: 700;

    letter-spacing: 2px;

}


.index-server-header h2 {

    margin-top: 2px;

    font-size: 19px;

    font-weight: 700;

}


.index-server-close {

    width: 38px;
    height: 38px;

    border-radius: 10px;

    border: 1px solid rgba(255, 255, 255, 0.1);

    background: #151515;

    color: #aaa;

    cursor: pointer;

    font-size: 17px;

}


.index-server-close:hover {

    color: #fff;

    border-color: #f7c600;

}



/* =========================================
   SERVER LIST
========================================= */

.index-server-list {

    margin-top: 15px;

    display: flex;

    flex-direction: column;

    gap: 8px;

}


.index-server-item {

    width: 100%;

    height: 52px;

    padding: 0 14px;

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 11px;

    background: #151515;

    color: #aaa;

    display: flex;

    align-items: center;

    text-align: left;

    cursor: pointer;

    font-family: 'Poppins', sans-serif;

    transition: 0.25s;

}


.index-server-item:hover {

    background: #1d1d1d;

    border-color: rgba(247, 199, 0, 0.3);

}


.index-server-item.active {

    color: #fff;

    border-color: rgba(247, 199, 0, 0.65);

    background:
        linear-gradient(90deg,
            rgba(247, 199, 0, 0.12),
            #151515);

}


.index-server-flag {

    width: 30px;

    font-size: 21px;

}


.index-server-name {

    flex: 1;

    font-size: 12px;

    font-weight: 600;

}


.index-server-item i {

    color: transparent;

    font-size: 15px;

}


.index-server-item.active i {

    color: #f7c600;

}



/* =========================================
   CONNECT
========================================= */

.index-server-connect {

    width: 100%;

    height: 48px;

    margin-top: 16px;

    border: none;

    border-radius: 10px;

    background:
        linear-gradient(135deg,
            #f7c600,
            #dcae00);

    color: #080808;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-family: 'Poppins', sans-serif;

    font-size: 13px;

    font-weight: 800;

    cursor: pointer;

    transition: 0.3s;

}


.index-server-connect:hover {

    transform: translateY(-1px);

    box-shadow:
        0 8px 25px rgba(247, 199, 0, 0.2);

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 430px) {

    .index-server-section {

        padding: 12px 12px 18px;

    }


    .index-server-button {

        height: 46px;

    }


    .index-server-modal {

        padding: 17px;

        border-radius: 15px;

    }


    .index-server-header h2 {

        font-size: 17px;

    }

}

/* =========================================
   SERVER LOADING
========================================= */

.index-server-loading {

    display: none;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 35px 10px;

}


.index-server-loading.active {

    display: flex;

}


.index-server-spinner {

    width: 48px;

    height: 48px;

    border: 3px solid rgba(247, 199, 0, 0.15);

    border-top-color: #f7c600;

    border-right-color: #f7c600;

    border-radius: 50%;

    animation: indexServerSpin 0.8s linear infinite;

}


@keyframes indexServerSpin {

    to {

        transform: rotate(360deg);

    }

}


.index-server-loading-title {

    margin-top: 18px;

    color: #fff;

    font-size: 14px;

    font-weight: 700;

}


.index-server-loading-text {

    margin-top: 5px;

    color: #777;

    font-size: 10px;

}


.index-server-loading-dots {

    margin-top: 12px;

    display: flex;

    gap: 5px;

}


.index-server-loading-dots span {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #f7c600;

    animation: indexLoadingDot 1.2s infinite;

}


.index-server-loading-dots span:nth-child(2) {

    animation-delay: 0.2s;

}


.index-server-loading-dots span:nth-child(3) {

    animation-delay: 0.4s;

}


@keyframes indexLoadingDot {

    0%,
    60%,
    100% {

        opacity: 0.25;

        transform: scale(0.8);

    }

    30% {

        opacity: 1;

        transform: scale(1.2);

    }

}

/* =========================================
   RUNNING TEXT
========================================= */

/* =========================================
   RUNNING TEXT
========================================= */

.index-marquee {

    width: 100%;

    max-width: 1200px;

    height: 42px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    background: #151515;

    border-top: 1px solid rgba(247, 199, 0, 0.15);

    border-bottom: 1px solid rgba(247, 199, 0, 0.15);

    overflow: hidden;

}


.index-marquee-icon {

    width: 45px;

    height: 100%;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #f7c600;

    background: #1c1c1c;

    border-right: 1px solid rgba(247, 199, 0, 0.2);

    z-index: 2;

}


.index-marquee-wrapper {

    flex: 1;

    overflow: hidden;

    position: relative;

}


.index-marquee-track {

    display: flex;

    width: max-content;

    white-space: nowrap;

    animation: indexMarqueeMove 15s linear infinite;

}


.index-marquee-track span {

    display: block;

    flex-shrink: 0;

    padding-right: 80px;

    color: #ccc;

    font-size: 11px;

    font-weight: 500;

}


@keyframes indexMarqueeMove {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}


@media (max-width: 430px) {

    .index-marquee {

        height: 38px;

    }


    .index-marquee-icon {

        width: 40px;

        font-size: 12px;

    }


    .index-marquee-track span {

        font-size: 10px;

        padding-right: 60px;

    }

}



/* =========================================
   ICON
========================================= */

.index-marquee-icon {

    width: 45px;

    height: 100%;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #151515;

    border-right: 1px solid rgba(247, 199, 0, 0.2);

    color: #f7c600;

    font-size: 14px;

    z-index: 2;

}



/* =========================================
   WRAPPER
========================================= */

.index-marquee-wrapper {

    flex: 1;

    overflow: hidden;

    white-space: nowrap;

}



/* =========================================
   TRACK
========================================= */

.index-marquee-track {

    display: inline-flex;

    width: max-content;

    animation:
        indexMarqueeMove 22s linear infinite;

}


.index-marquee-track span {

    padding-right: 80px;

    color: #aaa;

    font-size: 11px;

    font-weight: 500;

}



/* =========================================
   HIGHLIGHT
========================================= */

.index-marquee-track span::first-letter {

    color: #f7c600;

}



/* =========================================
   ANIMATION
========================================= */

@keyframes indexMarqueeMove {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 430px) {

    .index-marquee {

        height: 38px;

    }


    .index-marquee-icon {

        width: 40px;

        font-size: 12px;

    }


    .index-marquee-track span {

        font-size: 10px;

        padding-right: 60px;

    }

}

/* =========================================
   GAME CATEGORY
========================================= */

.index-category-section {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 18px 0 10px;

}


.index-category-title {

    padding: 0 15px 12px;

}


.index-category-title span {

    position: relative;

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 0.5px;

}


.index-category-title span::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 28px;

    height: 2px;

    background: #f7c600;

    border-radius: 5px;

}



/* =========================================
   CATEGORY WRAPPER
========================================= */

.index-category-wrapper {

    width: 100%;

    overflow-x: auto;

    overflow-y: hidden;

    scrollbar-width: none;

}


.index-category-wrapper::-webkit-scrollbar {

    display: none;

}



/* =========================================
   CATEGORY LIST
========================================= */

.index-category-list {

    display: flex;

    gap: 9px;

    width: max-content;

    padding: 2px 15px 10px;

}



/* =========================================
   CATEGORY ITEM
========================================= */

.index-category-item {

    position: relative;

    width: 92px;

    min-width: 92px;

    height: 82px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            #202020,
            #111111
        );

    color: #888;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

    cursor: pointer;

    font-family: 'Poppins', sans-serif;

    transition: 0.25s;

}


.index-category-icon {

    width: 36px;

    height: 36px;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #292929;

    color: #aaa;

    font-size: 17px;

    transition: 0.25s;

}


.index-category-item span {

    font-size: 9px;

    font-weight: 600;

    white-space: nowrap;

}



/* =========================================
   ACTIVE
========================================= */

.index-category-item.active {

    color: #f7c600;

    border-color: rgba(247,199,0,0.55);

    background:
        linear-gradient(
            145deg,
            rgba(247,199,0,0.12),
            #111111
        );

    box-shadow:
        0 5px 20px rgba(247,199,0,0.08);

}


.index-category-item.active
.index-category-icon {

    background: #f7c600;

    color: #111;

}



/* =========================================
   HOVER
========================================= */

.index-category-item:hover {

    color: #fff;

    border-color: rgba(247,199,0,0.35);

    transform: translateY(-2px);

}


.index-category-item:hover
.index-category-icon {

    color: #f7c600;

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 430px) {

    .index-category-section {

        padding-top: 15px;

    }


    .index-category-item {

        width: 82px;

        min-width: 82px;

        height: 76px;

        border-radius: 10px;

    }


    .index-category-icon {

        width: 32px;

        height: 32px;

        font-size: 15px;

    }


    .index-category-item span {

        font-size: 8px;

    }

}

/* =========================================
   JACKPOT CASINO
========================================= */

.index-jackpot-section {

    width: 100%;

    max-width: 1200px;

    margin: 15px auto;

    padding: 0 15px;

}


.index-jackpot-box {

    position: relative;

    width: 100%;

    min-height: 145px;

    padding: 38px 20px 25px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 20%,
            #302700 0%,
            #181300 35%,
            #080808 75%,
            #000 100%
        );

    border: 2px solid
        rgba(247,199,0,0.55);

    border-radius: 28px;

    box-shadow:

        inset 0 0 35px
        rgba(247,199,0,0.08),

        0 0 20px
        rgba(247,199,0,0.08);

}


/* =========================================
   BENTUK ATAS CASINO
========================================= */

.index-jackpot-box::before {

    content: "";

    position: absolute;

    top: -55px;

    left: 50%;

    width: 75%;

    height: 100px;

    transform:
        translateX(-50%);

    border-radius:
        0 0 50% 50%;

    border-bottom:
        1px solid
        rgba(247,199,0,0.25);

    box-shadow:

        0 10px 35px
        rgba(247,199,0,0.08);

}


/* =========================================
   MAHKOTA
========================================= */

.index-jackpot-crown {

    position: absolute;

    top: 7px;

    left: 50%;

    transform:
        translateX(-50%);

    width: 42px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 5;

}


.index-jackpot-crown i {

    color: #f7c600;

    font-size: 25px;

    filter:

        drop-shadow(
            0 0 5px
            rgba(247,199,0,0.5)
        );

    animation:
        indexCrownGlow
        2s
        ease-in-out
        infinite;

}


@keyframes indexCrownGlow {

    0%,
    100% {

        transform: scale(1);

        filter:
            drop-shadow(
                0 0 4px
                rgba(247,199,0,0.4)
            );

    }

    50% {

        transform: scale(1.08);

        filter:
            drop-shadow(
                0 0 12px
                rgba(247,199,0,0.8)
            );

    }

}


/* =========================================
   LAMPU-LAMPU
========================================= */

.index-jackpot-lights {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    pointer-events: none;

}


.index-jackpot-lights span {

    position: absolute;

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #f7c600;

    box-shadow:
        0 0 6px #f7c600,
        0 0 12px
        rgba(247,199,0,0.7);

    animation:
        indexJackpotLight
        1.5s
        ease-in-out
        infinite;

}


/* POSISI LAMPU */

.index-jackpot-lights span:nth-child(1) {

    top: 12px;
    left: 12%;

}

.index-jackpot-lights span:nth-child(2) {

    top: 7px;
    left: 22%;

}

.index-jackpot-lights span:nth-child(3) {

    top: 4px;
    left: 33%;

}

.index-jackpot-lights span:nth-child(4) {

    top: 2px;
    left: 44%;

}

.index-jackpot-lights span:nth-child(5) {

    top: 2px;
    left: 56%;

}

.index-jackpot-lights span:nth-child(6) {

    top: 4px;
    left: 67%;

}

.index-jackpot-lights span:nth-child(7) {

    top: 7px;
    left: 78%;

}

.index-jackpot-lights span:nth-child(8) {

    top: 12px;
    left: 88%;

}

.index-jackpot-lights span:nth-child(9) {

    bottom: 12px;
    left: 12%;

}

.index-jackpot-lights span:nth-child(10) {

    bottom: 12px;
    right: 12%;

}

.index-jackpot-lights span:nth-child(11) {

    top: 50%;
    left: 8%;

}

.index-jackpot-lights span:nth-child(12) {

    top: 50%;
    right: 8%;

}


@keyframes indexJackpotLight {

    0%,
    100% {

        opacity: 0.25;

        transform: scale(0.8);

    }

    50% {

        opacity: 1;

        transform: scale(1.35);

    }

}


/* =========================================
   JUDUL
========================================= */

.index-jackpot-title {

    position: relative;

    z-index: 2;

    color: #f7c600;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 4px;

    text-shadow:

        0 0 5px
        rgba(247,199,0,0.4),

        0 0 15px
        rgba(247,199,0,0.2);

}


/* =========================================
   ANGKA JACKPOT
========================================= */

.index-jackpot-number {

    position: relative;

    z-index: 2;

    margin-top: 5px;

    padding: 8px 18px;

    color: #fff;

    font-size: 19px;

    font-weight: 800;

    letter-spacing: 1px;

    background:
        rgba(0,0,0,0.55);

    border: 1px solid
        rgba(247,199,0,0.3);

    border-radius: 12px;

    box-shadow:

        inset 0 0 15px
        rgba(247,199,0,0.05),

        0 0 12px
        rgba(247,199,0,0.08);

}


/* =========================================
   SUBTITLE
========================================= */

.index-jackpot-subtitle {

    position: relative;

    z-index: 2;

    margin-top: 5px;

    color: #777;

    font-size: 7px;

    letter-spacing: 2px;

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 430px) {

    .index-jackpot-section {

        padding: 0 12px;

        margin: 12px auto;

    }


    .index-jackpot-box {

        min-height: 135px;

        padding:
            35px 12px 20px;

        border-radius: 24px;

    }


    .index-jackpot-title {

        font-size: 12px;

        letter-spacing: 3px;

    }


    .index-jackpot-number {

        font-size: 16px;

        padding: 7px 14px;

    }


    .index-jackpot-subtitle {

        font-size: 6px;

    }

}

/* =========================================
   GAME SECTION
========================================= */

.index-game-section {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 10px 0 5px;

}


.index-game-header {

    height: 42px;

    padding: 0 15px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.index-game-header h2 {

    position: relative;

    color: #fff;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: .5px;

}


.index-game-header h2::before {

    content: "";

    display: inline-block;

    width: 3px;

    height: 15px;

    margin-right: 8px;

    vertical-align: -2px;

    background: #f7c600;

    border-radius: 5px;

}


.index-game-header span {

    color: #777;

    font-size: 9px;

    font-weight: 500;

}


.index-game-wrapper {

    width: 100%;

    overflow-x: auto;

    overflow-y: hidden;

    scrollbar-width: none;

}


.index-game-wrapper::-webkit-scrollbar {

    display: none;

}


.index-game-list {

    display: flex;

    gap: 10px;

    width: max-content;

    padding: 5px 15px 12px;

}


.index-game-card {

    width: 135px;

    min-width: 135px;

    cursor: pointer;

}


.index-game-card img {

    display: block;

    width: 135px;

    height: 135px;

    object-fit: cover;

    border-radius: 11px;

    border: 1px solid rgba(255,255,255,0.07);

    transition: .3s;

}


.index-game-card span {

    display: block;

    margin-top: 6px;

    padding: 0 2px;

    overflow: hidden;

    color: #aaa;

    font-size: 9px;

    font-weight: 600;

    text-overflow: ellipsis;

    white-space: nowrap;

}


.index-game-card:hover img {

    border-color: rgba(247,199,0,.6);

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0,0,0,.5);

}


@media (max-width: 430px) {

    .index-game-section {

        padding-top: 7px;

    }


    .index-game-header {

        height: 38px;

        padding: 0 12px;

    }


    .index-game-header h2 {

        font-size: 12px;

    }


    .index-game-header h2::before {

        height: 13px;

        margin-right: 7px;

    }


    .index-game-list {

        gap: 8px;

        padding: 4px 12px 10px;

    }


    .index-game-card {

        width: 105px;

        min-width: 105px;

    }


    .index-game-card img {

        width: 105px;

        height: 105px;

        border-radius: 9px;

    }


    .index-game-card span {

        font-size: 8px;

        margin-top: 5px;

    }

}

/* =========================================
   PENARIKAN TERAKHIR
========================================= */

.index-withdraw-section {

    width: 100%;

    max-width: 1200px;

    margin: 5px auto 0;

}


.index-withdraw-wrapper {

    width: 100%;

    overflow: hidden;

}


.index-withdraw-track {

    display: flex;

    gap: 10px;

    width: max-content;

    padding: 5px 15px 15px;

    animation: indexWithdrawMove 18s linear infinite;

}


@keyframes indexWithdrawMove {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}


.index-withdraw-card {

    width: 265px;

    min-width: 265px;

    min-height: 65px;

    padding: 10px;

    display: flex;

    align-items: center;

    gap: 9px;

    background: #151515;

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 10px;

}


.index-withdraw-icon {

    width: 34px;

    height: 34px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(247,199,0,0.1);

    color: #f7c600;

    font-size: 12px;

}


.index-withdraw-info {

    flex: 1;

    min-width: 0;

    display: flex;

    flex-direction: column;

}


.index-withdraw-info strong {

    color: #fff;

    font-size: 10px;

}


.index-withdraw-info span {

    margin-top: 2px;

    color: #666;

    font-size: 8px;

}


.index-withdraw-amount {

    color: #f7c600;

    font-size: 9px;

    font-weight: 700;

    white-space: nowrap;

}


/* =========================================
   DEPOSIT TERAKHIR
========================================= */

.index-deposit-section {

    width: 100%;

    max-width: 1200px;

    margin: 5px auto 0;

}


.index-deposit-wrapper {

    width: 100%;

    overflow: hidden;

}


.index-deposit-track {

    display: flex;

    gap: 10px;

    width: max-content;

    padding: 5px 15px 15px;

    animation: indexDepositMove 18s linear infinite;

}


@keyframes indexDepositMove {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}


.index-deposit-card {

    width: 265px;

    min-width: 265px;

    min-height: 65px;

    padding: 10px;

    display: flex;

    align-items: center;

    gap: 9px;

    background: #151515;

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 10px;

}


.index-deposit-icon {

    width: 34px;

    height: 34px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(247,199,0,0.1);

    color: #f7c600;

    font-size: 12px;

}


.index-deposit-info {

    flex: 1;

    min-width: 0;

    display: flex;

    flex-direction: column;

}


.index-deposit-info strong {

    color: #fff;

    font-size: 10px;

}


.index-deposit-info span {

    margin-top: 2px;

    color: #666;

    font-size: 8px;

}


.index-deposit-amount {

    color: #f7c600;

    font-size: 9px;

    font-weight: 700;

    white-space: nowrap;

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 430px) {

    .index-withdraw-card {

        width: 265px;

        min-width: 265px;

    }


    .index-deposit-card {

        width: 265px;

        min-width: 265px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 430px) {

    .index-withdraw-card {

        width: 265px;

        min-width: 265px;

    }


    .index-deposit-card {

        width: 265px;

        min-width: 265px;

    }

}

/* =========================================
   KEUNGGULAN LAYANAN
========================================= */

.index-service-section {

    width: 100%;

    max-width: 1200px;

    margin: 10px auto 0;

}


.index-service-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 10px;

    padding: 5px 15px 12px;

}


.index-service-card {

    min-height: 105px;

    padding: 15px 8px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: #151515;

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 12px;

}


.index-service-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 8px;

    border-radius: 10px;

    color: #f7c600;

    background: rgba(247,199,0,0.1);

}


.index-service-card strong {

    color: #ddd;

    font-size: 9px;

}


.index-service-card span {

    margin-top: 3px;

    color: #666;

    font-size: 7px;

}


.index-service-note {

    margin: 0 15px 15px;

    padding: 9px 10px;

    display: flex;

    align-items: flex-start;

    gap: 8px;

    border-radius: 8px;

    background: #101010;

    color: #666;

    font-size: 8px;

    line-height: 1.5;

}


.index-service-note i {

    color: #f7c600;

    margin-top: 1px;

}


@media (max-width: 430px) {

    .index-service-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 8px;

        padding-left: 12px;

        padding-right: 12px;

    }


    .index-service-note {

        margin-left: 12px;

        margin-right: 12px;

    }

}

/* =========================================
   PUSAT INFO
========================================= */

.index-info-section {

    width: 100%;

    max-width: 1200px;

    margin: 10px auto 0;

}


.index-info-list {

    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 8px;

    padding: 5px 15px 15px;

}


.index-info-card {

    width: 100%;

    min-height: 60px;

    padding: 10px 12px;

    display: flex;

    align-items: center;

    gap: 10px;

    background: #151515;

    border: 1px solid
        rgba(255,255,255,0.06);

    border-radius: 10px;

    text-decoration: none;

}


.index-info-icon {

    width: 38px;

    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background:
        rgba(247,199,0,0.1);

    color: #f7c600;

    font-size: 13px;

}


.index-info-content {

    flex: 1;

    min-width: 0;

}


.index-info-content strong {

    display: block;

    color: #ddd;

    font-size: 10px;

    font-weight: 600;

}


.index-info-content span {

    display: block;

    margin-top: 3px;

    color: #666;

    font-size: 8px;

}


.index-info-card > i {

    flex-shrink: 0;

    color: #555;

    font-size: 9px;

}


/* =========================================
   HUBUNGI KAMI
========================================= */

.index-contact-section {

    width: 100%;

    max-width: 1200px;

    margin: 5px auto 0;

}


.index-contact-list {

    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 8px;

    padding: 5px 15px 15px;

}


.index-contact-card {

    width: 100%;

    min-height: 60px;

    padding: 10px 12px;

    display: flex;

    align-items: center;

    gap: 10px;

    background: #151515;

    border: 1px solid
        rgba(255,255,255,0.06);

    border-radius: 10px;

    text-decoration: none;

}


.index-contact-icon {

    width: 38px;

    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background:
        rgba(247,199,0,0.1);

    color: #f7c600;

    font-size: 15px;

}


.index-contact-content {

    flex: 1;

    min-width: 0;

}


.index-contact-content strong {

    display: block;

    color: #ddd;

    font-size: 10px;

    font-weight: 600;

}


.index-contact-content span {

    display: block;

    margin-top: 3px;

    color: #666;

    font-size: 8px;

}


.index-contact-card > i {

    flex-shrink: 0;

    color: #555;

    font-size: 9px;

}


/* =========================================
   FOOTER
========================================= */

.index-footer {

    width: 100%;

    max-width: 1200px;

    margin: 5px auto 0;

    padding: 25px 15px 40px;

    text-align: center;

    border-top: 1px solid
        rgba(255,255,255,0.05);

}


/* =========================================
   FOOTER LOGO
========================================= */

.index-footer-logo {

    width: 100px;

    height: 45px;

    margin: 0 auto 10px;

    overflow: hidden;

}


.index-footer-logo video {

    width: 100%;

    height: 100%;

    object-fit: contain;

    display: block;

}


/* =========================================
   FOOTER DESCRIPTION
========================================= */

.index-footer-description {

    max-width: 500px;

    margin: 0 auto;

    color: #555;

    font-size: 8px;

    line-height: 1.6;

}


/* =========================================
   FOOTER LINKS
========================================= */

.index-footer-links {

    margin-top: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px 15px;

}


.index-footer-links a {

    color: #777;

    font-size: 8px;

    text-decoration: none;

    transition: 0.2s;

}


.index-footer-links a:hover {

    color: #f7c600;

}


/* =========================================
   FOOTER SOCIAL
========================================= */

.index-footer-social {

    margin-top: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

}


.index-footer-social a {

    width: 30px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #151515;

    border: 1px solid
        rgba(255,255,255,0.05);

    color: #777;

    font-size: 11px;

    text-decoration: none;

    transition: 0.2s;

}


.index-footer-social a:hover {

    color: #f7c600;

    border-color:
        rgba(247,199,0,0.3);

}


/* =========================================
   FOOTER 18+
========================================= */

.index-footer-age {

    margin-top: 18px;

}


.index-footer-age span {

    width: 28px;

    height: 28px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #555;

    border-radius: 50%;

    color: #777;

    font-size: 8px;

    font-weight: 700;

}


.index-footer-age p {

    margin-top: 6px;

    color: #444;

    font-size: 7px;

}


/* =========================================
   FOOTER BOTTOM
========================================= */

.index-footer-bottom {

    margin-top: 20px;

    padding-top: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-top: 1px solid
        rgba(255,255,255,0.04);

    color: #444;

    font-size: 7px;

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 430px) {


    .index-info-list {

        padding-left: 12px;

        padding-right: 12px;

    }


    .index-contact-list {

        padding-left: 12px;

        padding-right: 12px;

    }


    .index-footer {

        padding-left: 12px;

        padding-right: 12px;

        padding-bottom: 40px;

    }


    .index-footer-links {

        gap: 8px 12px;

    }

}

/* =========================================
   TOMBOL DAFTAR & LOGIN
========================================= */

.index-auth-buttons {

    width: 100%;

    max-width: 1200px;

    margin: 8px auto 10px;

    padding: 0 15px;

    display: flex;

    gap: 8px;

}


.index-auth-buttons a {

    flex: 1;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    border-radius: 8px;

    font-family: 'Poppins', sans-serif;

    font-size: 10px;

    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.2s,
        box-shadow 0.2s;

}


/* =========================================
   DAFTAR
========================================= */

.index-register-button {

    background: #f7c600;

    color: #000;

    border: 1px solid #f7c600;

}


.index-register-button:hover {

    box-shadow:
        0 0 15px
        rgba(247,199,0,0.25);

    transform: translateY(-1px);

}


/* =========================================
   LOGIN
========================================= */

.index-login-button {

    background: #151515;

    color: #f7c600;

    border: 1px solid
        rgba(247,199,0,0.45);

}


.index-login-button:hover {

    background: #1c1c1c;

    border-color: #f7c600;

    box-shadow:
        0 0 15px
        rgba(247,199,0,0.15);

    transform: translateY(-1px);

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 430px) {

    .index-auth-buttons {

        padding-left: 12px;

        padding-right: 12px;

        margin-top: 7px;

        margin-bottom: 9px;

    }


    .index-auth-buttons a {

        height: 40px;

        font-size: 9px;

    }

}

/* =========================================
   BOTTOM NAVBAR
========================================= */

.index-bottom-navbar {

    position: fixed;

    bottom: 0;

    left: 50%;

    transform: translateX(-50%);

    width: 100%;

    max-width: 430px;

    height: 62px;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: space-around;

    background:
        linear-gradient(
            180deg,
            #151515 0%,
            #080808 100%
        );

    border-top:
        1px solid
        rgba(247,199,0,0.15);

    box-shadow:
        0 -5px 20px
        rgba(0,0,0,0.6);

}


/* =========================================
   ITEM
========================================= */

.index-bottom-item {

    position: relative;

    flex: 1;

    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 4px;

    color: #666;

    text-decoration: none;

    font-family:
        'Poppins',
        sans-serif;

    transition: 0.2s;

}


/* =========================================
   ICON
========================================= */

.index-bottom-item i {

    font-size: 16px;

    transition: 0.2s;

}


/* =========================================
   TEXT
========================================= */

.index-bottom-item span {

    font-size: 7px;

    white-space: nowrap;

}


/* =========================================
   ACTIVE
========================================= */

.index-bottom-item.active {

    color: #f7c600;

}





/* =========================================
   HOVER
========================================= */

.index-bottom-item:hover {

    color: #f7c600;

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 430px) {

    .index-bottom-navbar {

        height: 60px;

    }


    .index-bottom-item i {

        font-size: 15px;

    }


    .index-bottom-item span {

        font-size: 7px;

    }

}

/* =========================================
   MENU DANA
========================================= */

.index-dana-overlay {

    position: fixed;

    inset: 0;

    z-index: 10000;

    background: rgba(0,0,0,0.65);

    opacity: 0;

    visibility: hidden;

    transition: 0.25s;

}


.index-dana-overlay.active {

    opacity: 1;

    visibility: visible;

}


/* =========================================
   PANEL DANA
========================================= */

.index-dana-menu {

    position: fixed;

    left: 50%;

    bottom: -300px;

    transform: translateX(-50%);

    width: 100%;

    max-width: 430px;

    z-index: 10001;

    padding: 15px;

    background:
        linear-gradient(
            180deg,
            #181818,
            #080808
        );

    border-top:
        1px solid
        rgba(247,199,0,0.25);

    border-radius:
        18px 18px 0 0;

    box-shadow:
        0 -10px 30px
        rgba(0,0,0,0.7);

    transition:
        bottom 0.3s ease;

}


.index-dana-menu.active {

    bottom: 60px;

}


/* =========================================
   HEADER
========================================= */

.index-dana-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0 2px 12px;

    border-bottom:
        1px solid
        rgba(255,255,255,0.06);

}


.index-dana-header strong {

    color: #f7c600;

    font-size: 12px;

    letter-spacing: 1px;

}


.index-dana-header button {

    width: 28px;

    height: 28px;

    border: none;

    border-radius: 50%;

    background: #222;

    color: #888;

    cursor: pointer;

}


/* =========================================
   LIST
========================================= */

.index-dana-list {

    display: flex;

    flex-direction: column;

    gap: 7px;

    padding-top: 10px;

}


/* =========================================
   ITEM
========================================= */

.index-dana-item {

    min-height: 55px;

    padding: 8px 10px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: #fff;

    text-decoration: none;

    background: #121212;

    border:
        1px solid
        rgba(255,255,255,0.05);

    border-radius: 10px;

}


.index-dana-icon {

    width: 35px;

    height: 35px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background:
        rgba(247,199,0,0.1);

    color: #f7c600;

    font-size: 13px;

}


.index-dana-item > div:nth-child(2) {

    flex: 1;

}


.index-dana-item strong {

    display: block;

    color: #ddd;

    font-size: 10px;

}


.index-dana-item span {

    display: block;

    margin-top: 2px;

    color: #666;

    font-size: 8px;

}


.index-dana-item > i {

    color: #555;

    font-size: 9px;

}


/* =========================================
   DANA BUTTON
========================================= */

.index-dana-button {

    border: none;

    outline: none;

    cursor: pointer;

    font-family: 'Poppins', sans-serif;

    background: transparent;

    color: inherit;

    -webkit-tap-highlight-color: transparent;

}

