:root {
  --void: #03050d;
  --deep: #071124;
  --blue: #93c5fd;
  --star: #edf6ff;
  --mist: #aebdd2;
  --muted: #6f7f96;
  --gold: #d8b76a;
  --line: rgba(147, 197, 253, 0.8);
  --line-faint: rgba(147, 197, 253, 0.12);
  --danger: #fca5a5;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  min-width: 320px;
  margin: 0;
  overflow: hidden;
  background: var(--void);
  color: var(--star);
  font-family:
    "Noto Sans SC",
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.az-page {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
}

.focus-page {
  background:
    radial-gradient(circle at 50% 42%, rgba(42, 67, 112, 0.14), transparent 34rem),
    linear-gradient(180deg, #03050d 0%, #071124 55%, #03050d 100%);
}

.sky-canvas,
.field-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.sky-canvas {
  z-index: 0;
}

.field-vignette {
  z-index: 1;
  background:
    radial-gradient(circle at center, transparent 0 38%, rgba(3, 5, 13, 0.3) 70%, rgba(3, 5, 13, 0.96) 100%),
    linear-gradient(90deg, rgba(3, 5, 13, 0.78), transparent 20% 80%, rgba(3, 5, 13, 0.78));
}

.az-carousel-view,
.az-focus-view {
  transition: opacity 280ms ease;
}

.az-page[data-view="carousel"] .az-focus-view,
.az-page[data-view="focus"] .az-carousel-view {
  display: none;
}

.constellation-stage {
  position: relative;
  z-index: 2;
  display: grid;
  height: 100dvh;
  min-height: 100dvh;
  place-items: center;
  padding: 0 20px;
}

.constellation-svg {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: min(86vw, 900px);
  max-height: 58dvh;
  overflow: visible;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 22px rgba(147, 197, 253, 0.12));
}

#constellationGroup,
.star-node,
.star-line,
.star-label,
.star-burst,
.info-panel,
.progress-rail span {
  will-change: transform, opacity;
}

.star-line {
  stroke: var(--line);
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  fill: none;
  opacity: 0;
  filter: url("#lineGlow");
}

.constellation-guide {
  fill: none;
  stroke: rgba(147, 197, 253, 0.2);
  stroke-width: 1.2;
  pointer-events: none;
}

.carousel-guide {
  opacity: 0;
}

.glyph-line {
  stroke: rgba(237, 246, 255, 0.9);
  stroke-width: 17;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 0 8px rgba(147, 197, 253, 0.52))
    drop-shadow(0 0 18px rgba(147, 197, 253, 0.26));
}

.star-node {
  fill: var(--star);
  filter: url("#starGlow");
}

.star-node.is-hollow {
  fill: rgba(3, 5, 13, 0.86);
  stroke: rgba(237, 246, 255, 0.94);
  stroke-width: 2.6;
  vector-effect: non-scaling-stroke;
}

.line-head {
  fill: #ffffff;
  filter: url("#starGlow");
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  pointer-events: none;
}

.star-burst {
  stroke: rgba(237, 246, 255, 0.55);
  stroke-width: 1;
  stroke-linecap: round;
  filter: url("#starGlow");
}

.featured-wrap {
  transform-box: fill-box;
  transform-origin: center;
  pointer-events: none;
}

.featured-halo {
  fill: rgba(237, 246, 255, 0.16);
  filter: url("#starGlow");
}

.featured-ray {
  stroke: rgba(237, 246, 255, 0.76);
  stroke-width: 1.15;
  stroke-linecap: round;
  filter: url("#starGlow");
}

.star-label {
  fill: rgba(207, 222, 240, 0.76);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  text-shadow: 0 0 12px rgba(147, 197, 253, 0.35);
}

.featured-label {
  fill: rgba(237, 246, 255, 0.92);
  stroke: rgba(5, 8, 23, 0.78);
  stroke-width: 5px;
  paint-order: stroke;
  font-size: 20px;
  font-weight: 700;
}

.info-panel {
  position: fixed;
  z-index: 4;
  left: 50%;
  bottom: max(86px, env(safe-area-inset-bottom));
  width: min(92vw, 520px);
  transform: translateX(-50%);
  text-align: center;
}

.zodiac-index {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.info-panel h1 {
  margin: 0;
  color: var(--star);
  font-family: "Noto Serif SC", serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-indent: 0.16em;
  text-shadow:
    0 0 18px rgba(147, 197, 253, 0.48),
    0 0 42px rgba(147, 197, 253, 0.22);
}

.latin-name {
  margin: 4px 0 0;
  color: rgba(183, 199, 220, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
}

.zodiac-desc {
  margin: 12px 0 0;
  color: rgba(183, 199, 220, 0.68);
  font-size: 14px;
}

.loading-row {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: rgba(183, 199, 220, 0.54);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.24em;
}

.loading-row i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(237, 246, 255, 0.74);
  box-shadow: 0 0 10px rgba(147, 197, 253, 0.66);
}

.progress-rail {
  width: min(180px, 48vw);
  height: 1px;
  margin: 14px auto 0;
  background: rgba(147, 197, 253, 0.18);
  overflow: hidden;
}

.progress-rail span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(237, 246, 255, 0.92), transparent);
  transform: scaleX(0);
  transform-origin: left center;
}

