
/* Screenshot Gallery */
.screenshot-gallery {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-tertiary);
    -webkit-overflow-scrolling: touch;
}

.screenshot-gallery::-webkit-scrollbar {
    height: 8px;
}

.screenshot-gallery::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

.screenshot-gallery::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

.screenshot-wrapper {
    flex: 0 0 auto;
    width: 250px;
    height: 505px;
    border-radius: 30px;
    overflow: hidden;
    scroll-snap-align: center;
    border: 6px solid #1a2035;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    background-color: #000;
}

.screenshot-wrapper:hover {
    transform: translateY(-10px);
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .screenshot-gallery {
        justify-content: center;
        overflow-x: visible;
        flex-wrap: wrap;
    }
}
