@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;500;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #010103;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
}

#main-frame {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

.hud-layer {
    position: relative;
    z-index: 2;
    height: 100vh;
    width: 100vw;
    pointer-events: none;
    padding: 30px;
    box-sizing: border-box;
}

.data-vault {
    pointer-events: auto;
    width: 380px;
    height: 100%;
    background: rgba(0, 10, 20, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    padding: 40px;
    box-shadow: inset 0 0 50px rgba(0, 242, 255, 0.05);
}

.logo-group h1 {
    font-size: 1.4rem;
    letter-spacing: 8px;
    color: #00f2ff;
    margin: 0;
}

.version {
    font-size: 0.6rem;
    letter-spacing: 2px;
    opacity: 0.5;
}

.indicator {
    display: flex;
    align-items: center;
    margin-top: 15px;
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: #00ffaa;
}

.dot {
    width: 8px;
    height: 8px;
    background: #00ffaa;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 12px #00ffaa;
    animation: pulse 2s infinite;
}

#output-stream {
    flex-grow: 1;
    margin-top: 60px;
}

.sat-card h2 {
    font-size: 1.5rem;
    margin: 0;
    color: #fff;
}

.sat-card .pos {
    font-size: 0.8rem;
    color: #00f2ff;
    margin: 10px 0 25px 0;
}

.sat-card .bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #8899aa;
}

.empty-state {
    opacity: 0.3;
    font-size: 0.8rem;
}

.hud-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.readout {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    letter-spacing: 2px;
    opacity: 0.6;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}



