body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #0858f7;
    margin: 0;
    font-family: Arial, sans-serif;
    color: #000000;
}

#game-container {
    position: relative;
    width: 1200px;
    height: 600px;
    background-color: #ffffff;
    border: 5px solid #000000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.paddle {
    position: absolute;
    width: 30px;
    height: 170px;
    background-color: #000000;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#paddle1 {
    left: 10px;
    top: 150px;
}

#paddle2 {
    right: 10px;
    top: 150px;
}

#ball {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#score {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    font-size: 24px;
    font-weight: bold;
}

#player1-score {
    text-align: center;
    flex: 1;
}

#player2-score {
    text-align: center;
    flex: 1;
}

#game-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: #000000;
    transform: translateX(-50%);
}