@font-face {
  font-family: "Russo One";
  src: url("assets/russo-one-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --emerald: #063a29;
  --emerald-dark: #003c2c;
  --ivory: #f8f5ef;
  --paper: #fffdf8;
  --line: #e4ded3;
  --gold: #b58a3a;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: #101819;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

.approved-landing {
  position: relative;
  width: min(100%, 1024px);
  margin-inline: auto;
  background: var(--paper);
}

.approved-landing__render {
  width: 100%;
  height: auto;
  image-rendering: auto;
  user-select: none;
}

.approved-landing__hotspots {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.hotspot {
  position: absolute;
  display: block;
  border-radius: 8px;
  pointer-events: auto;
}

.hotspot:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.hotspot--home {
  top: 1.1%;
  left: 2.7%;
  width: 28.5%;
  height: 5.1%;
}

.hotspot--features {
  top: 1.45%;
  left: 39.2%;
  width: 9.5%;
  height: 4.2%;
}

.hotspot--security {
  top: 1.45%;
  left: 49.2%;
  width: 9.7%;
  height: 4.2%;
}

.hotspot--faqs {
  top: 1.45%;
  left: 59.4%;
  width: 7%;
  height: 4.2%;
}

.hotspot--privacy {
  top: 45.2%;
  left: 5.4%;
  width: 24%;
  height: 2.35%;
}

.removed-contact {
  position: absolute;
  z-index: 3;
  top: 2.05%;
  left: 66.9%;
  width: 9.2%;
  height: 3.15%;
  background: #faf8f3;
}

.official-play-badge {
  position: absolute;
  z-index: 4;
  display: block;
  line-height: 0;
}

.official-play-badge::before {
  position: absolute;
  z-index: -1;
  background: #faf8f3;
  content: "";
}

.official-play-badge img {
  width: 100%;
  height: auto;
}

.official-play-badge:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -10px;
}

.official-play-badge--top {
  top: 0.6%;
  left: 76.7%;
  width: 22%;
}

.official-play-badge--top::before {
  inset: 14% 3% 9% 4%;
}

.official-play-badge--hero {
  top: 38.55%;
  left: 3.8%;
  width: 24%;
}

.official-play-badge--hero::before {
  inset: 13% 3% 9% 4%;
}

.render-anchor {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
}

.render-anchor--features {
  top: 48.8%;
}

.render-anchor--security {
  top: 82.5%;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  border-radius: 8px;
  background: #101819;
  color: #fff;
  text-decoration: none;
  transform: translateY(-170%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-footer {
  display: grid;
  width: min(100% - 40px, 1024px);
  margin: 0 auto;
  padding: 38px 20px 42px;
  place-items: center;
  border-top: 1px solid rgba(181, 138, 58, 0.32);
  background: var(--ivory);
  text-align: center;
}

.site-footer__brand,
.site-footer__copyright {
  margin: 0;
}

.site-footer__brand {
  color: var(--emerald);
  font-family: "Russo One", sans-serif;
  font-size: 1.45rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  margin: 12px 0 10px;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  color: var(--gold);
}

.site-footer__links a {
  color: #263330;
  font-weight: 650;
  text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--emerald);
  text-decoration: underline;
}

.site-footer__copyright {
  color: #626965;
  font-size: 0.9rem;
}

@media (max-width: 540px) {
  .site-footer {
    width: min(100% - 28px, 1024px);
    padding: 30px 8px 34px;
  }

  .site-footer__links {
    max-width: 300px;
    font-size: 0.92rem;
  }
}

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