/* Update combo display styles for better visibility and mobile support */
#combo-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: bold;
    color: #f1c40f;
    text-shadow: 
        0 0 20px rgba(241, 196, 15, 0.8),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 5;
    pointer-events: none;
    opacity: 1;
    transition: none;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    letter-spacing: 1px;
}

#combo-display.fade-out {
    opacity: 0;
    transform: translate(-50%, -80%) scale(1.2);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 768px) {
    #combo-display {
        font-size: 36px;
        text-shadow: 
            0 0 15px rgba(241, 196, 15, 0.8),
            1px 1px 3px rgba(0, 0, 0, 0.5);
    }
}