:root {
    --primary: #00ff88;
    --primary-dark: #00cc6a;
    --primary-glow: 0 0 20px rgba(0, 255, 136, 0.4);
    --primary-glow-strong: 0 0 40px rgba(0, 255, 136, 0.6);
    --primary-gradient: linear-gradient(135deg, #00ff88, #00cc6a);
    --bg-dark: #050a05;
    --bg-secondary: #0a1a0a;
    --bg-card: rgba(0, 255, 136, 0.04);
    --bg-card-hover: rgba(0, 255, 136, 0.08);
    --border-color: rgba(0, 255, 136, 0.10);
    --border-hover: rgba(0, 255, 136, 0.30);
    --text-white: #e8f5e9;
    --text-muted: rgba(200, 255, 210, 0.50);
    --text-dim: rgba(200, 255, 210, 0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 8px 32px rgba(0, 255, 136, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --rtp-high: #00ff88;
    --rtp-high-glow: 0 0 30px rgba(0, 255, 136, 0.3);
    --rtp-medium: #ffd93d;
    --rtp-medium-glow: 0 0 30px rgba(255, 217, 61, 0.2);
    --rtp-low: #ff6b6b;
    --rtp-low-glow: 0 0 30px rgba(255, 107, 107, 0.2);
    --card-bg: rgba(0, 255, 136, 0.03);
}


html {
    scroll-behavior: smooth;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: url('../uploads/banners/backgroundrtp.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}


/* Pastikan semua konten di atas overlay */
.container, .site-header, footer, section, .bgmobile {
    position: relative;
    z-index: 1;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
    box-shadow: var(--primary-glow);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== UTILITY ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.bgmobile {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 10px 0;
    border: 1px solid var(--border-color);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.row-center {
    justify-content: center;
}
.row-between {
    justify-content: space-between;
}
.row-start {
    justify-content: flex-start;
}

.col {
    flex: 1;
    padding: 0 8px;
}
.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}
.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
.col-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}
.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}
.col-2 {
    flex: 0 0 16.666%;
    max-width: 16.666%;
}

.text-center {
    text-align: center;
}
.text-white {
    color: var(--text-white);
}
.text-muted {
    color: var(--text-muted);
}
.text-dim {
    color: var(--text-dim);
}
.text-primary {
    color: var(--primary);
}

.m-0 {
    margin: 0;
}
.mt-1 {
    margin-top: 0.5rem;
}
.mt-2 {
    margin-top: 1rem;
}
.mt-3 {
    margin-top: 1.5rem;
}
.mt-4 {
    margin-top: 2rem;
}
.mb-1 {
    margin-bottom: 0.5rem;
}
.mb-2 {
    margin-bottom: 1rem;
}
.mb-3 {
    margin-bottom: 1.5rem;
}
.mb-4 {
    margin-bottom: 2rem;
}
.p-1 {
    padding: 0.5rem;
}
.p-2 {
    padding: 0.75rem;
}
.p-3 {
    padding: 1.5rem;
}

.flex {
    display: flex;
}
.flex-wrap {
    flex-wrap: wrap;
}
.items-center {
    align-items: center;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.gap-1 {
    gap: 0.5rem;
}
.gap-2 {
    gap: 1rem;
}
.gap-3 {
    gap: 1.5rem;
}

.w-full {
    width: 100%;
}
.h-auto {
    height: auto;
}
.h-100 {
    height: 100% !important;
}
.border-0 {
    border: 0 !important;
}
.object-cover {
    object-fit: cover;
}
.object-contain {
    object-fit: contain;
}
.relative {
    position: relative;
}

.d-none {
    display: none;
}
.d-block {
    display: block;
}
.d-flex {
    display: flex;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.2));
}

/* Desktop Menu */
.desktop-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-link {
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.menu-link:hover {
    background: var(--bg-card);
    color: var(--primary);
    box-shadow: var(--primary-glow);
}

.btn-daftar {
    background: var(--primary-gradient);
    color: var(--bg-dark) !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--primary-glow);
}

.btn-daftar:hover {
    transform: scale(1.05);
    box-shadow: var(--primary-glow-strong);
}

.btn-login {
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: var(--transition);
}

.btn-login:hover {
    background: var(--bg-card);
    border-color: var(--primary);
    color: var(--primary);
}

/* Mobile Header */
.header-buttons-mobile {
    display: none;
    align-items: center;
    gap: 6px;
}

.btn-daftar-mobile {
    background: var(--primary-gradient);
    color: var(--bg-dark) !important;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.7rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--primary-glow);
}

.btn-daftar-mobile:hover {
    transform: scale(1.05);
}

.btn-login-mobile {
    color: var(--text-white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: var(--transition);
}

.btn-login-mobile:hover {
    background: var(--bg-card);
    border-color: var(--primary);
}

.mobile-menu-icon {
    background: none;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    cursor: pointer;
    padding: 4px 6px;
    transition: var(--transition);
    display: none;
}

.mobile-menu-icon:hover {
    border-color: var(--primary);
    box-shadow: var(--primary-glow);
}

.mobile-menu-icon svg {
    display: block;
    width: 22px;
    height: 22px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 12px 0 8px;
    gap: 6px;
    border-top: 1px solid var(--border-color);
    margin-top: 10px;
}

.mobile-menu.show {
    display: flex;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-link {
    color: var(--text-white);
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.mobile-menu-link:hover {
    background: var(--bg-card);
    color: var(--primary);
}

.mobile-menu-link img {
    width: 22px;
    height: 20px;
    object-fit: contain;
}

.mobile-menu-divider {
    height: 1px;
    background: var(--border-color);
    margin: 6px 0;
}

.mobile-btn-daftar {
    background: var(--primary-gradient);
    color: var(--bg-dark) !important;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.mobile-btn-daftar:hover {
    transform: scale(1.02);
}

.mobile-btn-login {
    background: var(--bg-card);
    color: var(--text-white);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.mobile-btn-login:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== CAROUSEL ===== */
.carousel-root {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow), var(--shadow-glow);
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius);
}

.carousel .slider-wrapper {
    overflow: hidden;
}

.carousel .slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    list-style: none;
    padding: 0;
    margin: 0;
}

.carousel .slide {
    min-width: 100%;
    flex-shrink: 0;
}

.carousel .slide img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 300px;
    object-fit: cover;
}

.carousel .control-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    color: var(--text-white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.carousel .control-arrow:hover {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: var(--primary-glow);
}

.carousel .control-prev {
    left: 10px;
}
.carousel .control-next {
    right: 10px;
}

.control-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    list-style: none;
    padding: 0;
    margin: 0;
}

.control-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.control-dots .dot.selected {
    background: var(--primary);
    box-shadow: var(--primary-glow);
    transform: scale(1.2);
}

/* ===== TEXT HEADER ===== */
.text-header {
    text-align: center;
    padding: 30px 0 20px;
}

.text-title {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    display: inline-block;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) !important;
}

.text-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin: 6px auto 0;
    background: var(--primary-gradient);
    border-radius: 2px;
    box-shadow: var(--primary-glow);
}

.date-display {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* ============================================
   PROVIDER SWIPER - STRUCTURE DARI HTML
   ============================================ */
.swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    gap: 10px;
    will-change: transform;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 5px 35px;
    scrollbar-width: none;
}

.swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.swiper-slide {
    flex-shrink: 0;
    width: auto;
}

.image-wrapper {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    padding: 8px 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    min-height: 58px;
}

.image-wrapper:hover {
    border-color: var(--primary);
    background: var(--bg-card-hover);
    box-shadow: var(--primary-glow);
    transform: translateY(-2px);
}

.image-wrapper.active {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.10);
    box-shadow: var(--primary-glow);
}

.image-wrapper img {
    width: 110px;
    height: 58px;
    object-fit: contain;
}

.image-wrapper.active span {
    color: var(--primary);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: var(--primary-glow);
}

.swiper-button-prev {
    left: 5px;
}
.swiper-button-next {
    right: 5px;
}

.swiper-button-prev::after {
    content: '‹';
    font-size: 14px;
    font-weight: 700;
}
.swiper-button-next::after {
    content: '›';
    font-size: 14px;
    font-weight: 700;
}

/* ===== SEARCH & FILTER ===== */
.position-relative {
    position: relative;
}

.custom-input,
.custom-select {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-card);
    color: var(--text-white);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.custom-input:focus,
.custom-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--primary-glow);
}

.custom-select option {
    background: var(--bg-dark);
    color: var(--text-white);
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    opacity: 0.5;
}

/* ===== GAME CARDS - SESUAI HTML ===== */
.fugu-grid-item {
    padding: 0 8px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.fugu-grid-item-w2 {
    flex: 0 0 25%;
    max-width: 25%;
}

/* RESPONSIVE GAME CARDS */
@media (max-width: 992px) {
    .fugu-grid-item-w2 {
        flex: 0 0 25%;
        max-width: 25%;
        padding: 0 6px;
        margin-bottom: 14px;
    }
}

@media (max-width: 768px) {
    .fugu-grid-item-w2 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
        padding: 0 4px;
        margin-bottom: 10px;
    }
    .container {
        padding: 0 8px;
    }
    .bgmobile {
        padding: 8px 0;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .fugu-grid-item-w2 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 4px;
        margin-bottom: 8px;
    }
    .container {
        padding: 0 5px;
    }
    .row {
        margin: 0 -4px;
    }
    .col {
        padding: 0 4px;
    }
    .bgmobile {
        padding: 6px 0;
        border-radius: 6px;
    }
    .card {
        border-radius: 8px;
    }
    .card-img-top {
        border-radius: 8px 8px 0 0;
    }
    .p-2 {
        padding: 0.3rem !important;
    }
    .running-title {
        font-size: 0.6rem !important;
    }
}

@media (max-width: 380px) {
    .fugu-grid-item-w2 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 2px;
        margin-bottom: 4px;
    }
    .container {
        padding: 0 3px;
    }
    .row {
        margin: 0 -2px;
    }
    .col {
        padding: 0 2px;
    }
    .running-title {
        font-size: 0.5rem !important;
    }
}

.portfolio-item {
    backdrop-filter: blur(2.1px);
    -webkit-backdrop-filter: blur(2.1px);
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: 0 0 5px rgba(0, 255, 136, 0.05), 0 0 10px rgba(0, 255, 136, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    padding: 0;
    position: relative;
    transition: var(--transition);
    width: 100%;
    border: 1px solid var(--border-color);
}

.portfolio-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.15), 0 0 30px rgba(0, 255, 136, 0.05);
}

.card {
    background: var(--card-bg) !important;
    border: none !important;
    border-radius: var(--radius) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: var(--transition);
    width: 100%;
}

.card:hover {
    transform: scale(1.01);
    border-color: var(--border-hover) !important;
}

.card-img-top {
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    width: 100%;
    background: var(--bg-dark);
}

.placeholder-img {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    width: 100%;
}

.sticker {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 24px;
    z-index: 5;
}

/* ===== HOT STICKER ===== */
.hot-sticker-wrapper {
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 10;
    width: 44px;
    height: 44px;
    animation: hotPulse 1.5s ease-in-out infinite;
    pointer-events: none;
}

.hot-sticker {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.4));
}

