/* Shine Effect for Header */
.ne-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.22) 50%, rgba(255,255,255,0.0) 100%);
    transform: skewX(-25deg);
    animation: shine 2.8s linear infinite;
    animation-delay: 1.4s; /* Starts later, half the animation duration */
    pointer-events: none;
    z-index: 2;
}

/* Shine Effect for Footer */
.ne-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.22) 50%, rgba(255,255,255,0.0) 100%);
    transform: skewX(-25deg);
    animation: shine 2.8s linear infinite;
    animation-delay: 2s; /* Starts later, half the animation duration */
    pointer-events: none;
    z-index: 2;
}

/* Disable Shine Effect for Main */
.ne-main::before {
    display: none;
}

@keyframes shine {
    0% { left: -60%; }
    100% { left: 120%; }
}
