/* ===== CONSISTENT RETRO EFFECTS - SCANLINES LIKE HERO SECTION ===== */

/* Consistent Scanlines Effect for All Sections */
.crt-effect::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 50%, rgba(139, 92, 246, 0.02) 50%);
    background-size: 100% 6px;
    pointer-events: none;
    z-index: 9999;
    animation: consistentScanlines 0.2s linear infinite;
}

@keyframes consistentScanlines {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(6px);
    }
}

/* Apply same scanlines effect to Hero Section */
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 50%, rgba(139, 92, 246, 0.02) 50%);
    background-size: 100% 6px;
    pointer-events: none;
    z-index: 1;
    animation: consistentScanlines 0.2s linear infinite;
}

/* Apply same scanlines effect to TV Section */
#tv-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 50%, rgba(139, 92, 246, 0.02) 50%);
    background-size: 100% 6px;
    pointer-events: none;
    z-index: 1;
    animation: consistentScanlines 0.2s linear infinite;
}

/* Apply same scanlines effect to Marquee Section */
.marquee-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 50%, rgba(139, 92, 246, 0.02) 50%);
    background-size: 100% 6px;
    pointer-events: none;
    z-index: 1;
    animation: consistentScanlines 0.2s linear infinite;
}

/* Keep only subtle hover effects - no other retro effects */
.custom-btn:hover {
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.4));
    transition: filter 0.3s ease;
}

/* TV Hover Effects - Removed per user request */