@keyframes hotPulse {
    0%,
    100% {
        transform: scale(1) rotate(-2deg);
    }
    50% {
        transform: scale(1.08) rotate(2deg);
    }
}

.bg-cb {
    background: var(--card-bg) !important;
}
.bg-shadow-white {
    box-shadow: var(--shadow-glow);
}

.swiper-wrapper-marquees {
    align-self: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.running-title {
    animation: scrollText 15s linear infinite;
    color: var(--text-white);
    display: inline-block;
    font-size: 0.75rem !important;
    margin: 0;
    overflow: hidden;
    padding-right: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
    will-change: transform;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


.progress-blue {
    background: rgba(255, 255, 255, 0.05);
}

@keyframes neonPulseGreen {
    0%,
    100% {
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
    }
    50% {
        box-shadow: 0 0 35px rgba(0, 255, 136, 0.5);
    }
}

.rtp-medium {
    background: linear-gradient(90deg, #f5b800, #ffd93d) !important;
    box-shadow: 0 0 25px rgba(255, 217, 61, 0.2) !important;
    animation: neonPulseYellow 2s ease-in-out infinite;
}

@keyframes neonPulseYellow {
    0%,
    100% {
        box-shadow: 0 0 15px rgba(255, 217, 61, 0.15);
    }
    50% {
        box-shadow: 0 0 35px rgba(255, 217, 61, 0.35);
    }
}

.rtp-low {
    background: linear-gradient(90deg, #dc3545, #ff6b6b) !important;
    box-shadow: 0 0 25px rgba(255, 107, 107, 0.2) !important;
    animation: neonPulseRed 2s ease-in-out infinite;
}

@keyframes neonPulseRed {
    0%,
    100% {
        box-shadow: 0 0 15px rgba(255, 107, 107, 0.15);
    }
    50% {
        box-shadow: 0 0 35px rgba(255, 107, 107, 0.35);
    }
}

.pola-main {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}
.pola-main:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

.suntikan-gacor {
    background: linear-gradient(135deg, #00cc6a, #00ff88);
}
.suntikan-gacor:hover {
    background: linear-gradient(135deg, #00ff88, #00dd77);
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

.simulasi {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.simulasi:hover {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
    .pola-main,
    .suntikan-gacor,
    .simulasi {
        font-size: 10px;
        height: 15px;
        padding: 2px 8px;
        margin: 4px auto;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .pola-main,
    .suntikan-gacor,
    .simulasi {
        font-size: 8px;
        height: 13px;
        padding: 1px 6px;
        margin: 3px auto;
        border-radius: 12px;
        width: 95%;
    }
}

@media (max-width: 380px) {
    .pola-main,
    .suntikan-gacor,
    .simulasi {
        font-size: 7px;
        height: 12px;
        padding: 1px 4px;
        margin: 2px auto;
        border-radius: 10px;
    }
}

/* ===== HOT GAMES ===== */
.hot-games-container .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center !important;
    gap: 40px;
    margin: 0;
}

.hot-games-container .fugu-grid-item-w2 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0;
    margin-bottom: 0;
}

.hot-games-swiper-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    overflow: visible;
    padding: 5px 0;
}

.hot-games-swiper-container {
    position: relative;
    flex: 1;
    overflow: hidden;
    padding: 5px 2px 40px !important;
    width: 100%;
}

.hot-games-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 4px !important;
    padding: 0 2px !important;
    will-change: transform;
    transform: translateX(0) !important;
    width: 100%;
}

.hot-game-slide {
    flex: 0 0 auto;
    padding: 0 2px !important;
    box-sizing: border-box;
    transition: all 0.3s ease;
    animation: fadeInHot 0.5s ease forwards;
    opacity: 0;
}

/* Desktop: 4 kolom */
@media (min-width: 992px) {
    .hot-game-slide {
        width: calc(25% - 12px);
        max-width: calc(25% - 12px);
        min-width: calc(25% - 12px);
        margin: 0 6px;
    }
    .hot-games-container .fugu-grid-item-w2 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }
}

/* Tablet: 3 kolom */
@media (min-width: 768px) and (max-width: 991px) {
    .hot-game-slide {
        width: calc(33.333% - 12px);
        max-width: calc(33.333% - 12px);
        min-width: calc(33.333% - 12px);
        margin: 0 6px;
    }
    .hot-games-container .fugu-grid-item-w2 {
        flex: 0 0 33.333% !important;
        max-width: 33.333% !important;
    }
}

/* Mobile: 2 kolom */
@media (max-width: 767px) {
    .hot-game-slide {
        width: calc(50% - 6px) !important;
        max-width: calc(50% - 6px) !important;
        min-width: calc(50% - 6px) !important;
        margin: 0 3px !important;
    }
    .hot-games-container .fugu-grid-item-w2 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding: 0 3px !important;
        margin-bottom: 5px !important;
    }
}

@media (max-width: 380px) {
    .hot-game-slide {
        width: calc(50% - 4px) !important;
        max-width: calc(50% - 4px) !important;
        min-width: calc(50% - 4px) !important;
        margin: 0 2px !important;
    }
    .hot-games-container .fugu-grid-item-w2 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding: 0 2px !important;
        margin-bottom: 4px !important;
    }
}

.hot-games-container .portfolio-item {
    border-radius: 6px !important;
}

.hot-games-container .card {
    border-radius: 6px 6px 0 0 !important;
}

.hot-games-container .card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1 !important;
    background: var(--bg-dark);
}

.hot-games-container .card-img-top {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.hot-games-container .sticker-top-right {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 26px;
    height: 22px;
    z-index: 5;
}

.hot-games-container .p-2 {
    padding: 4px 3px !important;
}

.hot-games-container .running-title {
    font-size: 0.55rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    animation: none !important;
}

.hot-games-container .animated-progress {
    height: 8px !important;
    border-radius: 4px !important;
    margin: 2px 0 !important;
}

.hot-games-container .bg-progress-rtp {
    font-size: 6px !important;
    line-height: 8px !important;
    border-radius: 4px !important;
    padding-right: 2px !important;
}

.hot-games-container small {
    font-size: 0.4rem !important;
    margin-top: 1px !important;
}

.hot-games-container .btn-action-group {
    gap: 2px !important;
    padding: 2px 3px 4px !important;
}

.hot-games-container .pola-main,
.hot-games-container .suntikan-gacor,
.hot-games-container .simulasi {
    font-size: 7px !important;
    height: 12px !important;
    padding: 1px 3px !important;
    border-radius: 6px !important;
    margin: 1px auto !important;
    width: 98% !important;
}

/* Hot Games Tablet */
@media (min-width: 481px) and (max-width: 768px) {
    .hot-games-container .running-title {
        font-size: 0.6rem !important;
    }
    .hot-games-container .pola-main,
    .hot-games-container .suntikan-gacor,
    .hot-games-container .simulasi {
        font-size: 8px !important;
        height: 14px !important;
    }
}

/* Hot Games Desktop */
@media (min-width: 769px) {
    .hot-games-container .running-title {
        font-size: 0.7rem !important;
    }
    .hot-games-container .animated-progress {
        height: 10px !important;
    }
    .hot-games-container .bg-progress-rtp {
        font-size: 7px !important;
        line-height: 10px !important;
    }
    .hot-games-container .pola-main,
    .hot-games-container .suntikan-gacor,
    .hot-games-container .simulasi {
        font-size: 9px !important;
        height: 15px !important;
        padding: 1px 6px !important;
    }
}

/* Hot Games Mobile */
@media (max-width: 480px) {
    .hot-games-container .running-title {
        font-size: 0.5rem !important;
    }
    .hot-games-container .animated-progress {
        height: 7px !important;
    }
    .hot-games-container .bg-progress-rtp {
        font-size: 5px !important;
        line-height: 7px !important;
    }
    .hot-games-container .pola-main,
    .hot-games-container .suntikan-gacor,
    .hot-games-container .simulasi {
        font-size: 6px !important;
        height: 10px !important;
        padding: 0 2px !important;
        border-radius: 4px !important;
    }
    .hot-games-container .sticker-top-right {
        width: 14px !important;
        height: 12px !important;
    }
    .hot-games-container small {
        font-size: 0.35rem !important;
    }
}

@media (max-width: 380px) {
    .hot-games-container .running-title {
        font-size: 0.45rem !important;
    }
    .hot-games-container .animated-progress {
        height: 6px !important;
    }
    .hot-games-container .bg-progress-rtp {
        font-size: 4px !important;
        line-height: 6px !important;
    }
    .hot-games-container .pola-main,
    .hot-games-container .suntikan-gacor,
    .hot-games-container .simulasi {
        font-size: 5px !important;
        height: 9px !important;
        padding: 0 1px !important;
    }
}

.hot-games-wrapper .bg-progress-rtp {
    transition: width 0.5s ease;
}
.hot-games-wrapper .bg-progress-rtp.rtp-high {
    animation: rtpPulseGreen 2s ease-in-out infinite;
}
.hot-games-wrapper .bg-progress-rtp.rtp-medium {
    animation: rtpPulseYellow 2s ease-in-out infinite;
}
.hot-games-wrapper .bg-progress-rtp.rtp-low {
    animation: rtpPulseRed 2s ease-in-out infinite;
}

@keyframes rtpPulseGreen {
    0%,
    100% {
        box-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
    }
}
@keyframes rtpPulseYellow {
    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 217, 61, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 217, 61, 0.6);
    }
}
@keyframes rtpPulseRed {
    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 107, 107, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 107, 107, 0.6);
    }
}

@keyframes fadeInHot {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hot-swiper-pagination {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.hot-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.hot-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    box-shadow: var(--primary-glow);
    transform: scale(1.2);
}

.hot-swiper-pagination .swiper-pagination-bullet:hover {
    background: rgba(0, 255, 136, 0.6);
    transform: scale(1.1);
}

.hotSwiperPagination {
    display: none !important;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.social-icons li a {
    display: inline-block;
    transition: var(--transition);
}

.social-icons li a:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.3));
}

@media (max-width: 480px) {
    .social-icons {
        gap: 8px;
        flex-wrap: wrap;
    }
    .social-icons li a img {
        width: 24px !important;
        height: 24px !important;
    }
}

/* ===== FLOATING BUTTONS ===== */
.floating-btn {
    position: fixed;
    left: 12px;
    z-index: 999;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: var(--transition);
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn img {
    max-width: 60px;
    width: 60px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.2));
}

@media (max-width: 480px) {
    .floating-btn img {
        max-width: 50px;
        width: 50px;
    }
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(10px);
    animation: fadeInModal 0.3s ease;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: linear-gradient(145deg, #050a05, #0a1a0a);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    max-width: 750px;
    width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow), var(--primary-glow);
    position: relative;
    animation: slideIn 0.3s ease;
}

.modal-close {
    position: sticky;
    top: 0;
    float: right;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-title {
    text-align: center;
    margin-bottom: 15px;
}

.modal-title h3 {
    color: var(--primary);
    font-size: 1.5rem;
    text-shadow: var(--primary-glow);
}

.modal-title p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.modal-body {
    color: var(--text-white);
}

@keyframes fadeInModal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes slideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-game-image {
    text-align: center;
    margin-bottom: 15px;
}

.modal-game-image img {
    max-width: 150px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--bg-dark);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: var(--primary-glow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.scroll-top-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--primary-glow-strong);
}

