            body {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                margin: 0;
                height: 100vh;
                background-color: #55679C;
            }
            p{
                text-align:left;
            }
            
           
            #game-controls {
                display: flex;
                justify-content: center;
                margin-bottom: 20px;
                margin-top: 20px;
            }

            #game-controls button {
                background-color: #7C93C3;
                border: none;
                padding: 10px 20px;
                margin: 0 10px;
                border-radius: 5px;
                font-size: 18px;
                color: white;
            }

            #board {
                background-color: #1E2A5E;
                border: 5px solid #1E2A5E;
                width: 90vw;
                height: 80vh;
                max-width: 500px;
                max-height: 90vh;
            }

            #slider-container {
                width: 100%;
                display: flex;
                justify-content: center;
                margin-top: 30px;
            }

            #paddleSlider {
                width: 80%;
                max-width: 500px;
                height: 20px;
                -webkit-appearance: none;
                background: #ddd;
                border-radius: 10px;
                outline: none;
                opacity: 0.7;
                -webkit-transition: .2s;
                transition: opacity .2s;
            }

            #paddleSlider::-webkit-slider-thumb {
                -webkit-appearance: none;
                appearance: none;
                width: 40px;
                height: 40px;
                background: #3AD5CE;
                border-radius: 50%;
                cursor: pointer;
            }

            #paddleSlider::-moz-range-thumb {
                width: 40px;
                height: 40px;
                background: #3AD5CE;
                border-radius: 50%;
                cursor: pointer;
            }

            /* Popup styling */
            #gameOverPopup,
            #welcomePopup {
                display: none;
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                background-color: white;
                padding: 20px;
                border-radius: 10px;
                text-align: center;
                box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
                z-index: 1000;
                width: 80%;
                max-width: 300px;
            }

            #gameOverPopup h2, #welcomePopup h2 {
                margin: 0 0 10px 0;
                font-size: 24px;
                color: black;
            }

            #gameOverPopup p, #welcomePopup p {
                font-size: 18px;
                margin: 0;
                color: black;
            }

            #gameOverPopup button, #welcomePopup button {
                margin-top: 20px;
                padding: 10px 20px;
                background-color: #3AD5CE;
                color: white;
                border: none;
                border-radius: 5px;
                font-size: 16px;
                width: 100%;
                box-sizing: border-box;
            }

            #gameOverPopup button:hover, #welcomePopup button:hover {
                background-color: #2bafa8;
            }
            

            
            

            /* Block texture styles */
            .block {
                background: linear-gradient(135deg, #ff9a9e 10%, #fad0c4 100%);
            }

            .block:nth-child(2n) {
                background: linear-gradient(135deg, #a18cd1 10%, #fbc2eb 100%);
            }

            .block:nth-child(3n) {
                background: linear-gradient(135deg, #fad0c4 10%, #ff9a9e 100%);
            }

            .block:nth-child(4n) {
                background: linear-gradient(135deg, #fbc2eb 10%, #a18cd1 100%);
            }
        