/* RealmKeeper Global Styles */

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

/* Game container - full viewport */
.game-container {
    width: 100vw;
    height: 100vh;
    position: relative;
}

/* Voxel renderer canvas */
voxel-renderer {
    display: block;
    width: 100%;
    height: 100%;
}

/* HUD overlay */
.hud-overlay {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 100;
}

/* Crosshair */
.crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
}

.crosshair::before,
.crosshair::after {
    content: '';
    position: absolute;
    background: white;
    mix-blend-mode: difference;
}

.crosshair::before {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.crosshair::after {
    height: 2px;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

/* Debug info panel */
.debug-info {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    font-family: monospace;
    font-size: 12px;
    border-radius: 4px;
}
