:root {
    color-scheme: dark;
    --bg: #03050b;
    --panel: rgba(7, 12, 23, 0.72);
    --panel-strong: rgba(8, 14, 28, 0.9);
    --panel-soft: rgba(17, 27, 46, 0.52);
    --line: rgba(188, 218, 255, 0.13);
    --line-bright: rgba(188, 225, 255, 0.24);
    --text: #f4f7ff;
    --muted: #98a7bd;
    --faint: #66758c;
    --cyan: #73d8ff;
    --cyan-bright: #b7efff;
    --amber: #ffb45f;
    --danger: #ff8f75;
    --accent: #73d8ff;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 13px;
    --topbar-height: 68px;
    font-family: Inter, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html,
body {
    width: 100%;
    height: 100%;
}

html {
    background: var(--bg);
}

body {
    margin: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 30%, rgba(23, 42, 76, 0.2), transparent 40%),
        var(--bg);
    color: var(--text);
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
    font: inherit;
}

button,
a {
    outline: none;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
}

a {
    color: inherit;
}

svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    transform: translateY(-160%);
    padding: 11px 15px;
    border-radius: 10px;
    background: #eefaff;
    color: #07111d;
    font-size: 13px;
    font-weight: 700;
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.experience,
.webgl-mount,
.webgl-mount canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
}

.webgl-mount canvas {
    display: block;
    touch-action: none;
}

.space-grade,
.film-grain {
    position: fixed;
    z-index: 1;
    inset: 0;
    pointer-events: none;
}

.space-grade {
    background:
        radial-gradient(circle at 50% 48%, transparent 30%, rgba(2, 4, 10, 0.08) 62%, rgba(0, 1, 4, 0.56) 100%),
        linear-gradient(180deg, rgba(8, 18, 35, 0.12), transparent 28%, transparent 72%, rgba(2, 5, 12, 0.28));
}

.film-grain {
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

.glass-panel {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 45%),
        var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(22px) saturate(135%);
    -webkit-backdrop-filter: blur(22px) saturate(135%);
}

.micro-label {
    margin: 0;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.35;
    text-transform: uppercase;
}

.topbar {
    position: fixed;
    z-index: 20;
    top: max(18px, env(safe-area-inset-top));
    right: 20px;
    left: 20px;
    height: var(--topbar-height);
    display: grid;
    grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
    align-items: center;
    gap: 24px;
    padding: 0 12px 0 17px;
    border-radius: 20px;
}

.brand {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-self: start;
    gap: 12px;
    padding: 5px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.brand-mark {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 1px solid rgba(115, 216, 255, 0.5);
    border-radius: 50%;
    transform: rotate(-22deg);
    box-shadow: inset 0 0 16px rgba(115, 216, 255, 0.08);
}

.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.brand-mark::before {
    inset: 6px;
    border: 1px solid rgba(115, 216, 255, 0.25);
}

.brand-mark::after {
    top: 50%;
    right: -3px;
    width: 5px;
    height: 5px;
    transform: translateY(-50%);
    background: var(--cyan-bright);
    box-shadow: 0 0 10px var(--cyan);
}

.brand-mark span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: linear-gradient(135deg, #fff6d9, var(--amber));
    box-shadow: 0 0 14px rgba(255, 180, 95, 0.8);
}

.brand-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    overflow: hidden;
    font-size: 13px;
    letter-spacing: 0.09em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-copy small {
    overflow: hidden;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.04em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mission-status {
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--muted);
    font-size: 10px;
    font-variant-numeric: tabular-nums;
    font-weight: 650;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #71f1ba;
    box-shadow: 0 0 10px rgba(113, 241, 186, 0.72);
}

.status-divider {
    width: 1px;
    height: 14px;
    margin: 0 2px;
    background: var(--line-bright);
}

.topbar-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 7px;
}

.icon-button,
.text-button,
.control-button,
.compact-toggle,
.primary-button,
.secondary-button,
.switch-button,
.speed-control button {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.035);
    cursor: pointer;
    transition:
        color 160ms ease,
        border-color 160ms ease,
        background 160ms ease,
        transform 160ms ease,
        box-shadow 160ms ease;
}

.icon-button:hover,
.text-button:hover,
.control-button:hover,
.compact-toggle:hover,
.secondary-button:hover,
.speed-control button:hover {
    border-color: var(--line-bright);
    background: rgba(115, 216, 255, 0.08);
    color: var(--cyan-bright);
}

.icon-button:active,
.text-button:active,
.control-button:active,
.primary-button:active,
.secondary-button:active,
.speed-control button:active {
    transform: scale(0.96);
}

.icon-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 12px;
}

.icon-button svg {
    width: 18px;
    height: 18px;
}

.icon-button > span {
    font-size: 14px;
    font-weight: 750;
}

