/* modals_game_over.css - Game Over Screen Overlay */
#game-over-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(40, 0, 0, 0.95) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: 3000; display: flex; justify-content: center; align-items: center;
}
#game-over-content { text-align: center; padding: 20px; width: 95%; max-width: 400px; }
#game-over-title { color: #ff0000; font-size: 28px; text-align: center; margin-bottom: 15px; text-shadow: 0 0 20px #f00; }
#game-over-msg { color: #dfdfdf; font-size: 11px; line-height: 1.5; font-style: italic; margin-bottom: 20px; padding: 0 20px; text-shadow: 0 0 8px rgba(255, 255, 255, 0.2), 2px 2px 4px #000; letter-spacing: 0.5px; }
#final-stats { background: rgba(139, 0, 0, 0.1); border-top: 1px solid rgba(255, 0, 0, 0.2); border-bottom: 1px solid rgba(255, 0, 0, 0.2); padding: 10px; margin-bottom: 20px; color: #ffd700; font-family: 'Cinzel', serif; font-size: 14px; font-weight: bold; letter-spacing: 1.5px; text-shadow: 0 0 8px rgba(255, 215, 0, 0.4); }
#final-stage { color: #fff; font-size: 18px; text-shadow: 0 0 10px #ff0000; margin-left: 8px; }
#retry-btn { background: linear-gradient(to bottom, #4a0000, #1a0000); color: #ff3333; border: 1px solid #8b0000; padding: 10px 25px; font-family: 'Cinzel', serif; font-size: 13px; font-weight: bold; letter-spacing: 1.5px; cursor: pointer; text-transform: uppercase; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 15px rgba(139, 0, 0, 0.3); position: relative; overflow: hidden; }
#retry-btn:hover { color: #fff; background: #8b0000; border-color: #ff0000; box-shadow: 0 0 25px rgba(255, 0, 0, 0.5), inset 0 0 8px rgba(255, 255, 255, 0.2); transform: scale(1.05); }
