/* Screenshot Gallery Carousel */
.screenshot-gallery {
    background: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 15px;
}

.gallery-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-track {
    display: flex;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.carousel-slide {
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.screenshot-caption {
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
    color: #2C3E50;
    font-weight: 600;
}

/* Navigation Arrows */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #FFBA00;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 186, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #FFA500;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 186, 0, 0.6);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

/* Navigation Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.dot.active {
    background: #FFBA00;
    width: 32px;
    border-radius: 6px;
}

.dot:hover {
    background: #FFA500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .screenshot-gallery {
        padding: 60px 0;
    }

    .gallery-header h2 {
        font-size: 2rem;
    }

    .gallery-header p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .carousel-container {
        padding: 0 50px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .carousel-btn.prev {
        left: 5px;
    }

    .carousel-btn.next {
        right: 5px;
    }

    .screenshot-caption {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 0 40px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .gallery-header h2 {
        font-size: 1.75rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 24px;
    }
}

