body {
    font-family: "Poppins", sans-serif;
}

/* ============ Slider Container ============ */
.after-footer-slider {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0 40px;
    background: transparent;
}

.slider-wrapper {
    width: 100%;
    max-width: 420px;
    background: rgba(15,15,20,0.6);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 20px rgba(255,255,255,0.08),
                0 0 40px rgba(0,255,200,0.15),
                0 0 60px rgba(0,200,255,0.07);
    backdrop-filter: blur(8px);
    padding: 16px;
    overflow: hidden;
}

/* ========== Title with Glow Effect (glow removed) ========= */
.slider-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffff66, #00ff88, #00e5ff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    color: transparent;
    animation: colorFlow 4s linear infinite;
    margin-bottom: 12px;
    letter-spacing: 1px;
}


@keyframes colorFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glow {
    0%,100% { text-shadow: 0 0 8px #ffff66, 0 0 14px #00ff88, 0 0 20px #00e5ff; }
    50% { text-shadow: 0 0 3px #ffff66, 0 0 8px #00ff88, 0 0 12px #00e5ff; }
}

/* ============ VIEWPORT ============ */
.slider-viewport {
    overflow: hidden;
    position: relative;
    touch-action: pan-y;
    user-select: none;
}

.slider-track {
    display: flex;
    gap: 12px;
    will-change: transform;
}

/* ============ Cards ============ */
.game-card {
    flex: 0 0 auto;
    width: 150px;
    text-align: center;
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(255,255,255,0.05),
                0 0 20px rgba(0,255,200,0.15),
                0 0 30px rgba(0,200,255,0.08);
}

.game-thumb {
    width: 150px;
    height: 90px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 
        0 0 10px rgba(0,255,200,0.4),
        0 0 20px rgba(0,200,255,0.25);
    display: block;
    background: #000;
}

/* ============ PLAY BUTTON ============ */
.play-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 18px;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow:
        0 0 10px rgba(0,255,200,0.8),
        0 0 20px rgba(0,200,255,0.6),
        0 0 32px rgba(0,255,170,0.4);
    position: relative;
    overflow: hidden;
}

.play-btn::after {
    content: "";
    position: absolute;
    left: -40%;
    top: 0;
    height: 100%;
    width: 40%;
    background: linear-gradient(75deg, transparent, rgba(255,255,255,0.6), transparent);
    filter: blur(4px);
    opacity: 0.6;
    transform: skewX(-20deg);
    animation: shine 2.8s linear infinite;
}

@keyframes shine {
    0% { left: -40%; }
    100% { left: 140%; }
}
