.screenshots-section {
    text-align: center;
    padding: 60px 20px;
}

.screenshots-section h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.screenshots-section p {
    max-width: 600px;
    margin: auto;
    color: #aaa;
    font-size: 1rem;
}

.screenshots-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    margin-top: 40px;
    padding-bottom: 20px;
}

.screenshots-carousel img {
    height: 400px;
    flex: 0 0 auto;
    border-radius: 12px;
    scroll-snap-align: center;
    transition: transform 0.3s;
}

.screenshots-carousel::-webkit-scrollbar {
    display: none;
}

.dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #444;
    border-radius: 50%;
    display: inline-block;
}

.dot.active {
    background-color: var(--primary);
}

@media (max-width: 768px) {
    .screenshots-carousel img {
        height: 280px;
    }
}