.scroll-top-btn.show {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE MOBILE
   ============================================ */
@media (max-width: 768px) {
    .mobile-menu-icon {
        display: block !important;
    }
    .desktop-menu {
        display: none !important;
    }
    .header-buttons-mobile {
        display: flex !important;
    }

    .text-title {
        font-size: 1.3rem;
    }

    .filter-row {
        flex-direction: column !important;
        gap: 8px !important;
    }
    .filter-row .filter-item {
        width: 100% !important;
        min-width: unset !important;
    }

    .image-wrapper {
        min-width: 75px !important;
        min-height: 38px !important;
        padding: 5px 10px !important;
    }
    .image-wrapper img {
        width: 75px !important;
        height: 36px !important;
    }

    .swiper-wrapper {
        padding: 5px 25px !important;
        gap: 8px !important;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 26px !important;
        height: 26px !important;
        font-size: 14px !important;
    }

    .modal-content {
        padding: 20px 15px;
    }

    .scroll-top-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }

    .logo img {
        height: 36px !important;
    }

    .carousel .slide img {
        max-height: 180px !important;
        border-radius: 8px !important;
    }
    .carousel {
        border-radius: 8px !important;
    }
    .control-dots .dot {
        width: 9px !important;
        height: 9px !important;
    }
    .carousel .control-arrow {
        width: 34px !important;
        height: 34px !important;
        font-size: 20px !important;
    }
}

@media (max-width: 480px) {
    .text-title {
        font-size: 1.1rem;
    }

    .image-wrapper {
        min-width: 60px !important;
        min-height: 32px !important;
        padding: 4px 8px !important;
        border-radius: 8px !important;
    }
    .image-wrapper img {
        width: 60px !important;
        height: 28px !important;
    }

    .swiper-wrapper {
        padding: 5px 20px !important;
        gap: 6px !important;
    }


    .control-dots .dot {
        width: 6px !important;
        height: 6px !important;
    }

    .modal-content {
        padding: 15px 12px !important;
        border-radius: 12px !important;
    }
    .modal-title h3 {
        font-size: 1.2rem !important;
    }

    .scroll-top-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
        bottom: 15px !important;
        right: 15px !important;
    }

    .logo img {
        height: 30px !important;
    }

    .btn-daftar-mobile,
    .btn-login-mobile {
        font-size: 0.65rem !important;
        padding: 4px 10px !important;
        border-radius: 16px !important;
    }

    .carousel .slide img {
        max-height: 130px !important;
        border-radius: 6px !important;
    }
    .carousel {
        border-radius: 6px !important;
    }
    .carousel .control-arrow {
        width: 30px !important;
        height: 30px !important;
        font-size: 16px !important;
    }
}

@media (max-width: 380px) {
    .logo img {
        height: 26px !important;
    }

    .btn-daftar-mobile,
    .btn-login-mobile {
        font-size: 0.55rem !important;
        padding: 3px 8px !important;
        border-radius: 14px !important;
    }

    .mobile-menu-icon svg {
        width: 18px !important;
        height: 18px !important;
    }

    .carousel .slide img {
        max-height: 110px !important;
    }
    .carousel .control-arrow {
        width: 24px !important;
        height: 24px !important;
        font-size: 13px !important;
    }
    .control-dots .dot {
        width: 5px !important;
        height: 5px !important;
    }
}

/* ============================================
   TOUCH FIXES
   ============================================ */
@media (hover: none) {
    .portfolio-item:hover {
        transform: none !important;
    }
    .card:hover {
        transform: none !important;
    }
    .image-wrapper:hover {
        transform: none !important;
    }
    .portfolio-item:active {
        transform: scale(0.98) !important;
        transition: transform 0.1s !important;
    }
    button:active {
        transform: scale(0.95) !important;
    }
}

@supports (-webkit-touch-callout: none) {
    .site-header {
        padding-top: env(safe-area-inset-top, 12px) !important;
        padding-bottom: 12px !important;
    }
    .floating-btn {
        bottom: env(safe-area-inset-bottom, 20px) !important;
    }
    .modal-content {
        max-height: 90vh !important;
        -webkit-overflow-scrolling: touch !important;
    }

}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 204, 106, 0.2));
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.2), inset 0 0 20px rgba(0, 255, 136, 0.05);
    transform: translateY(-50%) scale(1.1);
    color: #00ff88;
}

.swiper-button-prev:active,
.swiper-button-next:active {
    transform: translateY(-50%) scale(0.95);
}

.swiper-button-prev {
    left: 0;
}
.swiper-button-next {
    right: 0;
}

.swiper-button-prev::after {
    content: '‹';
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    transition: all 0.3s ease;
}
.swiper-button-next::after {
    content: '›';
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    transition: all 0.3s ease;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}


.image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.image-wrapper:hover::before {
    opacity: 1;
}

.image-wrapper:hover {
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.05);
}

.image-wrapper.active {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.08);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.1), inset 0 0 20px rgba(0, 255, 136, 0.03);
}

.image-wrapper.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    border-radius: 2px;
    animation: glowLine 2s ease-in-out infinite;
}

@keyframes glowLine {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

.image-wrapper img {
    width: 110px;
    height: 58px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.image-wrapper.active img {
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.2));
}

/* ============================================
   FILTER & SORT - LEBIH KEREN
   ============================================ */
.custom-input,
.custom-select {
    width: 100%;
    padding: 10px 40px 10px 16px;
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-white);
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    height: 44px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.custom-input:focus,
.custom-select:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.05), inset 0 0 20px rgba(0, 255, 136, 0.02);
    background: rgba(255, 255, 255, 0.04);
}

.custom-input:hover,
.custom-select:hover {
    border-color: rgba(0, 255, 136, 0.15);
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300ff88' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.custom-select option {
    background: #0a0e0a;
    color: var(--text-white);
    padding: 8px 12px;
}

.custom-select option:hover {
    background: rgba(0, 255, 136, 0.1);
}

/* Search icon position */
.position-relative {
    position: relative;
}

.search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    opacity: 0.3;
    pointer-events: none;
}

/* ============================================
   FILTER ROW - RESPONSIVE
   ============================================ */
.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 15px 0 20px;
    align-items: center;
}

.filter-row .filter-item {
    flex: 1;
    min-width: 160px;
}

.filter-row .filter-item:first-child {
    flex: 2;
    min-width: 200px;
}

.filter-row .filter-item select option[value="rtp_desc"] {
    color: #00ff88;
}

.filter-row .filter-item select option[value="rtp_asc"] {
    color: #ffd93d;
}

/* ============================================
   SORTING - HIGHLIGHT ACTIVE
   ============================================ */
.custom-select option:checked {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
}

.custom-select option[value="asc"],
.custom-select option[value="desc"] {
    color: #fff;
}

.custom-select option[value="rtp_desc"]::before {
    content: '⬇️ ';
}

.custom-select option[value="rtp_asc"]::before {
    content: '⬆️ ';
}
/* ============================================
   FIX: OVERFLOW & SCROLLING
   ============================================ */
* {
    max-width: 100vw;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Fix banner - FULL WIDTH tanpa padding berlebih */
.banner-wrapper,
.container > .carousel-root,
.container > div:first-child {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: hidden !important;
}

.carousel-root {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.carousel {
    border-radius: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.carousel .slider-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

.carousel .slider {
    width: 100% !important;
    max-width: 100% !important;
}

.carousel .slide {
    min-width: 100% !important;
    max-width: 100% !important;
}

.carousel .slide .carousel__item {
    width: 100% !important;
    max-width: 100% !important;
}

.carousel .slide img,
.carousel .slide picture img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    display: block !important;
    object-fit: cover !important;
}

/* Fix container global */
.container {
    max-width: 1200px !important;
    width: 100% !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    overflow: hidden !important;
}

@media (max-width: 480px) {
    .container {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
}

/* Fix hot games wrapper */
.hot-games-swiper-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

.hot-games-swiper-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    padding: 5px 0 40px !important;
}

.hot-games-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    gap: 4px !important;
    padding: 0 2px !important;
}

/* Fix semua row */
.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Fix game grid */
#gameGrid {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.fugu-grid-item {
    padding-left: 4px !important;
    padding-right: 4px !important;
}

@media (max-width: 480px) {
    .fugu-grid-item-w2 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding-left: 3px !important;
        padding-right: 3px !important;
    }
}

/* Fix semua overflow */
.swiper-wrapper {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.swiper-wrapper::-webkit-scrollbar {
    height: 3px !important;
}

/* Force no horizontal scroll */
img, svg, video, canvas, iframe {
    max-width: 100% !important;
    height: auto !important;
}


/* Tambahkan padding pada body agar konten tidak tertutup navbar */
body {
    padding-top: 74px !important; /* Sesuaikan dengan tinggi navbar (padding 12px*2 + height logo 50px) */
}

/* Atau jika ingin lebih presisi, tambahkan class ini */
body {
    padding-top: 74px !important;
}

/* Untuk mobile, tinggi navbar lebih kecil */
@media (max-width: 768px) {
    body {
        padding-top: 60px !important; /* Sesuaikan dengan tinggi navbar mobile */
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 52px !important; /* Sesuaikan dengan tinggi navbar mobile kecil */
    }
}
/* ============================================
   WRAPPER UTAMA - GLASSMORPHISM
   ============================================ */
.animated-progress {
    border-radius: 20px;
    height: 32px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -2px 0 rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effect - naik dan glow */
.animated-progress:hover {
    transform: translateY(-3px) scale(1.005);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* ============================================
   🟢 RTP TINGGI - LIQUID WAVE PREMIUM
   ============================================ */
.rtp-high {
    background: linear-gradient(
        135deg,
        #065f46 0%,
        #059669 8%,
        #10b981 16%,
        #34d399 24%,
        #6ee7b7 32%,
        #34d399 40%,
        #10b981 48%,
        #059669 56%,
        #065f46 64%,
        #059669 72%,
        #10b981 80%,
        #34d399 88%,
        #6ee7b7 100%
    ) !important;
    background-size: 400% 200% !important;
    animation: liquidWave 2.5s ease-in-out infinite !important;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 80px rgba(16, 185, 129, 0.15),
        0 0 160px rgba(16, 185, 129, 0.05),
        inset 0 0 60px rgba(255, 255, 255, 0.05);
}

/* 🌊 LAPISAN SHADOW 3D - DALAM */
.rtp-high::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.08) 30%,
        rgba(0, 0, 0, 0.02) 60%,
        transparent 100%
    );
    z-index: 3;
    border-radius: 0 0 20px 20px;
    pointer-events: none;
}

/* ✨ HIGHLIGHT GLOSSY - ATAS */
.rtp-high::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.15) 40%,
        transparent 100%
    );
    z-index: 4;
    border-radius: 20px 20px 0 0;
    pointer-events: none;
    animation: glossyShine 3s ease-in-out infinite;
}

/* 🌟 NEON GLOW - LUAR */
.rtp-high .glow-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 24px;
    background: radial-gradient(
        ellipse at center,
        rgba(16, 185, 129, 0.1) 0%,
        transparent 70%
    );
    z-index: -1;
    animation: neonPulse 2s ease-in-out infinite;
    pointer-events: none;
}

