/* ── Halaman Slot (/slots & /slot) ─────────────────── */

#listGame .slotgames {
    width: 100%;
}

#listGame .slotgames a {
    display: block;
    text-decoration: none;
    color: #fff;
}

#listGame .slotgames .thumb {
    --gcf-radius: 0.625rem;
    border-radius: var(--gcf-radius);
    overflow: hidden;
    position: relative;
    padding: 2px;
    background: linear-gradient(
        145deg,
        var(--color-header-4) 0%,
        var(--color-header-3) 55%,
        var(--color-header-1) 100%
    );
    box-shadow:
        0 3px 14px rgba(0, 0, 0, 0.48),
        0 0 12px color-mix(in srgb, var(--color-header-4) 15%, transparent);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#listGame .slotgames .thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.2) 0%, transparent 45%);
    pointer-events: none;
    z-index: 2;
}

#listGame .slotgames a:hover .thumb {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 22px rgba(139, 21, 21, 0.42),
        0 0 20px color-mix(in srgb, var(--color-header-4) 32%, transparent);
}

#listGame .slotgames .thumb img.aspect-\[10\/13\] {
    border-radius: calc(var(--gcf-radius) - 2px);
}

#listGame .slotgames .thumb img.aspect-\[10\/13\] {
    display: block;
    width: 100%;
    object-fit: cover;
}

#listGame .slotgames span.text-ellipsis {
    font-size: 0.7rem;
    margin-top: 0.35rem;
    color: var(--color-4);
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

#listGame .slotgames a:hover span.text-ellipsis {
    color: var(--color-header-4);
    text-shadow: 0 0 8px color-mix(in srgb, var(--color-header-4) 35%, transparent);
}

.slot-load-more-btn {
    background: var(--color-gradient-5);
    color: #fff;
    font-weight: 600;
    min-width: 10rem;
}

.slot-load-more-btn:hover {
    opacity: 0.9;
}

.order-by-tab-link.current {
    border-color: transparent;
}

#provider_dropdown_panel {
    z-index: 50;
}

#slot-filter-menu {
    z-index: 40;
}

a.login-require {
    cursor: pointer;
}