:root {
  color-scheme: dark;
  --bg: #04070d;
  --bg-2: #070b16;
  --panel: rgba(15, 23, 42, 0.7);
  --panel-strong: rgba(15, 23, 42, 0.9);
  --line: rgba(148, 163, 184, 0.16);
  --line-strong: rgba(248, 250, 252, 0.18);
  --text: #f8fafc;
  --muted: #a8b0bf;
  --soft: #d7dbea;
  --violet: #a855f7;
  --violet-2: #7c3aed;
  --pink: #e879f9;
  --rose: #ec4899;
  --gold: #f8c86a;
  --green: #34d399;
  --container: 1280px;
  --radius: 16px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -8%, #1b1440 0%, rgba(27, 20, 64, 0.64) 22%, rgba(7, 11, 22, 0.94) 44%, #04070d 100%),
    linear-gradient(180deg, #070b16 0%, #04070d 100%);
  color: var(--text);
  font-family: "PingFang SC", "HarmonyOS Sans", "MiSans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 83% 5%, rgba(232, 121, 249, 0.14), transparent 18%),
    radial-gradient(circle at 8% 34%, rgba(168, 85, 247, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, auto, 96px 96px, 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 74%);
}

img {
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(248, 200, 106, 0.9);
  outline-offset: 4px;
}

button,
input {
  font: inherit;
}

.page-frame,
.site-header,
.footer-grid,
.copyright {
  width: min(100% - 64px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(210px, 1fr);
  gap: 28px;
  align-items: center;
  height: 76px;
  padding: 0;
  color: rgba(248, 250, 252, 0.92);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: max-content;
  font-size: 20px;
  font-weight: 850;
  line-height: 1;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 12px rgba(232, 121, 249, 0.44));
}

.brand-mark span {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
}

.brand-mark span:nth-child(1) {
  top: 2px;
  left: 6px;
  background: linear-gradient(135deg, #f8a7ec, #8b5cf6);
}

.brand-mark span:nth-child(2) {
  right: 2px;
  bottom: 2px;
  background: linear-gradient(135deg, #60a5fa, #a855f7);
}

.brand-mark span:nth-child(3) {
  bottom: 2px;
  left: 1px;
  background: linear-gradient(135deg, #ffd56f, #fb7185);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  color: rgba(248, 250, 252, 0.78);
  font-size: 15px;
  font-weight: 650;
}

.nav a {
  position: relative;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
}

.nav a:hover,
.nav a.is-active {
  color: #ffffff;
}

.nav a.is-active::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--violet));
  content: "";
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.topup-button,
.login-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.topup-button {
  gap: 6px;
  min-height: 38px;
  padding: 0 20px;
  background: linear-gradient(105deg, #d85fb2 0%, #7c3aed 100%);
  box-shadow: 0 12px 34px rgba(124, 58, 237, 0.38);
}

.topup-button span,
.crown {
  color: var(--gold);
}

.login-button {
  min-height: 38px;
  padding: 0 22px;
  border: 1px solid rgba(248, 250, 252, 0.22);
  background: rgba(9, 12, 22, 0.46);
  color: #ffffff;
  backdrop-filter: blur(18px);
}

main {
  overflow: hidden;
}

.home-shell {
  width: 100%;
  max-width: none;
  padding-bottom: 0;
}

.home-hero {
  position: relative;
  min-height: 742px;
  padding-top: 164px;
  overflow: hidden;
  background: #04070d;
}

.hero-illustration {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 760px;
  object-fit: cover;
  object-position: 66% center;
  opacity: 0.92;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 30%, rgba(248, 200, 106, 0.08), transparent 24%),
    linear-gradient(90deg, #04070d 0%, rgba(4, 7, 13, 0.94) 24%, rgba(4, 7, 13, 0.52) 48%, rgba(4, 7, 13, 0.18) 72%),
    linear-gradient(180deg, rgba(4, 7, 13, 0.12) 0%, rgba(4, 7, 13, 0.18) 56%, #04070d 100%);
}

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

.hero-copy h1 {
  max-width: 620px;
  margin: 0 0 10px;
  background: linear-gradient(120deg, #ff8ee7 0%, #9b5cff 70%, #7dd3fc 100%);
  background-clip: text;
  color: transparent;
  font-size: clamp(56px, 6.3vw, 86px);
  font-weight: 900;
  line-height: 1;
}

.hero-copy h2 {
  max-width: 580px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 850;
  line-height: 1.32;
}

.lead {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(226, 232, 240, 0.84);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 42px;
}

.button {
  min-width: 152px;
  min-height: 56px;
  padding: 0 34px;
  border: 1px solid transparent;
}

.button.primary {
  border-color: rgba(168, 85, 247, 0.42);
  background: rgba(39, 31, 55, 0.78);
  color: #f8f4ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.button.secondary {
  border-color: rgba(248, 250, 252, 0.28);
  background: rgba(5, 9, 18, 0.5);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 470px);
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 14px;
  background: rgba(6, 10, 19, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.stat-strip span {
  display: block;
  padding: 18px 20px;
  color: rgba(226, 232, 240, 0.8);
  font-size: 14px;
  font-weight: 650;
}

.stat-strip span + span {
  border-left: 1px solid rgba(148, 163, 184, 0.16);
}

.stat-strip strong {
  display: block;
  margin-bottom: 4px;
  color: #c69cff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.section {
  position: relative;
  z-index: 1;
}

.feature-section {
  margin-top: 0;
}

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

.feature-card,
.article-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(22, 31, 48, 0.86), rgba(12, 18, 32, 0.78)),
    rgba(15, 23, 42, 0.7);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
}

.feature-card {
  position: relative;
  min-height: 194px;
  padding: 34px 34px 28px 100px;
  border-radius: var(--radius);
}

.feature-icon {
  position: absolute;
  top: 34px;
  left: 34px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--icon-border);
  border-radius: 50%;
  background: var(--icon-bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature-icon::before {
  width: 24px;
  height: 24px;
  background: var(--icon-color);
  color: #ffffff;
  content: "";
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.feature-icon.immersive {
  --icon-bg: rgba(168, 85, 247, 0.14);
  --icon-border: rgba(196, 181, 253, 0.24);
  --icon-color: #d8b4fe;
}

.feature-icon.immersive::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='none'%20stroke='black'%20stroke-width='1.8'%20stroke-linecap='round'%20stroke-linejoin='round'%20d='M20%2014.5a3.5%203.5%200%200%201-3.5%203.5H8l-4%203V7.5A3.5%203.5%200%200%201%207.5%204h9A3.5%203.5%200%200%201%2020%207.5z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='none'%20stroke='black'%20stroke-width='1.8'%20stroke-linecap='round'%20stroke-linejoin='round'%20d='M20%2014.5a3.5%203.5%200%200%201-3.5%203.5H8l-4%203V7.5A3.5%203.5%200%200%201%207.5%204h9A3.5%203.5%200%200%201%2020%207.5z'/%3E%3C/svg%3E");
}

.feature-icon.choice {
  --icon-bg: rgba(129, 140, 248, 0.13);
  --icon-border: rgba(165, 180, 252, 0.24);
  --icon-color: #c4b5fd;
}

.feature-icon.choice::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Ccircle%20cx='12'%20cy='8'%20r='3.5'%20fill='none'%20stroke='black'%20stroke-width='1.8'/%3E%3Cpath%20fill='none'%20stroke='black'%20stroke-width='1.8'%20stroke-linecap='round'%20stroke-linejoin='round'%20d='M5%2020a7%207%200%200%201%2014%200'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Ccircle%20cx='12'%20cy='8'%20r='3.5'%20fill='none'%20stroke='black'%20stroke-width='1.8'/%3E%3Cpath%20fill='none'%20stroke='black'%20stroke-width='1.8'%20stroke-linecap='round'%20stroke-linejoin='round'%20d='M5%2020a7%207%200%200%201%2014%200'/%3E%3C/svg%3E");
}

.feature-icon.privacy {
  --icon-bg: rgba(52, 211, 153, 0.12);
  --icon-border: rgba(110, 231, 183, 0.22);
  --icon-color: #a7f3d0;
}

.feature-icon.privacy::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='none'%20stroke='black'%20stroke-width='1.8'%20stroke-linecap='round'%20stroke-linejoin='round'%20d='M12%2021s7-3.5%207-9V5.5L12%203%205%205.5V12c0%205.5%207%209%207%209z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='none'%20stroke='black'%20stroke-width='1.8'%20stroke-linecap='round'%20stroke-linejoin='round'%20d='M12%2021s7-3.5%207-9V5.5L12%203%205%205.5V12c0%205.5%207%209%207%209z'/%3E%3C/svg%3E");
}

.feature-card h3,
.character-card h3,
.article-card h3,
.membership h2,
.section-heading h2 {
  margin: 0;
  color: #ffffff;
}

.feature-card h3 {
  font-size: 21px;
  font-weight: 850;
}

.feature-card p {
  margin: 14px 0 18px;
  color: rgba(203, 213, 225, 0.76);
  font-size: 15px;
}

.feature-card a,
.section-heading > a,
.article-heading > a,
.article-card footer span {
  color: #c084fc;
  font-size: 14px;
  font-weight: 800;
}

.entry-point-section {
  padding-top: 48px;
}

.entry-point-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.entry-card {
  display: grid;
  gap: 10px;
  min-height: 184px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(22, 31, 48, 0.86), rgba(12, 18, 32, 0.78));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.entry-card:hover {
  border-color: rgba(192, 132, 252, 0.48);
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(88, 28, 135, 0.28);
}

.entry-card span,
.landing-kicker {
  color: #c084fc;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.entry-card strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.28;
}

.entry-card small {
  color: rgba(203, 213, 225, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.character-section {
  padding-top: 48px;
}

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

.centered-heading {
  position: relative;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 850;
  line-height: 1.25;
}

.section-heading p {
  margin: 8px 0 0;
  color: rgba(203, 213, 225, 0.72);
  font-size: 16px;
}

.section-heading > a {
  position: absolute;
  right: 0;
  bottom: 6px;
}

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

.character-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 12px;
  background: #0f172a;
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.35);
  transform: translateY(0);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.character-card:hover {
  border-color: rgba(192, 132, 252, 0.48);
  box-shadow: 0 32px 80px rgba(88, 28, 135, 0.35);
  transform: translateY(-7px);
}

.character-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 320ms ease;
}

.character-card:nth-child(2) img {
  object-position: 54% center;
}

.character-card:nth-child(4) img {
  object-position: 52% center;
}

.character-card:hover img {
  transform: scale(1.04);
}

.ai-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  min-width: 34px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(91, 56, 163, 0.82);
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.character-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 7, 13, 0) 28%, rgba(4, 7, 13, 0.58) 63%, rgba(4, 7, 13, 0.94) 100%),
    linear-gradient(90deg, rgba(4, 7, 13, 0.16), transparent 44%);
}

.character-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 0 22px 24px;
}