/* ============================================
   🟡 RTP SEDANG - LIQUID WAVE PREMIUM
   ============================================ */
.rtp-medium {
    background: linear-gradient(
        135deg,
        #92400e 0%,
        #d97706 8%,
        #f59e0b 16%,
        #fbbf24 24%,
        #fde047 32%,
        #fbbf24 40%,
        #f59e0b 48%,
        #d97706 56%,
        #92400e 64%,
        #d97706 72%,
        #f59e0b 80%,
        #fbbf24 88%,
        #fde047 100%
    ) !important;
    background-size: 400% 200% !important;
    animation: liquidWave 3s ease-in-out infinite !important;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 80px rgba(245, 158, 11, 0.15),
        0 0 160px rgba(245, 158, 11, 0.05),
        inset 0 0 60px rgba(255, 255, 255, 0.05);
}

/* 🌊 SHADOW 3D */
.rtp-medium::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.18) 0%,
        rgba(0, 0, 0, 0.06) 30%,
        rgba(0, 0, 0, 0.02) 60%,
        transparent 100%
    );
    z-index: 3;
    border-radius: 0 0 20px 20px;
    pointer-events: none;
}

/* ✨ HIGHLIGHT GLOSSY */
.rtp-medium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.12) 40%,
        transparent 100%
    );
    z-index: 4;
    border-radius: 20px 20px 0 0;
    pointer-events: none;
    animation: glossyShine 3.5s ease-in-out infinite;
}

/* 🌟 NEON GLOW */
.rtp-medium .glow-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 24px;
    background: radial-gradient(
        ellipse at center,
        rgba(245, 158, 11, 0.1) 0%,
        transparent 70%
    );
    z-index: -1;
    animation: neonPulse 2.5s ease-in-out infinite;
    pointer-events: none;
}

/* ============================================
   🔴 RTP RENDAH - LIQUID WAVE PREMIUM
   ============================================ */
.rtp-low {
    background: linear-gradient(
        135deg,
        #7f1d1d 0%,
        #b91c1c 8%,
        #dc2626 16%,
        #f87171 24%,
        #fca5a5 32%,
        #f87171 40%,
        #dc2626 48%,
        #b91c1c 56%,
        #7f1d1d 64%,
        #b91c1c 72%,
        #dc2626 80%,
        #f87171 88%,
        #fca5a5 100%
    ) !important;
    background-size: 400% 200% !important;
    animation: liquidWave 3.5s ease-in-out infinite !important;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 80px rgba(220, 38, 38, 0.15),
        0 0 160px rgba(220, 38, 38, 0.05),
        inset 0 0 60px rgba(255, 255, 255, 0.05);
}

/* 🌊 SHADOW 3D */
.rtp-low::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.05) 30%,
        rgba(0, 0, 0, 0.02) 60%,
        transparent 100%
    );
    z-index: 3;
    border-radius: 0 0 20px 20px;
    pointer-events: none;
}

/* ✨ HIGHLIGHT GLOSSY */
.rtp-low::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.1) 40%,
        transparent 100%
    );
    z-index: 4;
    border-radius: 20px 20px 0 0;
    pointer-events: none;
    animation: glossyShine 4s ease-in-out infinite;
}

/* 🌟 NEON GLOW */
.rtp-low .glow-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 24px;
    background: radial-gradient(
        ellipse at center,
        rgba(220, 38, 38, 0.1) 0%,
        transparent 70%
    );
    z-index: -1;
    animation: neonPulse 3s ease-in-out infinite;
    pointer-events: none;
}

/* ============================================
   🎯 ANIMASI LIQUID WAVE
   ============================================ */
@keyframes liquidWave {
    0% {
        background-position: 0% 0%;
        transform: scaleX(1) scaleY(1);
        border-radius: 20px;
    }
    12.5% {
        transform: scaleX(1.01) scaleY(1.03);
        border-radius: 20px 20px 18px 18px;
    }
    25% {
        background-position: 100% 0%;
        transform: scaleX(0.99) scaleY(1);
        border-radius: 20px;
    }
    37.5% {
        transform: scaleX(1.01) scaleY(0.97);
        border-radius: 18px 18px 20px 20px;
    }
    50% {
        background-position: 200% 0%;
        transform: scaleX(1) scaleY(1);
        border-radius: 20px;
    }
    62.5% {
        transform: scaleX(1.02) scaleY(1.02);
        border-radius: 20px 20px 16px 16px;
    }
    75% {
        background-position: 300% 0%;
        transform: scaleX(0.98) scaleY(1);
        border-radius: 20px;
    }
    87.5% {
        transform: scaleX(1.01) scaleY(0.98);
        border-radius: 16px 16px 20px 20px;
    }
    100% {
        background-position: 400% 0%;
        transform: scaleX(1) scaleY(1);
        border-radius: 20px;
    }
}

/* ============================================
   ✨ ANIMASI GLOSSY SHINE
   ============================================ */
@keyframes glossyShine {
    0%, 100% {
        opacity: 0.4;
        height: 35%;
        transform: scaleX(1);
    }
    25% {
        opacity: 0.8;
        height: 40%;
        transform: scaleX(1.05);
    }
    50% {
        opacity: 0.3;
        height: 30%;
        transform: scaleX(0.95);
    }
    75% {
        opacity: 0.7;
        height: 38%;
        transform: scaleX(1.03);
    }
}

/* ============================================
   🌟 ANIMASI NEON PULSE
   ============================================ */
@keyframes neonPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* ============================================
   📝 TEKS DI DALAM PROGRESS BAR
   ============================================ */
.bg-progress-rtp {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    height: 100% !important;
    line-height: 32px;
    text-align: end !important;
    padding-right: 18px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #fff !important;
    border-radius: 20px;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.1) !important;
    transition: width 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 10 !important;
    letter-spacing: 0.5px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

/* 🌊 STRIPES / GARIS DIAGONAL BERGERAK - PREMIUM */
.bg-progress-rtp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 16px,
        rgba(255, 255, 255, 0.06) 16px,
        rgba(255, 255, 255, 0.06) 32px
    );
    animation: stripesMove 0.5s linear infinite;
    z-index: 0;
    border-radius: 20px;
    pointer-events: none;
}

/* ✨ SHINE BERJALAN - PREMIUM */
.bg-progress-rtp::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100px;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 20%,
        rgba(255, 255, 255, 0.3) 40%,
        rgba(255, 255, 255, 0.05) 60%,
        transparent 100%
    );
    animation: shineSweep 2.5s ease-in-out infinite;
    z-index: 1;
    border-radius: 20px;
    pointer-events: none;
}

.bg-progress-rtp span {
    position: relative;
    z-index: 2;
}

@keyframes stripesMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 64px 0;
    }
}

@keyframes shineSweep {
    0% {
        right: -100%;
        opacity: 0;
        transform: skewX(-15deg);
    }
    25% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
        transform: skewX(0deg);
    }
    75% {
        opacity: 0.5;
    }
    100% {
        right: 100%;
        opacity: 0;
        transform: skewX(15deg);
    }
}

/* ============================================
   📱 RESPONSIF
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
    .animated-progress {
        height: 28px;
        border-radius: 16px;
    }
    .bg-progress-rtp {
        line-height: 28px;
        font-size: 12px !important;
        padding-right: 16px !important;
        border-radius: 16px;
    }
    .bg-progress-rtp::before {
        background: repeating-linear-gradient(
            45deg,
            transparent,
            transparent 14px,
            rgba(255, 255, 255, 0.05) 14px,
            rgba(255, 255, 255, 0.05) 28px
        );
    }
    @keyframes stripesMove {
        0% { background-position: 0 0; }
        100% { background-position: 48px 0; }
    }
}

/* Mobile */
@media (max-width: 480px) {
    .animated-progress {
        height: 24px;
        border-radius: 14px;
        border-width: 1.5px;
    }
    .bg-progress-rtp {
        line-height: 24px;
        font-size: 10px !important;
        padding-right: 14px !important;
        border-radius: 14px;
    }
    .bg-progress-rtp::before {
        background: repeating-linear-gradient(
            45deg,
            transparent,
            transparent 12px,
            rgba(255, 255, 255, 0.04) 12px,
            rgba(255, 255, 255, 0.04) 24px
        );
    }
    @keyframes stripesMove {
        0% { background-position: 0 0; }
        100% { background-position: 36px 0; }
    }
    @keyframes liquidWave {
        0% { background-position: 0% 0%; transform: scaleX(1); }
        25% { background-position: 100% 0%; transform: scaleX(1.01); }
        50% { background-position: 200% 0%; transform: scaleX(0.99); }
        75% { background-position: 300% 0%; transform: scaleX(1.01); }
        100% { background-position: 400% 0%; transform: scaleX(1); }
    }
}

/* HP Kecil */
@media (max-width: 380px) {
    .animated-progress {
        height: 22px;
        border-radius: 12px;
    }
    .bg-progress-rtp {
        line-height: 22px;
        font-size: 9px !important;
        padding-right: 12px !important;
        border-radius: 12px;
    }
    .bg-progress-rtp::before {
        background: repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.04) 10px,
            rgba(255, 255, 255, 0.04) 20px
        );
    }
    @keyframes stripesMove {
        0% { background-position: 0 0; }
        100% { background-position: 28px 0; }
    }
}

/* ============================================
   🔥 HOT GAMES - UKURAN LEBIH KECIL
   ============================================ */
.hot-games-container .animated-progress {
    height: 24px !important;
    border-radius: 14px !important;
}
.hot-games-container .bg-progress-rtp {
    line-height: 24px !important;
    font-size: 11px !important;
    padding-right: 14px !important;
    border-radius: 14px !important;
}
.hot-games-container .bg-progress-rtp::before {
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 12px,
        rgba(255, 255, 255, 0.04) 12px,
        rgba(255, 255, 255, 0.04) 24px
    ) !important;
}

@media (max-width: 480px) {
    .hot-games-container .animated-progress {
        height: 20px !important;
        border-radius: 12px !important;
    }
    .hot-games-container .bg-progress-rtp {
        line-height: 20px !important;
        font-size: 9px !important;
        padding-right: 12px !important;
        border-radius: 12px !important;
    }
    .hot-games-container .bg-progress-rtp::before {
        background: repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.04) 10px,
            rgba(255, 255, 255, 0.04) 20px
        ) !important;
    }
}

/* ============================================
   ✨ EFEK SPECIAL - INTERAKTIF
   ============================================ */
/* Saat hover - animasi lebih cepat */
.animated-progress:hover .bg-progress-rtp::before {
    animation-duration: 0.3s !important;
}

.animated-progress:hover .bg-progress-rtp::after {
    animation-duration: 1.5s !important;
}

.animated-progress:hover .rtp-high,
.animated-progress:hover .rtp-medium,
.animated-progress:hover .rtp-low {
    animation-duration: 1.5s !important;
}

/* ============================================
   🎯 EFEK PERSENTASE - BERDENYUT
   ============================================ */
.bg-progress-rtp .percentage {
    display: inline-block;
    animation: pulseText 2s ease-in-out infinite;
}

