/* The mod menu itself is rendered in 3D (three.js) off the beacon.
   These are the few overlays that must stay in the DOM. */

#fps-readout {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 600;
    padding: 9px 12px;
    border: 1px solid #e4eaf3;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 6px 18px -6px rgba(11, 27, 51, 0.18);
    color: #0b1b33;
    font-family: ui-monospace, "Cascadia Code", monospace;
    font-size: 11px;
    line-height: 1.6;
    letter-spacing: 0.3px;
    white-space: pre;
    pointer-events: none;
    display: none;
}

#fps-readout.show {
    display: block;
}

.mod-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 700;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(31, 107, 255, 0.95);
    color: #fff;
    font-family: "Archivo", system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 30px -8px rgba(31, 107, 255, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mod-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
