/* style.css — base canvas and body styles only.
   All OSINT panel/layout styles live in osint.css */

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

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #060c1a;
    font-family: "Courier New", monospace;
}

/* Globe canvas fills the entire viewport underneath all panels */
#canvas-container {
    position: fixed;
    inset: 0;
    z-index: 1;
}

/* Loading splash */
#loading {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #00dcff;
    background: rgba(6, 12, 26, 0.88);
    border: 1px solid rgba(0, 220, 255, 0.2);
    padding: 14px 24px;
    border-radius: 4px;
    font-family: "Courier New", monospace;
    font-size: 13px;
    letter-spacing: 2px;
    z-index: 9000;
    backdrop-filter: blur(8px);
}

/* Subtle footer credit */
#site-footer {
    position: fixed;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    font-size: 11px;
    font-family: "Courier New", monospace;
    color: rgba(0, 220, 255, 0.3);
    pointer-events: auto;
    white-space: nowrap;
}
#site-footer a {
    color: rgba(0, 220, 255, 0.4);
    text-decoration: none;
    letter-spacing: 1px;
}
#site-footer a:hover { color: rgba(0, 220, 255, 0.7); }