.icon-button.small {
    width: 32px;
    height: 32px;
    border-radius: 10px;
}

.icon-button.small svg {
    width: 15px;
    height: 15px;
}

.text-button {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 13px;
    border-radius: 12px;
    color: #d8e2f0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.text-button svg {
    width: 15px;
    height: 15px;
}

.text-button[aria-pressed="true"] {
    border-color: rgba(255, 180, 95, 0.42);
    background: rgba(255, 180, 95, 0.1);
    color: #ffd6a0;
    box-shadow: inset 0 0 18px rgba(255, 180, 95, 0.04);
}

.navigator {
    position: fixed;
    z-index: 15;
    top: calc(max(18px, env(safe-area-inset-top)) + var(--topbar-height) + 16px);
    bottom: 92px;
    left: 20px;
    width: 270px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 18px 13px 12px;
    border-radius: var(--radius-xl);
    transition:
        width 240ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 240ms ease;
}

.panel-heading,
.section-heading,
.satellite-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.panel-heading {
    padding: 0 5px 13px 7px;
}

.panel-heading h2 {
    margin: 2px 0 0;
    font-size: 21px;
    font-weight: 620;
    letter-spacing: -0.03em;
}

#objectNavigator {
    min-height: 0;
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 2px 1px 15px;
    scrollbar-color: rgba(115, 216, 255, 0.22) transparent;
    scrollbar-width: thin;
}

.nav-group + .nav-group {
    margin-top: 16px;
}

.nav-group-title {
    margin: 0 9px 7px;
    color: var(--faint);
    font-size: 8px;
    font-weight: 750;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.nav-direct-access {
    margin: 1px 2px 17px;
    padding: 10px 8px 9px;
    border: 1px solid rgba(115, 216, 255, 0.13);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(115, 216, 255, 0.075), transparent 64%),
        rgba(255, 255, 255, 0.018);
}

.nav-direct-access .nav-group-title {
    margin-right: 3px;
    margin-left: 3px;
}

.quick-jump-controls {
    display: grid;
    gap: 8px;
}

.quick-jump-field {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.quick-jump-field > span {
    padding-left: 3px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 720;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.quick-jump-field select {
    width: 100%;
    min-width: 0;
    height: 34px;
    padding: 0 9px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    outline: none;
    background: rgba(2, 7, 15, 0.78);
    color: #dce8f5;
    font: inherit;
    font-size: 9px;
    font-weight: 650;
    color-scheme: dark;
    cursor: pointer;
    transition:
        border-color 170ms ease,
        background 170ms ease,
        box-shadow 170ms ease;
}

.quick-jump-field select:hover,
.quick-jump-field select:focus-visible {
    border-color: rgba(115, 216, 255, 0.38);
    background: rgba(7, 17, 31, 0.94);
    box-shadow: 0 0 0 3px rgba(115, 216, 255, 0.06);
}

.quick-jump-field option {
    background: #07101d;
    color: #e6eef8;
}

.nav-list {
    display: grid;
    gap: 4px;
}

.nav-item {
    position: relative;
    width: 100%;
    min-height: 43px;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    padding: 7px 9px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: var(--muted);
    text-align: left;
    cursor: pointer;
    transition:
        background 170ms ease,
        border-color 170ms ease,
        color 170ms ease,
        transform 170ms ease;
}

.nav-item::before {
    content: "";
    position: absolute;
    top: 9px;
    bottom: 9px;
    left: -2px;
    width: 2px;
    border-radius: 4px;
    background: var(--object-accent, var(--cyan));
    opacity: 0;
    box-shadow: 0 0 10px var(--object-accent, var(--cyan));
    transition: opacity 170ms ease;
}

.nav-item:hover {
    transform: translateX(2px);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
}

.nav-item.is-active {
    border-color: color-mix(in srgb, var(--object-accent, var(--cyan)) 28%, transparent);
    background:
        linear-gradient(90deg, color-mix(in srgb, var(--object-accent, var(--cyan)) 12%, transparent), transparent 75%),
        rgba(255, 255, 255, 0.025);
    color: var(--text);
}

.nav-item.is-active::before {
    opacity: 1;
}

.nav-dot {
    position: relative;
    width: var(--dot-size, 10px);
    height: var(--dot-size, 10px);
    justify-self: center;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    background: var(--object-accent, var(--cyan));
    box-shadow: 0 0 9px color-mix(in srgb, var(--object-accent, var(--cyan)) 45%, transparent);
}

.nav-dot.has-ring::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180%;
    height: 44%;
    transform: translate(-50%, -50%) rotate(-15deg);
    border: 1px solid color-mix(in srgb, var(--object-accent, var(--cyan)) 70%, white);
    border-radius: 50%;
}

.nav-copy {
    min-width: 0;
    display: grid;
    gap: 1px;
}

.nav-copy strong {
    overflow: hidden;
    font-size: 11px;
    font-weight: 680;
    letter-spacing: 0.015em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-copy small {
    overflow: hidden;
    color: var(--faint);
    font-size: 8px;
    letter-spacing: 0.05em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-index {
    color: var(--faint);
    font-size: 8px;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
}

.navigator-footer {
    padding: 12px 8px 0;
    border-top: 1px solid var(--line);
    color: var(--faint);
    font-size: 8px;
    line-height: 1.5;
    letter-spacing: 0.04em;
}

.navigator-footer p {
    margin: 0 0 2px;
}

.navigator-footer a {
    color: var(--muted);
    font-weight: 700;
    text-decoration: none;
}

.navigator-footer a:hover {
    color: var(--cyan-bright);
}

.navigator.is-collapsed {
    width: 60px;
    padding-right: 8px;
    padding-left: 8px;
}

.navigator.is-collapsed .panel-heading {
    padding: 0;
    justify-content: center;
}

.navigator.is-collapsed .panel-heading > div,
.navigator.is-collapsed #objectNavigator,
.navigator.is-collapsed .navigator-footer {
    display: none;
}

.navigator.is-collapsed #collapseNavigator svg {
    transform: rotate(180deg);
}

.detail-panel {
    position: fixed;
    z-index: 17;
    top: calc(max(18px, env(safe-area-inset-top)) + var(--topbar-height) + 16px);
    right: 20px;
    bottom: 92px;
    width: min(390px, calc(100vw - 40px));
    overflow: hidden;
    border-radius: var(--radius-xl);
    transition:
        transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 240ms ease;
}

.detail-panel::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: -80px;
    right: -90px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent) 13%, transparent), transparent 70%);
    pointer-events: none;
    transition: background 400ms ease;
}