.az-action-dock {
  position: fixed;
  z-index: 7;
  left: 50%;
  bottom: max(24px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
}

.focus-stage {
  position: relative;
  z-index: 2;
  display: grid;
  height: 100dvh;
  min-height: 100dvh;
  place-items: center;
  padding: 0 20px;
}

.focus-svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(96vw, 1120px);
  max-height: 77dvh;
  overflow: visible;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 24px rgba(147, 197, 253, 0.08));
}

.plate-group,
.reticle-layer,
.tick-layer,
.focus-plane,
.readout {
  will-change: transform, opacity;
}

.lens-wash {
  fill: url("#lensWash");
  opacity: 0;
}

.reticle-ring,
.reticle-axis,
.tick-mark,
.coordinate-line,
.constellation-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reticle-layer {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.dial-layer {
  transform-box: fill-box;
  transform-origin: center;
}

.tick-layer {
  transform-box: view-box;
  transform-origin: 600px 348px;
}

.reticle-ring {
  stroke: rgba(147, 197, 253, 0.17);
  stroke-width: 0.9;
}

.reticle-ring.ring-outer {
  stroke: rgba(216, 183, 106, 0.22);
  stroke-width: 1;
}

.reticle-ring.faint,
.reticle-axis,
.coordinate-line {
  stroke: var(--line-faint);
  stroke-width: 0.75;
}

.tick-mark {
  stroke: rgba(216, 183, 106, 0.3);
  stroke-width: 0.85;
}

.tick-mark.minor {
  stroke: rgba(147, 197, 253, 0.15);
  stroke-width: 0.72;
}

.inner-ticks .tick-mark {
  stroke: rgba(147, 197, 253, 0.16);
  stroke-width: 0.7;
}

.inner-ticks .tick-mark.major {
  stroke: rgba(216, 183, 106, 0.22);
}

.focus-plane {
  --focus-blur: 7px;
  filter: blur(var(--focus-blur));
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.constellation-line {
  stroke: rgba(183, 214, 250, 0.72);
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
  filter: url("#focusStarGlow");
}

.glyph-focus-line {
  stroke: rgba(237, 246, 255, 0.9);
  stroke-width: 13;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 0 8px rgba(147, 197, 253, 0.5))
    drop-shadow(0 0 18px rgba(147, 197, 253, 0.24));
}

.constellation-star {
  fill: rgba(237, 246, 255, 0.94);
  filter: url("#focusStarGlow");
}

.constellation-star.is-hollow {
  fill: rgba(3, 5, 13, 0.82);
  stroke: rgba(237, 246, 255, 0.94);
  stroke-width: 1.9;
  vector-effect: non-scaling-stroke;
}

.focus-line-head {
  fill: #ffffff;
  filter: url("#focusStarGlow");
  opacity: 0;
  pointer-events: none;
}

.readout {
  position: fixed;
  z-index: 5;
  left: 50%;
  bottom: max(42px, env(safe-area-inset-bottom));
  width: min(92vw, 560px);
  transform: translateX(-50%);
  text-align: center;
}

.readout-index {
  margin: 0 0 10px;
  color: rgba(216, 183, 106, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.2em;
}

.readout h1 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-indent: 0.16em;
  text-shadow:
    0 0 20px rgba(147, 197, 253, 0.42),
    0 0 54px rgba(147, 197, 253, 0.16);
}

.focus-latin-name {
  margin: 4px 0 0;
  color: rgba(183, 199, 220, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
}

.focus-zodiac-desc {
  margin: 12px 0 0;
  color: rgba(183, 199, 220, 0.72);
  font-size: 14px;
}

.focus-status {
  margin: 16px 0 0;
  color: rgba(174, 189, 210, 0.72);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.focus-loading-row {
  margin-top: 12px;
}

.az-primary-button,
.az-secondary-button {
  min-height: 42px;
  border-radius: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(216, 183, 106, 0.32);
  color: #fffaf0;
  background:
    linear-gradient(180deg, rgba(216, 183, 106, 0.18), rgba(135, 98, 39, 0.14)),
    linear-gradient(180deg, rgba(13, 28, 54, 0.74), rgba(4, 10, 24, 0.82));
  box-shadow:
    0 0 24px rgba(216, 183, 106, 0.07),
    inset 0 1px 0 rgba(237, 246, 255, 0.06);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.az-primary-button:hover,
.az-primary-button:focus-visible {
  border-color: rgba(237, 246, 255, 0.58);
  outline: none;
}

.az-secondary-button {
  border-color: rgba(147, 197, 253, 0.18);
  color: rgba(237, 246, 255, 0.82);
  background:
    linear-gradient(180deg, rgba(10, 22, 44, 0.5), rgba(3, 8, 20, 0.54)),
    rgba(7, 17, 36, 0.42);
  box-shadow: inset 0 1px 0 rgba(237, 246, 255, 0.035);
}

.az-secondary-button:hover,
.az-secondary-button:focus-visible {
  border-color: rgba(147, 197, 253, 0.46);
  color: #ffffff;
  outline: none;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.az-modal-shell {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
}

.az-modal-shell[hidden] {
  display: none;
}

.az-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(216, 183, 106, 0.08), transparent 16rem),
    radial-gradient(circle at 50% 45%, rgba(147, 197, 253, 0.12), transparent 32rem),
    rgba(3, 5, 13, 0.82);
  backdrop-filter: blur(18px) saturate(120%);
}

.az-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  overflow: hidden;
  border: 1px solid rgba(147, 197, 253, 0.2);
  border-radius: 8px;
  padding: 28px;
  background:
    radial-gradient(circle at 50% -8%, rgba(216, 183, 106, 0.12), transparent 12rem),
    radial-gradient(circle at 50% 8%, rgba(147, 197, 253, 0.1), transparent 18rem),
    linear-gradient(180deg, rgba(7, 17, 36, 0.82), rgba(3, 7, 18, 0.88));
  box-shadow:
    0 30px 92px rgba(0, 0, 0, 0.58),
    0 0 42px rgba(147, 197, 253, 0.08),
    inset 0 1px 0 rgba(237, 246, 255, 0.08),
    inset 0 0 42px rgba(147, 197, 253, 0.04);
  will-change: transform, opacity;
}

.az-modal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(216, 183, 106, 0.26);
  background:
    linear-gradient(90deg, transparent, rgba(147, 197, 253, 0.12), transparent) top / 100% 1px no-repeat,
    radial-gradient(circle at 50% 0%, rgba(237, 246, 255, 0.08), transparent 14rem);
  pointer-events: none;
}

.az-modal-panel::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(147, 197, 253, 0.06);
  border-radius: 6px;
  pointer-events: none;
}

