:root {
  color-scheme: dark;
  --ink: #050a14;
  --ink-soft: #0b1627;
  --ink-raised: #101f33;
  --gold: #d7ad55;
  --gold-light: #f3d78f;
  --emerald: #19c58b;
  --emerald-dark: #087a5c;
  --ivory: #f7f2e7;
  --muted: #a9b4c3;
  --line: rgba(215, 173, 85, .22);
  --safe-line: rgba(25, 197, 139, .24);
  --danger: #e85d6a;
  --header-height: 40px;
  --hero-height: 232px;
  --nav-height: 50px;
  --shell-width: 375px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #d7dbe1;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ivory);
  background: #d7dbe1;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.app-shell {
  position: relative;
  width: min(100%, var(--shell-width));
  max-width: 375px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 5%, rgba(25, 197, 139, .09), transparent 26%),
    linear-gradient(180deg, #07101c 0%, var(--ink) 45%, #06111e 100%);
  box-shadow: 0 0 38px rgba(0, 0, 0, .26);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 64px;
  padding: 9px 12px;
  background: rgba(5, 10, 20, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--gold-light);
  font-size: 1.35rem;
  font-weight: 1000;
  letter-spacing: -.045em;
  text-shadow: 0 0 18px rgba(215, 173, 85, .24);
}

.brand span {
  color: var(--ivory);
}

.auth-actions {
  display: flex;
  gap: 7px;
  margin-left: auto;
}

.header-action,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .02em;
  text-align: center;
}

.header-action {
  min-width: 82px;
  padding: 8px 10px;
}

.header-login {
  color: var(--emerald);
  background: rgba(25, 197, 139, .06);
  border-color: rgba(25, 197, 139, .7);
}

