/* ══════════════════════════════════════════════════════════════════════════════
   Artemis II — Trajektorie-Visualisierung
   ══════════════════════════════════════════════════════════════════════════════ */

#orbit-container {
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    background: var(--bg);
    overflow: hidden;
}

.orbit-svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Himmelskörper-Labels (Erde / Mond) */
.orbit-body-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    fill: var(--muted, #888);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Richtungs-Labels (Hinflug / Rückflug) */
.orbit-dir-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    fill: var(--muted, #888);
    letter-spacing: 0.10em;
    opacity: 0.65;
}

/* Mondabstands-Label */
.orbit-ca-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    fill: #f59e0b;
    letter-spacing: 0.06em;
}

/* Phasen-Label */
.orbit-phase-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    fill: var(--accent, #4da3ff);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* Kapsel-Pulsieren */
.capsule-dot {
    animation: capsule-orbit-pulse 2.8s ease-in-out infinite;
}

@keyframes capsule-orbit-pulse {
    0%,  100% { filter: drop-shadow(0 0 3px  rgba(77, 163, 255, 0.35)); }
    50%        { filter: drop-shadow(0 0 14px rgba(77, 163, 255, 0.80)); }
}

/* Responsive */
@media (max-width: 540px) {
    .orbit-body-label  { font-size: 10px; }
    .orbit-dir-label   { font-size: 9px;  }
    .orbit-ca-label    { font-size: 9.5px; }
    .orbit-phase-label { font-size: 9.5px; }
}