/* enemies_ui.css - HUD and Overlay components for Enemy-related events (Boss Victory, etc.) */

/* Boss Victory Overlay */
.boss-victory-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex; justify-content: center; align-items: center;
    z-index: 2000;
    animation: fadeIn 0.5s ease-out;
}

.boss-victory-content {
    background: linear-gradient(145deg, #1a0000, #000);
    border: 3px solid #ff4500;
    padding: 30px; border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 69, 0, 0.4);
}

.boss-victory-header { color: #888; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
.boss-victory-name { color: #ff1744; font-size: 32px; font-weight: 900; margin: 15px 0; text-shadow: 0 0 20px #f00; }
.boss-victory-reward { color: #ffd700; font-size: 18px; margin-bottom: 5px; }
.boss-victory-bonus { color: #00e5ff; font-size: 14px; opacity: 0.8; }
.boss-victory-hint { color: #444; margin-top: 20px; font-size: 12px; }