.az-close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(147, 197, 253, 0.18);
  border-radius: 50%;
  background: rgba(3, 8, 20, 0.54);
  color: rgba(237, 246, 255, 0.78);
  line-height: 1;
}

.az-modal-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: rgba(216, 183, 106, 0.84);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.az-modal-panel h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  font-family: "Noto Serif SC", serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-shadow: 0 0 22px rgba(147, 197, 253, 0.22);
}

.az-field {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  min-width: 0;
  margin-top: 16px;
  color: rgba(237, 246, 255, 0.82);
  font-size: 13px;
}

.az-field input,
.az-field select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 44px;
  border: 1px solid rgba(147, 197, 253, 0.16);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 16px;
  background:
    linear-gradient(180deg, rgba(10, 22, 44, 0.54), rgba(3, 8, 20, 0.62)),
    rgba(3, 8, 20, 0.36);
  color: var(--star);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(237, 246, 255, 0.035);
  text-align: center;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.az-field select {
  appearance: none;
  -webkit-appearance: none;
  text-align-last: center;
}

.az-field select::-ms-expand {
  display: none;
}

.az-field input[type="date"] {
  display: block;
  appearance: none;
  -webkit-appearance: none;
}

.az-field input:focus,
.az-field select:focus {
  border-color: rgba(216, 183, 106, 0.52);
  box-shadow:
    0 0 0 3px rgba(216, 183, 106, 0.07),
    0 0 22px rgba(147, 197, 253, 0.08),
    inset 0 1px 0 rgba(237, 246, 255, 0.05);
}

.az-field input::placeholder {
  color: rgba(183, 199, 220, 0.38);
}

.az-account-row {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  align-items: center;
  margin: -8px 0 6px;
  color: rgba(183, 199, 220, 0.66);
  font-size: 13px;
}

.az-account-row strong {
  color: rgba(237, 246, 255, 0.88);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.az-link-button {
  border: 0;
  padding: 0;
  color: rgba(216, 183, 106, 0.86);
  background: transparent;
  font-size: 13px;
  text-decoration: none;
}

.az-link-button:hover,
.az-link-button:focus-visible {
  color: #fffaf0;
  outline: none;
}

.az-code-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 124px;
  gap: 10px;
  align-items: end;
}

