/* ========================================
   游戏胜利界面样式
   ======================================== */

.victory-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 13, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

.victory-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.victory-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.victory-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #f39c12;
    text-shadow: 
        0 0 30px rgba(243, 156, 18, 0.8),
        0 0 60px rgba(243, 156, 18, 0.5),
        0 0 90px rgba(243, 156, 18, 0.3);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
    animation: victoryGlow 1.5s ease-in-out infinite alternate;
}

@keyframes victoryGlow {
    from {
        text-shadow: 
            0 0 30px rgba(243, 156, 18, 0.8),
            0 0 60px rgba(243, 156, 18, 0.5),
            0 0 90px rgba(243, 156, 18, 0.3);
    }
    to {
        text-shadow: 
            0 0 40px rgba(243, 156, 18, 1),
            0 0 80px rgba(243, 156, 18, 0.7),
            0 0 120px rgba(243, 156, 18, 0.4);
    }
}

.victory-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
}

.victory-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(243, 156, 18, 0.3);
    border-radius: 12px;
    padding: 25px 40px;
}

.victory-stat {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
}

.victory-stat-label {
    color: rgba(255, 255, 255, 0.6);
}

.victory-stat-value {
    color: #f39c12;
    font-weight: 700;
}

.victory-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 400px;
}

.victory-skill-icon {
    width: 40px;
    height: 40px;
    background: rgba(20, 24, 30, 0.9);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
}

.victory-skill-icon.common {
    border: 2px solid #95a5a6;
    color: #95a5a6;
}

.victory-skill-icon.rare {
    border: 2px solid #3498db;
    color: #3498db;
}

.victory-skill-icon.epic {
    border: 2px solid #9b59b6;
    color: #9b59b6;
}

.victory-skill-icon.legendary {
    border: 2px solid #f39c12;
    color: #f39c12;
}

.victory-btn {
    width: 280px;
    height: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #f39c12;
    background: #f39c12;
    color: #000;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.3);
}

.victory-btn:hover {
    box-shadow: 0 0 40px rgba(243, 156, 18, 0.6);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .victory-title {
        font-size: 2.5rem;
    }
    
    .victory-subtitle {
        font-size: 1rem;
    }
    
    .victory-stats {
        padding: 20px 30px;
    }
}
