.screenshots {
    padding: 120px 0;
    background: var(--color-bg-1);
    min-height: 100vh
}
.screenshot-carousel {
    position: relative;
    max-width: 100vw;
    margin: 0 auto;
    height: 70vh;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    background: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
}
.screenshot-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.screenshot-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.screenshot-slide.active {
    opacity: 1;
}
.screenshot-slide img {
    max-width: 95%;
    max-height: 95%;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.12);
}
.carousel-arrow {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-lg);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 20;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.carousel-arrow:hover {
    background: var(--color-primary-hover);
}
.carousel-arrow.left {
    margin-right: 16px;
}
.carousel-arrow.right {
    margin-left: 16px;
}
.carousel-arrow.svg {
    stroke: var(--color-btn-primary-text);
}
@media(max-width: 768px) {
    .carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
    }
}

.screenshot-carousel {
    position: relative;
    width: 100%;
    max-width: auto;
    margin: 0 auto;
    overflow: hidden;
    height: 600px;
}

.screenshot-slide {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.screenshot-slide img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.screenshot-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Zoom overlay */
.zoom-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease forwards;
}

.zoom-image {
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
