/* modals_unlock.css - New Class Unlock Modal */
#unlock-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2600; display: flex; justify-content: center; align-items: center;
    backdrop-filter: blur(10px);
}
#unlock-content {
    background: linear-gradient(145deg, #1a1a1a, #050505);
    border: 3px solid #ffd700; border-radius: 30px 30px 10px 10px;
    padding: 20px; text-align: center; width: 90%; max-width: 350px; min-height: 200px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.9), inset 0 0 20px rgba(255, 215, 0, 0.1);
    position: relative; animation: modalPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#unlock-content.enemy-theme { border-color: #9400d3; box-shadow: 0 0 40px rgba(148, 0, 211, 0.3), inset 0 0 20px rgba(148, 0, 211, 0.1); }
.unlock-title { font-family: 'Cinzel', serif; font-size: 14px; font-weight: 900; letter-spacing: 3px; margin-bottom: 10px; text-transform: uppercase; }
.unlock-title.holy { color: #ffd700; text-shadow: 0 0 10px #ffd700; }
.unlock-title.evil { color: #9400d3; text-shadow: 0 0 10px #9400d3; }
#unlock-icon { font-size: 40px; margin: 10px 0; filter: drop-shadow(0 0 15px rgba(255,255,255,0.2)); display: block; }
#unlock-name { font-size: 18px; font-weight: bold; color: #fff; margin-bottom: 5px; letter-spacing: 1px; }
#unlock-desc { font-size: 11px; color: #aaa; font-style: italic; line-height: 1.3; padding: 0 15px; }
.unlock-hint { margin-top: 20px; font-size: 9px; color: #444; letter-spacing: 2px; text-transform: uppercase; }
@keyframes modalPop { 0% { transform: scale(0.8); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
