/* Gods-Eye View — Panel-Styles (31.08.2026).
   Das Panel ist im Kern ein Vollflaechen-iframe; die Karten decken nur die
   Fehl-/Ladezustaende ab. Farben ueber v3-Tokens, keine Hardcodes. */

#godseye-mount {
  position: relative;
  height: calc(100vh - 140px);
  min-height: 480px;
}

#godseye-mount .godseye-frame {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--r-lg, 12px);
  background: #000; /* Cesium laedt schwarz — kein weisser Blitz beim Boot */
  display: block;
}

#godseye-mount .godseye-card {
  max-width: 32rem;
  margin: 4rem auto;
  padding: 1.5rem;
  border: 1px solid var(--border, rgba(128, 128, 128, 0.3));
  border-radius: var(--r-lg, 12px);
  background: var(--surface-1, transparent);
  text-align: center;
  color: var(--text-2, inherit);
}

#godseye-mount .godseye-card h3 {
  margin: 0 0 0.5rem;
  color: var(--text-1, inherit);
}

#godseye-mount .godseye-card code {
  font-family: var(--font-mono, monospace);
  font-size: 0.85em;
}

#godseye-mount .godseye-spin {
  width: 28px;
  height: 28px;
  margin: 0 auto 0.75rem;
  border: 2px solid var(--border, rgba(128, 128, 128, 0.3));
  border-top-color: var(--accent, currentColor);
  border-radius: 50%;
  animation: godseye-rot 0.9s linear infinite;
}

@keyframes godseye-rot {
  to { transform: rotate(360deg); }
}

@media (max-width: 720px) {
  #godseye-mount {
    height: calc(100dvh - 180px);
    min-height: 360px;
  }
}