.detail-scroll {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 24px 24px 22px;
    scrollbar-color: color-mix(in srgb, var(--accent) 32%, transparent) transparent;
    scrollbar-width: thin;
}

.panel-close {
    position: absolute;
    z-index: 3;
    top: 17px;
    right: 17px;
}

.object-identity {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 40px;
    padding-right: 48px;
}

.object-accent {
    width: 7px;
    height: 34px;
    flex: 0 0 7px;
    border-radius: 10px;
    background: var(--accent);
    box-shadow: 0 0 18px color-mix(in srgb, var(--accent) 65%, transparent);
}

.object-type {
    margin: 2px 0 0;
    color: #d9e2ef;
    font-size: 11px;
    font-weight: 610;
    letter-spacing: 0.035em;
}

.detail-panel h1 {
    margin: 24px 0 10px;
    font-size: clamp(36px, 3.4vw, 54px);
    font-weight: 530;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.detail-summary {
    margin: 0;
    color: #abb8ca;
    font-size: 13px;
    line-height: 1.65;
}

.detail-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 19px;
}

.detail-actions > :only-child {
    grid-column: 1 / -1;
}

.primary-button,
.secondary-button {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 13px;
    border-radius: 13px;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.primary-button {
    border-color: color-mix(in srgb, var(--accent) 40%, transparent);
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--accent) 26%, rgba(255, 255, 255, 0.02)), rgba(255, 255, 255, 0.025));
    box-shadow: inset 0 0 22px color-mix(in srgb, var(--accent) 7%, transparent);
}

.primary-button:hover {
    border-color: color-mix(in srgb, var(--accent) 66%, transparent);
    box-shadow:
        0 0 22px color-mix(in srgb, var(--accent) 12%, transparent),
        inset 0 0 22px color-mix(in srgb, var(--accent) 11%, transparent);
}

.primary-button svg,
.secondary-button svg {
    width: 16px;
    height: 16px;
}