.character-card h3 {
  font-size: 22px;
  font-weight: 900;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag-row span {
  padding: 4px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(248, 250, 252, 0.84);
  font-size: 12px;
  font-weight: 700;
}

.character-card p {
  margin: 20px 0 20px;
  color: rgba(248, 250, 252, 0.9);
  font-size: 15px;
  line-height: 1.7;
}

.character-card strong {
  color: #c084fc;
  font-size: 14px;
}

.membership {
  display: flex;
  min-height: 186px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 48px;
  padding: 38px 64px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  background:
    radial-gradient(circle at 6% 0%, rgba(168, 85, 247, 0.16), transparent 30%),
    linear-gradient(110deg, rgba(17, 24, 39, 0.92), rgba(18, 22, 38, 0.94) 58%, rgba(16, 23, 42, 0.92));
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
}

.membership-copy {
  display: flex;
  gap: 30px;
  align-items: center;
}

.crown {
  display: grid;
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  place-items: center;
  color: #c4b5fd;
  font-size: 48px;
  line-height: 1;
  opacity: 0.86;
  text-shadow: 0 0 22px rgba(168, 85, 247, 0.22);
}

.membership h2 {
  font-size: 28px;
  font-weight: 850;
}

.membership p {
  margin: 10px 0 22px;
  color: rgba(226, 232, 240, 0.82);
}

.membership ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 44px;
  margin: 0;
  padding: 0;
  color: rgba(248, 250, 252, 0.9);
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}

