/* ============================================
   ARCANE ARCADE + EASTER EGG OVERLAYS
   public/arcade.css
   Loaded as a static asset to bypass Tailwind/PostCSS purging.
   These classes are created dynamically by script.js,
   wild-wasteland.js, and arcade.js at runtime.
   ============================================ */

/* ============================================
   VINYL OVERLAY (script.js easter egg)
   ============================================ */
.vinyl-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13, 13, 15, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.vinyl-overlay.visible {
  opacity: 1;
}
.vinyl-overlay__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid rgba(194, 120, 92, 0.3);
  color: var(--fog);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.vinyl-overlay__close:hover {
  border-color: #c2785c;
  color: #c2785c;
}
.vinyl-overlay__title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}
.vinyl-overlay__record {
  margin-bottom: 2rem;
}
.vinyl-overlay__disc {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle at center,
    #111 0px,
    #111 2px,
    #1a1a1a 3px,
    #1a1a1a 5px,
    #111 6px
  );
  border: 3px solid rgba(194, 120, 92, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vinyl-spin 3s linear infinite;
  box-shadow:
    0 0 60px rgba(194, 120, 92, 0.1),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
}
.vinyl-overlay__label {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c2785c, #9b6b9e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
@keyframes vinyl-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.vinyl-overlay__tracks {
  text-align: center;
}
.vinyl-overlay__artist {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--bone);
  margin-bottom: 1rem;
}
.vinyl-overlay__spotify {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: #1db954;
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid rgba(29, 185, 84, 0.3);
  border-radius: 20px;
  transition: all 0.3s ease;
}
.vinyl-overlay__spotify:hover {
  background: rgba(29, 185, 84, 0.1);
  color: #1db954;
}
.vinyl-overlay__hint {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ash);
  margin-top: 1.5rem;
  letter-spacing: 0.1em;
}

/* ============================================
   SHUTTER OVERLAY (script.js easter egg)
   ============================================ */
.shutter-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13, 13, 15, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.shutter-overlay.visible {
  opacity: 1;
}
.shutter-overlay__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid rgba(74, 107, 90, 0.3);
  color: var(--fog);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.shutter-overlay__close:hover {
  border-color: var(--eldritch);
  color: var(--eldritch);
}
.shutter-overlay__title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}
.shutter-overlay__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
  max-width: 600px;
  width: 90%;
  margin-bottom: 1.5rem;
}
.shutter-overlay__card {
  background: rgba(74, 107, 90, 0.08);
  border: 1px solid rgba(74, 107, 90, 0.15);
  border-radius: 4px;
  padding: 0.6rem 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--fog);
}
.shutter-overlay__card strong {
  display: block;
  color: var(--bone);
  font-size: 0.78rem;
  margin-bottom: 0.2rem;
}
.shutter-overlay__card span {
  color: var(--ash);
  font-size: 0.65rem;
}
a.shutter-overlay__card {
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: all 0.2s ease;
}
a.shutter-overlay__card:hover {
  background: rgba(74, 107, 90, 0.18);
  border-color: rgba(74, 107, 90, 0.35);
  transform: translateY(-2px);
}
a.shutter-overlay__card:hover strong {
  color: var(--parchment);
}
.shutter-overlay__hint {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ash);
  letter-spacing: 0.1em;
}

/* ============================================
   GLOBE OVERLAY (script.js easter egg)
   ============================================ */
.globe-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13, 13, 15, 0.96);
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow: hidden;
}
.globe-overlay.visible {
  opacity: 1;
}
.globe-overlay__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: none;
  z-index: 0;
}
.globe-overlay__canvas:active {
  cursor: grabbing;
}
.globe-overlay__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(13, 13, 15, 0.5);
  border: 1px solid rgba(196, 154, 108, 0.3);
  color: var(--fog);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.globe-overlay__close:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.globe-overlay__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 24px 40px;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 15, 0.85) 0%,
    rgba(13, 13, 15, 0.5) 60%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}
.globe-overlay__title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  pointer-events: auto;
}
.globe-overlay__panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 24px;
  background: linear-gradient(
    to top,
    rgba(13, 13, 15, 0.9) 0%,
    rgba(13, 13, 15, 0.6) 50%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}
