/* =====================================================
   START GLOBAL RESET & BASE STYLE
   Fungsi: reset default browser & font utama
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: linear-gradient(180deg, #0d0221, #1a0638);
    color: #fff;
}

.container {
    max-width: 420px;
    margin: auto;
    padding: 15px;
}
/* ===============================
   END GLOBAL RESET & BASE STYLE
================================ */

/* =====================================================
   START ADVANCED CAROUSEL
===================================================== */
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 0 15px #000;
}

.slider {
    position: relative;
    width: 100%;
}

/* Setiap slide banner */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease, transform 1s ease;
}

/* Slide aktif */
.slide.active {
    opacity: 1;
    position: relative;
    transform: scale(1);
}

/* Gambar banner */
.slide img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* Dot indicator */
.dots {
    position: absolute;
    bottom: 8px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.dots span.active {
    background: #4b0f7a;
}
/* ===============================
   END ADVANCED CAROUSEL
================================ */

/* =====================================================
   START CARD CONTAINER
===================================================== */
.card {
    background: linear-gradient(180deg, #4b0f7a, #2a004f);
    border-radius: 16px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 0 15px #000;
}

.card h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #ffd700;
    text-shadow: 0 0 15px #000;
}
/* ===============================
   END CARD CONTAINER
================================ */

/* =====================================================
   START INFO BOX (DEPOSIT & WD)
===================================================== */
.info-box {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.info-item {
    flex: 1;
    background: #3a0066;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 0 15px #000;
}

.info-item span {
    display: block;
    font-size: 13px;
    opacity: 0.9;
}

.info-item strong {
    font-size: 15px;
    color: #00ffcc;
}

/* ===============================
   END INFO BOX
================================ */

/* =====================================================
   START SERVER SELECT
===================================================== */
.server {
    margin-bottom: 6px;
}

.server-title {
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 15px #000;
    text-align: center;
}

.server label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.server select {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: #4a007f;
    color: #fff;
    box-shadow: 0 0 15px #000;
}
/* ===============================
   END SERVER SELECT
================================ */

/* =====================================================
   START SITUS SELECT
===================================================== */
.situs {
    margin-bottom: 6px;
}

.situs-title {
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 15px #000;
    text-align: center;
}

.situs label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.situs select {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: #4a007f;
    color: #fff;
    box-shadow: 0 0 15px #000;
}
/* ===============================
   END SITUS SELECT
================================ */

/* =====================================================
   START WITHDRAW & JACKPOT INFO
===================================================== */
.withdraw {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 15px;
}

.withdraw strong {
    display: block;
    color: #ffd700;
}
/* ===============================
   END WITHDRAW & JACKPOT INFO
================================ */

/* =====================================================
   START BUTTON ACTION
   Fungsi: DAFTAR & LOGIN
===================================================== */
.btn-group {
    display: flex;
    gap: 10px;
}

.btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}

.btn.daftar {
    background: linear-gradient(90deg, #ff0080, #ff8c00);
    color: #fff;
    box-shadow: 0 0 15px #000;
}

.btn.login {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #fff;
    box-shadow: 0 0 15px #000;
}
/* ===============================
   END BUTTON ACTION
================================ */

/* =====================================================
   START WITHDRAW TERBARU (MARQUEE)
   Fungsi:
   - Text berjalan ke kiri
   - Auto loop
===================================================== */
.withdraw-live {
    margin-bottom: 15px;
}

.withdraw-title {
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 15px #000;
    text-align: center;
}

.withdraw-marquee {
    width: 100%;
    overflow: hidden;
    background: #3a0066;
    border-radius: 10px;
    padding: 8px 0;
    box-shadow: 0 0 15px #000;
}

.withdraw-track {
    display: flex;
    width: max-content;
    animation: scroll-left 100s linear infinite;
}

/* Highlight withdraw besar */
.withdraw-track span.big {
    color: #ffd700;
}

/* Pause saat disentuh / hover */
.withdraw-marquee:hover .withdraw-track {
    animation-play-state: paused;
}

.withdraw-track span {
    white-space: nowrap;
    margin-right: 30px;
    font-size: 13px;
    color: #00ffcc;
}

/* Animasi teks berjalan */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
/* ===============================
   END WITHDRAW TERBARU
================================ */

/* =====================================================
   START RESPONSIVE MOBILE
===================================================== */
@media (max-width: 480px) {
    .withdraw-track span {
        font-size: 12px;
        margin-right: 20px;
    }
}
/* ===============================
   END RESPONSIVE MOBILE
================================ */

/* ===============================
   START LOADING NOTIFICATION
================================ */
.loading-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-box {
    background: linear-gradient(180deg, #4b0f7a, #2a004f);
    padding: 20px;
    border-radius: 14px;
    width: 90%;
    max-width: 320px;
    text-align: center;
    box-shadow: 0 0 15px #000;
}

.loading-box p {
    font-size: 14px;
    margin-bottom: 12px;
    color: #ffd700;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #2a004f;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #00ffcc, #ffd700);
    transition: width 0.3s;
}

#progressPercent {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #00ffcc;
}
/* ===============================
   END LOADING NOTIFICATION
================================ */

/* ===============================
   START BACKGROUND FULL
================================ */
.page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at top, #3b0066, #12001f);
}

/* CONTAINER UTAMA */
.container {
    width: 100%;
    max-width: 480px;
    /* MOBILE */
    padding: 16px;
}

/* ===============================
   DESKTOP RESPONSIVE
================================ */
@media (min-width: 768px) {
    .container {
        max-width: 900px;
        /* TABLET */
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        /* DESKTOP */
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        /* LARGE DESKTOP */
    }
}
/* ===============================
   END BACKGROUND FULL
================================ */

/* ===============================
   START BONUS SECTION
================================ */
.bonus-section {
    background: linear-gradient(135deg, #4b0082, #6a0dad);
    border-radius: 14px;
    padding: 14px 16px;
    margin: 14px 0;
    box-shadow: 0 0 15px #000;
}

.bonus-title {
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    color: #ffd700;
    margin-bottom: 10px;
    text-shadow: 0 0 15px #000;
}

.bonus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bonus-list li {
    background: rgba(0, 0, 0, 0.25);
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 8px;
    font-size: 13.5px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 15px #000;
}

.bonus-list li strong {
    color: #00ffea;
    font-weight: bold;
    text-shadow: 0 0 6px rgba(0, 255, 234, 0.8);
}

/* ===============================
BONUS RULES
=============================== */
.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bonus-rules-btn {
    display: block;
    margin: 0 auto 10px auto;
    background: linear-gradient(135deg, #7b2cff, #b266ff);
    border: none;
    color: #fff;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 15px #000;
}

.bonus-rules-btn:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

.bonus-rules {
    display: none;
    margin-top: 12px;
}

.rules-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px;
    font-size: 13px;
    color: #eee;
    line-height: 1.6;
    box-shadow: 0 0 15px #000;
}

.rules-box h4 {
    margin-top: 10px;
    margin-bottom: 4px;
    color: #ffd6ff;
    font-size: 13px;
}

.rules-box ul {
    padding-left: 16px;
    margin: 6px 0;
}

.rules-box ul li {
    margin-bottom: 4px;
}
/* ===============================
   END BONUS SECTION
================================ */

/* ===============================
   START FOOTER COPYRIGHT
================================ */
.site-footer {
    margin-top: 20px;
    padding: 16px 12px;
    background: linear-gradient(180deg, #3b0f63, #22082f);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 0 15px #000;
}

.footer-content {
    max-width: 420px;
    margin: auto;
}

.footer-brand {
    font-size: 12px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 4px;
    text-shadow: 0 0 15px #000;
}

.footer-desc {
    font-size: 12px;
    color: #c8a6ff;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 15px #000;
}

.footer-links a:hover {
    background: linear-gradient(135deg, #9b4dff, #c77dff);
    transform: scale(1.05);
}
/* ===============================
   END FOOTER COPYRIGHT
================================ */

/* ===============================
   START SEO TEXT
================================ */
.seo-text {
    font-size: 12px;
    color: #d7c7ff;
    text-align: center;
    line-height: 1.6;
    margin: 8px 0 14px;
    text-shadow: 0 0 15px #000;
}
/* ===============================
   END SEO TEXT
================================ */

/* ===============================
   START POPUP LOKASI
================================ */
.location-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.location-box {
    background: linear-gradient(135deg,#2b0a3d,#4b176a);
    color: #fff;
    padding: 22px;
    border-radius: 14px;
    max-width: 340px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 15px #000;
}

.location-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.location-box p {
    font-size: 13px;
    line-height: 1.5;
    opacity: .9;
}

.location-btns {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.btn-allow,
.btn-deny {
    flex: 1;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.btn-allow {
    background: #a855f7;
    color: #fff;
    box-shadow: 0 0 15px #000;
}

.btn-allow:hover {
    background: #9333ea;
}

.btn-deny {
    background: rgba(255,255,255,.15);
    color: #fff;
    box-shadow: 0 0 15px #000;
}
/* ===============================
   END POPUP LOKASI
================================ */