.detail-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.detail-section h2,
.satellite-module h2 {
    margin: 0;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tracking-badge {
    padding: 5px 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tracking-badge.is-tracking {
    border-color: color-mix(in srgb, var(--accent) 34%, transparent);
    background: color-mix(in srgb, var(--accent) 8%, transparent);
    color: color-mix(in srgb, var(--accent) 78%, white);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.metric-card {
    min-width: 0;
    min-height: 71px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 11px 12px;
    border: 1px solid rgba(188, 218, 255, 0.1);
    border-radius: 13px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 55%),
        rgba(255, 255, 255, 0.02);
}

.metric-card span {
    color: var(--faint);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.metric-card strong {
    overflow: hidden;
    color: #eff6ff;
    font-size: 16px;
    font-variant-numeric: tabular-nums;
    font-weight: 570;
    letter-spacing: -0.02em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fact-list {
    display: grid;
    gap: 12px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.fact-list li {
    position: relative;
    padding-left: 17px;
    color: #9eacbf;
    font-size: 11px;
    line-height: 1.55;
}

.fact-list li::before {
    content: "";
    position: absolute;
    top: 0.65em;
    left: 1px;
    width: 6px;
    height: 1px;
    background: var(--accent);
    box-shadow: 0 0 7px color-mix(in srgb, var(--accent) 65%, transparent);
}

.source-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 22px;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 13px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        border-color 160ms ease,
        background 160ms ease,
        color 160ms ease;
}

.source-link:hover {
    border-color: color-mix(in srgb, var(--accent) 35%, transparent);
    background: color-mix(in srgb, var(--accent) 6%, transparent);
    color: var(--text);
}

.source-link svg {
    width: 16px;
    height: 16px;
}

.satellite-module {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.satellite-heading {
    align-items: flex-start;
}

.satellite-heading h2 {
    margin-top: 3px;
}

.switch-button {
    min-width: 78px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 9px;
    border-radius: 999px;
}

.switch-button span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--muted);
}

.switch-button b {
    font-size: 8px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.switch-button[aria-pressed="true"] {
    border-color: rgba(113, 241, 186, 0.28);
    background: rgba(113, 241, 186, 0.07);
}

.switch-button[aria-pressed="true"] span {
    background: #71f1ba;
    box-shadow: 0 0 9px rgba(113, 241, 186, 0.7);
}

.satellite-status-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 11px;
    margin-top: 13px;
    padding: 13px;
    border: 1px solid rgba(188, 218, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
}

.satellite-status-dot {
    width: 8px;
    height: 8px;
    margin-top: 4px;
    border-radius: 50%;
    background: var(--muted);
    box-shadow: 0 0 9px rgba(152, 167, 189, 0.4);
}

.satellite-status-card.is-loading .satellite-status-dot {
    background: var(--amber);
    animation: status-pulse 1.2s ease-in-out infinite;
}

.satellite-status-card.is-live .satellite-status-dot {
    background: #71f1ba;
    box-shadow: 0 0 10px rgba(113, 241, 186, 0.72);
}

.satellite-status-card.is-simulation .satellite-status-dot {
    background: var(--amber);
    box-shadow: 0 0 10px rgba(255, 180, 95, 0.55);
}

.satellite-status-card strong {
    display: block;
    color: #eaf4ff;
    font-size: 10px;
    letter-spacing: 0.035em;
}

.satellite-status-card p {
    margin: 4px 0 0;
    color: var(--faint);
    font-size: 9px;
    line-height: 1.45;
}

.satellite-status-card time {
    display: block;
    margin-top: 5px;
    color: #7693a9;
    font-size: 8px;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.satellite-list {
    display: grid;
    gap: 5px;
    margin-top: 10px;
}

.satellite-item {
    width: 100%;
    display: grid;
    grid-template-columns: 7px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    padding: 9px 10px;
    border: 1px solid transparent;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.018);
    color: var(--muted);
    text-align: left;
    cursor: pointer;
    transition:
        border-color 160ms ease,
        background 160ms ease,
        color 160ms ease;
}

.satellite-item::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #75dcff;
    box-shadow: 0 0 8px rgba(117, 220, 255, 0.68);
}

.satellite-item:hover,
.satellite-item.is-active {
    border-color: rgba(117, 220, 255, 0.2);
    background: rgba(117, 220, 255, 0.055);
    color: var(--text);
}

.satellite-item strong {
    overflow: hidden;
    font-size: 9px;
    font-weight: 680;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.satellite-item span {
    color: var(--faint);
    font-size: 8px;
    font-variant-numeric: tabular-nums;
}

.satellite-selection {
    margin-top: 10px;
    padding: 13px;
    border: 1px solid rgba(255, 205, 126, 0.2);
    border-radius: 13px;
    background:
        radial-gradient(circle at 100% 0, rgba(255, 190, 99, 0.12), transparent 45%),
        rgba(255, 180, 95, 0.035);
}

.satellite-selection .micro-label {
    color: #c79e69;
}

.satellite-selection strong {
    display: block;
    margin-top: 3px;
    overflow: hidden;
    color: #ffe8c8;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.satellite-selection p {
    margin: 5px 0 0;
    color: #9e8c76;
    font-size: 9px;
}

.data-note {
    margin: 12px 0 0;
    color: var(--faint);
    font-size: 8px;
    line-height: 1.55;
}

.data-note a {
    color: #8fbcd4;
    text-underline-offset: 2px;
}

.mission-card {
    position: fixed;
    z-index: 12;
    bottom: 105px;
    left: 310px;
    width: 280px;
    padding: 18px;
    border-radius: var(--radius-lg);
    transition:
        opacity 260ms ease,
        transform 260ms ease;
}

.mission-card.is-dismissed {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}

.mission-card > .icon-button {
    position: absolute;
    top: 10px;
    right: 10px;
}

.mission-card h2 {
    margin: 5px 0 7px;
    font-size: 20px;
    font-weight: 570;
    letter-spacing: -0.035em;
}

.mission-card > p:not(.micro-label) {
    margin: 0;
    padding-right: 12px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.55;
}

.gesture-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 12px;
}

.gesture-list span {
    padding: 5px 7px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--faint);
    font-size: 8px;
}

.gesture-list b {
    color: #c7d4e5;
    font-weight: 750;
}

.bottom-controls {
    position: fixed;
    z-index: 18;
    bottom: max(18px, env(safe-area-inset-bottom));
    left: 50%;
    min-height: 55px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 9px;
    transform: translateX(-50%);
    border-radius: 18px;
}

.control-button {
    height: 39px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 11px;
    border-radius: 11px;
    color: #dce7f5;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.control-button svg {
    width: 15px;
    height: 15px;
}

.control-button .play-icon {
    display: none;
}

.control-button[aria-pressed="true"] {
    border-color: rgba(255, 180, 95, 0.28);
    background: rgba(255, 180, 95, 0.07);
    color: #ffd29c;
}

.control-button[aria-pressed="true"] .pause-icon {
    display: none;
}

.control-button[aria-pressed="true"] .play-icon {
    display: block;
}

.control-divider {
    width: 1px;
    height: 25px;
    background: var(--line);
}

.speed-control {
    display: flex;
    align-items: center;
    gap: 4px;
}

.speed-control > .micro-label {
    margin: 0 4px 0 1px;
}

.speed-control button,
.compact-toggle {
    height: 31px;
    padding: 0 8px;
    border-radius: 9px;
    color: var(--muted);
    font-size: 8px;
    font-variant-numeric: tabular-nums;
    font-weight: 750;
    letter-spacing: 0.04em;
}

.speed-control button.is-active,
.compact-toggle[aria-pressed="true"] {
    border-color: rgba(115, 216, 255, 0.26);
    background: rgba(115, 216, 255, 0.08);
    color: var(--cyan-bright);
}

.help-panel {
    position: fixed;
    z-index: 30;
    top: calc(max(18px, env(safe-area-inset-top)) + var(--topbar-height) + 16px);
    right: 20px;
    width: 330px;
    padding: 18px;
    border-radius: var(--radius-xl);
}

.help-panel[hidden] {
    display: none;
}

.help-panel .panel-heading {
    padding: 0 0 14px;
}

.shortcut-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin: 0;
}

.shortcut-grid div {
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.02);
}

