/* ===== 决策对话框样式 ===== */
.decision-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

.decision-modal {
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
  border: 2px solid var(--color-faded-red);
  border-radius: 12px;
  padding: 25px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 0 30px rgba(184, 91, 91, 0.3);
  animation: slideIn 0.4s ease;
}

.decision-title {
  color: var(--color-faded-red);
  font-size: 1.4em;
  margin-bottom: 15px;
  text-align: center;
  text-shadow: 0 0 10px rgba(184, 91, 91, 0.5);
}

.decision-description {
  color: var(--color-bone-white-dark);
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border-left: 3px solid var(--color-faded-red);
}

.decision-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.decision-option {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.decision-option:hover:not(.disabled) {
  background: rgba(184, 91, 91, 0.2);
  border-color: var(--color-faded-red);
  transform: translateX(5px);
}

.decision-option.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.decision-option .option-text {
  display: block;
  color: var(--color-bone-white);
  font-size: 1.1em;
  font-weight: 500;
  margin-bottom: 5px;
}

.decision-option .option-requirements {
  display: block;
  color: var(--color-clue);
  font-size: 0.85em;
  margin-bottom: 3px;
}

.decision-option .option-description {
  display: block;
  color: var(--color-bone-white-dark);
  font-size: 0.9em;
  font-style: italic;
}

.decision-timer {
  text-align: center;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.decision-timer .timer-text {
  display: block;
  color: var(--color-faded-red);
  font-size: 1.1em;
  margin-bottom: 8px;
}

.decision-timer .timer-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.decision-timer .timer-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-faded-red), #ff6b6b);
  border-radius: 4px;
  transition: width 1s linear;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