.az-code-row .az-secondary-button {
  min-height: 44px;
  padding: 10px 12px;
}

.az-profile-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.az-modal-panel form {
  position: relative;
  z-index: 1;
}

.az-form-message {
  position: relative;
  z-index: 1;
  min-height: 20px;
  margin: 14px 0 0;
  color: rgba(183, 199, 220, 0.72);
  font-size: 13px;
}

.az-form-message[data-tone="error"] {
  color: var(--danger);
}

.az-wide-button {
  width: 100%;
  margin-top: 10px;
}

.az-result-panel {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  width: min(100%, 560px);
  max-height: calc(100dvh - 48px);
}

.az-result-capture {
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1;
  min-height: 0;
  border: 1px solid rgba(147, 197, 253, 0.12);
  border-radius: 8px;
  padding: 26px;
  background:
    radial-gradient(circle at 20% 0%, rgba(216, 183, 106, 0.1), transparent 18rem),
    radial-gradient(circle at 80% 20%, rgba(147, 197, 253, 0.1), transparent 20rem),
    rgba(3, 8, 20, 0.38);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(216, 183, 106, 0.46) rgba(3, 8, 20, 0.32);
}

.az-result-capture::-webkit-scrollbar {
  width: 6px;
}

.az-result-capture::-webkit-scrollbar-track {
  background: rgba(3, 8, 20, 0.32);
}

.az-result-capture::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(216, 183, 106, 0.48);
}

.az-result-capture::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(147, 197, 253, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.az-result-index {
  position: relative;
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.az-result-capture h1 {
  position: relative;
  margin-bottom: 12px;
  font-size: 30px;
}

.az-result-summary {
  position: relative;
  margin: 0 0 20px;
  color: rgba(237, 246, 255, 0.86);
  line-height: 1.8;
}

.az-result-grid {
  position: relative;
  display: grid;
  gap: 10px;
}

.az-result-grid article {
  border-top: 1px solid rgba(147, 197, 253, 0.12);
  padding-top: 12px;
}

.az-result-grid span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.az-result-grid p {
  margin: 6px 0 0;
  color: rgba(183, 199, 220, 0.78);
  line-height: 1.7;
}

.az-result-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.az-result-actions button {
  width: 100%;
}

.az-preview-shell {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: max(18px, env(safe-area-inset-top)) 18px max(22px, env(safe-area-inset-bottom));
}

.az-preview-shell[hidden] {
  display: none;
}

.az-preview-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(147, 197, 253, 0.1), transparent 20rem),
    rgba(1, 5, 14, 0.92);
  cursor: pointer;
}

.az-preview-panel {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(86vw, 420px);
  max-height: calc(100dvh - 48px);
}

.az-preview-image {
  display: block;
  width: 100%;
  max-height: calc(100dvh - 112px);
  border: 1px solid rgba(147, 197, 253, 0.18);
  border-radius: 8px;
  object-fit: contain;
  background: rgba(3, 8, 20, 0.78);
  box-shadow:
    0 26px 72px rgba(0, 0, 0, 0.48),
    0 0 28px rgba(216, 183, 106, 0.12);
  user-select: auto;
  -webkit-user-select: auto;
  -webkit-touch-callout: default;
}

.az-preview-close {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(147, 197, 253, 0.16);
  border-radius: 50%;
  color: rgba(237, 246, 255, 0.84);
  background: rgba(3, 8, 20, 0.88);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.az-preview-hint {
  margin: 0;
  color: rgba(183, 199, 220, 0.7);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-align: center;
}

@media (max-width: 760px) {
  .constellation-stage {
    padding: 0 12px;
  }

  .constellation-svg {
    top: 42%;
    width: 112vw;
    max-height: 56dvh;
  }

  .info-panel {
    bottom: max(94px, env(safe-area-inset-bottom));
  }

  .info-panel h1 {
    font-size: 32px;
  }

  .star-label {
    font-size: 21px;
  }

  .focus-stage {
    padding: 0 6px;
  }

  .focus-svg {
    top: 42%;
    width: 138vw;
    max-height: 72dvh;
  }

  .readout {
    bottom: max(82px, env(safe-area-inset-bottom));
  }

  .readout h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .az-modal-shell {
    padding: 14px;
  }

  .az-modal-panel {
    padding: 24px 18px;
  }

  .az-result-panel {
    max-height: calc(100dvh - 28px);
  }

  .az-result-capture {
    padding: 22px 18px;
  }

  .az-code-row {
    grid-template-columns: 1fr;
  }

  .az-profile-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 420px) {
  .constellation-svg {
    width: 126vw;
  }

  .info-panel h1 {
    font-size: 29px;
  }

  .latin-name {
    font-size: 12px;
  }

}
