:root {
  color-scheme: dark;
  --atreya-bg: #030813;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--atreya-bg); }
body {
  overflow-x: hidden;
  font-family: Georgia, 'Times New Roman', serif;
}

.approved-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1672 / 942;
  margin: 0 auto;
  overflow: hidden;
  background: var(--atreya-bg);
}

.approved-master {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  user-select: none;
  -webkit-user-drag: none;
}

.hotspot {
  position: absolute;
  display: block;
  z-index: 5;
  background: transparent;
  outline: none;
  border-radius: 18px;
}
.hotspot:focus-visible {
  outline: 2px solid rgba(255, 210, 92, .95);
  outline-offset: 2px;
}

/* Coordinates are percentages of the exact 1672x942 approved artwork. */
.login-top    { left: 73.72%; top: 1.70%; width: 6.10%; height: 5.05%; }
.register-top { left: 80.47%; top: 1.65%; width: 11.45%; height: 5.15%; }
.begin-cta    { left: 37.29%; top: 44.15%; width: 20.05%; height: 6.65%; }
.account-cta  { left: 58.41%; top: 44.15%; width: 18.56%; height: 6.65%; }
.phone-cta    { left: 77.20%; top: 24.80%; width: 18.50%; height: 56.50%; }

.noscript-links {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 20;
  display: flex;
  gap: .75rem;
}
.noscript-links a { color: #ffd66f; }

/* Keep the exact master frame untouched on large screens. */
@media (min-width: 900px) {
  .approved-stage {
    max-width: 1920px;
  }
}

/* On portrait/mobile the same approved frame remains intact and can be explored horizontally. */
@media (max-width: 899px) and (orientation: portrait) {
  body { overflow-x: auto; }
  .approved-stage {
    width: 1180px;
    min-width: 1180px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}
