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

body {
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: sans-serif;
}

#game-container {
    position: relative;
    width: 100%;
    max-width: 854px;
    margin: 0 auto;
}

#game-canvas {
    width: 100%;
    max-width: 854px;
    height: auto;
    display: block;
    border: 2px solid #c4a64e;
    image-rendering: auto;
}

#credits {
    text-align: center;
    color: #999;
    font-size: 12px;
    padding: 10px 8px 4px;
    line-height: 1.3;
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: 0.3px;
    width: 100%;
    max-width: 854px;
    margin: 0 auto;
}
#credits a { color: #c4a64e; text-decoration: none; }
#credits a:hover { color: #fff; text-decoration: underline; }

.tip-jar-section {
    text-align: center;
    max-width: 854px;
    margin: 0 auto;
    padding: 10px 8px;
}

/* Mobile Touch Controls */
#touch-controls {
    display: none;
    justify-content: center;
    padding: 12px 0;
    max-width: 854px;
    margin: 0 auto;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
}

@media (pointer: coarse), (max-width: 768px) {
    #touch-controls { display: flex !important; }
}

#dpad {
    display: flex;
    flex-direction: column;
    align-items: center;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
}

.dpad-up, .dpad-down, .dpad-left, .dpad-right, .dpad-center {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #c4a64e;
    background: #1a1a1a;
    border: 2px solid #444;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
}

.dpad-up {
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid #333;
}

.dpad-down {
    border-radius: 0 0 8px 8px;
    border-top: 1px solid #333;
}

.dpad-left {
    border-radius: 8px 0 0 8px;
    border-right: 1px solid #333;
}

.dpad-right {
    border-radius: 0 8px 8px 0;
    border-left: 1px solid #333;
}

.dpad-center {
    background: #222;
    border: 2px solid #333;
}

.dpad-middle {
    display: flex;
    flex-direction: row;
}

.dpad-up.active, .dpad-down.active, .dpad-left.active, .dpad-right.active {
    background: #333;
    border-color: #c4a64e;
    color: #fff;
}
