/* 像素太空跑酷 - 样式文件 */

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

body {
    background-color: #0a0a1a;
    overflow: hidden;
    font-family: 'Press Start 2P', monospace;
    image-rendering: pixelated;
}

#game-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#game-canvas {
    background-color: #000;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

#ui-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    font-size: 16px;
    text-shadow: 2px 2px #000;
}

#score-display, #coin-display {
    margin-bottom: 10px;
}

/* 响应式设计 */
@media (max-width: 480px) {
    #ui-overlay {
        font-size: 12px;
    }
}