.globe-overlay__panel > * {
  pointer-events: auto;
}
.globe-overlay__info-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--parchment);
  margin-bottom: 0.5rem;
}
.globe-overlay__info-title em {
  font-size: 0.85rem;
  color: var(--teal);
}
.globe-overlay__info-desc {
  color: var(--fog);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  max-width: 500px;
}
.globe-overlay__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ash);
}
.globe-overlay__legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.globe-overlay__controls {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(196, 154, 108, 0.1);
  display: inline-block;
}
.globe-overlay__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--fog);
  cursor: pointer;
  user-select: none;
}
.globe-overlay__toggle input[type="checkbox"] {
  accent-color: var(--amber);
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.globe-overlay__toggle span {
  opacity: 0.8;
}
.globe-overlay__cat-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}
.globe-overlay__cat-badge--home {
  color: var(--amber);
  border: 1px solid var(--amber-shadow);
  background: rgba(196, 154, 108, 0.12);
}
.globe-overlay__cat-badge--visited {
  color: var(--amber);
  border: 1px solid var(--amber-shadow);
  background: rgba(196, 154, 108, 0.08);
}
.globe-overlay__cat-badge--visited_desired {
  color: var(--teal);
  border: 1px solid var(--teal-shadow);
  background: rgba(126, 189, 194, 0.08);
}
.globe-overlay__cat-badge--upcoming {
  color: var(--teal);
  border: 1px solid var(--teal-shadow);
  background: rgba(126, 189, 194, 0.08);
}
.globe-overlay__cat-badge--desired {
  color: #9b6b9e;
  border: 1px solid rgba(155, 107, 158, 0.3);
  background: rgba(155, 107, 158, 0.08);
}
.globe-overlay__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.globe-overlay__dot--home {
  background: var(--amber);
  box-shadow: 0 0 4px var(--amber-shadow);
}
.globe-overlay__dot--visited {
  background: var(--amber);
}
.globe-overlay__dot--visited_desired {
  background: linear-gradient(135deg, var(--amber) 50%, var(--teal) 50%);
}
.globe-overlay__dot--upcoming {
  background: var(--teal);
}
.globe-overlay__dot--desired {
  background: #9b6b9e;
}
.globe-overlay__hint {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ash);
  letter-spacing: 0.1em;
  margin-top: 0.75rem;
}
[data-theme="light"] .globe-overlay {
  background: rgba(240, 237, 229, 0.96);
}
[data-theme="light"] .globe-overlay__header {
  background: linear-gradient(
    to bottom,
    rgba(240, 237, 229, 0.85) 0%,
    rgba(240, 237, 229, 0.5) 60%,
    transparent 100%
  );
}
[data-theme="light"] .globe-overlay__panel {
  background: linear-gradient(
    to top,
    rgba(240, 237, 229, 0.9) 0%,
    rgba(240, 237, 229, 0.6) 50%,
    transparent 100%
  );
}
[data-theme="light"] .globe-overlay__close {
  background: rgba(240, 237, 229, 0.5);
}
[data-theme="light"] .globe-overlay__info-title {
  color: #3a3530;
}
[data-theme="light"] .globe-overlay__info-desc {
  color: #5a5650;
}
.pip-boy .globe-overlay {
  background: rgba(0, 10, 0, 0.96);
}
.pip-boy .globe-overlay__header {
  background: linear-gradient(
    to bottom,
    rgba(0, 10, 0, 0.85) 0%,
    rgba(0, 10, 0, 0.5) 60%,
    transparent 100%
  );
}
.pip-boy .globe-overlay__panel {
  background: linear-gradient(
    to top,
    rgba(0, 10, 0, 0.9) 0%,
    rgba(0, 10, 0, 0.6) 50%,
    transparent 100%
  );
}
.pip-boy .globe-overlay__close {
  background: rgba(0, 10, 0, 0.5);
}
.pip-boy .globe-overlay__info-title {
  color: #00ff41;
}
.pip-boy .globe-overlay__info-desc {
  color: #00cc33;
}
@media (max-width: 768px) {
  .globe-overlay__panel {
    padding: 30px 16px 16px;
  }
  .globe-overlay__header {
    padding: 16px 16px 30px;
  }
  .globe-overlay__info-title {
    font-size: 1rem;
  }
  .globe-overlay__info-desc {
    font-size: 0.82rem;
  }
  .globe-overlay__legend {
    gap: 0.75rem;
  }
}
@media (max-width: 480px) {
  .globe-overlay__title {
    font-size: 0.68rem;
  }
  .globe-overlay__info-desc {
    font-size: 0.78rem;
  }
}

