/* ==================== WIN OVERLAY ==================== */
.win-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(10, 5, 16, 0.97) 0%,
        rgba(10, 5, 16, 0.95) 70%,
        rgba(10, 5, 16, 0.9) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 100;
    border: 4px solid #d4a853;
    box-shadow: 
        0 0 60px rgba(212, 168, 83, 0.5),
        0 0 120px rgba(194, 22, 49, 0.3),
        inset 0 0 80px rgba(212, 168, 83, 0.1);
}

.win-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.win-overlay .winner-emoji {
    font-size: 80px;
    margin-bottom: 20px;
    animation: emojiFloat 2s ease-in-out infinite;
}

@keyframes emojiFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.win-overlay .winner-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.win-overlay .winner-action {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #d4a853;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.win-overlay .winner-prize {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #c21631;
    text-transform: uppercase;
    text-shadow: 
        0 0 20px rgba(194, 22, 49, 0.8),
        0 0 40px rgba(194, 22, 49, 0.4);
    line-height: 1.4;
    max-width: 380px;
}
