:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5c6677;
  --line: #d9e0ea;
  --paper: #ffffff;
  --surface: #f6f8fb;
  --night: #090d14;
  --night-2: #111827;
  --panel: #151b26;
  --teal: #18f3df;
  --teal-soft: #11b9b2;
  --coral: #ff5f6d;
  --gold: #f5b94e;
  --blue: #4f7cff;
  --white-soft: #f8fbff;
  --shadow: 0 22px 60px rgba(17, 24, 39, 0.12);
  --glow: 0 0 42px rgba(24, 243, 223, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

.page-home {
  color: var(--white-soft);
  background:
    radial-gradient(circle at 72% 10%, rgba(24, 243, 223, 0.18), transparent 32rem),
    radial-gradient(circle at 12% 26%, rgba(255, 95, 109, 0.14), transparent 25rem),
    linear-gradient(180deg, #080b12 0%, #101722 48%, #f7f9fc 48%, #ffffff 100%);
}

.page-interior {
  background:
    radial-gradient(circle at 72% 0%, rgba(24, 243, 223, 0.16), transparent 28rem),
    radial-gradient(circle at 12% 16%, rgba(255, 95, 109, 0.1), transparent 22rem),
    linear-gradient(180deg, #080b12 0%, #101722 22rem, #ffffff 22rem, #ffffff 100%);
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(217, 224, 234, 0.8);
  backdrop-filter: blur(18px);
}

.page-home .site-header,
.page-interior .site-header {
  background: rgba(8, 11, 18, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
}

.page-home .brand,
.page-interior .brand {
  color: #ffffff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.page-home .site-nav a,
.page-interior .site-nav a {
  color: #aeb8c8;
}

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

.page-home .site-nav a:hover,
.page-home .site-nav a[aria-current="page"],
.page-interior .site-nav a:hover,
.page-interior .site-nav a[aria-current="page"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
}

.site-nav .nav-cta {
  color: #ffffff;
  background: var(--night);
}

.page-home .site-nav .nav-cta,
.page-interior .site-nav .nav-cta {
  color: #071016;
  background: var(--teal);
  box-shadow: 0 0 24px rgba(24, 243, 223, 0.28);
}

.site-nav .nav-cta:hover {
  color: #ffffff;
  background: #242a36;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.page-home .nav-toggle,
.page-interior .nav-toggle {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.page-home .nav-toggle span:not(.sr-only),
.page-interior .nav-toggle span:not(.sr-only) {
  background: #ffffff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  min-height: clamp(500px, calc(100svh - 76px), 660px);
  padding: clamp(26px, 4vw, 48px) clamp(18px, 5vw, 80px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 11, 18, 0.96) 0%, rgba(8, 11, 18, 0.74) 42%, rgba(8, 11, 18, 0.4) 100%),
    radial-gradient(circle at 78% 38%, rgba(24, 243, 223, 0.32), transparent 25rem),
    radial-gradient(circle at 94% 72%, rgba(255, 95, 109, 0.24), transparent 20rem),
    linear-gradient(145deg, #080b12 0%, #111827 54%, #1a2333 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.hero::after {
  right: -8%;
  bottom: -18%;
  width: 56vw;
  max-width: 740px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 243, 223, 0.18), transparent 62%);
  filter: blur(4px);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero-credit {
  margin: 14px 0 0;
  color: #9fb0c5;
  font-size: clamp(0.98rem, 1.6vw, 1.18rem);
  font-style: italic;
  font-weight: 500;
}

.hero-lede {
  max-width: 620px;
  margin: 22px 0 0;
  color: #c2cad8;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-interior .eyebrow {
  color: var(--teal-soft);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.app-store-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 190px;
  min-height: 56px;
  padding: 10px 22px;
  color: #ffffff;
  background: #080a0f;
  border: 1px solid #080a0f;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(8, 10, 15, 0.2);
}

.page-home .app-store-button {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    #05070c;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.app-store-button small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  opacity: .82;
}

.app-store-button.light {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--ink);
}

.page-home .app-store-button.light {
  color: #071016;
}

.apple-mark {
  width: 21px;
  height: 25px;
  background: currentColor;
  clip-path: path("M17.5 13.9c0-3.3 2.7-4.9 2.8-5-1.6-2.3-4-2.6-4.8-2.6-2-.2-3.9 1.2-4.9 1.2-1.1 0-2.6-1.2-4.3-1.1-2.2 0-4.3 1.3-5.4 3.3-2.3 4-.6 9.8 1.6 13 1.1 1.6 2.4 3.3 4.1 3.2 1.6-.1 2.2-1 4.2-1s2.5 1 4.3 1c1.8 0 2.9-1.6 4-3.1 1.2-1.8 1.7-3.5 1.7-3.6 0-.1-3.3-1.3-3.3-5.3zM14.2 4.2c.9-1.1 1.5-2.6 1.4-4.2-1.4.1-3 1-3.9 2.1-.9 1-1.6 2.6-1.4 4.1 1.5.1 3-0.8 3.9-2z");
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 28px;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.page-home .hero-stats div {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.15rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.88rem;
}

.page-home .hero-stats span {
  color: #aeb8c8;
}

@media (min-width: 921px) {
  .page-home .hero-art {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: min(78vw, 1120px);
    height: 100%;
    opacity: 0.92;
    border-radius: 0;
    box-shadow: none;
  }

  .page-home .hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.02) brightness(0.98);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.5) 18%, #000000 38%);
  }

  .page-home .hero-stats {
    position: absolute;
    left: calc(100% + clamp(24px, 4vw, 64px));
    bottom: 24px;
    z-index: 2;
    width: min(50vw, 680px);
    margin: 0;
  }

  .page-home .hero-stats div {
    padding: 14px 16px;
  }
}

.hero-art {
  min-width: 0;
}

.hero-copy,
.section-heading,
.cta-band > div {
  min-width: 0;
}

.hero-copy,
.hero-art {
  position: relative;
}

.hero-copy {
  z-index: 3;
}

.hero-art {
  z-index: 1;
}

.hero-art-photo {
  overflow: hidden;
  border-radius: 8px;
}

.hero-art-photo::before,
.hero-art-photo::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.hero-art-photo::before {
  background:
    linear-gradient(90deg, rgba(8, 11, 18, 0.96) 0%, rgba(8, 11, 18, 0.28) 34%, rgba(8, 11, 18, 0.04) 78%),
    radial-gradient(circle at 40% 48%, rgba(24, 243, 223, 0.14), transparent 24rem),
    radial-gradient(circle at 82% 76%, rgba(255, 95, 109, 0.1), transparent 17rem);
  mix-blend-mode: multiply;
}

.hero-art-photo::after {
  background:
    linear-gradient(180deg, rgba(8, 11, 18, 0.04), rgba(8, 11, 18, 0.28)),
    linear-gradient(90deg, rgba(8, 11, 18, 0.92), transparent 35%),
    linear-gradient(270deg, rgba(8, 11, 18, 0.18), transparent 24%);
}

.hero-art img {
  width: min(100%, 900px);
  margin-inline: auto;
  filter:
    drop-shadow(0 34px 52px rgba(0, 0, 0, 0.44))
    drop-shadow(0 0 34px rgba(24, 243, 223, 0.2));
}

.feature-band,
.rules-band,
.screenshots,
.policy {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 80px);
}

.feature-band {
  background:
    radial-gradient(circle at 12% 24%, rgba(24, 243, 223, 0.13), transparent 22rem),
    radial-gradient(circle at 88% 68%, rgba(255, 95, 109, 0.1), transparent 24rem),
    radial-gradient(circle at 50% 100%, rgba(245, 185, 78, 0.08), transparent 22rem),
    linear-gradient(180deg, #101722 0%, #151e2c 52%, #131b28 100%);
  color: #ffffff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.rules-copy h2,
.cta-band h2,
.policy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.04rem;
}

.page-home .section-heading p:not(.eyebrow) {
  color: #6c7686;
}

.feature-band .section-heading p:not(.eyebrow) {
  color: #aab5c5;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-item {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.feature-item h3 {
  margin: 18px 0 8px;
  font-size: 1.25rem;
}

.feature-item p {
  margin: 0;
  color: #c3ccd9;
}

.benefit-strip {
  padding: clamp(22px, 3.2vw, 34px) clamp(18px, 5vw, 80px);
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 50%, rgba(24, 243, 223, 0.12), transparent 18rem),
    linear-gradient(180deg, #131b28 0%, #101722 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.benefit-list p {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  margin: 0;
  color: #dce6f4;
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  font-weight: 800;
  line-height: 1.3;
}

.benefit-list p::before {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 22px rgba(24, 243, 223, 0.42);
  content: "";
}

.benefit-list p:nth-child(2)::before {
  background: var(--gold);
  box-shadow: 0 0 22px rgba(245, 185, 78, 0.34);
}

.benefit-list p:nth-child(3)::before {
  background: var(--coral);
  box-shadow: 0 0 22px rgba(255, 95, 109, 0.34);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: #081016;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  font-weight: 900;
  box-shadow: var(--glow);
}

.rules-band {
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 28%, rgba(245, 185, 78, 0.12), transparent 24rem),
    radial-gradient(circle at 18% 70%, rgba(24, 243, 223, 0.14), transparent 26rem),
    linear-gradient(180deg, #131b28 0%, #0b1019 100%);
}

.rules-copy {
  max-width: 820px;
  margin-bottom: 34px;
}

.rules-copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 18px 0 0;
  color: #b9c5d6;
  font-size: 1.08rem;
}

.rules-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.rules-steps {
  display: grid;
  gap: 18px;
}

.rule-step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 8px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.rule-step .feature-icon {
  grid-row: 1 / span 2;
}

.rule-step h3 {
  grid-column: 2;
  margin: 0;
  font-size: 1.18rem;
}

.rule-step p {
  grid-column: 2;
  margin: 0;
  color: #c3ccd9;
}

.rules-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rules-gallery figure {
  margin: 0;
}

.rules-gallery figure:first-child {
  grid-column: 1 / -1;
}

.rules-gallery img {
  width: 100%;
  aspect-ratio: 788 / 360;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #101722;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

.rules-gallery figcaption {
  margin-top: 10px;
  color: #aeb8c8;
  font-weight: 800;
  text-align: center;
}

.screenshots {
  background:
    radial-gradient(circle at 18% 30%, rgba(24, 243, 223, 0.16), transparent 24rem),
    radial-gradient(circle at 84% 74%, rgba(255, 95, 109, 0.12), transparent 22rem),
    radial-gradient(circle at 56% 10%, rgba(245, 185, 78, 0.1), transparent 20rem),
    linear-gradient(180deg, #0b1019 0%, #121b29 48%, #0e1520 100%);
  color: #ffffff;
}

.screenshots .section-heading {
  text-align: left;
}

.screenshots .section-heading p:not(.eyebrow) {
  color: #b9c5d6;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.screenshot-grid figure {
  margin: 0;
}

.screenshot-grid img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #111827;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.3),
    0 0 0 10px rgba(255, 255, 255, 0.045);
}

.screenshot-grid figcaption {
  margin-top: 14px;
  color: #c3ccd9;
  font-weight: 700;
  text-align: center;
}

.screenshots-landscape .screenshot-grid img {
  aspect-ratio: 788 / 360;
  object-fit: cover;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(44px, 7vw, 78px) clamp(18px, 5vw, 80px);
  color: #ffffff;
  background:
    radial-gradient(circle at 72% 42%, rgba(24, 243, 223, 0.28), transparent 22rem),
    radial-gradient(circle at 12% 80%, rgba(255, 95, 109, 0.24), transparent 20rem),
    linear-gradient(135deg, #080b12, #111827 62%, #1c2635);
}

.page-hero {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 80px);
  background:
    radial-gradient(circle at 82% 14%, rgba(24, 243, 223, 0.18), transparent 22rem),
    radial-gradient(circle at 16% 72%, rgba(255, 95, 109, 0.12), transparent 18rem),
    linear-gradient(135deg, #080b12 0%, #101722 58%, #151f2d 100%);
  color: #ffffff;
}

.page-hero.compact {
  min-height: auto;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #c2cad8;
  font-size: 1.15rem;
}

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

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.check-list li {
  padding-left: 32px;
  background: linear-gradient(var(--teal), var(--teal)) 0 0.72em / 16px 3px no-repeat;
  font-weight: 700;
}

.support-note {
  padding: 18px;
  border-left: 4px solid var(--teal-soft);
  background: #ffffff;
}

.policy {
  max-width: 940px;
  margin: 0 auto;
  padding-inline: clamp(18px, 5vw, 80px);
  padding-block: clamp(34px, 5vw, 56px);
  background: #ffffff;
  color: var(--ink);
}

.policy section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

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

.policy h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
}

.policy-callout {
  padding: 26px !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px;
  background: var(--surface);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 80px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aeb8c8;
  background:
    radial-gradient(circle at 84% 0%, rgba(24, 243, 223, 0.1), transparent 18rem),
    linear-gradient(180deg, #0b1019 0%, #080b12 100%);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  color: #dce6f4;
  font-weight: 700;
}

.site-footer a:hover {
  color: #ffffff;
}

@media (max-width: 920px) {
  .hero,
  .rules-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: clamp(500px, calc(100svh - 76px), 640px);
  }

  .hero-copy {
    order: 1;
  }

  .hero-art {
    order: 2;
  }

  .page-home .hero-art {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    opacity: 0.58;
    border-radius: 0;
    box-shadow: none;
  }

  .page-home .hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: none;
  }

  .feature-grid,
  .benefit-list,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-grid {
    max-width: 420px;
    margin-inline: auto;
  }

  .screenshots-landscape .screenshot-grid,
  .rules-gallery {
    max-width: 760px;
    margin-inline: auto;
  }

  .cta-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .page-home .site-nav,
  .page-interior .site-nav {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(10, 14, 22, 0.96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 8px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.55rem, 11.5vw, 3.5rem);
  }

  .hero {
    min-height: auto;
    padding-block: clamp(30px, 8vw, 46px);
  }

  .page-home .hero-art {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    border-radius: 0;
  }

  .page-home .hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: none;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .hero-stats div {
    min-height: 76px;
    padding: 10px 8px;
  }

  .hero-stats strong {
    font-size: 0.96rem;
  }

  .hero-stats span {
    font-size: 0.72rem;
  }

  .rules-gallery {
    grid-template-columns: 1fr;
  }

  .rules-gallery figure:first-child {
    grid-column: auto;
  }

  .app-store-button {
    width: 100%;
    justify-content: center;
  }
}
