/* Screenshots Carousel Styles */
.screenshots-section {
    background: var(--bg-secondary);
    overflow: hidden;
    padding: var(--section-padding) 0;
}

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

.carousel-wrapper {
    overflow: hidden;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-2xl);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.screenshot-card {
    position: relative;
    background: white;
    border-radius: var(--card-radius);
    overflow: hidden;
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.screenshot-info {
    padding: 32px;
    text-align: center;
    background: white;
    border-top: 3px solid #6366f1;
}

.screenshot-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1e293b;
}

.screenshot-info p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.carousel-btn:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

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

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

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.indicator.active {
    background: #6366f1;
    width: 32px;
    border-radius: 6px;
}

.indicator:hover {
    background: #6366f1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .carousel-container {
        padding: 0 40px;
    }

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

    .screenshot-info {
        padding: 24px;
    }

    .screenshot-info h3 {
        font-size: 20px;
    }

    .screenshot-info p {
        font-size: 14px;
    }
}

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

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .screenshot-info {
        padding: 20px;
    }

    .screenshot-info h3 {
        font-size: 18px;
    }

    .screenshot-info p {
        font-size: 13px;
    }

    .carousel-indicators {
        gap: 8px;
        margin-top: 24px;
    }

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

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