.header-register {
  color: #20180a;
  background: linear-gradient(180deg, #f0d17d, #c49438);
  border-color: #f4dc9b;
  box-shadow: 0 8px 24px rgba(215, 173, 85, .18);
}

.hero {
  position: relative;
  min-height: var(--hero-height);
  display: flex;
  align-items: end;
  isolation: isolate;
  background: #07101d;
}

.hero-media {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(3, 8, 15, .08) 0%, rgba(3, 8, 15, .56) 50%, #07101c 96%),
    linear-gradient(90deg, rgba(4, 11, 21, .78), transparent 74%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -120px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  content: "";
  background: rgba(25, 197, 139, .12);
  border-radius: 50%;
  filter: blur(70px);
}

.hero-copy {
  width: 100%;
  padding: 28px 16px 31px;
}

.eyebrow {
  margin: 0;
  color: var(--gold-light);
  font-size: .66rem;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.article-header h1 {
  margin: 7px 0 0;
  font-size: clamp(2rem, 9vw, 2.75rem);
  line-height: 1.03;
  letter-spacing: -.045em;
}

.hero-lead {
  max-width: 410px;
  margin: 13px 0 0;
  color: #d5dde7;
  font-size: .92rem;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 9px;
  margin-top: 19px;
}

.button {
  width: 100%;
  padding: 10px 12px;
}

.button-gold {
  color: #211807;
  background: linear-gradient(180deg, #f1d37f, #c59133);
  border-color: #f6dfa0;
  box-shadow: 0 9px 28px rgba(215, 173, 85, .2);
}

.button-emerald {
  color: #eafff8;
  background: linear-gradient(180deg, #1bbd88, #087455);
  border-color: #39d5a2;
}

.button-outline {
  color: var(--emerald);
  background: rgba(5, 10, 20, .62);
  border-color: rgba(25, 197, 139, .72);
}

.button:active,
.header-action:active,
.game-card:active,
.step-card:active {
  transform: translateY(1px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  background: #07111f;
  border-block: 1px solid var(--safe-line);
}

.trust-card {
  min-width: 0;
  min-height: 102px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 5px;
  background: linear-gradient(145deg, #0e2032, #091522);
  border: 1px solid rgba(25, 197, 139, .2);
  border-radius: 12px;
  text-align: center;
}

.trust-icon,
.benefit-icon,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-icon {
  width: 32px;
  height: 32px;
  color: var(--emerald);
  background: rgba(25, 197, 139, .08);
  border: 1px solid rgba(25, 197, 139, .38);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 1000;
}

.trust-card strong {
  margin-top: 7px;
  color: #e8fff7;
  font-size: .66rem;
}

.trust-card span:last-child {
  margin-top: 3px;
  color: var(--muted);
  font-size: .54rem;
  line-height: 1.3;
}

.section {
  padding: 27px 13px;
  border-bottom: 1px solid var(--line);
}

.section-dark {
  background:
    radial-gradient(circle at 100% 0, rgba(215, 173, 85, .08), transparent 34%),
    linear-gradient(180deg, #081321, #06101b);
}

.section-emerald {
  background:
    radial-gradient(circle at 0 20%, rgba(25, 197, 139, .1), transparent 36%),
    #07131f;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
}

.section-heading h2 {
  margin: 4px 0 0;
  font-size: 1.36rem;
  line-height: 1.13;
  letter-spacing: -.025em;
}

.section-heading > span {
  color: var(--emerald);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.step-card {
  min-width: 0;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  padding: 12px 9px;
  background: linear-gradient(155deg, #102238, #091522);
  border: 1px solid rgba(215, 173, 85, .19);
  border-radius: 13px;
}

.step-number {
  width: 34px;
  height: 34px;
  color: var(--emerald);
  background: rgba(25, 197, 139, .07);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 1000;
}

.step-card h3 {
  margin: 10px 0 0;
  font-size: .8rem;
  line-height: 1.22;
}

.step-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .62rem;
  line-height: 1.45;
}

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

.game-card {
  position: relative;
  min-width: 0;
  min-height: 190px;
  overflow: hidden;
  background: #0d1927;
  border: 1px solid rgba(215, 173, 85, .25);
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .19);
}

.game-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.game-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(5, 10, 20, .94) 78%);
}

.game-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 13px 11px;
}

.game-copy strong {
  display: block;
  color: var(--gold-light);
  font-size: .91rem;
}

.game-copy span {
  display: -webkit-box;
  margin-top: 3px;
  overflow: hidden;
  color: #c7d0dd;
  font-size: .61rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.benefits {
  display: grid;
  gap: 9px;
}

.benefit-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 13px;
  background: linear-gradient(145deg, #0d2031, #091521);
  border: 1px solid var(--safe-line);
  border-radius: 13px;
}

.benefit-icon {
  width: 46px;
  height: 46px;
  color: var(--emerald);
  background: rgba(25, 197, 139, .08);
  border: 1px solid rgba(25, 197, 139, .34);
  border-radius: 13px;
  font-size: 1.2rem;
}

.benefit-card h3 {
  margin: 0;
  font-size: .84rem;
}

.benefit-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .66rem;
}

.final-cta {
  margin: 13px;
  padding: 21px 16px;
  background:
    radial-gradient(circle at 100% 0, rgba(25, 197, 139, .18), transparent 45%),
    linear-gradient(145deg, #0b2530, #0a1727);
  border: 1px solid rgba(25, 197, 139, .5);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}

.final-cta h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.1;
}

.final-cta p {
  margin: 7px 0 15px;
  color: #cbd9e1;
  font-size: .78rem;
}

.responsible-line {
  margin: 10px 0 0 !important;
  color: var(--emerald) !important;
  font-size: .65rem !important;
  font-weight: 850;
  text-align: center;
}

.resource-grid {
  display: grid;
  gap: 9px;
}

.resource-card,
.guide-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-height: 88px;
  padding: 10px;
  background: linear-gradient(145deg, #101f30, #091522);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.resource-card::before,
.guide-thumb {
  width: 62px;
  height: 62px;
  display: block;
  content: "";
  background:
    linear-gradient(145deg, rgba(215, 173, 85, .2), rgba(25, 197, 139, .08)),
    url("/static/mubet/mubet-article-default.webp") center / cover;
  border-radius: 10px;
}

.resource-card strong,
.guide-card h2 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: .78rem;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.resource-card span,
.guide-card p,
.guide-card time {
  color: var(--muted);
  font-size: .62rem;
}

.site-footer {
  padding: 24px 16px calc(var(--nav-height) + 28px);
  color: var(--muted);
  background: #050b13;
  border-top: 1px solid var(--line);
  font-size: .66rem;
  text-align: center;
}

.site-footer strong {
  color: var(--gold-light);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px 14px;
  margin-bottom: 13px;
}

.footer-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  color: #d0d7e1;
}

.bottom-nav {
  position: fixed;
  z-index: 60;
  right: 0;
  bottom: 0;
  left: 0;
  width: min(100%, var(--shell-width));
  max-width: 375px;
  min-height: var(--nav-height);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(6, 13, 23, .97);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 28px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
}

.nav-item {
  min-width: 0;
  min-height: 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #99a7b8;
  font-size: .58rem;
  font-weight: 800;
}

.nav-item span:first-child {
  font-size: 1rem;
  line-height: 1;
}

.nav-item.active {
  color: var(--gold-light);
}

.breadcrumbs {
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 42px;
  padding: 8px 13px;
  overflow: hidden;
  color: var(--muted);
  background: #07111e;
  border-bottom: 1px solid var(--line);
  font-size: .66rem;
  white-space: nowrap;
}

.breadcrumbs a {
  color: var(--emerald);
}

.breadcrumbs span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-hero {
  position: relative;
  min-height: 295px;
  display: flex;
  align-items: end;
  padding: 22px 14px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(3, 8, 15, .2), #06111f 92%),
    url("/static/mubet/mubet-article-default.webp") center / cover;
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(5, 10, 20, .1), rgba(5, 10, 20, .92));
}

.page-hero h1 {
  font-size: clamp(1.8rem, 8vw, 2.35rem);
}

.page-hero p:last-child {
  margin: 10px 0 0;
  color: #d2dae4;
  font-size: .84rem;
}

.guide-content,
.article-content {
  padding: 4px 13px 26px;
}

.guide-section,
.article-paper {
  margin-top: 12px;
  padding: 17px 14px;
  color: #dde4ec;
  background: linear-gradient(145deg, #0d1c2d, #081421);
  border: 1px solid rgba(215, 173, 85, .18);
  border-radius: 14px;
}

.guide-section h2,
.article-body h2 {
  margin: 0 0 9px;
  color: var(--ivory);
  font-size: 1.12rem;
  line-height: 1.25;
}

.guide-section p,
.article-body p {
  margin: 9px 0;
  font-size: .82rem;
}

.guide-section ul,
.article-body ul,
.article-body ol {
  margin: 11px 0 0;
  padding-left: 20px;
}

.guide-section li,
.article-body li {
  margin: 7px 0;
  color: #c9d2de;
  font-size: .79rem;
}

.guide-section li::marker {
  color: var(--emerald);
}

.guide-cta {
  margin: 13px 0 0;
}

.article-cover {
  width: calc(100% - 26px);
  margin: 13px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.article-header {
  padding: 2px 0 15px;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  font-size: clamp(1.65rem, 7.5vw, 2.2rem);
}

.article-deck {
  margin: 10px 0 0;
  color: #c8d2de;
  font-size: .82rem;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  color: var(--muted);
  font-size: .65rem;
}

.article-body {
  padding-top: 6px;
  overflow-wrap: anywhere;
}

.article-body h2 {
  margin-top: 23px;
}

.article-body h3 {
  margin: 18px 0 7px;
  color: var(--gold-light);
  font-size: .98rem;
}

.article-body a {
  color: var(--emerald);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body img,
.article-body video,
.article-body iframe {
  max-width: 100%;
  height: auto;
  border-radius: 11px;
}

.article-body blockquote {
  margin: 15px 0;
  padding: 11px 12px;
  color: #d6dee8;
  background: #091724;
  border-left: 3px solid var(--emerald);
}

.article-body table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: .72rem;
}

.article-body th,
.article-body td {
  min-width: 112px;
  padding: 8px;
  border: 1px solid var(--line);
  text-align: left;
}

.article-body th {
  color: var(--gold-light);
  background: #102032;
}

.responsible-box {
  margin: 0 13px 13px;
  padding: 12px;
  color: #cfd9e3;
  background: rgba(25, 197, 139, .06);
  border: 1px solid var(--safe-line);
  border-left: 3px solid var(--emerald);
  border-radius: 11px;
  font-size: .7rem;
}

.previous-next {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 13px;
}

.previous-next > div {
  min-width: 0;
  min-height: 76px;
  padding: 10px;
  overflow: hidden;
  color: #c7d1de;
  background: #0b1827;
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: .66rem;
  overflow-wrap: anywhere;
}

.related {
  padding-bottom: 95px;
}

.guide-list {
  display: grid;
  gap: 9px;
}

.guide-card {
  grid-template-columns: 72px minmax(0, 1fr);
}

.guide-thumb {
  width: 72px;
  height: 72px;
}

.guide-card h2 {
  margin-top: 4px;
}

.guide-card p {
  display: -webkit-box;
  margin: 5px 0 0;
  overflow: hidden;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.guide-card .read-more {
  display: inline-flex;
  margin-top: 6px;
  color: var(--emerald);
  font-size: .63rem;
  font-weight: 900;
}

.pager {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 17px;
  padding: 0;
  list-style: none;
}

.pager li,
.pager a,
.pager span {
  min-width: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 9px;
  background: #0b1b2a;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: .68rem;
}

.empty-state {
  margin: 12px 0 0;
  padding: 13px;
  color: var(--muted);
  background: #091522;
  border: 1px dashed var(--line);
  border-radius: 11px;
  font-size: .73rem;
  text-align: center;
}

.pagebreak {
  margin-top: 15px;
  overflow-x: auto;
}

.pagebreak a,
.pagebreak span {
  min-width: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  padding: 6px 9px;
  background: #0b1b2a;
  border: 1px solid var(--line);
  border-radius: 8px;
}

a:focus-visible {
  outline: 3px solid var(--emerald);
  outline-offset: 3px;
}

@media (max-width: 360px) {
  .header-action {
    min-width: 72px;
    padding-inline: 7px;
    font-size: .66rem;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

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

  .step-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* MUBET approved 748 × 2103 reference, implemented at 375px logical width. */
.ui-icon,
.header-icon,
.nav-icon,
.trust-icon,
.step-icon,
.step-arrow,
.benefit-icon,
.cta-shield-icon {
  display: block;
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
  overflow: visible;
  color: currentColor;
}

.site-header {
  min-height: var(--header-height);
  height: var(--header-height);
  gap: 6px;
  padding: 5px 12px;
  background: rgba(3, 10, 19, .98);
  border-bottom-color: rgba(126, 154, 176, .2);
  backdrop-filter: none;
}

.brand {
  min-height: 30px;
  color: #e6b94f;
  font-size: 1.35rem;
  letter-spacing: -.055em;
}

.auth-actions {
  gap: 8px;
}

.header-action {
  min-width: 84px;
  min-height: 28px;
  height: 28px;
  gap: 4px;
  padding: 3px 7px;
  border-radius: 5px;
  font-size: .58rem;
  letter-spacing: .01em;
}

.header-register {
  min-width: 86px;
}

.header-icon {
  width: 15px;
  height: 15px;
}

.home-main {
  padding-bottom: var(--nav-height);
}

.hero-stage {
  position: relative;
  height: var(--hero-height);
  min-height: var(--hero-height);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 75% 35%, rgba(176, 120, 45, .08), transparent 38%),
    linear-gradient(180deg, #040b14, #061421);
  border-bottom: 1px solid rgba(42, 76, 91, .44);
}

.hero-stage::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, #040c16 0%, rgba(4, 12, 22, .98) 37%, rgba(4, 12, 22, .34) 61%, rgba(4, 12, 22, .02) 100%),
    linear-gradient(180deg, transparent 73%, rgba(4, 13, 22, .72) 100%);
}

.hero-art {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 57%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 56%;
  padding: 17px 0 0 15px;
}

.hero-stage h1 {
  margin: 0;
  font-size: 1.43rem;
  line-height: 1.2;
  letter-spacing: -.035em;
}

.title-brand {
  color: #e7b94e;
}

.hero-lead {
  width: 174px;
  margin: 9px 0 0;
  color: #d1d5da;
  font-size: .61rem;
  line-height: 1.55;
}

.hero-lead span,
.hero-lead i {
  display: inline;
}

.hero-lead i {
  width: 3px;
  height: 3px;
  display: inline-block;
  margin: 0 4px 2px;
  background: var(--emerald);
  border-radius: 50%;
}

.hero-actions {
  width: 145px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin-top: 11px;
}

.hero-actions .button {
  min-height: 32px;
  height: 32px;
  padding: 4px 8px;
  border-radius: 5px;
  font-size: .68rem;
}

.trust-strip.trust-strip-compact {
  height: 45px;
  min-height: 45px;
  gap: 4px;
  padding: 5px 13px;
  background: #061421;
  border-block: 1px solid rgba(56, 88, 106, .48);
}

.trust-strip-compact .trust-card {
  min-height: 33px;
  height: 33px;
  display: flex;
  flex-direction: row;
  gap: 7px;
  padding: 4px 7px;
  background: linear-gradient(160deg, #0a1b2a, #08131f);
  border-color: rgba(79, 111, 130, .5);
  border-radius: 5px;
  text-align: left;
}

.trust-strip-compact .trust-icon {
  width: 23px;
  height: 23px;
  color: #3be09c;
}

.trust-strip-compact .trust-card strong {
  margin: 0;
  color: #e8ebee;
  font-size: .48rem;
  line-height: 1.15;
}

.pixel-section {
  padding-right: 13px;
  padding-left: 13px;
  background:
    radial-gradient(circle at 50% 0, rgba(22, 74, 75, .09), transparent 55%),
    #06131f;
  border-bottom: 1px solid rgba(67, 98, 116, .2);
}

.pixel-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: #f2f2ed;
  font-size: 1.14rem;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.pixel-heading::before,
.pixel-heading::after {
  min-width: 0;
  height: 1px;
  flex: 1;
  content: "";
  background: linear-gradient(90deg, transparent, #d9a841);
}

.pixel-heading::after {
  background: linear-gradient(90deg, #d9a841, transparent);
}

.pixel-three-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-section {
  height: 170px;
  padding-top: 15px;
  padding-bottom: 18px;
}

.steps-section .pixel-heading {
  height: 20px;
  margin-bottom: 12px;
}

.steps.pixel-three-column {
  gap: 12px;
}

.steps .step-card {
  position: relative;
  min-height: 105px;
  height: 105px;
  align-items: center;
  justify-content: flex-start;
  padding: 7px 4px 5px;
  background: linear-gradient(160deg, #0a1b2a, #081522);
  border: 1px solid rgba(78, 112, 131, .58);
  border-radius: 7px;
  text-align: center;
}

.steps .step-number {
  width: 31px;
  height: 31px;
  color: #4cdf9a;
  background: radial-gradient(circle, rgba(21, 126, 80, .48), rgba(6, 25, 31, .7));
  border-color: #d5a43d;
  font-size: 1.05rem;
}

.steps .step-icon {
  width: 39px;
  height: 39px;
  margin-top: 4px;
  color: #43dfa0;
}

.steps .step-card h3 {
  margin: 2px 0 0;
  color: #f2f2ed;
  font-size: .59rem;
  line-height: 1.12;
}

.steps .step-arrow {
  position: absolute;
  z-index: 3;
  top: 53px;
  right: -10px;
  width: 8px;
  height: 15px;
  color: #38db93;
}

.games-section {
  min-height: 241px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.games-section .pixel-heading {
  height: 20px;
  margin-bottom: 11px;
}

.game-grid.pixel-three-column {
  gap: 8px;
}

.game-grid .game-card {
  min-height: 88px;
  height: 88px;
  background: #0a1b29;
  border: 1px solid rgba(77, 111, 130, .62);
  border-radius: 7px;
  box-shadow: none;
}

.game-grid .game-card::after {
  display: none;
}

.game-grid .game-card img {
  width: 100%;
  height: 65px;
  aspect-ratio: auto;
  object-fit: cover;
  border-bottom: 1px solid rgba(70, 100, 119, .55);
}

.game-grid .game-copy {
  position: static;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

.game-grid .game-copy strong {
  color: #efbd51;
  font-size: .63rem;
  line-height: 1;
}

.benefits-section {
  height: 156px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.benefits-section .pixel-heading {
  height: 20px;
  margin-bottom: 8px;
}

.benefits.pixel-three-column {
  gap: 8px;
}

.benefits .benefit-card {
  height: 104px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  padding: 8px 5px 6px;
  background: linear-gradient(155deg, #0a1c2a, #081521);
  border: 1px solid rgba(76, 112, 130, .55);
  border-radius: 7px;
  text-align: center;
}

.benefits .benefit-icon {
  width: 42px;
  height: 42px;
  color: #43d99a;
  background: none;
  border: 0;
  border-radius: 0;
}

.benefits .benefit-card h3 {
  margin: 2px 0 0;
  font-size: .56rem;
  line-height: 1.15;
}

.benefits .benefit-card p {
  display: -webkit-box;
  margin: 5px 0 0;
  overflow: hidden;
  color: #c9ced4;
  font-size: .45rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.final-cta.final-cta-horizontal {
  height: 113px;
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  margin: 10px 13px 0;
  padding: 7px 9px;
  background:
    radial-gradient(circle at 12% 52%, rgba(214, 174, 74, .16), transparent 24%),
    radial-gradient(circle at 100% 0, rgba(25, 197, 139, .16), transparent 43%),
    linear-gradient(145deg, #071927, #09242a);
  border: 1px solid rgba(58, 184, 135, .72);
  border-radius: 10px;
  box-shadow: none;
}

.cta-shield {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4adc97;
}

.cta-shield-icon {
  width: 72px;
  height: 72px;
  padding: 5px;
  color: #4cdc96;
  background:
    radial-gradient(circle, rgba(43, 197, 126, .28), transparent 65%);
  border: 3px solid #d8aa44;
  border-radius: 28% 28% 44% 44%;
  filter: drop-shadow(0 0 8px rgba(43, 197, 126, .25));
}

.cta-copy {
  min-width: 0;
}

.final-cta-horizontal h2 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1;
}

.final-cta-horizontal .cta-copy > p {
  margin: 5px 0 6px;
  color: #cdd2d8;
  font-size: .5rem;
  line-height: 1.35;
}

.final-cta-horizontal .button {
  min-height: 28px;
  height: 28px;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: .68rem;
}

.final-cta-horizontal .responsible-line {
  margin: 5px 0 0 !important;
  color: #c9ced4 !important;
  font-size: .43rem !important;
  font-weight: 600;
  text-align: left;
}

.final-cta-horizontal .responsible-line span {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  margin-right: 3px;
  color: #3dde98;
  border: 1px solid #3dde98;
  border-radius: 50%;
  font-size: .42rem;
  font-weight: 900;
}

.guide-shell:not(:has(.guide-card)) {
  display: none;
}

.bottom-nav {
  min-height: var(--nav-height);
  height: calc(var(--nav-height) + env(safe-area-inset-bottom));
  background: rgba(6, 17, 30, .98);
  border-top-color: rgba(82, 111, 128, .4);
  box-shadow: none;
  backdrop-filter: none;
}

.nav-item {
  min-height: var(--nav-height);
  gap: 1px;
  padding: 3px 0 2px;
  color: #c4c9d0;
  font-size: .51rem;
  font-weight: 500;
}

.nav-icon {
  width: 23px;
  height: 23px;
}

.nav-item.active {
  color: #e4b44c;
}

@media (max-width: 374px) {
  .header-action {
    min-width: 78px;
    padding-inline: 5px;
    font-size: .53rem;
  }

  .header-register {
    min-width: 80px;
  }

  .hero-stage h1 {
    font-size: 1.34rem;
  }

  .pixel-three-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