.shortcut-grid dt {
    color: #e8f3ff;
    font-size: 10px;
    font-weight: 750;
}

.shortcut-grid dd {
    margin: 3px 0 0;
    color: var(--faint);
    font-size: 8px;
    line-height: 1.4;
}

.help-panel > p {
    margin: 12px 2px 0;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.5;
}

.labels-layer {
    position: fixed;
    z-index: 6;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.space-label {
    --label-accent: var(--cyan);
    position: absolute;
    top: 0;
    left: 0;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 8px 5px 6px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(188, 218, 255, 0.11);
    border-radius: 999px;
    background: rgba(4, 9, 18, 0.66);
    color: rgba(220, 232, 246, 0.72);
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: auto;
    cursor: pointer;
    opacity: 0;
    transition:
        opacity 150ms ease,
        color 150ms ease,
        border-color 150ms ease,
        background 150ms ease;
}

.space-label::before {
    content: "";
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    border-radius: 50%;
    background: var(--label-accent);
    box-shadow: 0 0 8px color-mix(in srgb, var(--label-accent) 75%, transparent);
}

.space-label span {
    overflow: hidden;
    font-size: 8px;
    font-weight: 720;
    letter-spacing: 0.06em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.space-label.is-visible {
    opacity: 1;
}

.space-label:hover,
.space-label.is-active {
    border-color: color-mix(in srgb, var(--label-accent) 35%, transparent);
    background: rgba(7, 14, 26, 0.9);
    color: #ffffff;
}

.labels-layer.is-hidden .space-label {
    opacity: 0 !important;
    pointer-events: none;
}

.hover-tooltip {
    position: fixed;
    z-index: 25;
    top: 0;
    left: 0;
    padding: 7px 10px;
    transform: translate(14px, 14px);
    border: 1px solid var(--line-bright);
    border-radius: 9px;
    background: rgba(3, 8, 17, 0.88);
    color: #e9f5ff;
    box-shadow: 0 9px 30px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    pointer-events: none;
    opacity: 0;
    transition: opacity 100ms ease;
}

.hover-tooltip.is-visible {
    opacity: 1;
}

body.is-hovering-object .webgl-mount canvas {
    cursor: pointer;
}

.selection-reticle {
    --reticle-color: var(--cyan);
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    width: 72px;
    height: 72px;
    transform: translate(-50%, -50%);
    border: 1px solid color-mix(in srgb, var(--reticle-color) 24%, transparent);
    border-radius: 50%;
    box-shadow:
        0 0 22px color-mix(in srgb, var(--reticle-color) 10%, transparent),
        inset 0 0 22px color-mix(in srgb, var(--reticle-color) 7%, transparent);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 200ms ease,
        width 220ms ease,
        height 220ms ease;
}

.selection-reticle.is-visible {
    opacity: 1;
    animation: reticle-breathe 2.6s ease-in-out infinite;
}

.selection-reticle::before,
.selection-reticle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.selection-reticle::before {
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border: 1px dashed color-mix(in srgb, var(--reticle-color) 20%, transparent);
}

.selection-reticle::after {
    width: 4px;
    height: 4px;
    background: var(--reticle-color);
    box-shadow: 0 0 9px var(--reticle-color);
}

.selection-reticle span {
    position: absolute;
    width: 9px;
    height: 9px;
    border-color: var(--reticle-color);
    opacity: 0.78;
}

.selection-reticle span:nth-child(1) {
    top: -2px;
    left: -2px;
    border-top: 1px solid;
    border-left: 1px solid;
}

.selection-reticle span:nth-child(2) {
    top: -2px;
    right: -2px;
    border-top: 1px solid;
    border-right: 1px solid;
}

.selection-reticle span:nth-child(3) {
    right: -2px;
    bottom: -2px;
    border-right: 1px solid;
    border-bottom: 1px solid;
}

.selection-reticle span:nth-child(4) {
    bottom: -2px;
    left: -2px;
    border-bottom: 1px solid;
    border-left: 1px solid;
}

.scale-note {
    position: fixed;
    z-index: 8;
    right: 22px;
    bottom: 25px;
    margin: 0;
    color: rgba(128, 143, 163, 0.62);
    font-size: 7px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    pointer-events: none;
}

.mobile-info-button {
    display: none;
}

.loading-screen {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 45%, rgba(24, 49, 85, 0.3), transparent 32%),
        #02040a;
    transition:
        opacity 700ms ease,
        visibility 700ms ease;
}

.loading-screen::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image:
        radial-gradient(circle at 14% 22%, white 0 1px, transparent 1.5px),
        radial-gradient(circle at 72% 34%, white 0 0.7px, transparent 1.2px),
        radial-gradient(circle at 44% 81%, white 0 0.8px, transparent 1.3px),
        radial-gradient(circle at 86% 72%, white 0 1px, transparent 1.5px);
    background-size: 210px 210px, 270px 270px, 330px 330px, 390px 390px;
}

