:root {
  --ink: #07111f;
  --ink-2: #0b1a2d;
  --ink-3: #10243b;
  --panel: #132b45;
  --gold: #f0b84a;
  --gold-light: #ffe1a0;
  --gold-deep: #b86d17;
  --cyan: #54d9d0;
  --emerald: #58e0ad;
  --cream: #fff8ea;
  --paper: #f4efe5;
  --white: #f7fbff;
  --muted: #a8b8c9;
  --dark-text: #122133;
  --dark-muted: #647184;
  --line: rgba(240, 184, 74, .2);
  --shadow: 0 18px 48px rgba(2, 8, 16, .28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: #d7d9dc;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button {
  font: inherit;
}

body {
  padding-bottom: calc(72px + env(safe-area-inset-bottom));
}

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

button {
  color: inherit;
}

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

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

.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;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 50%;
  z-index: 999;
  padding: 8px 14px;
  transform: translate(-50%, -150%);
  color: #111;
  background: var(--gold-light);
  border-radius: 999px;
  font-weight: 900;
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

.app-shell {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 2%, rgba(84, 217, 208, .13), transparent 20rem),
    var(--ink);
  box-shadow: 0 0 38px rgba(3, 9, 18, .2);
}

.site-header {
  position: relative;
  z-index: 50;
  padding: 10px 12px 0;
  background: rgba(5, 14, 26, .97);
  border-bottom: 1px solid rgba(240, 184, 74, .18);
  backdrop-filter: blur(14px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  color: #06111e;
  background: linear-gradient(145deg, #fff0b6, #f0b84a 54%, #a86013);
  border: 1px solid #ffe4a3;
  border-radius: 14px 5px 14px 5px;
  box-shadow: 0 8px 22px rgba(240, 184, 74, .24);
  font-size: 1.45rem;
  font-weight: 1000;
  line-height: 1;
}

.brand-mark::after {
  position: absolute;
  width: 22px;
  height: 2px;
  content: "";
  transform: rotate(-38deg);
  background: rgba(7, 17, 31, .28);
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  color: var(--gold-light);
  font-size: 1.28rem;
  font-weight: 1000;
  letter-spacing: -.045em;
}

.brand-copy small {
  margin-top: 5px;
  overflow: hidden;
  color: #88a0b8;
  font-size: .54rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 10px;
  cursor: pointer;
  background: #10233a;
  border: 1px solid rgba(240, 184, 74, .22);
  border-radius: 12px;
  place-content: center;
  gap: 4px;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  transition: transform .25s ease, opacity .25s ease;
  background: var(--gold-light);
  border-radius: 4px;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-actions {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 8px;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  transition: transform .2s ease, filter .2s ease, border-color .2s ease;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .025em;
  text-align: center;
  text-transform: uppercase;
}

.btn:active {
  transform: translateY(1px);
}

.btn-gold {
  color: #14100a;
  background: linear-gradient(180deg, #ffe3a0, #f0b84a 58%, #d88b26);
  border-color: #ffe8b1;
  box-shadow: 0 9px 24px rgba(240, 184, 74, .2);
}

.btn-ghost {
  color: var(--gold-light);
  background: #10233a;
  border-color: rgba(240, 184, 74, .28);
}

.btn-outline {
  color: var(--gold-light);
  background: rgba(7, 17, 31, .45);
  border-color: rgba(240, 184, 74, .46);
}

.btn-wide {
  min-width: 164px;
}

.btn-block {
  width: 100%;
}

.site-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 10px -12px 0;
  overflow: hidden;
  transition: max-height .3s ease, opacity .2s ease;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.site-nav a {
  min-width: 0;
  padding: 11px 2px 10px;
  color: #9cb0c4;
  border-right: 1px solid rgba(255, 255, 255, .05);
  font-size: .61rem;
  font-weight: 850;
  text-align: center;
}

.site-nav a[aria-current="page"] {
  color: var(--gold-light);
  background: linear-gradient(180deg, rgba(240, 184, 74, .12), transparent);
}

.js .site-nav {
  max-height: 0;
  opacity: 0;
}

.js .site-nav.is-open {
  max-height: 64px;
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #050d18;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 10, 19, .98) 0%, rgba(3, 10, 19, .86) 38%, rgba(3, 10, 19, .2) 73%),
    linear-gradient(0deg, rgba(3, 10, 19, .92), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 68%;
  min-height: 430px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 42px 0 40px 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-size: .62rem;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow i {
  display: inline-block;
  width: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  border-radius: 4px;
}

.hero h1 {
  max-width: 320px;
  margin: 13px 0 12px;
  color: #fff9e9;
  font-size: clamp(1.78rem, 8vw, 2.55rem);
  line-height: 1.03;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.hero p {
  max-width: 285px;
  margin-bottom: 18px;
  color: #b9c7d4;
  font-size: .78rem;
  line-height: 1.62;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: .73rem;
  font-weight: 900;
}

.text-link span {
  color: var(--cyan);
  font-size: 1rem;
}

.text-link.centered {
  justify-content: center;
  margin-top: 18px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 10px;
  background: linear-gradient(180deg, #10233a, #0b1a2c);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-width: 0;
  padding: 12px 4px;
  text-align: center;
}

.trust-strip div + div {
  border-left: 1px solid rgba(240, 184, 74, .14);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 950;
}

.trust-strip span {
  margin-top: 2px;
  overflow: hidden;
  color: #8fa4b8;
  font-size: .53rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section {
  padding: 34px 14px;
}

.section-dark {
  background:
    radial-gradient(circle at 94% 0, rgba(84, 217, 208, .08), transparent 17rem),
    var(--ink);
}

.section-blue {
  background:
    linear-gradient(145deg, rgba(84, 217, 208, .05), transparent 40%),
    var(--ink-2);
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.section-light {
  color: var(--dark-text);
  background:
    radial-gradient(circle at 100% 0, rgba(240, 184, 74, .16), transparent 16rem),
    var(--cream);
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading h2,
.visual-panel-copy h2,
.trust-callout h2,
.closing-cta h2 {
  margin: 8px 0 8px;
  color: #fff9e9;
  font-size: clamp(1.35rem, 6vw, 1.85rem);
  line-height: 1.12;
  letter-spacing: -.038em;
  text-wrap: balance;
}

.section-heading > p,
.visual-panel-copy > p,
.closing-cta > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.7;
}

.heading-dark h2 {
  color: var(--dark-text);
}

.heading-dark > p {
  color: var(--dark-muted);
}

.eyebrow-dark {
  color: #966014;
}

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

.feature-card {
  min-width: 0;
  padding: 13px 8px 12px;
  background: linear-gradient(145deg, #132b45, #0c1d31);
  border: 1px solid rgba(240, 184, 74, .16);
  border-radius: 14px;
  text-align: center;
}

.feature-icon {
  display: grid;
  width: 34px;
  height: 34px;
  margin: 0 auto 9px;
  color: #07111f;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border-radius: 11px 4px 11px 4px;
  place-items: center;
  font-size: 1rem;
  font-weight: 1000;
}

.feature-card h3 {
  margin-bottom: 5px;
  color: #fff5db;
  font-size: .7rem;
  line-height: 1.2;
}

.feature-card p {
  margin-bottom: 0;
  color: #94a8bb;
  font-size: .57rem;
  line-height: 1.45;
}

.visual-panel {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: #06101d;
}

.visual-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
}

.visual-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4, 12, 22, .98), rgba(4, 12, 22, .8) 48%, rgba(4, 12, 22, .12));
}

.visual-panel-copy {
  position: relative;
  z-index: 2;
  width: 63%;
  padding: 48px 0 42px 16px;
}

.visual-panel-copy p {
  margin-bottom: 16px;
}

.game-stack {
  display: grid;
  gap: 10px;
}

.game-card {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  border: 1px solid rgba(20, 30, 42, .16);
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(10, 20, 30, .14);
}

.game-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform .4s ease;
  object-fit: cover;
  object-position: 60% center;
}

.game-card:active img {
  transform: scale(1.02);
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 11, 19, .96), rgba(4, 11, 19, .66) 51%, rgba(4, 11, 19, .06));
}

.game-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: 57%;
  min-height: 178px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 18px;
}

.game-copy small {
  color: var(--gold);
  font-size: .57rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.game-copy strong {
  margin-top: 5px;
  color: #fff7e4;
  font-size: 1.35rem;
  line-height: 1.05;
}

.game-copy em {
  margin-top: 14px;
  color: #a9f5ec;
  font-size: .68rem;
  font-style: normal;
  font-weight: 850;
}

.step-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0 0 16px;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 11px;
  padding: 12px;
  background: linear-gradient(145deg, #112841, #0c1d31);
  border: 1px solid rgba(240, 184, 74, .13);
  border-radius: 14px;
}

.step-list li > span {
  display: grid;
  width: 48px;
  height: 48px;
  color: #0b1420;
  background: linear-gradient(145deg, var(--gold-light), var(--gold-deep));
  border-radius: 15px 5px 15px 5px;
  place-items: center;
  font-size: .72rem;
  font-weight: 1000;
}

.step-list strong {
  display: block;
  color: #fff7e7;
  font-size: .82rem;
}

.step-list p {
  margin: 3px 0 0;
  color: #96a9ba;
  font-size: .65rem;
  line-height: 1.45;
}

.mini-article-list {
  display: grid;
  gap: 8px;
}

.mini-article {
  display: grid;
  grid-template-columns: 43px 1fr 20px;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 13px;
}

.mini-article-icon {
  display: grid;
  width: 43px;
  height: 43px;
  color: var(--gold-light);
  background: #142d48;
  border: 1px solid rgba(240, 184, 74, .2);
  border-radius: 13px;
  place-items: center;
  font-weight: 1000;
}

.mini-article strong,
.mini-article small {
  display: block;
}

.mini-article strong {
  color: #f7fbff;
  font-size: .74rem;
  line-height: 1.25;
}

.mini-article small {
  margin-top: 4px;
  color: #8197aa;
  font-size: .58rem;
}

.mini-article > span:last-child {
  color: var(--cyan);
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(12, 32, 52, .11);
  border-radius: 13px;
}

.faq-question {
  display: grid;
  width: 100%;
  padding: 13px;
  cursor: pointer;
  color: var(--dark-text);
  background: transparent;
  border: 0;
  grid-template-columns: 1fr 22px;
  align-items: center;
  gap: 10px;
  font-size: .74rem;
  font-weight: 900;
  text-align: left;
}

.faq-question::after {
  content: "+";
  color: #a16b18;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  padding: 0 13px 13px;
  color: var(--dark-muted);
  font-size: .68rem;
  line-height: 1.62;
}

.faq-answer p {
  margin-bottom: 0;
}

.js .faq-answer[hidden] {
  display: none;
}

.closing-cta {
  padding: 36px 18px 40px;
  text-align: center;
  background:
    radial-gradient(circle at 50% -20%, rgba(240, 184, 74, .2), transparent 18rem),
    linear-gradient(180deg, #122944, #07111f);
  border-top: 1px solid var(--line);
}

.closing-cta .eyebrow {
  justify-content: center;
}

.closing-cta .btn {
  margin-top: 17px;
}

.responsible-link {
  display: inline-block;
  margin-top: 14px;
  color: #9cb2c6;
  font-size: .64rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 28px 14px 24px;
  color: #95a7b9;
  background: #040b14;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-brand {
  display: grid;
  grid-template-columns: 35px 1fr;
  align-items: center;
  gap: 10px;
}

.brand-mark-small {
  width: 35px;
  height: 35px;
  font-size: 1.1rem;
  border-radius: 11px 4px 11px 4px;
}

.footer-brand strong {
  color: var(--gold-light);
  font-size: 1rem;
}

.footer-brand p {
  margin: 1px 0 0;
  font-size: .6rem;
  line-height: 1.45;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 18px 0;
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-links a {
  font-size: .63rem;
}

.responsible-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.age-badge {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--gold-light);
  background: #10233a;
  border: 1px solid rgba(240, 184, 74, .4);
  border-radius: 50%;
  place-items: center;
  font-size: .8rem;
  font-weight: 1000;
}

.responsible-note p {
  margin: 0;
  font-size: .57rem;
  line-height: 1.5;
}

.copyright {
  margin: 17px 0 0;
  color: #607387;
  font-size: .53rem;
  text-align: center;
}

.bottom-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 50%;
  z-index: 100;
  display: grid;
  width: min(100%, 480px);
  min-height: 64px;
  padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  background: rgba(5, 14, 26, .98);
  border-top: 1px solid rgba(240, 184, 74, .28);
  box-shadow: 0 -12px 32px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
  grid-template-columns: 58px 1fr 1.22fr;
  gap: 7px;
}

.bottom-bar a {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: .68rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.bottom-home {
  flex-direction: column;
  color: #849aaf;
  background: #0b1b2e;
}

.bottom-home > span {
  font-size: 1rem;
  line-height: 1;
}

.bottom-home small {
  margin-top: 2px;
  font-size: .43rem;
}

.bottom-login {
  color: var(--gold-light);
  background: #10233a;
  border: 1px solid rgba(240, 184, 74, .28);
}

.bottom-register {
  color: #161006;
  background: linear-gradient(180deg, #ffe09a, #e9a63d);
  border: 1px solid #ffe9b6;
}

.breadcrumb {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  overflow: hidden;
  color: #748aa0;
  background: #071421;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: .57rem;
  white-space: nowrap;
}

.breadcrumb a {
  color: #9db3c8;
}

.breadcrumb span {
  color: var(--gold);
}

.breadcrumb strong {
  overflow: hidden;
  color: #c8d4df;
  font-weight: 700;
  text-overflow: ellipsis;
}

.page-hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #050d18;
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
}

.page-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 10, 19, .98), rgba(3, 10, 19, .72) 56%, rgba(3, 10, 19, .18)),
    linear-gradient(0deg, rgba(3, 10, 19, .82), transparent 48%);
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: 72%;
  min-height: 360px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 0 28px 16px;
}

.page-hero-copy h1 {
  margin: 10px 0;
  color: #fff8e8;
  font-size: clamp(1.72rem, 8vw, 2.35rem);
  line-height: 1.06;
  letter-spacing: -.05em;
}

.page-hero-copy p {
  margin-bottom: 0;
  color: #b5c4d1;
  font-size: .73rem;
  line-height: 1.65;
}

.list-section {
  padding-top: 30px;
}

.article-grid {
  display: grid;
  gap: 11px;
}

.article-card {
  display: grid;
  grid-template-columns: 94px 1fr;
  min-height: 116px;
  overflow: hidden;
  color: var(--dark-text);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(12, 32, 52, .1);
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(16, 31, 47, .08);
}

.article-card img {
  width: 94px;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.article-card-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 11px;
}

.article-card-copy small {
  color: #9a6517;
  font-size: .53rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-card-copy strong {
  margin-top: 4px;
  font-size: .75rem;
  line-height: 1.28;
}

.article-card-copy p {
  display: -webkit-box;
  margin: 6px 0 0;
  overflow: hidden;
  color: var(--dark-muted);
  font-size: .58rem;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.trust-callout {
  display: grid;
  padding: 30px 16px;
  background:
    radial-gradient(circle at 100% 0, rgba(84, 217, 208, .13), transparent 18rem),
    #0c1f34;
  border-top: 1px solid var(--line);
  grid-template-columns: 54px 1fr;
  gap: 13px;
}

.trust-callout-icon {
  display: grid;
  width: 54px;
  height: 54px;
  color: #06111e;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border-radius: 17px 6px 17px 6px;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 1000;
}

.trust-callout h2 {
  margin-top: 7px;
  font-size: 1.2rem;
}

.trust-callout p {
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.58;
}

.compact-cta {
  padding-top: 30px;
  padding-bottom: 34px;
}

.article-page {
  background: var(--cream);
}

.article-header {
  padding: 30px 16px 22px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 0, rgba(84, 217, 208, .12), transparent 16rem),
    linear-gradient(160deg, #0f2943, #07111f);
}

.article-header h1 {
  margin: 10px 0 11px;
  color: #fff8e6;
  font-size: clamp(1.7rem, 7.5vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -.048em;
  text-wrap: balance;
}

.article-lead {
  color: #b9c8d5;
  font-size: .76rem;
  line-height: 1.72;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  padding-top: 12px;
  color: #7890a7;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .54rem;
}

.article-meta span:first-child {
  color: var(--gold);
  font-weight: 900;
}

.article-cover {
  margin: 0;
  background: #06111e;
}

.article-cover img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: center;
}

.toc {
  padding: 15px;
  margin: 16px 14px 6px;
  color: var(--dark-text);
  background: #fff;
  border: 1px solid rgba(13, 35, 57, .1);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(18, 32, 48, .06);
}

.toc > strong {
  display: block;
  margin-bottom: 8px;
  font-size: .78rem;
}

.toc ol {
  display: grid;
  gap: 5px;
  padding-left: 20px;
  margin: 0;
}

.toc a {
  color: #4f6072;
  font-size: .65rem;
  text-decoration: underline;
  text-decoration-color: rgba(184, 109, 23, .35);
  text-underline-offset: 3px;
}

.article-content {
  padding: 8px 16px 22px;
  color: #253446;
  font-family: Georgia, "Times New Roman", serif;
}

.article-section {
  padding: 19px 0 4px;
}

.article-section + .article-section {
  border-top: 1px solid rgba(25, 46, 68, .1);
}

.article-section h2 {
  margin: 0 0 11px;
  color: #102338;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.25rem;
  line-height: 1.24;
  letter-spacing: -.03em;
}

.article-section p {
  margin-bottom: 12px;
  font-size: .83rem;
  line-height: 1.82;
}

.article-section ul {
  padding: 12px 13px 12px 30px;
  margin: 4px 0 13px;
  background: #fff;
  border: 1px solid rgba(20, 45, 70, .09);
  border-radius: 12px;
}

.article-section li {
  padding: 3px 0;
  font-size: .77rem;
  line-height: 1.62;
}

.content-steps {
  display: grid;
  gap: 8px;
  margin: 13px 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.content-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 10px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(20, 45, 70, .09);
  border-radius: 12px;
}

.content-step > span {
  display: grid;
  width: 34px;
  height: 34px;
  color: #101923;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border-radius: 10px 3px 10px 3px;
  place-items: center;
  font-size: .65rem;
  font-weight: 1000;
}

.content-step strong {
  display: block;
  color: #15273a;
  font-size: .73rem;
}

.content-step p {
  margin: 3px 0 0;
  color: #68778a;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .64rem;
  line-height: 1.52;
}

.article-faq {
  padding: 26px 14px 30px;
  color: var(--dark-text);
  background: var(--paper);
  border-top: 1px solid rgba(20, 40, 60, .08);
}

.article-faq > h2 {
  margin: 7px 0 14px;
  font-size: 1.35rem;
  letter-spacing: -.035em;
}

.article-action {
  display: grid;
  padding: 18px 14px;
  color: #fff;
  background: #0d2238;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
}

.article-action strong {
  display: block;
  color: var(--gold-light);
  font-size: .7rem;
}

.article-action p {
  margin: 3px 0 0;
  color: #8fa4b8;
  font-size: .57rem;
  line-height: 1.45;
}

.article-action > a {
  color: var(--cyan);
  font-size: .6rem;
  font-weight: 900;
}

.article-next {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 22px 14px 30px;
  background: #07111f;
}

@media (min-width: 481px) {
  body {
    padding-top: 20px;
  }

  .app-shell {
    border-radius: 24px 24px 0 0;
  }
}

@media (max-width: 360px) {
  .hero-content {
    width: 73%;
    padding-left: 14px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .feature-card {
    padding-right: 5px;
    padding-left: 5px;
  }

  .article-card {
    grid-template-columns: 82px 1fr;
  }

  .article-card img {
    width: 82px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