@keyframes pulseText {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Nonaktifkan tombol navigasi */
.swiper-button-prev,
.swiper-button-next {
    display: none !important;
}

/* Tambah padding untuk scrolling */
.swiper {
    padding: 10px 5px;
}

.swiper-wrapper {
    gap: 8px;
    padding: 5px 0;
}
/* ============================================
   BACKGROUND UNTUK SEMUA SECTION - HIJAU
   ============================================ */

/* Background utama body */
body {
    background: #0a1a0a;
    /* atau pakai gambar background */
    /* background: url('../uploads/banners/backgroundrtp.png') no-repeat center center fixed;
    background-size: cover; */
}

/* ============================================
   HOT GAMES - BACKGROUND HIJAU
   ============================================ */
.hot-games-container {
    background: rgba(16, 32, 16, 0.4) !important;
    border-radius: 16px;
    padding: 20px 10px;
    border: 1px solid rgba(34, 197, 94, 0.15);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.05);
}

.hot-games-container .bgmobile {
    background: transparent !important;
}

.hot-games-swiper-container {
    background: transparent !important;
}

.hot-games-wrapper .portfolio-item {
    background: rgba(10, 26, 10, 0.6) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.hot-games-wrapper .card {
    background: rgba(10, 26, 10, 0.7) !important;
    border: 1px solid rgba(34, 197, 94, 0.08) !important;
}

.hot-games-wrapper .card:hover {
    border-color: rgba(34, 197, 94, 0.3) !important;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.05);
}

/* ============================================
   PROVIDER & GAME GRID - HIJAU
   ============================================ */
.bgmobile {
    background: rgba(16, 32, 16, 0.3) !important;
    border-radius: 16px;
    padding: 15px 10px;
    border: 1px solid rgba(34, 197, 94, 0.08);
}

.portfolio-item {
    background: rgba(10, 26, 10, 0.5) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.06);
}

.portfolio-item:hover {
    border-color: rgba(34, 197, 94, 0.2);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.05);
}

.card {
    background: rgba(10, 26, 10, 0.6) !important;
    border: 1px solid rgba(34, 197, 94, 0.06) !important;
}

/* ============================================
   TEXT & HEADER - HIJAU NEON
   ============================================ */
.text-title {
    background: linear-gradient(135deg, #ffffff, #fbfffc) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.text-title::after {
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

/* ============================================
   PROVIDER BUTTON - HIJAU
   ============================================ */
.image-wrapper {
    background: rgba(10, 26, 10, 0.4) !important;
    border: 2px solid rgba(34, 197, 94, 0.08) !important;
}

.image-wrapper:hover {
    border-color: rgba(34, 197, 94, 0.3) !important;
    background: rgba(34, 197, 94, 0.05) !important;
}

.image-wrapper.active {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.08) !important;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.05);
}

/* ============================================
   SECTION WRAPPER - HIJAU
   ============================================ */
section {
    background: transparent !important;
}

.container {
    background: transparent !important;
}

.col, .row {
    background: transparent !important;
}

/* ============================================
   FOOTER - HIJAU
   ============================================ */
footer, .footer-section {
    background: rgba(10, 26, 10, 0.5) !important;
    border-top: 1px solid rgba(34, 197, 94, 0.08);
}

.social-icons li a:hover {
    filter: drop-shadow(0 0 15px rgba(34, 197, 94, 0.3));
}
/* ============================================
   GAME CARD - BACKGROUND HIJAU KEREN
   ============================================ */

/* Background game card - hijau */
.portfolio-item {
    background: rgba(10, 45, 7, 0.6) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.08) !important;
}

.portfolio-item:hover {
    border-color: rgba(0, 255, 136, 0.2) !important;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.05) !important;
}

.card {
    background: rgba(10, 45, 7, 0.7) !important;
    border: 1px solid rgba(0, 255, 136, 0.06) !important;
}

.card:hover {
    border-color: rgba(0, 255, 136, 0.2) !important;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.05) !important;
}

.card-img-top {
    background: rgba(10, 45, 7, 0.5) !important;
}

/* ============================================
   HOT GAMES - BACKGROUND HIJAU
   ============================================ */
.hot-games-container {
    background: rgba(10, 45, 7, 0.3) !important;
    border-radius: 16px;
    padding: 20px 10px;
    border: 1px solid rgba(0, 255, 136, 0.08);
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.03);
}

.hot-games-wrapper .portfolio-item {
    background: rgba(10, 45, 7, 0.5) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.06) !important;
}

.hot-games-wrapper .portfolio-item:hover {
    border-color: rgba(0, 255, 136, 0.15) !important;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.03) !important;
}

.hot-games-wrapper .card {
    background: rgba(10, 45, 7, 0.6) !important;
    border: 1px solid rgba(0, 255, 136, 0.04) !important;
}

.hot-games-wrapper .card:hover {
    border-color: rgba(0, 255, 136, 0.15) !important;
}

.hot-games-wrapper .card-img-top {
    background: rgba(10, 45, 7, 0.4) !important;
}

/* ============================================
   PROVIDER BUTTON - HIJAU
   ============================================ */
.image-wrapper {
    background: rgba(10, 45, 7, 0.4) !important;
    border: 2px solid rgba(0, 255, 136, 0.06) !important;
}

.image-wrapper:hover {
    border-color: rgba(0, 255, 136, 0.2) !important;
    background: rgba(0, 255, 136, 0.05) !important;
}

.image-wrapper.active {
    border-color: #00ff88 !important;
    background: rgba(0, 255, 136, 0.08) !important;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.05) !important;
}

.image-wrapper.active span {
    color: #00ff88 !important;
}

/* ============================================
   SECTION WRAPPER - HIJAU
   ============================================ */
.bgmobile {
    background: rgba(10, 45, 7, 0.2) !important;
    border-radius: 16px;
    padding: 15px 10px;
    border: 1px solid rgba(0, 255, 136, 0.04);
}

/* ============================================
   TEXT TITLE - HIJAU NEON
   ============================================ */
.text-title {
    background: linear-gradient(135deg, #00ff88, #00cc6a) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.text-title::after {
    background: linear-gradient(135deg, #00ff88, #00cc6a) !important;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3) !important;
}

/* ============================================
   FOOTER - HIJAU
   ============================================ */
footer, .footer-section {
    background: rgba(10, 45, 7, 0.4) !important;
    border-top: 1px solid rgba(0, 255, 136, 0.06) !important;
}

.social-icons li a:hover {
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3)) !important;
}

/* ============================================
   STICKER HOT - HIJAU
   ============================================ */
.hot-sticker-wrapper {
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3)) !important;
}
/* ============================================
   PROVIDER SECTION - HEADER & UPDATE
   ============================================ */

/* Provider Header - Lebih jelas */
.provider-header {
    padding: 25px 0 15px !important;
    background: linear-gradient(135deg, rgba(0,255,136,0.05), rgba(0,255,136,0.01));
    border-radius: 16px;
    border-bottom: 2px solid rgba(0, 255, 136, 0.1);
    margin-bottom: 10px;
}

.provider-header .text-title {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #00ff88, #00cc6a) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: inline-block;
    text-shadow: none !important;
    letter-spacing: 0.5px;
}

.text-title::after {
    display: none !important;
}

.date-display {
    display: block;
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.65rem !important;
    margin-top: 2px !important;
    font-weight: 400 !important;
}

.text-header {
    text-align: center;
    padding: 15px 0 10px !important;
}

/* ============================================
   PROVIDER SWIPER - UKURAN SERAGAM
   ============================================ */
.provider-swiper {
    position: relative;
    width: 100%;
    padding: 5px 0;
}

.provider-swiper .swiper-wrapper {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 6px 40px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
}

.provider-swiper .swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.provider-swiper .swiper-slide {
    flex: 0 0 auto;
    width: auto;
}


.image-wrapper:hover {
    border-color: rgba(0, 255, 136, 0.3) !important;
    background: rgba(0, 255, 136, 0.08) !important;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.05);
}

.image-wrapper.active {
    border-color: #00ff88 !important;
    background: rgba(0, 255, 136, 0.12) !important;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.08), inset 0 0 20px rgba(0, 255, 136, 0.03);
}

.image-wrapper img {
    width: 80px !important;
    height: 38px !important;
    max-width: 80px !important;
    max-height: 38px !important;
    object-fit: contain;
    display: block;
}

/* Provider Nav - Hanya tampil di desktop */
.provider-swiper .swiper-button-prev,
.provider-swiper .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 1px solid rgba(0, 255, 136, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    opacity: 0.7;
}

.provider-swiper .swiper-button-prev {
    left: 0;
}

.provider-swiper .swiper-button-next {
    right: 0;
}

.provider-swiper .swiper-button-prev:hover,
.provider-swiper .swiper-button-next:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
    color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
    opacity: 1;
}

