/* FPS HUD */
#fps-hud {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 150;
}

/* Fadenkreuz */
#fps-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 4px rgba(0,0,0,0.8);
    user-select: none;
    line-height: 1;
}

/* FPS Werkzeug-Leiste unten */
#fps-toolbar {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    background: rgba(22, 33, 62, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: auto;
}

.fps-tool-btn {
    background: transparent;
    border: 1px solid transparent;
    color: #c0c0c0;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s;
}

.fps-tool-btn:hover {
    background: rgba(83, 52, 131, 0.4);
    color: #fff;
}

.fps-tool-btn.fps-active {
    background: rgba(233, 69, 96, 0.3);
    border-color: #e94560;
    color: #fff;
}

/* Minimap oben rechts */
#fps-minimap {
    position: absolute;
    top: 70px;
    right: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(22, 33, 62, 0.7);
    pointer-events: none;
}

/* Info-Text unten links */
#fps-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    user-select: none;
}

/* Position-Text unten links ueber Info */
#fps-position {
    position: absolute;
    bottom: 40px;
    left: 20px;
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    user-select: none;
    font-family: monospace;
}
