.casta-slot-sticky-sidebar-wrap {
    position: relative;
    margin-top: 24px;
    z-index: 0 !important;
}

.casta-slot-sticky-sidebar {
    background: #111827;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    color: #ffffff;
    z-index: 0 !important;
}

.casta-slot-sticky-sidebar-wrap.is-fixed .casta-slot-sticky-sidebar {
    position: fixed;
    top: 100px;
    width: 100%;
    max-width: inherit;
    z-index: 0 !important;
}

body.admin-bar .casta-slot-sticky-sidebar-wrap.is-fixed .casta-slot-sticky-sidebar {
    top: 130px;
}

.casta-slot-sticky-sidebar-wrap.is-bottom .casta-slot-sticky-sidebar {
    position: absolute;
    top: auto;
    bottom: 0;
    width: 100%;
    z-index: 0 !important;
}

.casta-slot-sticky-image {
    position: relative;
    width: 100%;
    margin-bottom: 14px;
    border-radius: 14px;
    overflow: hidden;
    background: #0b1020;
}

.casta-slot-sticky-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
}

.casta-slot-sticky-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #292b45;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    padding: 8px 11px;
    border-radius: 999px;
}

.casta-slot-sticky-rating i {
    color: #ffc107;
    margin-left: 3px;
}

.casta-slot-sticky-label {
    color: #9ca3af;
    font-size: 13px;
    margin-bottom: 5px;
}

.casta-slot-sticky-title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 6px;
    color: #ffffff;
}

.casta-slot-sticky-provider {
    font-size: 14px;
    color: #b8c2d6;
    margin-bottom: 12px;
}

.casta-slot-sticky-bonus {
    font-size: 14px;
    line-height: 1.45;
    color: #b8c2d6;
    margin-bottom: 16px;
}

.casta-slot-sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    min-height: 48px;
    background: #ec1c24;
    color: #ffffff !important;
    border-radius: 9px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 8px 22px rgba(236, 28, 36, 0.35);
    transition: all .2s ease;
}

.casta-slot-sticky-btn:hover {
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(236, 28, 36, 0.45);
}

.casta-slot-sticky-notice {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.4;
    color: #9ca3af;
    text-align: center;
}

.space-sidebar-section {
    overflow: visible !important;
}

@media (max-width: 768px) {

    .casta-slot-sticky-sidebar-wrap {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        z-index: 1 !important;
        margin-top: 0;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
        pointer-events: none;
    }

    .casta-slot-sticky-sidebar-wrap.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .casta-slot-sticky-sidebar {
        border-radius: 0;
        padding: 8px 10px;
        margin: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .casta-slot-sticky-image,
    .casta-slot-sticky-rating,
    .casta-slot-sticky-label,
    .casta-slot-sticky-title,
    .casta-slot-sticky-provider,
    .casta-slot-sticky-bonus,
    .casta-slot-sticky-notice {
        display: none !important;
    }

    .casta-slot-sticky-btn {
        display: flex;
        width: 100%;
        min-height: auto;
        text-align: center;
        justify-content: center;
        padding: 14px 16px;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: .3px;
        color: #fff !important;
        text-decoration: none;
        border-radius: 10px;
        background: linear-gradient(90deg, #ffb300, #ff3d3d);
        box-shadow: 0 6px 18px rgba(255, 80, 0, 0.35);
        position: relative;
        overflow: hidden;
        transition: all .25s ease;
    }

    .casta-slot-sticky-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -60%;
        width: 40%;
        height: 100%;
        background: linear-gradient(120deg, rgba(255,255,255,0.25), rgba(255,255,255,0));
        transform: skewX(-25deg);
    }

    .casta-slot-sticky-btn:active::before {
        animation: shine-mobile-slot .6s ease;
    }

    @keyframes shine-mobile-slot {
        100% {
            left: 120%;
        }
    }

    .casta-slot-sticky-btn:active {
        transform: scale(0.96);
    }
}