* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #2a1a0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    font-family: 'Bubblegum Sans', cursive;
}

#game-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 9/16;
    max-height: 100vh;
}

#canvas {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
}

#game-footer {
    position: fixed;
    bottom: 4px;
    text-align: center;
    z-index: 100;
}

#game-footer a {
    color: #aa8866;
    text-decoration: none;
    font-size: 12px;
    font-family: 'Bubblegum Sans', cursive;
}

#game-footer a:hover {
    color: #ffcc66;
}