body {
    font-family: 'Poppins', sans-serif
}

.animate-marquee {
    animation: marquee 30s linear infinite
}

.animate-marquee2 {
    animation: marquee2 30s linear infinite
}

@keyframes marquee {
    0% {
        transform: translateX(0%)
    }

    100% {
        transform: translateX(-100%)
    }
}

@keyframes marquee2 {
    0% {
        transform: translateX(100%)
    }

    100% {
        transform: translateX(0%)
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(.95)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

.popup-content {
    animation: fadeInScale 0.3s ease-out forwards
}

.info-wrapper {
    background-color: #fff;
    padding-top: 3rem;
    padding-bottom: 3rem
}

.info-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem
}

.info-box {
    border: 1px solid #e5e7eb;
    border-radius: .5rem;
    padding: 1.5rem;
    background-color: #f9fafb
}

.info-title {
    display: flex;
    align-items: center;
    margin-bottom: 1rem
}

.info-title h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2
}

.info-title p {
    font-size: .875rem;
    color: #6b7280;
    margin: 0
}

.info-icon {
    display: inline-block;
    width: 48px;
    height: 48px;
    margin-right: 1rem;
    background-image: url(//dsuown9evwz4y.cloudfront.net/Images/~normad-alpha/dark-gold/desktop/layout/icon-sprite.png?v=20250528);
    background-size: auto 48px;
    background-repeat: no-repeat;
    flex-shrink: 0
}

.icon-service {
    background-position: 0 0
}

.icon-product {
    background-position: -48px 0
}

.icon-help {
    background-position: -96px 0
}

.info-description {
    margin-top: 1rem
}

.info-description.with-separator {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem
}

.info-description h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .25rem
}

.info-description p {
    font-size: .875rem;
    color: #4b5563;
    line-height: 1.5
}

.contact-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #16a34a;
    text-decoration: none;
    font-weight: 600
}

.contact-whatsapp:hover {
    color: #15803d
}

.main-footer {
    background-color: #111827;
    color: #9ca3af;
    padding-top: 3rem;
    padding-bottom: 3rem
}

.footer-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem
}

.footer-top-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 2rem
}

.footer-section h3 {
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    space-y: .5rem
}

.footer-section a:hover {
    color: #fff;
    transition: color 0.2s ease-in-out
}

.footer-separator {
    border-color: #374151;
    margin-top: 2rem;
    margin-bottom: 2rem
}

.footer-logo-section h4 {
    font-weight: 600;
    color: #9ca3af;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: .875rem
}

.footer-logo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap
}

.footer-logo-list img {
    height: 32px;
    opacity: .7;
    transition: opacity 0.2s ease-in-out
}

.footer-logo-list img:hover {
    opacity: 1
}

.provider-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem
}

.provider-logo-grid img {
    height: 28px;
    opacity: .6;
    transition: opacity 0.2s ease-in-out
}

.provider-logo-grid img:hover {
    opacity: 1
}

.provider-category h5 {
    text-align: center;
    color: #9ca3af;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-weight: 500
}

.footer-copyright {
    background-color: #000;
    text-align: center;
    padding: 1rem;
    font-size: .875rem;
    color: #9ca3af
}

@media (min-width:768px) {
    .info-container {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width:1024px) {
    .info-container {
        grid-template-columns: repeat(3, 1fr)
    }

    .footer-top-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

.rtp-bar-bg {
    background-color: #374151;
    border-radius: 9999px;
    overflow: hidden
}

.rtp-bar-fill {
    height: 100%;
    border-radius: 9999px;
    transition: width 0.5s ease-in-out;
    text-align: right;
    padding-right: 8px;
    color: #fff;
    font-weight: 700;
    font-size: .8rem
}

.demo-slot-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.demo-slot-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -2px rgb(0 0 0 / .05)
}

.winner-toast {
    animation: slideInUp 0.5s ease-out, fadeOut 0.5s ease-in 4.5s forwards;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}




/* GAYA PILL - VERSI KECIL & RAMPING */

/* Gaya dasar untuk setiap tab */
.rtp-tab {
    padding: 6px 14px;
    /* DIUBAH: Padding diperkecil agar tombol lebih ramping */
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.8rem;
    /* DIUBAH: Ukuran teks diperkecil (sekitar 12.8px) */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: #f9fafb;
    color: #374151;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

/* Efek saat kursor mouse di atas tab */
.rtp-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

/* Gaya untuk tab yang sedang AKTIF */
.rtp-tab.active {
    background-image: linear-gradient(to right, #00818F, #00A1A7);
    color: white;
    font-weight: 700;
    border-color: transparent;
    box-shadow: 0 4px 10px 0 rgba(0, 129, 143, 0.3);
    transform: translateY(0);
}

.copy-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2d3748;
    /* bg-gray-800 */
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s;
}

.copy-toast.show {
    opacity: 1;
    bottom: 40px;
}

    /* === CSS MANUAL UNTUK BAGIAN GAME === */

    /* 1. Grid Kontainer Utama */
    .game-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 kolom di mobile */
        gap: 1rem; /* Jarak antar game */
    }

    /* 2. Kartu Game Individual */
    .game-card {
        position: relative;
        border-radius: 0.5rem; /* Sudut melengkung */
        overflow: hidden; /* Penting untuk animasi */
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        transform: translateZ(0); /* Mencegah 'flickering' pada beberapa browser */
    }

    /* 3. Pembungkus Gambar (Memaksa Bentuk Persegi) */
    .game-card-image-wrapper {
        aspect-ratio: 1 / 1; /* KUNCI untuk ukuran yang sama */
        width: 100%;
        background-color: #1a202c; /* Warna latar jika gambar gagal dimuat */
    }

    /* 4. Gambar Game */
    .game-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Agar gambar pas tanpa distorsi */
        transition: transform 0.3s ease-in-out;
    }

    /* Efek hover pada gambar */
    .game-card:hover .game-card-image {
        transform: scale(1.1);
    }

    /* 5. Panel Info yang Muncul Saat Hover */
    .game-card-info-panel {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 0.75rem;
        background-image: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
        
        /* Animasi */
        opacity: 0;
        transform: translateY(100%);
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    }

    /* Efek hover pada panel */
    .game-card:hover .game-card-info-panel {
        opacity: 1;
        transform: translateY(0);
    }

    /* 6. Teks dan Tombol di Dalam Panel */
    .game-card-title {
        color: white;
        font-size: 0.875rem; /* 14px */
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .game-card-provider {
        color: #a0aec0; /* Abu-abu terang */
        font-size: 0.75rem; /* 12px */
    }
    .game-card-button {
        display: block;
        width: 100%;
        margin-top: 0.5rem;
        text-align: center;
        background: linear-gradient(to right, #00818F, #00A1A7);
        color: white;
        font-weight: 600;
        padding: 0.375rem 1rem; /* py-1.5 px-4 */
        border-radius: 0.375rem; /* rounded-md */
        font-size: 0.75rem; /* 12px */
        text-decoration: none;
        transition: transform 0.2s;
    }
    .game-card-button:hover {
        transform: scale(1.05);
    }

    /* 7. Pengaturan Grid Responsif (6 kolom di layar lebar) */
    @media (min-width: 640px) { /* sm */
        .game-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }
    @media (min-width: 768px) { /* md */
        .game-grid {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }
    }
    @media (min-width: 1024px) { /* lg */
        .game-grid {
            grid-template-columns: repeat(6, minmax(0, 1fr));
        }
    }









