/* Retro 3D Dungeon Crawler custom styling */
:root {
  --retro-gold: #f39c12;
  --retro-dark: #0f0a17;
  --retro-purple: #7030a0;
  --retro-red: #e74c3c;
}

body {
  background: #090611;
  font-family: monospace, system-ui, -apple-system, sans-serif;
}

.title-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.skull-badge {
  font-size: 2.2rem;
}

h1#title {
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #f1c40f;
  text-shadow: 0 0 12px rgba(241, 196, 15, 0.6), 3px 3px 0px #000;
  margin: 0;
}

.subtitle {
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: #a29bfe;
  margin: 0;
  font-weight: bold;
}

.lore-box {
  background: rgba(22, 14, 38, 0.85);
  border: 2px solid #5a3e85;
  border-radius: 8px;
  padding: 1rem;
  max-width: 320px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #dfd8f5;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.6);
}

.danger-title {
  color: #e74c3c;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(231, 76, 60, 0.8), 3px 3px 0 #000;
  margin: 0;
}

.victory-title {
  color: #2ecc71;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(46, 204, 113, 0.8), 3px 3px 0 #000;
  margin: 0;
}

.death-msg, .victory-msg {
  font-size: 1.05rem;
  color: #dcdde1;
  max-width: 300px;
}

.stat-summary {
  background: rgba(20, 15, 30, 0.9);
  border: 1px solid #7d5fff;
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  color: #f5f6fa;
  font-size: 1rem;
  line-height: 1.6;
}

button {
  background: linear-gradient(180deg, #8e44ad 0%, #5b2c6f 100%);
  border: 2px solid #af7ac5;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
  text-transform: uppercase;
}

button:active {
  background: #512e5f;
}
