body { margin: 0; overflow: hidden; background-color: #202020; font-family: 'Inter', sans-serif; user-select: none; }

        .back-to-site {
            position: fixed;
            top: 20px;
            left: 24px;
            z-index: 200;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 18px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: #fff;
            background: rgba(0, 0, 0, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            backdrop-filter: blur(8px);
            pointer-events: auto;
            transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
        }

        .back-to-site:hover {
            background: #e50107;
            border-color: rgba(255, 255, 255, 0.45);
        }

        .back-to-site:active {
            transform: scale(0.98);
        }

        .dchover {
            position: relative;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            box-sizing: border-box;
        }

        .dchover__btn {
            font-family: Helvetica, Arial, sans-serif;
            font-weight: 600;
            letter-spacing: -2px;
            font-size: 50px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .dchover__btn > span {
            display: inline-block;
            white-space: pre;
            overflow: hidden;
            vertical-align: middle;
        }

        .back-to-site.dchover {
            gap: 0;
            align-items: stretch;
        }

        .back-to-site.dchover .dchover__btn {
            font-size: 14px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: inherit;
            font-family: 'Inter', Helvetica, Arial, sans-serif;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 0;
        }
        
        /* 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;
        }