.provider-swiper .swiper-button-prev::after {
    content: '‹';
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.provider-swiper .swiper-button-next::after {
    content: '›';
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

/* ============================================
   RESPONSIF PROVIDER
   ============================================ */
@media (max-width: 768px) {
    .image-wrapper {
        min-width: 70px !important;
        height: 44px !important;
        max-height: 44px !important;
        padding: 4px 10px !important;
        border-radius: 10px;
    }
    
    .image-wrapper img {
        width: 60px !important;
        height: 30px !important;
        max-width: 60px !important;
        max-height: 30px !important;
    }
    
    .image-wrapper span {
        font-size: 0.65rem !important;
    }
    
    .provider-swiper .swiper-wrapper {
        padding: 4px 30px;
        gap: 6px;
    }
    
    .provider-swiper .swiper-button-prev,
    .provider-swiper .swiper-button-next {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
    
    .provider-header .text-title {
        font-size: 1.4rem !important;
    }
    
    .provider-header .date-display {
        font-size: 0.8rem !important;
        padding: 4px 14px;
    }
}

@media (max-width: 480px) {
    .image-wrapper {
        min-width: 56px !important;
        height: 36px !important;
        max-height: 36px !important;
        padding: 3px 8px !important;
        border-radius: 8px;
        border-width: 1.5px !important;
    }
    
    .image-wrapper img {
        width: 50px !important;
        height: 26px !important;
        max-width: 50px !important;
        max-height: 26px !important;
    }
    
    .image-wrapper span {
        font-size: 0.55rem !important;
    }
    
    .provider-swiper .swiper-wrapper {
        padding: 4px 24px;
        gap: 4px;
    }
    
    .provider-swiper .swiper-button-prev,
    .provider-swiper .swiper-button-next {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
    
    .provider-header .text-title {
        font-size: 1.1rem !important;
    }
    
    .provider-header .date-display {
        font-size: 0.7rem !important;
        padding: 3px 12px;
    }
    
    .provider-header {
        padding: 15px 0 10px !important;
    }
}

@media (max-width: 380px) {
    .image-wrapper {
        min-width: 48px !important;
        height: 32px !important;
        max-height: 32px !important;
        padding: 2px 6px !important;
        border-radius: 6px;
    }
    
    .image-wrapper img {
        width: 42px !important;
        height: 22px !important;
        max-width: 42px !important;
        max-height: 22px !important;
    }
    
    .image-wrapper span {
        font-size: 0.5rem !important;
    }
    
    .provider-swiper .swiper-wrapper {
        padding: 3px 20px;
        gap: 3px;
    }
}

/* Saat discroll */
.site-header.scrolled {
    background: linear-gradient(135deg, #0a2d07 0%, #0c871c 50%, #0a2d07 100%) !important;
    box-shadow: 0 4px 30px rgba(12, 135, 28, 0.5) !important;
}

/* ============================================
   CAROUSEL / BANNER - TIDAK TERTUTUP
   ============================================ */
.carousel-root {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin-top: 15px !important;
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.carousel .slider-wrapper {
    overflow: hidden;
}

.carousel .slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    list-style: none;
    padding: 0;
    margin: 0;
}

.carousel .slide {
    min-width: 100%;
    flex-shrink: 0;
}

.carousel .slide img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 350px;
    object-fit: cover;
}

/* Container banner */
.container > .carousel-root,
.banner-fullwidth {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


/* Body diberi padding besar */
body {
    padding-top: 99px !important;
    margin-top: 0 !important;
}

/* Container pertama (banner) dipastikan tidak ada margin */
.container:first-of-type {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Banner carousel */
.carousel-root {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-radius: 0 !important;
}

.carousel {
    border-radius: 0 !important;
}

.carousel .slide img {
    max-height: 400px !important;
    width: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* Responsif */
@media (max-width: 992px) {
    body {
        padding-top: 80px !important;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px !important;
    }
    .carousel .slide img {
        max-height: 250px !important;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px !important;
    }
    .carousel .slide img {
        max-height: 180px !important;
    }
}
.site-header {
    padding: 12px 0;
    border-bottom: 2px solid rgba(0, 255, 136, 0.1);
    background: linear-gradient(135deg, #0a2d07 0%, #0c871c 50%, #0a2d07 100%) !important;
    backdrop-filter: blur(15px);
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    transition: var(--transition);
}

/* TEKS - PUTIH TERANG */
.image-wrapper span {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6) !important;
}

.image-wrapper:hover {
    border-color: rgba(0, 255, 136, 0.4) !important;
    background: rgba(0, 255, 136, 0.10) !important;
    transform: translateY(-2px);
}

.image-wrapper:hover span {
    color: #00ff88 !important;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.2) !important;
}

.image-wrapper.active {
    border-color: #00ff88 !important;
    background: rgba(0, 255, 136, 0.12) !important;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.08) !important;
}

/* GAMBAR LOGO - TETAP JELAS */
.image-wrapper img {
    width: 80px !important;
    height: 38px !important;
    max-width: 80px !important;
    max-height: 38px !important;
    object-fit: contain;
    display: block;
    filter: brightness(1.1) drop-shadow(0 1px 3px rgba(0,0,0,0.3)) !important;
}

.image-wrapper.active img {
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(0, 255, 136, 0.2)) !important;
}

/* RESPONSIF */
@media (max-width: 768px) {
    .image-wrapper {
        min-width: 70px !important;
        height: 44px !important;
        max-height: 44px !important;
        padding: 4px 12px !important;
    }
    .image-wrapper span {
        font-size: 0.75rem !important;
    }
    .image-wrapper img {
        width: 65px !important;
        height: 32px !important;
        max-width: 65px !important;
        max-height: 32px !important;
    }
}

@media (max-width: 480px) {
    .image-wrapper {
        min-width: 56px !important;
        height: 36px !important;
        max-height: 36px !important;
        padding: 3px 8px !important;
        border-radius: 8px;
    }
    .image-wrapper span {
        font-size: 0.65rem !important;
    }
    .image-wrapper img {
        width: 50px !important;
        height: 26px !important;
        max-width: 50px !important;
        max-height: 26px !important;
    }
}

@media (max-width: 380px) {
    .image-wrapper {
        min-width: 48px !important;
        height: 32px !important;
        max-height: 32px !important;
        padding: 2px 6px !important;
        border-radius: 6px;
    }
    .image-wrapper span {
        font-size: 0.55rem !important;
    }
    .image-wrapper img {
        width: 42px !important;
        height: 22px !important;
        max-width: 42px !important;
        max-height: 22px !important;
    }
}


/* ===== TEKS - PUTIH TERANG ===== */
.image-wrapper span {
    font-size: 0.6rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-align: center;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
    opacity: 1 !important;
    line-height: 1 !important;
}

/* ===== HOVER ===== */
.image-wrapper:hover {
    border-color: rgba(0, 255, 136, 0.4) !important;
    background: rgba(0, 255, 136, 0.12) !important;
    transform: translateY(-1px);
}

.image-wrapper:hover span {
    color: #00ff88 !important;
}

/* ===== ACTIVE ===== */
.image-wrapper.active {
    border-color: #00ff88 !important;
    background: rgba(0, 255, 136, 0.15) !important;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.06) !important;
}

/* ===== GAMBAR LOGO ===== */
.image-wrapper img {
    width: 50px !important;
    height: 26px !important;
    max-width: 50px !important;
    max-height: 26px !important;
    object-fit: contain;
    display: block;
    filter: brightness(1.1) drop-shadow(0 1px 2px rgba(0,0,0,0.3)) !important;
}

.image-wrapper.active img {
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(0, 255, 136, 0.15)) !important;
}

/* ===== RESPONSIF ===== */
@media (max-width: 768px) {
    .image-wrapper {
        min-width: 50px !important;
        height: 30px !important;
        max-height: 30px !important;
        padding: 3px 8px !important;
        border-radius: 6px;
    }
    .image-wrapper span {
        font-size: 0.55rem !important;
    }
    .image-wrapper img {
        width: 42px !important;
        height: 22px !important;
        max-width: 42px !important;
        max-height: 22px !important;
    }
}

@media (max-width: 480px) {
    .image-wrapper {
        min-width: 44px !important;
        height: 26px !important;
        max-height: 26px !important;
        padding: 2px 6px !important;
        border-radius: 5px;
        border-width: 1.5px !important;
    }
    .image-wrapper span {
        font-size: 0.5rem !important;
        font-weight: 600 !important;
    }
    .image-wrapper img {
        width: 36px !important;
        height: 18px !important;
        max-width: 36px !important;
        max-height: 18px !important;
    }
}

@media (max-width: 380px) {
    .image-wrapper {
        min-width: 38px !important;
        height: 22px !important;
        max-height: 22px !important;
        padding: 1px 4px !important;
        border-radius: 4px;
    }
    .image-wrapper span {
        font-size: 0.4rem !important;
        font-weight: 600 !important;
    }
    .image-wrapper img {
        width: 30px !important;
        height: 16px !important;
        max-width: 30px !important;
        max-height: 16px !important;
    }
}
/* ============================================
   OVERRIDE & FIX - HEADER
   ============================================ */

/* ===== TEXT TITLE - PUTIH TERANG ===== */
.text-title {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7) !important;
    letter-spacing: 0.5px !important;
}

.text-title::after {
    display: none !important;
}

/* ===== DATE DISPLAY - PUTIH TERANG ===== */
.date-display {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.6rem !important;
    margin-top: 2px !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) !important;
}

/* ===== TEXT HEADER - PADDING KECIL ===== */
.text-header {
    padding: 10px 0 8px !important;
}

/* ===== PROVIDER BUTTON - PUTIH TERANG ===== */
.image-wrapper span {
    color: #ffffff !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6) !important;
}

.image-wrapper.active span {
    color: #00ff88 !important;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3) !important;
}

.image-wrapper:hover span {
    color: #00ff88 !important;
}

/* ===== ACTION BUTTONS - KECIL & WARNA JELAS ===== */
.pola-main,
.suntikan-gacor,
.simulasi {
    font-size: 7px !important;
    height: 11px !important;
    padding: 1px 4px !important;
    border-radius: 6px !important;
    margin: 2px auto !important;
    width: 92% !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    letter-spacing: 0.2px !important;
}

.pola-main {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
}
.pola-main:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
}

