.paccat-wrapper {
    text-align: center;
    font-family: sans-serif;
    max-width: 600px;
    margin: 0 auto;
    background: #222;
    color: white;
    padding: 20px;
    border-radius: 15px;
}
.paccat-wrapper .header img {
    max-width: 200px;
    height: auto;
}
#pacCatContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#gameCanvas {
    background: black;
    border: 4px solid blue;
    display: block;
    margin: 10px 0;
    max-width: 100%;
}
#startBtn {
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    background: yellow;
    border: none;
    border-radius: 5px;
    font-weight: bold;
}
#controls {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ctrl-row {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.ctrl-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
    background: #444;
    color: white;
    border: 2px solid #666;
    border-radius: 10px;
    cursor: pointer;
    user-select: none;
}
#leaderboard {
    text-align: left;
    width: 200px;
    margin: 0 auto;
}
