/**
 * Gates of Hades Demo — Inferno Stylesheet
 */

@keyframes flame-pulse {
  0%, 100% { box-shadow: 0 0 15px rgba(245, 166, 35, 0.3); }
  50% { box-shadow: 0 0 30px rgba(245, 166, 35, 0.5); }
}

.btn-infernal--fire {
  position: relative;
  overflow: hidden;
}

.btn-infernal--fire::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.6s;
}

.btn-infernal--fire:hover::after {
  left: 100%;
}

.cerberus-card {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.cerberus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(245, 166, 35, 0.15);
}

.tartarus-table tbody tr {
  transition: background 0.2s ease;
}

.hades-header {
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

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

.elysium-trigger {
  transition: background 0.2s ease;
}

.elysium-icon {
  transition: transform 0.3s ease;
}

.elysium-answer {
  transition: max-height 0.4s ease-out;
}

.portal {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

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

.charon-stat {
  transition: transform 0.2s ease;
}

.charon-stat:hover {
  transform: translateY(-3px);
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #0D0612; }
::-webkit-scrollbar-thumb { background: #5B2D7A; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #F5A623; }

::selection { background: #5B2D7A; color: #fff; }

:focus-visible { outline: 3px solid #F5A623; outline-offset: 3px; }

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

@media print {
  .hades-header, .soul-warning, .portal, .styx-footer { display: none !important; }
  body { padding-top: 0; background: #fff; color: #000; }
}
