:root {
  --ink: #101828;
  --muted: #596579;
  --paper: #f5f3ed;
  --paper-deep: #ebe7dc;
  --navy: #07101f;
  --navy-soft: #0c1a30;
  --navy-rule: rgba(255, 255, 255, 0.13);
  --cream: #fffdf7;
  --gold: #e7bb57;
  --gold-bright: #f3cf79;
  --green: #53d5a5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
  border-radius: 8px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--cream);
  color: var(--navy);
  font-weight: 700;
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  display: flex;
  width: min(1180px, calc(100% - 48px));
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  border-bottom: 1px solid var(--navy-rule);
  color: var(--cream);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(243, 207, 121, 0.72);
  border-radius: 50%;
  background: rgba(231, 187, 87, 0.1);
  color: var(--gold-bright);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 253, 247, 0.76);
  font-size: 0.86rem;
  font-weight: 620;
}

nav a {
  transition: color 150ms ease;
}

nav a:hover {
  color: var(--cream);
}

.nav-support {
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--cream);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.72fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
  overflow: hidden;
  padding: 156px max(24px, calc((100vw - 1180px) / 2)) 100px;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.025), transparent 35%),
    var(--navy);
  color: var(--cream);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  right: -180px;
  bottom: -220px;
  width: 660px;
  height: 660px;
  border: 1px solid rgba(231, 187, 87, 0.12);
  box-shadow:
    0 0 0 90px rgba(231, 187, 87, 0.025),
    0 0 0 180px rgba(231, 187, 87, 0.018);
}

.hero-glow-two {
  top: 116px;
  left: 38%;
  width: 220px;
  height: 220px;
  background: rgba(83, 213, 165, 0.035);
  filter: blur(50px);
}

.hero-copy,
.trust-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark {
  color: #98701c;
}

.eyebrow.light {
  color: var(--gold-bright);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 7.3vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero h1 span {
  color: var(--gold-bright);
  font-style: italic;
}

.hero-summary {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(255, 253, 247, 0.68);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.primary-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 6px;
  background: var(--gold-bright);
  color: #171104;
  font-size: 0.88rem;
  font-weight: 780;
  transition:
    transform 150ms ease,
    background 150ms ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: #ffe09a;
}

.hero-actions p {
  margin: 0;
  color: rgba(255, 253, 247, 0.48);
  font-size: 0.77rem;
  font-weight: 620;
  letter-spacing: 0.02em;
}

.hero-text-link {
  color: rgba(255, 253, 247, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(243, 207, 121, 0.56);
  text-underline-offset: 5px;
}

/* Official browser-game pages */
.games-site,
.game-detail {
  min-height: 100vh;
  background: #070d18;
  color: var(--cream);
}

.games-header {
  display: flex;
  width: min(1180px, calc(100% - 48px));
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.games-header nav {
  display: flex;
  gap: 24px;
}

.games-index-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0 78px;
}

.games-index-hero h1,
.game-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.games-index-hero h1 {
  max-width: 850px;
  font-size: clamp(3.6rem, 8vw, 7.7rem);
}

.games-index-hero h1 span {
  color: var(--gold-bright);
  font-style: italic;
}

.games-index-hero > p:last-child {
  max-width: 700px;
  margin: 30px 0 0;
  color: rgba(255, 253, 247, 0.66);
  font-size: 1.08rem;
}

.edition-grid {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 0 auto;
  padding-bottom: 120px;
}

.edition-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: #0d1726;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.edition-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.edition-card > div {
  padding: 32px;
}

.edition-eyebrow {
  margin: 0 0 8px;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.edition-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 500;
}

.edition-card h2 + p {
  min-height: 84px;
  color: rgba(255, 253, 247, 0.64);
}

.edition-notice {
  min-height: 44px;
  color: rgba(243, 207, 121, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
}

.games-footer {
  display: flex;
  justify-content: space-between;
  padding: 34px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 253, 247, 0.55);
  font-size: 0.8rem;
}

.games-footer a {
  color: var(--gold-bright);
}

.game-hero {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(46px, 7vw, 100px);
  align-items: center;
  margin: 0 auto;
  padding: 88px 0 92px;
}

.game-hero h1 {
  font-size: clamp(4rem, 7vw, 7.2rem);
}

.game-tagline {
  margin: 24px 0;
  color: rgba(255, 253, 247, 0.72);
  font-size: 1.18rem;
  line-height: 1.6;
}

.game-cover {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow: 0 35px 110px rgba(0, 0, 0, 0.48);
}

.disclosure-banner {
  padding: 18px 20px;
  border: 1px solid rgba(243, 207, 121, 0.32);
  border-radius: 14px;
  background: rgba(231, 187, 87, 0.08);
  color: rgba(255, 253, 247, 0.78);
  font-size: 0.86rem;
  line-height: 1.6;
}

.disclosure-safe {
  border-color: rgba(83, 213, 165, 0.32);
  background: rgba(83, 213, 165, 0.08);
}

.game-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.secondary-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 760;
}