.suntikan-gacor {
    background: linear-gradient(135deg, #059669, #10b981) !important;
}
.suntikan-gacor:hover {
    background: linear-gradient(135deg, #34d399, #059669) !important;
}

.simulasi {
    background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
}
.simulasi:hover {
    background: linear-gradient(135deg, #60a5fa, #2563eb) !important;
}

/* ===== HOT GAMES - LEBIH KECIL ===== */
.hot-games-container .pola-main,
.hot-games-container .suntikan-gacor,
.hot-games-container .simulasi {
    font-size: 5px !important;
    height: 9px !important;
    padding: 0px 3px !important;
    border-radius: 4px !important;
    margin: 1px auto !important;
    width: 96% !important;
}

/* ===== BODY OVERLAY - HAPUS HIJAU ===== */
body::before {
    display: none !important;
}
/* HILANGKAN GARIS BIRU & EFEK AKTIF */
.image-wrapper.active::after {
    display: none !important;
}

.image-wrapper.active {
    border-color: #00ff88 !important;
    background: rgba(0, 255, 136, 0.08) !important;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.05) !important;
}

/* Hilangkan underline/garis bawah pada link */
.text-decoration-none {
    text-decoration: none !important;
}

a, .item, .card a {
    text-decoration: none !important;
}

/* Hilangkan border biru pada focus */
*:focus {
    outline: none !important;
    box-shadow: none !important;
}
/* ============================================
   TOMBOL ACTION - DIPERBESAR
   ============================================ */

.pola-main,
.suntikan-gacor,
.simulasi {
    font-size: 13px !important;
    height: 32px !important;
    padding: 6px 14px !important;
    border-radius: 10px !important;
    margin: 4px auto !important;
    width: 95% !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    letter-spacing: 0.5px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.pola-main {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
}
.pola-main:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
    transform: scale(1.02);
}

.suntikan-gacor {
    background: linear-gradient(135deg, #059669, #10b981) !important;
}
.suntikan-gacor:hover {
    background: linear-gradient(135deg, #34d399, #059669) !important;
    transform: scale(1.02);
}

.simulasi {
    background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
}
.simulasi:hover {
    background: linear-gradient(135deg, #60a5fa, #2563eb) !important;
    transform: scale(1.02);
}

/* ===== HOT GAMES - UKURAN SEDIKIT LEBIH KECIL ===== */
.hot-games-container .pola-main,
.hot-games-container .suntikan-gacor,
.hot-games-container .simulasi {
    font-size: 10px !important;
    height: 26px !important;
    padding: 4px 10px !important;
    border-radius: 8px !important;
    margin: 3px auto !important;
    width: 96% !important;
}

/* ===== RESPONSIF ===== */
@media (max-width: 768px) {
    .pola-main,
    .suntikan-gacor,
    .simulasi {
        font-size: 11px !important;
        height: 28px !important;
        padding: 5px 10px !important;
        border-radius: 8px !important;
    }
    .hot-games-container .pola-main,
    .hot-games-container .suntikan-gacor,
    .hot-games-container .simulasi {
        font-size: 9px !important;
        height: 22px !important;
        padding: 3px 8px !important;
    }
}

@media (max-width: 480px) {
    .pola-main,
    .suntikan-gacor,
    .simulasi {
        font-size: 10px !important;
        height: 26px !important;
        padding: 4px 8px !important;
        border-radius: 6px !important;
    }
    .hot-games-container .pola-main,
    .hot-games-container .suntikan-gacor,
    .hot-games-container .simulasi {
        font-size: 8px !important;
        height: 20px !important;
        padding: 2px 6px !important;
        border-radius: 5px !important;
    }
}
/* ============================================
   LOGO PROVIDER - DIPERBESAR
   ============================================ */

.image-wrapper {
    background: rgba(0, 255, 136, 0.06) !important;
    border: 2px solid rgba(0, 255, 136, 0.10) !important;
    border-radius: 10px;
    padding: 8px 18px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px !important;
    height: 64px !important;
    max-height: 64px !important;
}

.image-wrapper img {
    width: 100px !important;
    height: 48px !important;
    max-width: 100px !important;
    max-height: 48px !important;
    object-fit: contain;
    display: block;
    filter: brightness(1.1) drop-shadow(0 1px 3px rgba(0,0,0,0.3)) !important;
}

/* TEKS PROVIDER (jika gambar tidak ada) */
.image-wrapper span {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6) !important;
}

/* ===== RESPONSIF ===== */
@media (max-width: 768px) {
    .image-wrapper {
        min-width: 90px !important;
        height: 50px !important;
        max-height: 50px !important;
        padding: 6px 14px !important;
        border-radius: 8px;
    }
    .image-wrapper img {
        width: 76px !important;
        height: 36px !important;
        max-width: 76px !important;
        max-height: 36px !important;
    }
    .image-wrapper span {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    .image-wrapper {
        min-width: 70px !important;
        height: 42px !important;
        max-height: 42px !important;
        padding: 4px 10px !important;
        border-radius: 6px;
        border-width: 1.5px !important;
    }
    .image-wrapper img {
        width: 60px !important;
        height: 30px !important;
        max-width: 60px !important;
        max-height: 30px !important;
    }
    .image-wrapper span {
        font-size: 0.7rem !important;
    }
}

@media (max-width: 380px) {
    .image-wrapper {
        min-width: 56px !important;
        height: 36px !important;
        max-height: 36px !important;
        padding: 3px 8px !important;
    }
    .image-wrapper img {
        width: 48px !important;
        height: 24px !important;
        max-width: 48px !important;
        max-height: 24px !important;
    }
    .image-wrapper span {
        font-size: 0.6rem !important;
    }
}
/* ============================================
   SEMBUNYIKAN HOT STICKER JIKA RTP MERAH
   ============================================ */

/* Game dengan RTP merah/kuning - sembunyikan sticker HOT */
.game-card-item[data-rtp] .hot-sticker-wrapper {
    display: none;
}

/* Tampilkan sticker hanya jika RTP >= 70 */
.game-card-item[data-rtp="70"] .hot-sticker-wrapper,
.game-card-item[data-rtp="71"] .hot-sticker-wrapper,
.game-card-item[data-rtp="72"] .hot-sticker-wrapper,
.game-card-item[data-rtp="73"] .hot-sticker-wrapper,
.game-card-item[data-rtp="74"] .hot-sticker-wrapper,
.game-card-item[data-rtp="75"] .hot-sticker-wrapper,
.game-card-item[data-rtp="76"] .hot-sticker-wrapper,
.game-card-item[data-rtp="77"] .hot-sticker-wrapper,
.game-card-item[data-rtp="78"] .hot-sticker-wrapper,
.game-card-item[data-rtp="79"] .hot-sticker-wrapper,
.game-card-item[data-rtp="80"] .hot-sticker-wrapper,
.game-card-item[data-rtp="81"] .hot-sticker-wrapper,
.game-card-item[data-rtp="82"] .hot-sticker-wrapper,
.game-card-item[data-rtp="83"] .hot-sticker-wrapper,
.game-card-item[data-rtp="84"] .hot-sticker-wrapper,
.game-card-item[data-rtp="85"] .hot-sticker-wrapper,
.game-card-item[data-rtp="86"] .hot-sticker-wrapper,
.game-card-item[data-rtp="87"] .hot-sticker-wrapper,
.game-card-item[data-rtp="88"] .hot-sticker-wrapper,
.game-card-item[data-rtp="89"] .hot-sticker-wrapper,
.game-card-item[data-rtp="90"] .hot-sticker-wrapper,
.game-card-item[data-rtp="91"] .hot-sticker-wrapper,
.game-card-item[data-rtp="92"] .hot-sticker-wrapper,
.game-card-item[data-rtp="93"] .hot-sticker-wrapper,
.game-card-item[data-rtp="94"] .hot-sticker-wrapper,
.game-card-item[data-rtp="95"] .hot-sticker-wrapper,
.game-card-item[data-rtp="96"] .hot-sticker-wrapper,
.game-card-item[data-rtp="97"] .hot-sticker-wrapper,
.game-card-item[data-rtp="98"] .hot-sticker-wrapper {
    display: block !important;
}

.hot-sticker-wrapper.hidden {
    display: none !important;
}
/**
 * ============================================
 * extra.css - CSS Tambahan untuk RTP Loader
 * ============================================
 * Style untuk filter, loading, dan load more
 */

/* ============================================
   FILTER ROW
   ============================================ */
.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 15px 0 20px;
    align-items: center;
}
.filter-item {
    flex: 1;
    min-width: 160px;
}
.filter-item:first-child {
    flex: 2;
    min-width: 200px;
}

/* ============================================
   CUSTOM INPUT & SELECT
   ============================================ */
.custom-input,
.custom-select {
    width: 100%;
    padding: 10px 16px;
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    color: #fff;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s ease;
    height: 44px;
}
.custom-input:focus,
.custom-select:focus {
    border-color: #00ff88;
    box-shadow: 0 0 30px rgba(0,255,136,0.05);
}
.custom-input::placeholder {
    color: rgba(255,255,255,0.2);
}
.custom-select option {
    background: #0a0e0a;
    color: #fff;
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    gap: 10px;
    color: rgba(255,255,255,0.5);
}
.loading-spinner .spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(0,255,136,0.1);
    border-top-color: #00ff88;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   LOAD MORE - DIPUSATKAN
   ============================================ */
.load-more-container {
    text-align: center !important;
    padding: 20px 0 !important;
    width: 100% !important;
    display: block !important;
    clear: both !important;
}

.load-more-btn {
    display: none;
    margin: 0 auto !important;
    padding: 12px 40px !important;
    background: linear-gradient(45deg, #ffd700, #ff8c00) !important;
    border: none !important;
    border-radius: 25px !important;
    color: #0a0a2a !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    width: auto !important;
    min-width: 200px !important;
}
.load-more-btn:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 5px 30px rgba(255,215,0,0.3) !important;
}
.load-more-btn:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    transform: none !important;
}
.load-more-btn.show {
    display: inline-block !important;
}

#loadingIndicator {
    display: none;
    text-align: center !important;
    padding: 20px !important;
    color: rgba(255,255,255,0.5) !important;
    width: 100% !important;
}
#loadingIndicator.show {
    display: block !important;
}

.game-counter {
    text-align: center !important;
    color: rgba(255,255,255,0.3) !important;
    font-size: 0.8rem !important;
    padding: 10px 0 !important;
    width: 100% !important;
    display: block !important;
    clear: both !important;
}

/* ============================================
   GAME GRID - PERBAIKAN
   ============================================ */
#game-container {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 -4px !important;
    width: 100% !important;
}

#game-container .game-card-item {
    padding: 0 4px !important;
    margin-bottom: 12px !important;
    display: flex !important;
    flex-direction: column !important;
}

#game-container .portfolio-item {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

#game-container .card {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

#game-container .card-img-top {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

#game-container .p-2 {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

#game-container .btn-action-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
    padding: 4px 6px 6px !important;
    flex-shrink: 0 !important;
}

#game-container .btn-action-group button {
    font-size: 11px !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    border: none !important;
    color: #fff !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

#game-container .btn-action-group button:hover {
    transform: scale(1.02) !important;
}

.pola-main {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
}
.pola-main:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
}

.suntikan-gacor {
    background: linear-gradient(135deg, #059669, #10b981) !important;
}
.suntikan-gacor:hover {
    background: linear-gradient(135deg, #34d399, #059669) !important;
}

.simulasi {
    background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
}
.simulasi:hover {
    background: linear-gradient(135deg, #60a5fa, #2563eb) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .filter-row {
        flex-direction: column;
        gap: 8px;
    }
    .filter-item {
        width: 100%;
        min-width: unset;
    }
    .filter-item:first-child {
        flex: unset;
        min-width: unset;
    }
    
    .load-more-btn {
        padding: 10px 30px !important;
        font-size: 0.9rem !important;
        min-width: 160px !important;
    }
}

@media (max-width: 480px) {
    #game-container .game-card-item {
        padding: 0 3px !important;
        margin-bottom: 8px !important;
    }
    
    #game-container .btn-action-group button {
        font-size: 9px !important;
        padding: 3px 6px !important;
    }
    
    .load-more-btn {
        padding: 8px 20px !important;
        font-size: 0.8rem !important;
        min-width: 140px !important;
    }
}
/**
 * ============================================
 * extra.css - CSS Tambahan untuk RTP Loader
 * ============================================
 */

/* ============================================
   FILTER ROW
   ============================================ */
.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 15px 0 20px;
    align-items: center;
}
.filter-item {
    flex: 1;
    min-width: 160px;
}
.filter-item:first-child {
    flex: 2;
    min-width: 200px;
}

/* ============================================
   CUSTOM INPUT & SELECT
   ============================================ */
.custom-input,
.custom-select {
    width: 100%;
    padding: 10px 16px;
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    color: #fff;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s ease;
    height: 44px;
}
.custom-input:focus,
.custom-select:focus {
    border-color: #00ff88;
    box-shadow: 0 0 30px rgba(0,255,136,0.05);
}
.custom-input::placeholder {
    color: rgba(255,255,255,0.2);
}
.custom-select option {
    background: #0a0e0a;
    color: #fff;
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    gap: 10px;
    color: rgba(255,255,255,0.5);
}
.loading-spinner .spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(0,255,136,0.1);
    border-top-color: #00ff88;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   LOAD MORE - DIPUSATKAN
   ============================================ */
.load-more-container {
    text-align: center !important;
    padding: 20px 0 !important;
    width: 100% !important;
    display: block !important;
    clear: both !important;
}

.load-more-btn {
    display: none;
    margin: 0 auto !important;
    padding: 12px 40px !important;
    background: linear-gradient(45deg, #ffd700, #ff8c00) !important;
    border: none !important;
    border-radius: 25px !important;
    color: #0a0a2a !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    width: auto !important;
    min-width: 200px !important;
}
.load-more-btn:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 5px 30px rgba(255,215,0,0.3) !important;
}
.load-more-btn:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    transform: none !important;
}
.load-more-btn.show {
    display: inline-block !important;
}

#loadingIndicator {
    display: none;
    text-align: center !important;
    padding: 20px !important;
    color: rgba(255,255,255,0.5) !important;
    width: 100% !important;
}
#loadingIndicator.show {
    display: block !important;
}

.game-counter {
    text-align: center !important;
    color: rgba(255,255,255,0.3) !important;
    font-size: 0.8rem !important;
    padding: 10px 0 !important;
    width: 100% !important;
    display: block !important;
    clear: both !important;
}

/* ============================================
   GAME GRID - PERBAIKAN
   ============================================ */
