body { margin: 0; overflow: hidden; background-color: #202020; font-family: 'Inter', sans-serif; user-select: none; }
        
        /* SCOREBOARD CONTAINER */
        #ui-container {
            position: absolute;
            top: 30px;
            right: 40px;
            text-align: right;
            pointer-events: none;
            z-index: 100;
        }

        #scoreboard {
            color: white;
            font-size: 32px;
            font-weight: 700;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            margin-bottom: 5px;
        }

        #timer {
            color: #cccccc;
            font-size: 24px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            font-variant-numeric: tabular-nums; /* Fixed width numbers to prevent jumping */
        }

        /* Praise Text */
        #score-msg {
            position: absolute;
            top: 30%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.5);
            font-size: 60px;
            font-weight: 900;
            color: #ffd700;
            text-shadow: 0 0 10px #ff0000, 4px 4px 0px #000;
            opacity: 0;
            pointer-events: none;
            transition: all 0.2s ease-out;
            text-transform: uppercase;
            white-space: nowrap;
            z-index: 100;
        }
        
        .pop-up {
            transform: translate(-50%, -50%) scale(1.2) !important;
            opacity: 1 !important;
        }