.game-facts {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  border: solid rgba(255, 255, 255, 0.12);
  border-width: 1px 0;
}

.game-facts article {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.game-facts article:last-child {
  border-right: 0;
}

.game-facts strong {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  font-weight: 500;
}

.game-facts span {
  color: rgba(255, 253, 247, 0.55);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.game-video-section {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  grid-template-columns: minmax(0, 0.7fr) minmax(480px, 1.3fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
  margin: 0 auto;
  padding: 120px 0;
}

.game-video-section h2,
.screenshot-section h2,
.review-notes h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.2vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.game-video-section p:last-child {
  color: rgba(255, 253, 247, 0.62);
}

.game-video-section video {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: #02050a;
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.38);
}

.screenshot-section {
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  background: #f2efe6;
  color: var(--ink);
  scroll-margin-top: 20px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.screenshot-grid img {
  display: block;
  width: 100%;
  border: 1px solid #d7d0c0;
  border-radius: 18px;
  background: white;
  box-shadow: 0 24px 52px rgba(24, 26, 32, 0.12);
}

.screenshot-grid img:first-child {
  grid-column: 1 / -1;
}

.screenshot-grid-mixed img:nth-child(n + 5) {
  width: min(100%, 430px);
  justify-self: center;
}

.review-notes {
  display: grid;
  width: min(1000px, calc(100% - 48px));
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 68px;
  margin: 0 auto;
  padding: 110px 0;
}

.review-notes ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-notes li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 253, 247, 0.66);
}

.brand-mark-arcade {
  color: #6cf4e0;
  border-color: rgba(108, 244, 224, 0.65);
}

@media (max-width: 880px) {
  .edition-grid,
  .game-hero,
  .game-video-section,
  .review-notes {
    grid-template-columns: 1fr;
  }

  .game-hero {
    padding-top: 60px;
  }

  .game-cover {
    grid-row: 1;
  }

  .game-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-facts article:nth-child(2) {
    border-right: 0;
  }

  .game-facts article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 560px) {
  .games-header,
  .games-index-hero,
  .edition-grid,
  .game-hero,
  .game-facts,
  .game-video-section,
  .review-notes {
    width: calc(100% - 36px);
  }

  .games-header nav a:first-child:not(:last-child) {
    display: none;
  }

  .games-index-hero {
    padding: 76px 0 54px;
  }

  .edition-card > div {
    padding: 24px;
  }

  .edition-card h2 + p,
  .edition-notice {
    min-height: auto;
  }

  .game-hero {
    gap: 34px;
    padding: 42px 0 62px;
  }

  .game-hero h1 {
    font-size: 3.6rem;
  }

  .game-facts article {
    padding: 22px 16px;
  }

  .game-video-section,
  .review-notes {
    padding: 78px 0;
  }

  .screenshot-section {
    padding: 74px 18px;
  }

  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-grid img:first-child {
    grid-column: auto;
  }

  .games-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

.trust-panel {
  padding: 36px;
  border: 1px solid var(--navy-rule);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.trust-orbit {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  margin-bottom: 38px;
  border: 1px dashed rgba(83, 213, 165, 0.46);
  border-radius: 50%;
}

.trust-token {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(83, 213, 165, 0.5);
  border-radius: 50%;
  background: rgba(83, 213, 165, 0.09);
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
}

.trust-label {
  margin: 0 0 5px;
  color: rgba(255, 253, 247, 0.54);
  font-size: 0.73rem;
  font-weight: 730;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-value {
  margin: 0;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
  line-height: 1.1;
}

.trust-rule {
  height: 1px;
  margin: 28px 0;
  background: var(--navy-rule);
}

.trust-panel dl {
  display: grid;
  gap: 13px;
  margin: 0;
}

.trust-panel dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.trust-panel dt {
  color: rgba(255, 253, 247, 0.48);
  font-size: 0.83rem;
}

.trust-panel dd {
  margin: 0;
  color: var(--green);
  font-size: 0.83rem;
  font-weight: 730;
}

.privacy-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #dcd7ca;
  border-bottom: 1px solid #dcd7ca;
}

.privacy-overview article {
  min-height: 270px;
  padding: 55px clamp(28px, 5vw, 72px);
  background: var(--paper);
}

.card-number {
  margin: 0 0 38px;
  color: #a17d2e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
}

.privacy-overview h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 520;
  letter-spacing: -0.025em;
}

.privacy-overview article > p:last-child {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.policy-shell {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(64px, 10vw, 150px);
  margin: 0 auto;
  padding: 130px 0;
  scroll-margin-top: 30px;
}

.section-intro {
  align-self: start;
  position: sticky;
  top: 40px;
}

.section-intro h2,
.support-section h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.section-intro > p:not(.eyebrow):not(.effective-date) {
  margin: 0;
  color: var(--muted);
}

.effective-date {
  display: inline-block;
  margin: 26px 0 0;
  padding: 7px 11px;
  border: 1px solid #d4cdbd;
  border-radius: 999px;
  color: #766a55;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.policy-content {
  border-top: 1px solid #cbc4b5;
}

.policy-content article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 26px;
  padding: 34px 0 38px;
  border-bottom: 1px solid #cbc4b5;
}

.policy-index {
  margin: 3px 0 0;
  color: #9c7d39;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.76rem;
}

.policy-content h3 {
  margin: 0 0 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 560;
  letter-spacing: -0.02em;
}

.policy-content article div p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
}

.coins-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: center;
  overflow: hidden;
  padding: 110px max(24px, calc((100vw - 1080px) / 2));
  background: var(--navy-soft);
  color: var(--cream);
  scroll-margin-top: 20px;
}

