/**
 * Bad Santa Demo — Mayhem Stylesheet
 */

.btn-mayhem--evil {
  position: relative;
  overflow: hidden;
}

.btn-mayhem--evil::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}

.btn-mayhem--evil:hover::after {
  left: 100%;
}

.frost-card:hover {
  box-shadow: 0 10px 30px rgba(107, 45, 123, 0.25);
}

.imp-card:hover {
  box-shadow: 0 12px 35px rgba(107, 45, 123, 0.2);
}

.naughty-header.scrolled {
  background: rgba(26, 15, 36, 0.98);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
}

.portal__box {
  transition: transform 0.3s ease;
  transform: scale(0.92);
}

.portal.open .portal__box {
  transform: scale(1);
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0D0A14; }
::-webkit-scrollbar-thumb { background: #2D1B3D; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #6B2D7B; }

::selection { background: #6B2D7B; color: #fff; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
