@import url("/css/theme.css");

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

html, body {
    width: 100%;
    height: 100%;
    background: var(--kk-bg);
    overflow: hidden;
    font-family: var(--kk-mono);
    color: var(--kk-text);
}

#game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--kk-surface);
}

canvas#raycaster {
    display: block;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    box-shadow: var(--kk-shadow-md);
}

#hud {
    position: fixed;
    top: var(--kk-space-3);
    left: var(--kk-space-3);
    color: var(--kk-text);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--kk-border);
    border-radius: var(--kk-radius);
    padding: var(--kk-space-2) var(--kk-space-3);
    font-size: 13px;
    line-height: 1.6;
    pointer-events: none;
    z-index: 10;
}

#controls-hint {
    position: fixed;
    bottom: var(--kk-space-3);
    left: 50%;
    transform: translateX(-50%);
    color: var(--kk-text-muted);
    font-size: 12px;
    pointer-events: none;
    z-index: 10;
    text-align: center;
}