.coins-section h2 {
  max-width: 650px;
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5.3vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.coins-section > div:last-child > p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 253, 247, 0.65);
  font-size: 1.03rem;
}

.coin-art {
  position: relative;
  min-height: 260px;
}

.coin {
  position: absolute;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  border: 3px dotted rgba(11, 22, 39, 0.7);
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    inset 0 0 0 10px rgba(255, 244, 210, 0.46),
    inset 0 0 0 12px rgba(33, 25, 8, 0.32),
    0 30px 45px rgba(0, 0, 0, 0.24);
  color: #4b3607;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.coin-back {
  top: 18px;
  left: 8px;
  transform: rotate(-16deg);
  opacity: 0.42;
}

.coin-front {
  top: 55px;
  left: 72px;
  transform: rotate(10deg);
}

.support-section {
  display: grid;
  width: min(1080px, calc(100% - 48px));
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(56px, 10vw, 150px);
  margin: 0 auto;
  padding: 130px 0;
  scroll-margin-top: 20px;
}

.support-section > div > p:last-child {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
}

.support-section ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid #cbc4b5;
  list-style: none;
}

.support-section li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #cbc4b5;
}

.support-section li span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #bca767;
  border-radius: 50%;
  color: #81641e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
}

.support-section li p {
  margin: 0;
  color: #3f4a5b;
}

.support-section li a {
  color: #725514;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--navy-rule);
  background: var(--navy);
  color: var(--cream);
}

.footer-brand {
  color: var(--cream);
}

footer p {
  margin: 0;
  color: rgba(255, 253, 247, 0.5);
  font-size: 0.76rem;
}

@media (max-width: 880px) {
  nav a:not(.nav-support) {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 150px;
  }

  .trust-panel {
    display: grid;
    grid-template-columns: 84px 1fr;
    column-gap: 26px;
  }

  .trust-orbit {
    grid-row: 1 / 4;
    margin: 0;
  }

  .trust-rule,
  .trust-panel dl {
    grid-column: 1 / -1;
  }

  .privacy-overview {
    grid-template-columns: 1fr;
  }

  .privacy-overview article {
    min-height: auto;
  }

  .policy-shell,
  .coins-section,
  .support-section {
    grid-template-columns: 1fr;
  }

  .section-intro {
    position: static;
  }

  .coin-art {
    min-height: 215px;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 36px);
    padding: 20px 0;
  }

  .brand > span:last-child {
    font-size: 0.86rem;
  }

  .nav-support {
    padding: 7px 13px;
  }

  .hero {
    gap: 52px;
    padding: 132px 18px 70px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 4.8rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .trust-panel {
    display: block;
    padding: 28px;
  }

  .trust-orbit {
    margin-bottom: 28px;
  }

  .privacy-overview article {
    padding: 42px 24px;
  }

  .card-number {
    margin-bottom: 22px;
  }

  .policy-shell,
  .support-section {
    width: calc(100% - 36px);
    padding: 90px 0;
  }

  .policy-content article {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .coins-section {
    padding: 85px 18px;
  }

  .coin {
    width: 158px;
    height: 158px;
  }

  .coin-front {
    left: 58px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 18px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
