/* Destiny Hub — блок глубокого (многопроходного) разбора лунного дня.
   Отдельный файл, потому что css/lunar_components.css уже у лимита размера. */

.lunar-deep-panel {
  margin-bottom: 24px;
}

.lunar-deep-btn {
  background: linear-gradient(135deg, var(--gold), var(--pink));
  color: #000;
  font-weight: bold;
  padding: 11px 26px;
  border-radius: 8px;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  margin-top: 14px;
}

.lunar-deep-btn:hover {
  filter: brightness(1.08);
}

.lunar-deep-status {
  margin-top: 12px;
  font-style: italic;
}

.lunar-deep-block {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lunar-deep-block:last-of-type {
  border-bottom: none;
}

.lunar-deep-subtitle {
  color: var(--pink);
  font-weight: bold;
  margin: 14px 0 6px;
  font-size: 0.95rem;
}

.lunar-deep-list {
  margin: 8px 0 8px 20px;
  padding: 0;
  list-style: disc;
}

.lunar-deep-list li {
  margin-bottom: 6px;
  line-height: 1.55;
}

.lunar-deep-note {
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(226, 184, 83, 0.25);
  border-radius: 10px;
  font-size: 0.85rem;
}

.lunar-deep-wait-game {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 12px 0 4px;
  padding: 14px 16px;
  border: 1.5px solid rgba(226, 184, 83, 0.55);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(226, 184, 83, 0.22), rgba(236, 72, 153, 0.16));
  box-shadow: 0 0 0 1px rgba(226, 184, 83, 0.08), 0 4px 18px rgba(226, 184, 83, 0.18);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  animation: lunarWaitGamePulse 2.6s ease-in-out infinite;
}

.lunar-deep-wait-game::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  animation: lunarWaitGameSheen 3.4s ease-in-out infinite;
}

.lunar-deep-wait-game:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(226, 184, 83, 0.15), 0 8px 26px rgba(226, 184, 83, 0.32);
}

@keyframes lunarWaitGamePulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(226, 184, 83, 0.08), 0 4px 18px rgba(226, 184, 83, 0.18); }
  50% { box-shadow: 0 0 0 1px rgba(226, 184, 83, 0.18), 0 6px 26px rgba(226, 184, 83, 0.34); }
}

@keyframes lunarWaitGameSheen {
  0% { left: -60%; }
  100% { left: 130%; }
}

@media (prefers-reduced-motion: reduce) {
  .lunar-deep-wait-game, .lunar-deep-wait-game::after { animation: none; }
}

.lunar-deep-wait-game-icon {
  font-size: 2.1rem;
  line-height: 1;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 6px rgba(226, 184, 83, 0.6));
}

.lunar-deep-wait-game-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.lunar-deep-wait-game-copy strong {
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(226, 184, 83, 0.35);
}

.lunar-deep-wait-game-copy span {
  color: var(--text);
  opacity: 0.85;
  font-size: 0.78rem;
  line-height: 1.4;
}
