/* Reset Elementor section/container spacing */
section.elementor-section.slider-header {
    padding: 0 !important;
    margin: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    overflow: hidden;
    background-color: var(--slate-700);
}

section.elementor-section.slider-header > .elementor-container {
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

section.elementor-section.slider-header .elementor-column {
    padding: 0 !important;
    margin: 0 !important;
}

/* Swiper container */
.swiper {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Center slides */
.swiper-wrapper {
    align-items: center;
}

/* Slide container */
.swiper-slide {
    width: 70vw;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: visible;
    border-radius: 12px!important;
    background-color: var(--slate-700);
    margin: 20px 0 50px;
    transition: transform 0.4s ease;

    /* IMPORTANT: stop hover interaction */
    pointer-events: none;
}

/* Mobile portrait */
@media (max-width: 768px) {
    .swiper-slide {
        aspect-ratio: 9 / 16;
        width: 50vw;
        margin-bottom: 60px;
    }
}

/* Slide image */
.swiper-slide img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 12px!important;
    z-index: 1;
}

/* Non-active state */
.swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.88);
}

.swiper-slide:not(.swiper-slide-active) img {
    filter: blur(6px) brightness(0.45);
}

/* Active state */
.swiper-slide-active {
    transform: scale(1);
}

.swiper-slide-active img {
    filter: none;
}

/* Info overlay */
#threedee-info {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    padding: 16px 16px 38px;
    background: rgba(15,23,42,.75);
    color: #fff;
    border-radius: 0 0 12px 12px;
    text-align: center;

    /* allow interaction */
    pointer-events: auto;
}

.swiper-slide-active #threedee-info {
    display: block;
}

/* Slider title */
p.kl-slider-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0,0,0,.45);
    padding: 6px 10px;
    border-radius: 6px;
    margin: 0;
}

/* CTA button — FIXED, NO MOVEMENT */
.kl-slider-button {
    position: absolute;
    left: 0;
    bottom: -22px;
    transform: translateX(-50%);
    width: 100%;
    z-index: 4;

    /* HARD STOP ALL MOTION */
    animation: none !important;
    transition: none !important;
    will-change: auto;

    pointer-events: auto;
}

/* Mobile */
@media (max-width: 768px) {
    .kl-slider-button {
        bottom: -26px;
        width: 100%;
    }
}

/* Kill any inherited animation */
.kl-slider-button,
.kl-slider-button * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

/* Navigation arrows */
.swiper-button-prev,
.swiper-button-next {
    color: var(--slate-300);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: auto;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1.8rem;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #fff;
}

/* ======================================================
   GAME VARIANT BUTTON COLORS (UNCHANGED)
====================================================== */
.kl-slider-button.buy-btn.reveal {
    background: var(--green);
    box-shadow: 0 0 0 2px #fff, 0 10px 0 #2E7E03, 0 18px 20px rgba(64,177,4,.45);
}

.kl-slider-button.buy-btn.instant-reveal {
    background: var(--game-green);
    box-shadow: 0 0 0 2px #fff, 0 10px 0 #7fb828, 0 18px 20px rgba(177,244,62,.45);
}

.kl-slider-button.buy-btn.scratchcard {
    background: var(--orange);
    box-shadow: 0 0 0 2px #fff, 0 10px 0 #C44E00, 0 18px 20px rgba(251,100,0,.45);
}

.kl-slider-button.buy-btn.football,
.kl-slider-button.buy-btn.spin {
    background: var(--blue);
    box-shadow: 0 0 0 2px #fff, 0 10px 0 #005DB5, 0 18px 20px rgba(0,130,249,.45);
}

.kl-slider-button.buy-btn.slots {
    background: var(--purple);
    box-shadow: 0 0 0 2px #fff, 0 10px 0 #4f109c, 0 18px 20px rgba(124,38,227,.45);
}
/* Blur buttons when slide is not active */
.swiper-slide:not(.swiper-slide-active) .kl-slider-button {
    filter: blur(3px) brightness(0.8);
    opacity: 0.75;
    pointer-events: none;
}

/* Active slide button stays crisp */
.swiper-slide-active .kl-slider-button {
    filter: none;
    opacity: 1;
    pointer-events: auto;
}
/* =========================================
   PRESSED BUTTON HOVER EFFECT (ALL VARIANTS)
========================================= */

.kl-slider-button.buy-btn {
    transition: box-shadow 0.12s ease, filter 0.12s ease;
}

/* Hover = slight press */
.kl-slider-button.buy-btn:hover {
    color: #fff!important;
    box-shadow:
        0 0 0 2px #ffffff,
        0 6px 0 rgba(0,0,0,.35),
        0 12px 25px rgba(0,0,0,.35);
    filter: brightness(0.97);
}

/* Active = fully pressed */
.kl-slider-button.buy-btn:active {
    color: #fff!important;
    box-shadow:
        0 0 0 2px #ffffff,
        0 3px 0 rgba(0,0,0,.45),
        0 8px 16px rgba(0,0,0,.35);
    filter: brightness(0.94);
}
