:root {
  color-scheme: light;
  --ink: #082c3c;
  --muted: #3d5f69;
  --dim: #6d858d;
  --ground: #f7fbfb;
  --surface: #e9f4f5;
  --surface-light: #dcecef;
  --line: #bfd4d8;
  --accent: #087b83;
  --accent-dark: #044f5a;
  --ocean: #176987;
  --aqua: #65cfc4;
  --shell: 74rem;
  --radius: 0.35rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 20rem;
  margin: 0;
  color: var(--ink);
  background: var(--ground);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.23em;
}

a:hover {
  color: var(--accent);
}

a:focus-visible {
  outline: 0.18rem solid var(--accent);
  outline-offset: 0.25rem;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.6rem 0.85rem;
  color: var(--ground);
  background: var(--ink);
  transform: translateY(-200%);
}

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

.shell {
  width: min(calc(100% - 3rem), var(--shell));
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  display: block;
  width: 1.1rem;
  height: 2.7rem;
  flex: 0 0 auto;
  background: var(--accent);
  -webkit-mask-image: url("assets/logo-phone-no-wall.png");
  -webkit-mask-position: -0.93rem center;
  -webkit-mask-size: 2.7rem 2.7rem;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("assets/logo-phone-no-wall.png");
  mask-position: -0.93rem center;
  mask-size: 2.7rem 2.7rem;
  mask-repeat: no-repeat;
}

.brand-name {
  font-size: 1.08rem;
  font-weight: 720;
  line-height: 1.22;
  letter-spacing: -0.015em;
}

.brand-name span {
  display: block;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

.nav-list,
.site-footer ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 1.7rem;
  list-style: none;
}

.nav-list a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--ink);
}

.hero {
  padding-block: clamp(6rem, 15vw, 11rem) clamp(6rem, 12vw, 9rem);
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 11ch;
  margin-bottom: 2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.35rem, 9vw, 7.6rem);
  font-weight: 500;
}

h1 em {
  color: var(--ocean);
  font-weight: inherit;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 720;
}

h3 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.hero-copy {
  max-width: 38rem;
  margin: 0 0 1.8rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.5vw, 1.35rem);
}

.text-link {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
}

.games-section {
  padding-block: clamp(5rem, 10vw, 8rem);
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.section-heading {
  display: grid;
  margin-bottom: 3rem;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 31rem);
  align-items: end;
  gap: 3rem;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
}

.game-grid {
  display: block;
}

.game-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ground);
}

.game-card-featured {
  display: grid;
  grid-template-columns: minmax(17rem, 0.82fr) minmax(0, 1.18fr);
}

.game-media {
  min-height: 42rem;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #053fa3;
}

.game-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.game-content {
  display: flex;
  padding: clamp(2rem, 6vw, 5rem);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.game-content > p:not(.game-status) {
  margin: 0;
  color: var(--muted);
}

.game-status {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.game-icon {
  width: clamp(5.5rem, 10vw, 7.5rem);
  height: auto;
  margin-bottom: 2rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: 0 0.8rem 2rem rgb(8 44 60 / 14%);
}

.store-links {
  display: flex;
  margin-top: 1.75rem;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.store-links a,
.store-links span {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0.55rem 0.9rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 0.2rem;
  font-size: 0.78rem;
  font-weight: 740;
  text-decoration: none;
}

.store-links span {
  color: var(--dim);
  cursor: not-allowed;
}

.about-section {
  display: grid;
  padding-block: clamp(6rem, 12vw, 10rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.about-copy {
  align-self: end;
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
}

.about-copy p:first-child {
  color: var(--ink);
}

.contact-strip {
  padding-block: clamp(3.5rem, 7vw, 5rem);
  color: var(--ink);
  background: var(--aqua);
}

.contact-strip .eyebrow {
  color: var(--accent-dark);
}

.contact-strip h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0.75rem 1.2rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ground);
  border-radius: 0.2rem;
  color: var(--ground);
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  color: var(--ink);
  background: var(--ground);
}

.page-main {
  border-bottom: 1px solid var(--line);
}

.page-hero {
  padding-block: clamp(5rem, 11vw, 8.5rem);
}

.page-hero h1 {
  max-width: 12ch;
  margin-bottom: 1.75rem;
  font-size: clamp(3.25rem, 8vw, 6.6rem);
}

.page-hero > p:not(.eyebrow):not(.updated-date) {
  max-width: 40rem;
  margin: 0 0 1.8rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.3vw, 1.3rem);
}

.updated-date {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.button-accent {
  border-color: var(--accent);
  color: var(--accent);
}

.button-accent:hover {
  color: var(--ground);
  background: var(--accent);
}

.page-content {
  display: grid;
  padding-block: clamp(5rem, 10vw, 8rem);
  grid-template-columns: minmax(0, 0.75fr) minmax(18rem, 1.25fr);
  gap: clamp(3rem, 9vw, 8rem);
  border-top: 1px solid var(--line);
}

.content-aside h2 {
  max-width: 9ch;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.prose {
  min-width: 0;
}

.prose > :first-child,
.prose section > :first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose a {
  color: var(--ink);
}

.prose a:hover {
  color: var(--accent);
}

.detail-list {
  margin: 2rem 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.detail-list li {
  display: grid;
  padding-block: 1rem;
  grid-template-columns: 3rem 1fr;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.detail-list span {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.notice {
  margin-top: 2.5rem;
  padding: 1.4rem;
  border-left: 0.25rem solid var(--aqua);
  background: var(--surface);
}

.notice + .notice {
  margin-top: 1rem;
}

.notice h3 {
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

.notice p {
  margin: 0;
}

.policy-layout {
  display: grid;
  padding-bottom: clamp(5rem, 11vw, 9rem);
  grid-template-columns: minmax(14rem, 0.7fr) minmax(20rem, 1.3fr);
  gap: clamp(3rem, 10vw, 9rem);
}

.policy-summary {
  align-self: start;
  padding: 1.5rem;
  border-top: 0.25rem solid var(--accent);
  background: var(--surface);
}

.policy-summary p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.policy-body section {
  padding-block: 2.5rem;
  border-top: 1px solid var(--line);
}

.policy-body section:first-child {
  padding-top: 0;
  border-top: 0;
}

.policy-body h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.025em;
}

.site-footer {
  padding-block: 2.7rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer a {
  color: var(--muted);
  font-size: 0.78rem;
}

@media (max-width: 48rem) {
  .shell {
    width: min(calc(100% - 2rem), var(--shell));
  }

  .header-inner {
    min-height: 4.75rem;
  }

  .nav-list {
    gap: 1rem;
  }

  .nav-list li:nth-child(2) {
    display: none;
  }

  .section-heading,
  .about-section,
  .page-content,
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .policy-summary {
    margin-bottom: 1rem;
  }

  .game-card-featured {
    grid-template-columns: minmax(13rem, 0.85fr) minmax(0, 1.15fr);
  }

  .game-media {
    min-height: 34rem;
  }

  .contact-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer ul {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }
}

@media (max-width: 38rem) {
  .game-card-featured {
    grid-template-columns: 1fr;
  }

  .game-media {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .game-cover {
    height: auto;
    aspect-ratio: 4 / 5;
    object-position: center 18%;
  }

  .game-content {
    padding: 2rem;
  }
}

@media (max-width: 24rem) {
  .brand-name {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }
}

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