body:not(.is-loading) .loading-screen {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.loading-orbit {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 25px;
    border: 1px solid rgba(115, 216, 255, 0.22);
    border-radius: 50%;
    animation: loading-spin 2.4s linear infinite;
}

.loading-orbit::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(115, 216, 255, 0.1);
    border-radius: 50%;
}

.loading-sun {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #ffd18b;
    box-shadow:
        0 0 15px rgba(255, 180, 95, 0.85),
        0 0 40px rgba(255, 146, 66, 0.36);
}

.loading-planet {
    position: absolute;
    top: 50%;
    right: -4px;
    width: 8px;
    height: 8px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #7edfff;
    box-shadow: 0 0 11px rgba(115, 216, 255, 0.8);
}

.loading-screen h1 {
    position: relative;
    margin: 6px 0 17px;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 450;
    letter-spacing: -0.055em;
}

.loading-track {
    position: relative;
    width: min(260px, 62vw);
    height: 2px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
}

.loading-track span {
    display: block;
    width: 8%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cyan), #d6f7ff);
    box-shadow: 0 0 12px rgba(115, 216, 255, 0.65);
    transition: width 240ms ease;
}

.loading-screen #loadingStatus {
    position: relative;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.08em;
}

.noscript-message {
    position: fixed;
    z-index: 200;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 30px;
    background: var(--bg);
    color: var(--text);
    text-align: center;
}

