:root {
  color-scheme: dark;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background-color: #05070d;
  color: #f5f2ed;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #1c1f2a 0%, #05070d 60%);
  color: #f5f2ed;
  overflow: hidden;
}

.scene {
  position: relative;
  width: 100vw;
  height: 100vh;
}

#sun-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.scene-overlay {
  position: absolute;
  z-index: 2;
  top: 5vh;
  left: 5vw;
  max-width: 420px;
  padding: 24px 28px;
  border-radius: 20px;
  background: rgba(8, 10, 16, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: #f9c784;
  margin-bottom: 14px;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin-bottom: 14px;
}

.subtitle {
  font-size: 1rem;
  color: rgba(245, 242, 237, 0.78);
  margin-bottom: 24px;
  line-height: 1.6;
}

.stats {
  display: grid;
  gap: 12px;
}

.stats .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245, 242, 237, 0.6);
  display: block;
  margin-bottom: 6px;
}

.stats .value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffd59e;
}

.status-message {
  margin-top: 18px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ffe9a6;
}

@media (max-width: 720px) {
  .scene-overlay {
    width: calc(100% - 48px);
    left: 24px;
    right: 24px;
    top: 24px;
  }
}
