/* Shadow Crypt — Game Styles */

.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px);
    padding: 68px 12px 12px;
    position: relative;
    z-index: 1;
}

#game {
    border: 2px solid var(--border);
    border-radius: 4px;
    background: #08060f;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    cursor: crosshair;
    max-width: 100%;
    max-height: calc(100vh - 140px);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.08), inset 0 0 60px rgba(0, 0, 0, 0.5);
}

#game:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.15), inset 0 0 60px rgba(0, 0, 0, 0.5);
}

.game-controls-hint {
    display: flex;
    gap: 18px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.game-controls-hint span {
    font-size: 11px;
    color: var(--dim);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
    background: var(--surface);
    padding: 3px 10px;
    border-radius: 3px;
    border: 1px solid var(--border);
}

@media (max-width: 768px) {
    .game-container {
        padding: 8px;
        min-height: calc(100vh - 80px);
    }
    .game-controls-hint {
        gap: 8px;
    }
    .game-controls-hint span {
        font-size: 10px;
        padding: 2px 6px;
    }
}