@keyframes loading-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes status-pulse {
    0%,
    100% {
        opacity: 0.45;
        transform: scale(0.82);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes reticle-breathe {
    0%,
    100% {
        box-shadow:
            0 0 20px color-mix(in srgb, var(--reticle-color) 8%, transparent),
            inset 0 0 18px color-mix(in srgb, var(--reticle-color) 5%, transparent);
    }
    50% {
        box-shadow:
            0 0 34px color-mix(in srgb, var(--reticle-color) 16%, transparent),
            inset 0 0 25px color-mix(in srgb, var(--reticle-color) 9%, transparent);
    }
}

@media (max-width: 1180px) {
    .navigator {
        width: 230px;
    }

    .detail-panel {
        width: 350px;
    }

    .mission-card {
        left: 270px;
    }

    .topbar {
        grid-template-columns: 1fr auto;
    }

    .mission-status {
        display: none;
    }
}

@media (max-width: 900px) {
    .detail-panel {
        width: 330px;
    }

    .navigator {
        width: 200px;
    }

    .mission-card {
        left: 220px;
        width: 245px;
    }

    .nav-copy small,
    .navigator-footer span {
        display: none;
    }

    .text-button span {
        display: none;
    }

    .text-button {
        width: 42px;
        justify-content: center;
        padding: 0;
    }
}

@media (max-width: 760px) {
    :root {
        --topbar-height: 60px;
    }

    html,
    body,
    .experience,
    .webgl-mount,
    .webgl-mount canvas {
        height: 100dvh;
    }

    body {
        overscroll-behavior: none;
    }

    .topbar {
        top: max(8px, env(safe-area-inset-top));
        right: max(9px, env(safe-area-inset-right));
        left: max(9px, env(safe-area-inset-left));
        height: var(--topbar-height);
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
        padding: 0 7px 0 11px;
        border-radius: 17px;
    }

    .brand {
        gap: 9px;
        padding: 3px;
    }

    .brand-mark {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .brand-copy strong {
        font-size: 11px;
    }

    .brand-copy small {
        font-size: 8px;
    }

    .topbar-actions {
        gap: 4px;
    }

    .topbar-actions .icon-button,
    .topbar-actions .text-button {
        width: 44px;
        height: 44px;
        border-radius: 11px;
    }

    .optional-mobile,
    .mission-card,
    .scale-note {
        display: none !important;
    }

    .navigator {
        top: calc(max(8px, env(safe-area-inset-top)) + var(--topbar-height) + 9px);
        right: max(9px, env(safe-area-inset-right));
        bottom: auto;
        left: max(9px, env(safe-area-inset-left));
        width: auto;
        height: 102px;
        display: block;
        padding: 8px;
        border-radius: 17px;
        overflow: hidden;
    }

    .navigator .panel-heading,
    .navigator-footer,
    .nav-group-title {
        display: none;
    }

    .nav-direct-access {
        width: min(276px, calc(100vw - 36px));
        min-width: min(276px, calc(100vw - 36px));
        height: 80px;
        margin: 0;
        padding: 8px;
        flex: 0 0 min(276px, calc(100vw - 36px));
        scroll-snap-align: start;
    }

    .quick-jump-controls {
        height: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
        gap: 7px;
    }

    .quick-jump-field select {
        height: 44px;
        padding-right: 4px;
        padding-left: 7px;
        font-size: 8px;
    }

    #objectNavigator {
        height: 100%;
        display: flex;
        align-items: stretch;
        gap: 4px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 1px 4px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    #objectNavigator::-webkit-scrollbar {
        display: none;
    }

    .nav-group,
    .nav-group + .nav-group,
    .nav-list {
        display: contents;
        margin: 0;
    }

    .nav-item {
        width: 68px;
        min-width: 68px;
        height: 80px;
        min-height: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 7px 5px;
        scroll-snap-align: center;
        text-align: center;
    }

    .nav-item::before,
    .nav-copy small,
    .nav-index {
        display: none;
    }

    .nav-item:hover {
        transform: none;
    }

    .nav-dot {
        width: max(var(--dot-size, 10px), 11px);
        height: max(var(--dot-size, 10px), 11px);
    }

    .nav-copy strong {
        max-width: 58px;
        font-size: 8px;
        letter-spacing: 0.01em;
    }

    .detail-panel {
        z-index: 40;
        top: auto;
        right: max(7px, env(safe-area-inset-right));
        bottom: max(7px, env(safe-area-inset-bottom));
        left: max(7px, env(safe-area-inset-left));
        width: auto;
        height: min(70vh, 610px);
        height: min(72dvh, 610px);
        max-height: calc(100dvh - max(8px, env(safe-area-inset-top)) - max(7px, env(safe-area-inset-bottom)) - 16px);
        transform: translateY(calc(100% + 20px));
        opacity: 0;
        border-radius: 22px;
        pointer-events: none;
    }

    .detail-panel.is-mobile-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .detail-panel::after {
        content: "";
        position: absolute;
        z-index: 4;
        top: 8px;
        left: 50%;
        width: 42px;
        height: 3px;
        transform: translateX(-50%);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.18);
    }

    .detail-scroll {
        padding: 28px 20px 26px;
        overscroll-behavior-y: contain;
        -webkit-overflow-scrolling: touch;
    }

    .detail-panel h1 {
        font-size: clamp(31px, 10vw, 39px);
        overflow-wrap: anywhere;
    }

    .panel-close {
        top: 19px;
        right: 17px;
        width: 44px;
        height: 44px;
    }

    .bottom-controls {
        right: auto;
        bottom: max(9px, env(safe-area-inset-bottom));
        max-width: calc(100vw - 18px);
        min-height: 52px;
        gap: 7px;
        padding: 6px 7px;
        border-radius: 16px;
    }

    .control-button {
        min-height: 44px;
    }

    .speed-control button {
        min-width: 40px;
        height: 44px;
        padding: 0 7px;
    }

    .speed-control > .micro-label {
        display: none;
    }

    .mobile-info-button {
        position: fixed;
        z-index: 19;
        right: max(12px, env(safe-area-inset-right));
        bottom: calc(max(9px, env(safe-area-inset-bottom)) + 67px);
        min-width: 140px;
        min-height: 44px;
        max-width: calc(100vw - 24px);
        display: grid;
        gap: 1px;
        padding: 9px 12px;
        border-radius: 13px;
        color: var(--text);
        text-align: left;
        cursor: pointer;
    }

    .mobile-info-button span {
        max-width: 150px;
        overflow: hidden;
        font-size: 10px;
        font-weight: 720;
        letter-spacing: 0.04em;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-info-button small {
        color: var(--muted);
        font-size: 7px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .help-panel {
        z-index: 50;
        top: calc(max(8px, env(safe-area-inset-top)) + var(--topbar-height) + 9px);
        right: max(9px, env(safe-area-inset-right));
        left: max(9px, env(safe-area-inset-left));
        width: auto;
        max-height: calc(100dvh - max(8px, env(safe-area-inset-top)) - var(--topbar-height) - max(26px, env(safe-area-inset-bottom)));
        overflow-y: auto;
        overscroll-behavior-y: contain;
        -webkit-overflow-scrolling: touch;
    }

    .help-panel .icon-button {
        width: 44px;
        height: 44px;
    }

    .space-label {
        padding: 4px 6px 4px 5px;
    }

    .space-label span {
        font-size: 7px;
    }
}

@media (max-width: 430px) {
    .brand-copy small {
        display: none;
    }

    .brand-copy strong {
        max-width: 112px;
    }

    #overviewButton {
        display: none;
    }

    .detail-actions {
        grid-template-columns: 1fr;
    }

    .detail-actions > * {
        grid-column: 1;
    }

    .detail-scroll {
        padding-right: 16px;
        padding-left: 16px;
    }

    .satellite-selection strong {
        line-height: 1.35;
        white-space: normal;
    }

    .shortcut-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    .bottom-controls {
        right: max(8px, env(safe-area-inset-right));
        left: max(8px, env(safe-area-inset-left));
        width: auto;
        justify-content: center;
        transform: none;
    }

    .control-button {
        padding: 0 9px;
    }

    .control-button span,
    .control-divider {
        display: none;
    }

    .speed-control {
        min-width: 0;
        flex: 1;
    }

    .speed-control button {
        min-width: 0;
        flex: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

.nova-panel {
    position: fixed;
    z-index: 25;
    bottom: 105px;
    left: 20px;
    width: min(280px, calc(100vw - 40px));
    max-height: calc(100dvh - var(--topbar-height) - 150px);
    overflow-y: auto;
    padding: 15px;
    border-radius: var(--radius-lg);
}

.nova-panel[hidden] {
    display: none;
}

.nova-intro {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
}

.nova-actions {
    margin-top: 12px;
}

.nova-actions .compact-toggle {
    grid-column: 1 / -1;
}

.primary-button.is-supernova {
    --accent: var(--danger);
}

.primary-button.is-blackhole {
    --accent: #b98bff;
}

@media (max-width: 760px) {
    .nova-panel {
        left: max(9px, env(safe-area-inset-left));
        right: auto;
        bottom: calc(max(9px, env(safe-area-inset-bottom)) + 67px);
        width: min(250px, calc(100vw - 18px));
        max-height: calc(100dvh - var(--topbar-height) - 120px);
    }
}

#galaxyButton[aria-pressed="true"] {
    border-color: rgba(185, 139, 255, 0.4);
    background: rgba(185, 139, 255, 0.1);
    color: #d9c2ff;
}

.galaxy-marker {
    position: fixed;
    z-index: 26;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 10px 5px 7px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(185, 139, 255, 0.32);
    border-radius: 999px;
    background: rgba(4, 9, 18, 0.7);
    color: #e7d9ff;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 9px;
    font-weight: 720;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 200ms ease;
}

.galaxy-marker::before {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: #ffb45f;
    box-shadow: 0 0 9px rgba(255, 180, 95, 0.85);
}

.galaxy-marker.is-visible {
    opacity: 1;
}
