body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

#game-wrapper {
    text-align: center;
    margin-top: 20px;
}

h1 {
    margin-bottom: 10px;
    font-size: 24px;
}

#pongCanvas {
    background: #000;
    border: 2px solid #fff;
    display: block;
    margin: 0 auto;
}

#info {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin-inline: auto;
    font-size: 14px;
}

#restartBtn {
    margin-top: 10px;
    padding: 6px 16px;
    border: 1px solid #fff;
    background: #000;
    color: #fff;
    cursor: pointer;
}

#restartBtn:hover {
    background: #222;
}
