/* Enhanced scroll down section - keeping original structure but improving styles */
#scroll-down {
    display: flex;
    padding: 60px;
    justify-content: center;
    align-items: center;
    height: 50%;
    width: 50%;
}

/* Legacy styles for backward compatibility */
.demo-arrow-message {
    text-align: center;
    margin: 30px 0;
}

.demo-arrow-message p {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--viewer-color, #2196f3);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.demo-arrow {
    font-size: 3rem;
    color: var(--viewer-color, #2196f3);
    animation: bounceArrow 1.8s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    .demo-arrow-message p {
        font-size: 1.4rem;
    }
    .demo-arrow {
        font-size: 2.5rem;
    }
}