.membership li::before {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border: 1px solid rgba(248, 250, 252, 0.4);
  border-radius: 6px;
  color: #d8b4fe;
  content: "✓";
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

.upgrade-button {
  min-width: 220px;
}

.articles-section {
  padding: 60px 0 54px;
}

.article-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.article-heading > a {
  position: static;
  flex: 0 0 auto;
}

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

.article-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  min-height: 168px;
  padding: 18px;
  border-radius: 12px;
}

.article-card img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 10px;
}

.article-card h3 {
  font-size: 18px;
  font-weight: 850;
  line-height: 1.45;
}

.article-card p {
  margin: 8px 0 0;
  color: rgba(203, 213, 225, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.article-card footer {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
  color: rgba(148, 163, 184, 0.88);
  font-size: 14px;
}

.site-footer {
  position: relative;
  margin-top: 0;
  padding: 58px 0 24px;
  overflow: hidden;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.78), rgba(8, 13, 24, 0.98)),
    #0b111d;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) 0.55fr 0.55fr 0.55fr minmax(270px, 1.05fr);
  gap: 54px;
}

.footer-grid section {
  min-width: 0;
}

.footer-brand p,
.newsletter p {
  margin: 24px 0;
  color: rgba(203, 213, 225, 0.72);
  font-size: 15px;
  line-height: 1.9;
}

