/* ============================================
   SAKUTEKI — Decorative Elements
   Keeping only marquee edge fades (useful UX)
   Everything else removed — Lyria is clean
   ============================================ */

/* Marquee fade-in/fade-out edges */
.marquee {
  position: relative;
  isolation: isolate;
}

.marquee::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 120px;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 120px;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