/* ============================================
   NETWORK GRAPH OVERLAY
   ============================================ */
.network-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 15, 0.96);
  z-index: 9999;
  opacity: 0;
  transition: opacity var(--duration-med) var(--ease-arcane);
}
.network-overlay.visible {
  opacity: 1;
}
.network-overlay canvas {
  width: 100%;
  height: 100%;
  cursor: grab;
  display: block;
}
.network-overlay canvas:active {
  cursor: grabbing;
}
.network-overlay__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: var(--abyss);
  border: 1px solid var(--smoke);
  color: var(--fog);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast);
}
.network-overlay__close:hover {
  border-color: var(--amber-dim);
  color: var(--amber);
}
.network-overlay__title {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--teal-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  z-index: 1;
}
.network-overlay__hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ash);
  z-index: 1;
  white-space: nowrap;
}

/* ============================================
   RUNE CATCHER GAME OVERLAY
   ============================================ */
.rune-game-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13, 13, 15, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.rune-game-overlay.visible {
  opacity: 1;
}
.rune-game-canvas {
  border-radius: 8px;
  border: 1px solid var(--smoke);
  box-shadow:
    0 0 60px rgba(196, 154, 108, 0.08),
    0 8px 40px rgba(0, 0, 0, 0.5);
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.rune-game-overlay__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--abyss);
  border: 1px solid var(--smoke);
  color: var(--fog);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast);
}
.rune-game-overlay__close:hover {
  border-color: var(--amber-dim);
  color: var(--amber);
}
@media (max-width: 440px) {
  .rune-game-canvas {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}

/* ============================================
   ARCANE ARCADE
   ============================================ */
.arcade-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #050507;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.arcade-overlay.visible {
  opacity: 1;
}
.arcade-overlay__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(20, 20, 24, 0.8);
  border: 1px solid rgba(196, 154, 108, 0.2);
  color: var(--fog, #a0a0ab);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.arcade-overlay__close:hover {
  border-color: var(--amber, #c49a6c);
  color: var(--amber, #c49a6c);
}
.arcade-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
  pointer-events: none;
  z-index: 1;
}
/* Boot screen */
.arcade-boot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.arcade-boot__canvas {
  border-radius: 8px;
  box-shadow:
    0 0 80px rgba(196, 154, 108, 0.06),
    0 0 2px rgba(126, 189, 194, 0.15) inset;
}
.arcade-boot__skip {
  position: absolute;
  bottom: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  color: rgba(160, 160, 171, 0.4);
  letter-spacing: 0.1em;
  animation: arcade-blink 1.5s ease-in-out infinite;
}
@keyframes arcade-blink {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
}
/* Menu */
.arcade-menu {
  width: 90%;
  max-width: 420px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.arcade-menu.visible {
  opacity: 1;
  transform: translateY(0);
}
.arcade-menu__header {
  text-align: center;
  margin-bottom: 2rem;
}
.arcade-menu__logo {
  font-family: "Cinzel", serif;
  font-size: 2.4rem;
  color: #c49a6c;
  letter-spacing: 0.15em;
  text-shadow: 0 0 30px rgba(196, 154, 108, 0.3);
}
.arcade-menu__sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  color: #7ebdc2;
  letter-spacing: 0.2em;
  margin-top: 0.5rem;
  text-transform: uppercase;
}
.arcade-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.arcade-menu__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  background: rgba(22, 22, 26, 0.6);
  border: 1px solid rgba(42, 42, 50, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.arcade-menu__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.2s ease;
}
.arcade-menu__card:hover {
  background: rgba(30, 30, 36, 0.8);
}
.arcade-menu__card--selected {
  border-color: rgba(196, 154, 108, 0.4);
  background: rgba(196, 154, 108, 0.06);
  box-shadow: 0 0 20px rgba(196, 154, 108, 0.05);
}
.arcade-menu__card--selected::before {
  background: #c49a6c;
}
.arcade-menu__card--locked {
  opacity: 0.4;
  cursor: not-allowed;
}
.arcade-menu__card--locked:hover {
  background: rgba(22, 22, 26, 0.6);
}
.arcade-menu__card-icon {
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(126, 189, 194, 0.06);
  border-radius: 8px;
  font-family: "Noto Sans Runic", serif;
  flex-shrink: 0;
}
.arcade-menu__card-info {
  flex: 1;
  min-width: 0;
}
.arcade-menu__card-title {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  color: #f0ede5;
  margin-bottom: 0.15rem;
}
.arcade-menu__card-sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  color: #72727e;
  letter-spacing: 0.05em;
}
.arcade-menu__card-stats {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  color: #c49a6c;
  flex-shrink: 0;
}
.arcade-menu__card-stats--locked {
  color: #72727e;
}
.arcade-menu__footer {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  color: rgba(114, 114, 126, 0.6);
  letter-spacing: 0.05em;
}
/* Game container (within arcade) */
.arcade-game-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.arcade-game__back {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(20, 20, 24, 0.8);
  border: 1px solid rgba(196, 154, 108, 0.2);
  color: #a0a0ab;
  padding: 6px 14px;
  border-radius: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  cursor: pointer;
  z-index: 10;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
}
.arcade-game__back:hover {
  border-color: #c49a6c;
  color: #c49a6c;
}
.arcade-game__pause {
  position: absolute;
  top: 20px;
  left: 110px;
  background: rgba(20, 20, 24, 0.8);
  border: 1px solid rgba(196, 154, 108, 0.2);
  color: #a0a0ab;
  padding: 6px 14px;
  border-radius: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  cursor: pointer;
  z-index: 10;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
}
.arcade-game__pause:hover {
  border-color: #7ebdc2;
  color: #7ebdc2;
}
.arcade-game__loading {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  color: #7ebdc2;
  letter-spacing: 0.1em;
  animation: arcade-blink 1.5s ease-in-out infinite;
}
@media (max-width: 480px) {
  .arcade-menu__logo {
    font-size: 1.8rem;
  }
  .arcade-menu__card {
    padding: 0.75rem 1rem;
  }
  .arcade-menu__card-icon {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
  .arcade-menu__footer {
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
  }
}

/* ============================================
   ICHOR GLOW (Wild Wasteland effect)
   ============================================ */
.ichor-glow a:hover {
  text-shadow:
    0 0 8px var(--ichor),
    0 0 16px rgba(139, 74, 94, 0.4);
}
.ichor-glow .card:hover {
  box-shadow:
    0 0 20px rgba(139, 74, 94, 0.3),
    0 8px 32px rgba(0, 0, 0, 0.3) !important;
}
.ichor-glow .card:hover::before {
  background: linear-gradient(
    to right,
    var(--ichor),
    var(--amber-dim),
    transparent
  ) !important;
}
.ichor-glow .settings-btn:hover {
  box-shadow: 0 0 16px rgba(139, 74, 94, 0.5);
}
.ichor-glow .timeline__item:hover::before {
  background: var(--ichor) !important;
  border-color: var(--ichor) !important;
  box-shadow: 0 0 12px rgba(139, 74, 94, 0.5);
}
.ichor-glow .nav__sigil:hover .rune {
  color: var(--ichor);
}
.ichor-glow .nav__links a:hover {
  color: var(--ichor);
}
.ichor-glow .nav__links a:hover::after {
  background: var(--ichor);
}

/* ============================================
   ELDRITCH UNLOCK FLASH
   ============================================ */
@keyframes eldritch-unlock {
  0% {
    box-shadow: inset 0 0 0 0 rgba(45, 31, 61, 0);
  }
  30% {
    box-shadow: inset 0 0 200px 80px rgba(45, 31, 61, 0.6);
  }
  60% {
    box-shadow: inset 0 0 100px 40px rgba(139, 74, 94, 0.3);
  }
  100% {
    box-shadow: inset 0 0 0 0 rgba(45, 31, 61, 0);
  }
}
.eldritch-flash {
  animation: eldritch-unlock 1.5s ease-out;
}

/* ============================================
   ELDRITCH SETTINGS SECTION
   ============================================ */
#eldritch-section .settings-panel__label {
  color: var(--ichor) !important;
}
#eldritch-section .settings-toggle.active .settings-toggle__switch {
  background: var(--ichor);
}
