.footer-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    margin-bottom: 4px;
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

/* Hide when the footer is active */
.footer-wrapper:hover .footer-indicator {
    opacity: 0;
    display: block;
}