.social-row {
  display: flex;
  gap: 14px;
}

.social-row a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 800;
}

.footer-grid h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 16px;
}

.footer-grid section:not(.footer-brand):not(.newsletter) a {
  display: block;
  margin-top: 10px;
  color: rgba(203, 213, 225, 0.64);
  font-size: 15px;
}

.newsletter {
  padding-left: 44px;
  border-left: 1px solid rgba(148, 163, 184, 0.15);
}

.newsletter form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.newsletter input {
  min-width: 0;
  height: 54px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 8px;
  outline: none;
  background: rgba(30, 41, 59, 0.82);
  color: #ffffff;
  padding: 0 18px;
}

.newsletter input::placeholder {
  color: rgba(203, 213, 225, 0.46);
}

.newsletter button {
  height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(105deg, #c45ddc, #7c3aed);
  color: #ffffff;
  font-weight: 850;
}

.copyright {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.09);
  color: rgba(148, 163, 184, 0.7);
  font-size: 14px;
  text-align: center;
}

.article-shell {
  width: min(100% - 64px, 840px);
  margin: 0 auto;
  padding: 150px 0 72px;
}

.article {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.article-meta {
  margin: 0 0 12px;
  color: #c084fc;
  font-size: 14px;
  font-weight: 800;
}

.article h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.08;
}

.article h2 {
  margin: 42px 0 12px;
  color: #ffffff;
  font-size: 24px;
}

.article h3 {
  margin: 30px 0 10px;
  color: rgba(248, 250, 252, 0.94);
  font-size: 19px;
  line-height: 1.35;
}

.article > p {
  margin: 20px 0 0;
  color: rgba(226, 232, 240, 0.82);
  font-size: 18px;
}

.article ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.article li {
  position: relative;
  padding-left: 22px;
  color: rgba(226, 232, 240, 0.8);
  font-size: 17px;
  line-height: 1.75;
}

.article li::before {
  position: absolute;
  top: 0.85em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(192, 132, 252, 0.78);
  content: "";
}

.landing-shell {
  padding: 150px 0 72px;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  gap: 44px;
  align-items: center;
}

.landing-copy h1 {
  max-width: 680px;
  margin: 12px 0 0;
  background: linear-gradient(120deg, #ff8ee7 0%, #9b5cff 70%, #7dd3fc 100%);
  background-clip: text;
  color: transparent;
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 900;
  line-height: 1.06;
}

.keyword-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.keyword-pills span {
  padding: 7px 11px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.56);
  color: rgba(226, 232, 240, 0.8);
  font-size: 12px;
  font-weight: 750;
}

