/* Retro Effects stylesheet placeholder to prevent 404 errors.
   You can extend this with real effects as needed. */

/* Subtle scanlines utility (mirrors classes used in the site) */
.bg-scanlines {
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%);
  background-size: 100% 4px;
  background-repeat: repeat;
}

/* Optional CRT flicker effect (disabled by default) */
@keyframes crt-flicker { 0%, 100% { opacity: 0.98; } 50% { opacity: 1; } }
.crt-flicker { animation: crt-flicker 6s infinite; }
