body {
    background-color: #000;
    color: #00B894;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    user-select: none;
}

#game-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 800px;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

canvas {
    border: 2px solid #55EFC4;
    background-color: #111;
    image-rendering: pixelated;
    width: 100%;
    height: 80%;
}

#ui-overlay {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 15%;
    padding: 10px;
    box-sizing: border-box;
    font-size: 14px;
    color: #55EFC4;
    border-top: 1px solid #55EFC4;
}

#stats {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

#stats p {
    margin: 5px 0;
}

#log {
    flex: 1;
    overflow-y: scroll;
    padding-left: 10px;
    border-left: 1px solid #55EFC4;
    display: flex;
    flex-direction: column-reverse;
}

.log-entry {
    margin: 2px 0;
    font-size: 12px;
}

#controls-hint {
    width: 100%;
    text-align: center;
    padding: 5px;
    font-size: 12px;
    color: #aaa;
    height: 5%;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: #55EFC4;
}
