/* source: detbasale\plus.htm style block 1 */
body { text-align: center; font-family: Arial, sans-serif; }
        #game-container {
            position: relative;
            width: 400px;
            height: 400px;
            margin: auto;
            border: 2px solid black;
            overflow: hidden;
            background-color: lightblue;
        }
        .balloon {
            position: absolute;
            bottom: 0;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            text-align: center;
            line-height: 60px;
            cursor: pointer;
            transition: transform 4s linear;
        }
        .progress-indicator {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-top: 20px;
        }
        .progress-dot {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: lightgray;
        }
        .progress-dot.middle {
            background-color: blue;
        }
        .button-container {
            margin-top: 20px;
        }
        button {
            margin: 5px;
            padding: 10px;
            font-size: 16px;
            cursor: pointer;
        }


