body {
    margin: 0;
    min-height: 100vh;
    font-family: "Courier New", Courier, monospace;
    background: #020a2a;
    color: #ffffff;
}

.game-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
}

h1 {
    margin: 8px 0 0;
}

.help-text {
    margin: 0;
    opacity: 0.9;
    text-align: center;
}

.hud {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    align-items: center;
}

.back-link {
    color: #8ed0ff;
}

#tetris-canvas {
    border: 2px solid #ffffff;
    background: #000000;
    image-rendering: pixelated;
}

.status {
    font-weight: bold;
    color: #ff8080;
}

.hidden {
    display: none;
}
