/* Marquee Styles */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-container::after,
.marquee-container::before {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-alt), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-alt), transparent);
}

.marquee-content {
    display: inline-flex;
    gap: 2rem;
    animation: scroll 40s linear infinite;
    padding: 1rem 0;
}

.gallery-img {
    height: 500px;
    /* Tall phone screenshots */
    width: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Minimal shadow */
    border: 4px solid #fff;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.02);
    z-index: 5;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Move half way (the length of the real set) */
}