.landing-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.7);
  box-shadow: var(--shadow);
}

.landing-media img {
  width: 100%;
  aspect-ratio: 1.28;
  display: block;
  object-fit: cover;
}

.landing-media figcaption {
  padding: 14px 18px;
  color: rgba(203, 213, 225, 0.72);
  font-size: 13px;
  font-weight: 750;
}

.landing-grid,
.landing-process,
.landing-faq,
.landing-related {
  margin-top: 42px;
}

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

.landing-grid article,
.landing-process,
.landing-question,
.landing-related {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(22, 31, 48, 0.86), rgba(12, 18, 32, 0.78));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.landing-grid article,
.landing-question {
  padding: 22px;
}

.landing-grid h2,
.landing-question h2,
.landing-related h2 {
  margin: 0;
  color: #ffffff;
  font-size: 21px;
  line-height: 1.28;
}

.landing-grid p,
.landing-process p,
.landing-question p {
  margin: 12px 0 0;
  color: rgba(203, 213, 225, 0.74);
}

.landing-process {
  padding: 26px;
}

.landing-process ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-process li {
  min-height: 128px;
  padding: 16px;
  border-radius: 10px;
  background: rgba(168, 85, 247, 0.09);
}

.landing-process li span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: #ffffff;
  font-weight: 900;
}

.landing-faq {
  display: grid;
  gap: 12px;
}

.landing-related {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 20px;
  align-items: center;
  padding: 24px;
}

.landing-related nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.landing-related a {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.12);
  color: #e9d5ff;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 20px;
  }

  .nav {
    gap: 24px;
  }

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

  .feature-icon {
    left: 24px;
  }

  .character-grid {
    gap: 14px;
  }

  .character-card {
    min-height: 440px;
  }

  .article-grid,
  .entry-point-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-process ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 900px) {
  .page-frame,
  .site-header,
  .footer-grid,
  .copyright,
  .article-shell {
    width: min(100% - 32px, var(--container));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: auto;
    padding-top: 18px;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-actions {
    gap: 8px;
  }

  .topup-button,
  .login-button {
    min-height: 34px;
    padding: 0 14px;
    font-size: 13px;
  }

  .home-hero {
    min-height: 760px;
    padding-top: 154px;
  }

  .hero-illustration {
    top: 130px;
    width: 100%;
    height: 520px;
    opacity: 0.62;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(4, 7, 13, 0.32), rgba(4, 7, 13, 0.72) 54%, #04070d 100%),
      linear-gradient(90deg, #04070d 0%, rgba(4, 7, 13, 0.68) 100%);
  }

  .hero-copy h1 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .hero-copy h2 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .feature-grid,
  .landing-hero,
  .landing-grid,
  .landing-related,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .landing-related nav {
    justify-content: flex-start;
  }

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

  .section-heading > a {
    position: static;
    display: inline-flex;
    margin-top: 14px;
  }

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

  .membership {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px;
  }

  .membership-copy {
    align-items: flex-start;
    gap: 18px;
  }

  .membership ul {
    gap: 14px 20px;
  }

  .upgrade-button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 18px;
  }

  .header-actions {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 820px;
  }

  .hero-actions {
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .stat-strip span + span {
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    border-left: 0;
  }

  .feature-card {
    padding: 88px 22px 24px;
  }

  .feature-icon {
    top: 24px;
    left: 22px;
  }

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

  .entry-point-grid,
  .landing-process ol {
    grid-template-columns: 1fr;
  }

  .landing-shell {
    padding-top: 136px;
  }

  .landing-process li {
    min-height: 0;
  }

  .character-card {
    min-height: 430px;
  }

  .membership-copy,
  .footer-grid {
    display: block;
  }

  .crown {
    margin-bottom: 12px;
  }

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

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

  .newsletter form {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 0;
  }

  .footer-grid section {
    margin-top: 34px;
  }

  .footer-brand {
    margin-top: 0;
  }

  .article {
    padding: 28px 22px;
  }
}

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