#game-container {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 -4px !important;
    width: 100% !important;
}

#game-container .game-card-item {
    padding: 0 4px !important;
    margin-bottom: 12px !important;
    display: flex !important;
    flex-direction: column !important;
}

#game-container .portfolio-item {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

#game-container .card {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

#game-container .card-img-top {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

#game-container .p-2 {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

#game-container .btn-action-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
    padding: 4px 6px 6px !important;
    flex-shrink: 0 !important;
}

#game-container .btn-action-group button {
    font-size: 11px !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    border: none !important;
    color: #fff !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

#game-container .btn-action-group button:hover {
    transform: scale(1.02) !important;
}

.pola-main {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
}
.pola-main:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
}

.suntikan-gacor {
    background: linear-gradient(135deg, #059669, #10b981) !important;
}
.suntikan-gacor:hover {
    background: linear-gradient(135deg, #34d399, #059669) !important;
}

.simulasi {
    background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
}
.simulasi:hover {
    background: linear-gradient(135deg, #60a5fa, #2563eb) !important;
}

/* ============================================
   PROVIDER SWIPER - HILANGKAN SCROLLBAR VERTIKAL
   ============================================ */
/* Sembunyikan scrollbar vertikal di provider wrapper */
#providerWrapper {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
    padding: 5px 10px !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    scroll-behavior: smooth !important;
    max-height: 80px !important;
    min-height: 60px !important;
    align-items: center !important;
}

/* Sembunyikan scrollbar vertikal untuk semua browser */
#providerWrapper::-webkit-scrollbar {
    width: 0 !important;
    height: 4px !important;
    background: transparent !important;
}

#providerWrapper::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.03) !important;
    border-radius: 2px !important;
}

#providerWrapper::-webkit-scrollbar-thumb {
    background: rgba(0,255,136,0.3) !important;
    border-radius: 2px !important;
}

#providerWrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(0,255,136,0.5) !important;
}

/* Untuk Firefox */
#providerWrapper {
    scrollbar-width: thin !important;
    scrollbar-color: rgba(0,255,136,0.3) transparent !important;
}

/* ============================================
   TOMBOL PANAH PROVIDER - SEMBUNYIKAN
   ============================================ */
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .filter-row {
        flex-direction: column;
        gap: 8px;
    }
    .filter-item {
        width: 100%;
        min-width: unset;
    }
    .filter-item:first-child {
        flex: unset;
        min-width: unset;
    }
    
    .load-more-btn {
        padding: 10px 30px !important;
        font-size: 0.9rem !important;
        min-width: 160px !important;
    }
    
    #providerWrapper {
        padding: 5px 5px !important;
        gap: 6px !important;
        max-height: 70px !important;
        min-height: 50px !important;
    }
}

@media (max-width: 480px) {
    #game-container .game-card-item {
        padding: 0 3px !important;
        margin-bottom: 8px !important;
    }
    
    #game-container .btn-action-group button {
        font-size: 9px !important;
        padding: 3px 6px !important;
    }
    
    .load-more-btn {
        padding: 8px 20px !important;
        font-size: 0.8rem !important;
        min-width: 140px !important;
    }
    
    #providerWrapper {
        padding: 5px 3px !important;
        gap: 4px !important;
        max-height: 60px !important;
        min-height: 40px !important;
    }
}
.carousel-root {
    margin-top: 14px !important;
    padding-top: 3px !important;
}

/* Container pertama */
.container:first-of-type .carousel-root {
    margin-top: 16px !important;
}

/* Banner fullwidth */
.banner-fullwidth,
.container > .carousel-root:first-child {
    margin-top: 14px !important;
    padding-top: 3px !important;
}

/* Responsif */
@media (max-width: 768px) {
    .carousel-root {
        margin-top: 10px !important;
        padding-top: 2px !important;
    }
}

@media (max-width: 480px) {
    .carousel-root {
        margin-top: 7px !important;
        padding-top: 2px !important;
    }
}
.carousel .slider-wrapper {
    overflow: hidden !important;
    position: relative !important;
    width: 100% !important;
}

/* Pastikan slider bisa bergerak */
.carousel .slider {
    display: flex !important;
    transition: transform 0.6s ease-in-out !important;
    will-change: transform !important;
    width: 100% !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Setiap slide harus 100% lebar */
.carousel .slide {
    min-width: 100% !important;
    flex-shrink: 0 !important;
}
/* ============================================
   BUTTON ACTION GROUP - WARNA SESUAI GAMBAR
   ============================================ */

.btn-action-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 6px 8px 8px;
    flex-shrink: 0;
}

/* 🔥 POLA MAIN - ORANGE */
.btn-action-group .pola-main-btn {
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 6px;
    border: none;
    color: #fff;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.btn-action-group .pola-main-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}
.btn-action-group .pola-main-btn:active {
    transform: scale(0.96);
}

/* 🔥 SUNTIKAN GACOR - HIJAU */
.btn-action-group .suntikan-gacor-btn {
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 6px;
    border: none;
    color: #fff;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
    background: linear-gradient(135deg, #059669, #10b981) !important;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.btn-action-group .suntikan-gacor-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}
.btn-action-group .suntikan-gacor-btn:active {
    transform: scale(0.96);
}

/* 🔥 SIMULASI GACOR - BIRU */
.btn-action-group .simulasi-gacor-btn {
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 6px;
    border: none;
    color: #fff;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
    background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.btn-action-group .simulasi-gacor-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}
.btn-action-group .simulasi-gacor-btn:active {
    transform: scale(0.96);
}

/* 🔥 RESPONSIVE */
@media (max-width: 480px) {
    .btn-action-group .pola-main-btn,
    .btn-action-group .suntikan-gacor-btn,
    .btn-action-group .simulasi-gacor-btn {
        font-size: 9px !important;
        padding: 4px 6px !important;
        border-radius: 4px !important;
    }
}

@media (max-width: 380px) {
    .btn-action-group .pola-main-btn,
    .btn-action-group .suntikan-gacor-btn,
    .btn-action-group .simulasi-gacor-btn {
        font-size: 8px !important;
        padding: 3px 4px !important;
        border-radius: 3px !important;
    }
}
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #f5a623);
    color: #1a1a2e;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 9999;
    font-size: 24px;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    animation: none;
}

.scroll-top-btn.visible {
    display: flex !important;
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: pulseScroll 2s infinite;
}

.scroll-top-btn:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #ffe44d, #f5a623);
}

.scroll-top-btn:active {
    transform: scale(0.9) !important;
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
    stroke: #1a1a2e;
    stroke-width: 2.5;
}

@keyframes pulseScroll {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 35px rgba(255, 215, 0, 0.8);
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
    }
    .scroll-top-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .scroll-top-btn {
        bottom: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
    }
    .scroll-top-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 360px) {
    .scroll-top-btn {
        bottom: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
    }
    .scroll-top-btn svg {
        width: 16px;
        height: 16px;
    }
}

.hot-sticker-wrapper {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 10;
    width: 40px;
    height: 40px;
}
.hot-sticker {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#game-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    width: 100%;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}
/* ============================================
   GAME GRID - 4 KOLOM (HANYA UKURAN)
   ============================================ */

/* Container game sebagai grid */
#game-container {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 12px !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Setiap item game */
#game-container .game-card-item {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    width: 100% !important;
}

/* Gambar tetap proporsional */
#game-container .game-card-item img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1/1 !important;
    object-fit: cover !important;
}

/* Responsive - Tablet (3 kolom) */
@media (max-width: 992px) {
    #game-container {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 10px !important;
    }
}

/* Responsive - Mobile (2 kolom) */
@media (max-width: 768px) {
    #game-container {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }
}

/* Responsive - Mobile Kecil (2 kolom dengan gap kecil) */
@media (max-width: 480px) {
    #game-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px !important;
    }
    
    /* Ukuran tombol lebih kecil di mobile */
    #game-container .game-card-item .pola-main-btn,
    #game-container .game-card-item .suntikan-gacor-btn,
    #game-container .game-card-item .simulasi-gacor-btn {
        font-size: 9px !important;
        padding: 4px 6px !important;
    }
    
    /* Nama game lebih kecil */
    #game-container .game-card-item .running-title {
        font-size: 0.6rem !important;
    }
}

/* Tombol Load More */
.load-more-container {
    text-align: center !important;
    margin: 20px 0 !important;
    padding: 10px 0 !important;
    width: 100% !important;
}

.load-more-btn {
    display: inline-block !important;
    padding: 12px 40px !important;
    background: linear-gradient(135deg, #ffd700, #f0a500) !important;
    border: none !important;
    border-radius: 30px !important;
    color: #0a0a2a !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2) !important;
}

.load-more-btn:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.4) !important;
}

.load-more-btn:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

#loadingIndicator {
    display: none;
    padding: 20px 0;
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
}

.game-counter {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin-top: 10px;
}
/* ============================================
   LOADING SPINNER - TEPAT DI TENGAH
   ============================================ */

#game-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    width: 100%;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 60px 0;
    margin: 0 auto;
}

.loading-spinner .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 255, 136, 0.1);
    border-top-color: #00ff88;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

.loading-spinner span {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
    font-size: 0.95rem;
    display: block;
    text-align: center;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* 🔥 PASTIKAN SPINNER DI TENGAH SAAT LOADING */
#game-container:empty,
#game-container:has(.loading-spinner) {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 300px;
}

/* 🔥 RESPONSIVE */
@media (max-width: 480px) {
    .loading-spinner .spinner {
        width: 40px;
        height: 40px;
    }
    .loading-spinner span {
        font-size: 0.8rem;
    }
}
/* ============================================
   FORM CONTROL - FILTER
   ============================================ */
.form-control {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-control:focus {
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.05);
    outline: none;
}

.form-control option {
    background: #1a1a3a;
    color: #fff;
    padding: 8px 12px;
}

.form-control option:hover,
.form-control option:checked {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
}

/* Custom select arrow */
select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffd700' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
/* ============================================
   VALIDASI INPUT - ERROR STATE
   ============================================ */
.input-group-modal input.error {
    border-color: #ff6b6b !important;
    box-shadow: 0 0 25px rgba(255, 107, 107, 0.15) !important;
    animation: shakeInput 0.5s ease;
}

.input-group-modal input.error:focus {
    border-color: #ff6b6b !important;
    box-shadow: 0 0 35px rgba(255, 107, 107, 0.2) !important;
}

@keyframes shakeInput {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(-5px); }
    80% { transform: translateX(5px); }
}

.required {
    color: #ff6b6b;
    font-weight: 700;
}

.required-text {
    color: rgba(255,255,255,0.2);
    font-size: 0.65rem;
    text-align: left;
    margin-top: 4px;
    padding-left: 2px;
}

.required-text .star {
    color: #ff6b6b;
}
/* HOT Sticker untuk Grid - PASTIKAN ADA */
.hot-sticker-wrapper {
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 10;
    width: 28px;
    height: 28px;
    pointer-events: none;
}
.hot-sticker-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .hot-sticker-wrapper {
        width: 22px;
        height: 22px;
        top: 3px;
        right: 3px;
    }
}

@media (max-width: 480px) {
    .hot-sticker-wrapper {
        width: 18px;
        height: 18px;
        top: 2px;
        right: 2px;
    }
}
