@font-face {
  font-family: Inter;
  src: url("fonts/inter-latin.woff2?v=e3cadc12c68d") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --ink: #070e27;
  --body: #596780;
  --cyan: #00c5ed;
  --blue: #0079ff;
  --line: #dceaf5;
  --light: #f3f9ff;
  --max: 1180px;
  --dark: #081620;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.08;
}
h1,
h2 {
  letter-spacing: -1.9px;
}
/* Component labels retain their appearance without heading semantics. */
.game-name, .pros-item-title, .error-title, .advice-title, .footer-title, .dialog-title {
  display: block;
  margin: 0;
  font-weight: 800;
  line-height: 1.08;
}
.advice-title { letter-spacing: -0.3px; }

h2 {
  font-size: 50px;
}
h3 {
  font-size: 24px;
  letter-spacing: -0.75px;
}
h4 {
  font-size: 20px;
  letter-spacing: -0.3px;
}
p {
  color: var(--body);
  margin-top: 20px;
}
p + p {
  margin-top: 26px;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  border: 0;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
::selection {
  background: #bbecff;
  color: #061326;
}
.container {
  width: calc(100% - 100px);
  max-width: var(--max);
  margin-inline: auto;
}
.section {
  padding: 70px 0;
}
.split {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 36px;
  align-items: center;
}
.split.equal {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.split.wide-left {
  grid-template-columns: 58% 1fr;
  gap: 38px;
}
.split > * {
  min-width: 0;
}
.blue {
  color: var(--blue);
}
.cyan {
  color: var(--cyan);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #159be0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  line-height: 1.5;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.eyebrow:after {
  content: "";
  height: 1px;
  width: 88px;
  background: currentColor;
  opacity: 0.65;
}
.eyebrow.pill {
  display: table;
  background: #eaf9ff;
  border-radius: 24px;
  padding: 5px 14px;
  letter-spacing: 1.4px;
  color: #00a8e9;
  margin-bottom: 25px;
}
.eyebrow.pill:after {
  display: none;
}
.eyebrow.center-line {
  justify-content: center;
}
.eyebrow.center-line:before {
  content: "";
  height: 1px;
  width: 55px;
  background: currentColor;
}
.eyebrow.center-line:after {
  width: 55px;
}
.icon {
  flex: none;
  vertical-align: middle;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 60px;
  padding: 15px 29px;
  background: linear-gradient(125deg, #fff, #eff7fc);
  border: 1px solid #e6e8ed;
  border-radius: 40px;
  color: #080b10;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 22px #0079ff25;
}
.button .icon {
  width: 25px;
  height: 25px;
}
.button.primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  border-radius: 10px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: #fff;
  padding: 12px;
  z-index: 20;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 100px;
  margin: 28px auto 0;
  padding: 8px 24px;
  width: calc(100% - 72px);
  border: 1px solid #ffffff1c;
  border-radius: 24px;
  color: white;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  mix-blend-mode: screen;
}
.brand span {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 7px;
}
.site-header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  flex: 1;
}
.site-header nav a {
  position: relative;
  white-space: nowrap;
  font-size: 15px;
  padding: 20px 0;
}
.site-header nav a:after {
  position: absolute;
  content: "";
  height: 3px;
  border-radius: 3px;
  bottom: 5px;
  left: 0;
  right: 0;
  background: var(--hero-accent, #9bd4fc);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.site-header nav a:hover:after,
.site-header nav a[aria-current]:after {
  transform: scaleX(1);
}
.site-header nav a[aria-current] {
  font-weight: 700;
}
.nav-download {
  min-height: 59px;
  white-space: nowrap;
  font-size: 16px;
  padding: 16px 24px;
  gap: 14px;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  overflow: hidden;
  background: var(--hero-bg, #081620);
  color: #f8fbff;
  min-height: 720px;
  padding-top: 1px;
  --hero-accent: #96ccff;
}
.hero-main {
  position: relative;
  min-height: 570px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 59px;
  width: 52%;
}
.hero-copy h1 {
  font-size: 59px;
  line-height: 1.05;
  letter-spacing: -1.8px;
}
.hero-copy > p:not(.eyebrow) {
  font-size: 20px;
  line-height: 1.45;
  color: #bbc9d8;
  max-width: 590px;
  margin-top: 20px;
}
.hero .eyebrow {
  font-size: 12px;
  letter-spacing: 3.3px;
  color: #a7bfd1;
  margin-bottom: 24px;
  font-weight: 400;
}
.hero-button {
  margin-top: 28px;
}
.hero-art {
  position: absolute;
  right: -50px;
  top: 15px;
  width: 51.3%;
  height: auto;
  max-width: none;
  mask-image: linear-gradient(to right, transparent, #000 8%);
}
.badges {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e4e9eb;
  font-size: 14px;
}
.badge .icon {
  color: var(--hero-accent);
  width: 26px;
  height: 26px;
}
.hero-home {
  --hero-bg: #090f12;
  --hero-accent: #4be8f4;
}
.hero-home .site-header {
  width: calc(100% - 30px);
  min-height: 120px;
  margin-top: 36px;
  padding-inline: 36px;
  gap: 36px;
}
.hero-home .brand img {
  width: 108px;
  height: 100px;
}
.hero-home .site-header nav {
  justify-content: flex-end;
  gap: 48px;
}
.hero-home .nav-download {
  padding: 19px 30px;
  min-height: 60px;
  margin-left: 30px;
  position: relative;
}
.hero-home .nav-download:before {
  content: "";
  position: absolute;
  left: -30px;
  height: 50px;
  width: 1px;
  background: #35404a;
}
.hero-home .hero-copy {
  width: 58%;
  padding-top: 81px;
}
.hero-home .hero-copy h1 {
  font-size: 52px;
  letter-spacing: -1.7px;
  white-space: nowrap;
}
.hero-home h1 span {
  color: #b5bdc8;
}
.hero-home .hero-copy > p:not(.eyebrow) {
  font-size: 18px;
  max-width: 565px;
  line-height: 1.2;
  margin-top: 17px;
  color: #97a2ad;
}
.hero-home .hero-button {
  margin-top: 30px;
  padding-inline: 32px;
  min-height: 61px;
}
.hero-home .hero-art {
  width: 605px;
  top: 18px;
}
.hero-home .hero-main {
  min-height: 563px;
}
.hero-home .badge {
  padding: 12px 17px;
  border: 1px solid #293b48;
  border-radius: 30px;
  font-size: 13px;
}
.hero-home .badge .icon {
  width: 20px;
  height: 20px;
}
.hero-home .badges {
  gap: 14px;
  margin-top: 24px;
}
.hero-home .eyebrow {
  color: #7e929f;
  letter-spacing: 4px;
  font-size: 10px;
  margin-bottom: 23px;
  gap: 28px;
}
.hero-home .eyebrow:after {
  width: 116px;
}
.hero-discord {
  min-height: 718px;
  --hero-bg: #081925;
}
.hero-discord .site-header {
  margin-top: 40px;
  min-height: 92px;
  width: calc(100% - 86px);
  border-color: #244055;
}
.hero-discord .hero-main {
  width: calc(100% - 160px);
  max-width: 1120px;
  min-height: 438px;
}
.hero-discord .hero-copy {
  padding-top: 48px;
  width: 52%;
}
.hero-discord .hero-copy h1 {
  font-size: 66px;
  letter-spacing: -1.4px;
}
.hero-discord h1 span {
  color: #98cbff;
}
.hero-discord .hero-copy > p:not(.eyebrow) {
  font-size: 21px;
  line-height: 1.3;
  margin-top: 22px;
}
.hero-discord .hero-button {
  margin-top: 16px;
}
.hero-discord .eyebrow {
  letter-spacing: 2px;
  margin-bottom: 17px;
}
.hero-discord .eyebrow:before {
  content: "";
  width: 25px;
  height: 3px;
  background: #9cd6ff;
}
.hero-discord .eyebrow:after {
  display: none;
}
.invite-card {
  position: absolute;
  right: -18px;
  top: 55px;
  width: 46.5%;
  padding: 28px 25px 20px;
  border: 1px solid #335069;
  border-radius: 20px;
  background: linear-gradient(110deg, #102538, #112231);
  text-align: center;
  box-shadow: 0 10px 32px #0002;
}
.invite-card > img {
  width: 118px;
  height: 118px;
  border-radius: 25px;
  margin: 0 auto 10px;
}
.invite-card p {
  margin: 0;
  color: #b2cae1;
  font-size: 22px;
}
.invite-card h2 {
  font-size: 31px;
  letter-spacing: 0;
  margin-top: 4px;
}
.member-count {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 16px;
  margin-top: 13px;
}
.invite-button {
  width: 100%;
  background: #8fc8ff;
  border: 0;
  border-radius: 12px;
  margin-top: 34px;
  min-height: 57px;
  font-size: 20px;
}
.hero-benefits {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 2;
  max-width: 1150px;
  margin: 22px auto 0;
}
.hero-benefits > div {
  display: flex;
  align-items: center;
  gap: 21px;
  padding-right: 24px;
  border-right: 1px solid #ffffff26;
}
.hero-benefits > div:last-child {
  border: 0;
}
.hero-benefits .icon {
  width: 48px;
  height: 48px;
  color: #b9c9d9;
}
.hero-benefits strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}
.hero-benefits small {
  display: block;
  color: #b8c7d9;
  font-size: 13px;
  margin-top: 4px;
}
.hero-discord .hero-benefits {
  margin-top: 20px;
  max-width: 1118px;
  gap: 24px;
}
.hero-discord .hero-benefits .icon {
  width: 62px;
  height: 62px;
  padding: 14px;
  border: 1px solid #9dd7ff;
  border-radius: 19px;
}
.hero-discord .hero-benefits strong {
  font-size: 16px;
}
.hero-pc {
  --hero-bg: #1a1d20;
  --hero-accent: #b8c1ce;
  min-height: 752px;
}
.theme-label {
  font-size: 12px;
  color: #939aa2;
  margin: 40px 18px -8px;
  letter-spacing: 0.3px;
}
.hero-pc .site-header {
  margin-top: 5px;
  border: 0;
  border-bottom: 1px solid #ffffff14;
  border-radius: 0;
  width: 100%;
  padding: 7px 65px;
  min-height: 91px;
}
.hero-pc .hero-main {
  width: calc(100% - 130px);
  max-width: 1150px;
  min-height: 500px;
}
.hero-pc .hero-copy {
  padding-top: 55px;
  width: 43.5%;
}
.hero-pc .hero-copy h1 {
  font-size: 96px;
  letter-spacing: -2.5px;
}
.hero-pc h1 span {
  color: #bac2d0;
}
.hero-pc .hero-copy > p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.42;
  color: #ddd;
  margin-top: 8px;
}
.hero-pc .hero-button {
  margin-top: 17px;
  min-height: 52px;
  padding: 12px 27px;
  background: #bac3ce;
}
.hero-pc .hero-art {
  top: 3px;
  right: -65px;
  width: 710px;
}
.hero-pc .hero-benefits {
  margin-top: 15px;
  padding: 26px 0 30px;
  max-width: 1150px;
  justify-content: space-between;
  border-top: 1px solid #ffffff08;
  gap: 20px;
}
.hero-vng {
  --hero-bg: #22211e;
  --hero-accent: #e5d0b6;
}
.hero-vng .hero-main {
  width: calc(100% - 136px);
  max-width: 1144px;
}
.hero-vng .hero-copy {
  width: 51%;
  padding-top: 64px;
}
.hero-vng .hero-copy h1 {
  font-size: 58px;
  white-space: nowrap;
  letter-spacing: -1px;
}
.hero-vng h1 span {
  color: #e5cfb8;
}
.hero-vng .hero-copy > p:not(.eyebrow) {
  font-size: 20px;
  color: #ccc;
  line-height: 1.4;
}
.hero-vng .hero-art {
  width: 604px;
  right: -68px;
  top: 25px;
}
.hero-vng .hero-button {
  margin-top: 24px;
  min-height: 72px;
  padding-inline: 32px;
  font-size: 20px;
}
.hero-vng .badges {
  margin-top: 44px;
  width: 780px;
  gap: 26px;
}
.hero-vng .badge {
  font-size: 16px;
  padding-right: 25px;
  border-right: 1px solid #ffffff2b;
}
.hero-vng .badge:last-child {
  border: 0;
}
.hero-vng .badge .icon {
  height: 36px;
  width: 36px;
}
.hero-ios {
  --hero-bg: #0c1d29;
  --hero-accent: #00d4ec;
  min-height: 716px;
}
.hero-ios .site-header {
  margin-top: 0;
  padding: 10px 0;
  border: 0;
  min-height: 80px;
  width: calc(100% - 136px);
}
.hero-ios .site-header nav {
  justify-content: flex-end;
  gap: 45px;
}
.hero-ios .brand img {
  width: 54px;
  height: 60px;
}
.hero-ios .nav-download {
  background: #a0d8ff;
  min-height: 48px;
  padding: 13px 28px;
  border: 0;
}
.hero-ios .nav-download > .icon {
  display: none;
}
.search-button {
  padding: 0;
  background: none;
  color: white;
}
.search-button .icon {
  width: 29px;
  height: 29px;
}
.hero-ios .hero-main {
  width: calc(100% - 146px);
  max-width: 1134px;
}
.hero-ios .hero-copy {
  padding-top: 29px;
  width: 53%;
}
.hero-ios .hero-copy h1 {
  font-size: 55px;
  letter-spacing: -1.8px;
  line-height: 1;
}
.hero-ios .eyebrow {
  margin-bottom: 16px;
  color: #a6dffc;
  font-size: 14px;
  letter-spacing: 3px;
}
.hero-ios .eyebrow:after {
  display: none;
}
.hero-ios .hero-copy > p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.34;
  margin-top: 27px;
  color: #e0e3e9;
}
.hero-ios .hero-copy > p + p {
  margin-top: 22px;
}
.hero-ios .hero-art {
  width: 604px;
  right: -73px;
  top: -1px;
}
.hero-ios .badges {
  gap: 24px;
  margin-top: 32px;
}
.hero-ios .badge {
  font-size: 13px;
  padding-right: 20px;
  border-right: 1px solid #68808b66;
  gap: 13px;
  min-height: 42px;
}
.hero-ios .badge:last-child {
  padding: 0;
  border: 0;
}
.hero-ios .badge .icon {
  width: 30px;
  height: 30px;
}
.hero-ios .hero-button {
  border-radius: 12px;
  background: #a0d8ff;
  border: 0;
  min-height: 47px;
  font-size: 15px;
  padding: 12px 22px;
  margin-top: 33px;
  gap: 20px;
}
.hero-ios .ios-download-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  margin-top: 33px;
}
.hero-ios .ios-download-actions .hero-button {
  margin-top: 0;
}
.hero-ios .ios-ipa-row {
  display: block;
  width: 100%;
  margin-top: 15px;
  text-align: center;
}
.hero-ios .ios-ipa-link {
  display: inline-block;
  margin: 0;
  padding: 2px 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  text-decoration-line: underline !important;
  text-decoration-color: #a0d8ff;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.hero-ios .ios-ipa-link:hover {
  color: #a0d8ff;
  text-decoration-color: #ffffff;
}
.hero-ios .ios-ipa-link:focus-visible {
  color: #ffffff;
  outline: 2px solid #a0d8ff;
  outline-offset: 4px;
  border-radius: 2px;
}
/* Common editorial sections */
.overview {
  min-height: 720px;
  display: flex;
  align-items: center;
}
.overview .split {
  gap: 0;
  grid-template-columns: 50.5% 49.5%;
}
.overview .eyebrow {
  font-size: 11px;
  color: #8190a0;
  letter-spacing: 3.4px;
  margin-bottom: 30px;
}
.overview .eyebrow:after {
  color: #00d9f7;
}
.overview h2 {
  font-size: 52px;
  letter-spacing: -2.4px;
  color: #12191d;
  white-space: nowrap;
}
.overview p {
  font-size: 20px;
  line-height: 1.3;
  margin-top: 24px;
  color: #717c88;
}
.overview p + p {
  margin-top: 29px;
}
.overview-art {
  width: 606px;
  max-width: 104%;
  mix-blend-mode: multiply;
}
.page-discord .overview {
  min-height: 790px;
}
.page-discord .overview h2 {
  font-size: 48px;
  white-space: normal;
}
.page-discord .overview p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.42;
}
.page-pc .overview {
  min-height: 717px;
}
.centered-intro {
  min-height: 720px;
  display: flex;
  align-items: center;
  text-align: center;
}
.centered-intro h2 {
  font-size: 57px;
}
.center-copy {
  max-width: 1050px;
  margin: auto;
}
.center-copy p {
  font-size: 22px;
  line-height: 1.48;
  color: #293957;
}
.center-copy p + p {
  margin-top: 23px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  margin: 48px 0 0;
}
.stats > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 70px;
  border-right: 1px solid #b3becd;
  color: #14213a;
  font-size: 21px;
}
.stats > div:last-child {
  border: 0;
}
.stat-number {
  font-size: 57px;
  font-weight: 400;
  line-height: 1;
  color: var(--cyan);
  letter-spacing: -2px;
}
.table-wrap {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: auto;
  font-size: 17px;
  line-height: 1.45;
  scrollbar-width: thin;
}
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.table-wrap th,
.table-wrap td {
  padding: 23px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.table-wrap tr > *:last-child {
  border-right: 0;
}
.table-wrap tbody tr:last-child > * {
  border-bottom: 0;
}
.table-wrap thead {
  background: linear-gradient(120deg, #eef9ff, #f3f8fc);
  color: #12304e;
}
.table-wrap th {
  font-weight: 600;
}
.table-wrap td {
  color: #485c7a;
}
.table-wrap tbody th {
  font-weight: 600;
  font-size: 16px;
}
.icon-label {
  display: flex;
  align-items: center;
  gap: 22px;
}
.icon-label .icon {
  color: #00aee3;
  width: 29px;
  height: 29px;
}
.note {
  display: flex;
  gap: 20px;
  border: 1px solid #a7e7ff;
  background: linear-gradient(130deg, #ebfaff, #eef8fc);
  border-radius: 12px;
  padding: 20px;
  margin-top: 32px;
  font-size: 16px;
}
.note > .icon {
  width: 35px;
  height: 35px;
  color: #00b1dc;
}
.note strong {
  font-size: 16px;
  color: #102439;
}
.note p {
  font-size: 15px;
  margin-top: 4px;
  line-height: 1.55;
  color: #4d627d;
}
.requirements {
  min-height: 720px;
  display: flex;
  align-items: center;
}
.requirements .split {
  grid-template-columns: 36.5% 1fr;
  gap: 30px;
  align-items: start;
}
.requirements h2 {
  font-size: 39px;
  line-height: 1.18;
  letter-spacing: -0.8px;
}
.requirements p {
  font-size: 18px;
  line-height: 1.5;
  color: #3e5270;
}
.requirements .table-wrap th,
.requirements .table-wrap td {
  padding: 23px 26px;
}
.requirements .table-wrap tbody th {
  white-space: nowrap;
}
.requirements .note p {
  font-size: 15px;
}
.plain-table {
  border: 0;
  border-radius: 0;
}
.plain-table thead {
  background: transparent;
}
.page-pc .requirements {
  min-height: 620px;
}
.dashboard-section {
  min-height: 714px;
  background: #f7fcff;
  padding: 82px 0 45px;
  display: flex;
  align-items: center;
}
.dashboard-section .split {
  grid-template-columns: 42% 1fr;
  gap: 25px;
}
.dashboard-section h2 {
  font-size: 67px;
  line-height: 1;
  letter-spacing: -2px;
}
.dashboard-section p {
  font-size: 20px;
  line-height: 1.45;
}
.dashboard-section .eyebrow {
  font-size: 12px;
  letter-spacing: 1.8px;
  color: #00c8ed;
}
.dashboard-section .split > img {
  width: 100%;
  mix-blend-mode: multiply;
}
.benefit-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d2e7f2;
  padding-top: 30px;
  margin-top: 34px;
}
.benefit-strip > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  border-right: 1px solid #d2e7f2;
  min-height: 59px;
  font-size: 18px;
}
.benefit-strip > div:last-child {
  border: 0;
}
.benefit-strip .icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #e5f9ff;
  padding: 14px;
  color: #143344;
}
.page-discord .dashboard-section {
  min-height: 690px;
  padding-top: 60px;
  padding-bottom: 35px;
}
.page-discord .dashboard-section h2 {
  font-size: 50px;
}
.page-discord .dashboard-section p {
  font-size: 16px;
  line-height: 1.45;
}
.page-discord .dashboard-section .split {
  grid-template-columns: 42% 1fr;
}
.page-discord .benefit-strip > div {
  font-size: 17px;
  gap: 22px;
}
.conclusion {
  min-height: 714px;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 115px 0 140px;
}
.conclusion h2 {
  font-size: 80px;
  letter-spacing: -3px;
  margin-bottom: 58px;
}
.conclusion p {
  font-size: 27px;
  line-height: 1.6;
  color: #4d5f7c;
  max-width: 1130px;
  margin: 0 auto;
}
.page-home .conclusion p {
  text-align: left;
  font-size: 25px;
}
.page-discord .conclusion {
  min-height: 720px;
}
.page-pc .conclusion {
  min-height: 700px;
}
.faq {
  padding: 55px 0 24px;
  background: linear-gradient(#fcfdfe, #fff);
  min-height: 640px;
}
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  margin-bottom: 36px;
}
.faq .eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  color: #6f839a;
  margin-bottom: 8px;
}
.faq .eyebrow:after {
  display: none;
}
.faq h2 {
  font-size: 43px;
  letter-spacing: -1.4px;
  position: relative;
  padding-bottom: 13px;
}
.faq h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 76px;
  height: 3px;
  background: var(--blue);
}
.faq-header p {
  font-size: 16px;
  margin-top: 10px;
}
.help-note {
  display: block;
  flex: 0 0 225px;
  border-left: 2px solid var(--blue);
  padding-left: 14px;
  font-size: 14px;
  line-height: 1.5;
}
.help-note strong {
  display: block;
  color: var(--blue);
  font-size: 17px;
  margin-bottom: 3px;
}
.help-note span {
  color: var(--body);
}
.faq-list {
  border-top: 1px solid #eef1f5;
}
.faq-item {
  position: relative;
  padding: 23px 24px 25px 150px;
  min-height: 128px;
}
.faq-item:nth-child(even) {
  background: #f2f6fb;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item h3 {
  font-size: 23px;
  letter-spacing: -0.5px;
  font-weight: 700;
  line-height: 1.2;
}
.faq-number {
  position: absolute;
  left: 0;
  top: 25px;
  bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  border-right: 1px solid #cbd8e8;
  color: #7385a1;
  font-size: 24px;
  font-weight: 600;
}
.faq-answer {
  font-size: 20px;
  line-height: 1.45;
  color: #60728c;
  margin-top: 5px;
}
.faq-item:not([open]) {
  min-height: 85px;
}
.faq-item:not([open]) .faq-number {
  top: 17px;
  bottom: 17px;
}
.page-home .faq {
  min-height: 665px;
  padding-top: 30px;
}
.page-home .faq-item {
  min-height: 78px;
  padding: 17px 20px 15px 104px;
}
.page-home .faq h3 {
  font-size: 18px;
}
.page-home .faq-answer {
  font-size: 16px;
  line-height: 1.25;
}
.page-home .faq-number {
  font-size: 16px;
  width: 80px;
  top: 16px;
  bottom: 16px;
}
.page-home .faq-header {
  margin-bottom: 32px;
}
.page-ios .faq h2 {
  font-size: 53px;
}
.page-vng .faq-item {
  padding-left: 133px;
  min-height: 116px;
}
.page-vng .faq-number {
  width: 103px;
}
.page-vng .faq h3 {
  font-size: 21px;
}
.page-vng .faq-answer {
  font-size: 18px;
}
/* Homepage */
.home-features {
  position: relative;
  overflow: hidden;
  min-height: 1662px;
  padding: 65px 0 27px;
  background:
    radial-gradient(ellipse at 108% 0, #dffaff 0, transparent 31%),
    radial-gradient(ellipse at -12% 72%, #e8faff 0, transparent 35%), #fcfeff;
}
.feature-group {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 15px;
  align-items: center;
}
.feature-group.reverse {
  grid-template-columns: 1fr 30%;
  gap: 15px;
  margin-top: 37px;
}
.feature-intro h2 {
  font-size: 51px;
  line-height: 1.07;
  letter-spacing: -2px;
}
.feature-intro .eyebrow {
  font-size: 16px;
  letter-spacing: 2px;
  color: #00bdf5;
  margin-bottom: 22px;
}
.feature-intro p {
  font-size: 26px;
  line-height: 1.15;
  color: #5775b5;
  margin-top: 26px;
  letter-spacing: -1px;
}
.handwritten {
  font-family: cursive;
  font-style: italic;
  font-size: 44px;
  line-height: 1.2;
  color: #14334f;
  transform: rotate(-9deg);
  margin-top: 75px;
}
.handwritten:after {
  content: "";
  display: block;
  width: 250px;
  height: 7px;
  border-radius: 50%;
  background: #00bce7;
  transform: rotate(-3deg);
  margin-top: 6px;
}
.feature-list {
  display: grid;
  gap: 12px;
}
.feature-card {
  display: grid;
  grid-template-columns: 43% 1fr;
  position: relative;
  align-items: center;
  min-height: 171px;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 3px 12px #a6d9ef40;
  border: 1px solid #e6f5fc;
}
.feature-card img {
  width: 100%;
  height: 170px;
  object-fit: fill;
  padding-left: 18px;
}
.feature-card > div {
  padding: 17px 20px 17px 15px;
}
.feature-card h3 {
  font-size: 26px;
  letter-spacing: -1.1px;
  line-height: 1.05;
}
.feature-card p {
  font-size: 21px;
  line-height: 1.17;
  letter-spacing: -0.65px;
  color: #6882bc;
  margin-top: 9px;
}
.feature-number {
  position: absolute;
  font-size: 49px;
  font-weight: 800;
  color: #a5abb7;
  left: 3px;
  top: 9px;
  letter-spacing: -3px;
  z-index: 1;
}
.feature-group.reverse .feature-card > div {
  padding: 14px 20px;
}
.feature-group.reverse .feature-card p {
  font-size: 20px;
}
.feature-group.reverse .feature-card h3 {
  font-size: 25px;
}
.home-features .center-line {
  margin: 28px 0 0;
  color: #318bdd;
  font-size: 14px;
  letter-spacing: 3px;
}
.home-features .center-line:before,
.home-features .center-line:after {
  width: 210px;
}
.download-section {
  min-height: 718px;
  background: #050709;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  padding: 78px 0;
}
.download-section h2 {
  font-size: 62px;
  letter-spacing: -1.2px;
}
.download-section > div > p {
  font-size: 25px;
  color: #c1c8d0;
  line-height: 1.3;
  margin-top: 17px;
}
.download-logo {
  width: 138px;
  height: 128px;
  margin: 20px auto 6px;
  mix-blend-mode: screen;
}
.release-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #313941;
  border-radius: 19px;
  padding: 26px 10px;
  max-width: 974px;
  margin: 0 auto 26px;
  background: #080c0f;
}
.release-info > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.release-info > div + div:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: #333b45;
}
.release-info .icon {
  width: 33px;
  height: 33px;
  color: var(--blue);
  margin-bottom: 12px;
}
.release-info span {
  font-size: 18px;
  color: #bac2cc;
}
.release-info strong {
  font-size: 21px;
}
.download-section .button {
  font-size: 23px;
  min-height: 70px;
  padding: 18px 45px;
  gap: 26px;
  border-radius: 15px;
}
.download-section .button > .icon:last-child {
  display: none;
}
.download-section .button > .icon {
  width: 32px;
  height: 32px;
}
.home-discord {
  background: #030b10;
  min-height: 704px;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
}
.home-discord h2 {
  font-size: 65px;
  letter-spacing: -1px;
}
.home-discord p {
  font-size: 22px;
  line-height: 1.47;
  color: #b9ccd5;
  max-width: 940px;
  margin: 32px auto 0;
}
.home-discord .stats {
  margin-top: 55px;
}
.home-discord .stats > div {
  color: #fff;
}
.glance {
  min-height: 850px;
  background: #f9fdff;
  padding: 32px 0 55px;
}
.glance h2 {
  font-size: 68px;
  line-height: 0.96;
  letter-spacing: -1.9px;
}
.glance p {
  font-size: 20px;
  line-height: 1.32;
  color: #364460;
  margin-top: 18px;
}
.glance .split.equal {
  grid-template-columns: 55% 1fr;
  gap: 25px;
}
.platform-icons {
  display: flex;
  justify-content: space-around;
  align-self: start;
  padding-top: 49px;
}
.platform-icons .icon-label {
  flex-direction: column;
  gap: 22px;
  font-size: 20px;
  color: #071029;
}
.platform-icons .icon {
  color: #081127;
  width: 62px;
  height: 62px;
}
.glance .table-wrap {
  margin-top: 19px;
}
.glance .table-wrap th,
.glance .table-wrap td {
  padding: 11px 18px;
  font-size: 18px;
}
.glance .table-wrap thead th {
  padding-block: 17px;
}
.games {
  min-height: 947px;
  padding: 50px 0 28px;
}
.games-header {
  display: grid;
  grid-template-columns: 57% 1fr;
  gap: 38px;
  align-items: center;
}
.games h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 1.04;
  letter-spacing: -2px;
}
.games h2 span {
  color: #456c96;
}
.games .eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  color: #a2b3ca;
}
.games-header p {
  font-size: 17px;
  line-height: 1.5;
}
.game-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding-left: 35px;
  border-left: 1px solid var(--line);
}
.game-facts .icon {
  background: #f2f6fb;
  width: 55px;
  height: 55px;
  padding: 16px;
  border-radius: 50%;
  color: #5d697c;
  margin-bottom: 15px;
}
.game-facts h3 {
  font-family: Georgia, serif;
  font-size: 28px;
  letter-spacing: -1.2px;
  font-weight: 400;
}
.game-facts > div:first-child h3 {
  font-size: 37px;
}
.game-facts span {
  font:
    17px Georgia,
    serif;
}
.game-facts p {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 21px;
  position: relative;
  padding-top: 18px;
}
.game-facts p:before {
  content: "";
  height: 2px;
  width: 25px;
  background: #54799f;
  position: absolute;
  top: 0;
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 38px -15px 0;
  background: #f4f8fb;
  border-radius: 13px;
  padding: 18px 15px;
}
.game-column {
  padding-right: 14px;
  border-right: 1px solid #d7e3ef;
}
.game-column:last-child {
  padding: 0;
  border: 0;
}
.game-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 13px;
  min-height: 65px;
  border-radius: 13px;
}
.game-row:nth-child(odd) {
  background: #ffffffb0;
}
.game-row > .game-number {
  font:
    14px Georgia,
    serif;
  background: #edf3f8;
  padding: 8px;
  border-radius: 7px;
  color: #516178;
}
.game-row img {
  width: 45px;
  height: 45px;
  border-radius: 6px;
}
.game-row .game-name {
  font:
    17px Georgia,
    serif;
  letter-spacing: -0.4px;
}
.game-row > .icon {
  width: 16px;
  height: 16px;
  margin-left: auto;
  color: #8895a5;
}
.section-signoff {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 3px;
  color: #9fafd0;
  margin-top: 37px;
}
.scripts {
  min-height: 632px;
  background: #f7fcff;
  display: flex;
  align-items: center;
  padding: 50px 0;
}
.scripts h2 {
  font-size: 61px;
  line-height: 1;
  letter-spacing: -1.6px;
}
.scripts p {
  font-size: 21px;
  line-height: 1.48;
  margin-top: 27px;
  color: #4f5c7e;
}
.script-callout {
  background: #d7eaff;
  border-radius: 13px;
  padding: 18px 25px;
  font-size: 21px;
  font-weight: 500;
  margin-top: 25px;
}
.script-list {
  border: 1px solid #cfe3ff;
  border-radius: 20px;
  list-style: none;
  margin: 0;
  padding: 17px 35px 17px 45px;
  counter-reset: scripts;
}
.script-list li {
  counter-increment: scripts;
  display: flex;
  gap: 28px;
  align-items: center;
  min-height: 52px;
  font-size: 22px;
  white-space: nowrap;
  letter-spacing: -0.5px;
}
.script-list li:before {
  content: counter(scripts);
  display: grid;
  place-items: center;
  flex: none;
  width: 45px;
  height: 45px;
  background: #cce5ff;
  border-radius: 50%;
  color: #0066d6;
  font-size: 22px;
  font-weight: 700;
}
.pros-cons {
  min-height: 710px;
  background: radial-gradient(ellipse at 30% 0, #0c1c28, #060e16);
  color: #fff;
  padding: 27px 0 30px;
}
.pros-cons .eyebrow {
  color: #00b7e6;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 12px;
}
.pros-cons h2 {
  text-align: center;
  font-size: 44px;
  letter-spacing: 0;
}
.section-description {
  max-width: 865px;
  text-align: center;
  margin: 10px auto 0;
  line-height: 1.45;
}
.pros-cons .section-description {
  font-size: 17px;
  color: #bbcee2;
}
.pros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1090px;
  margin: 32px auto 0;
}
.pros-grid > div + div {
  border-left: 1px solid #24394a;
  padding-left: 36px;
}
.pros-grid h3 {
  font-size: 29px;
  letter-spacing: 0;
  border-bottom: 1px solid #2b4356;
  padding-bottom: 13px;
}
.pros-grid article {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 14px 0;
  border-bottom: 1px solid #1c3445;
  min-height: 89px;
}
.pros-grid article:last-child {
  border-bottom: 0;
}
.pros-grid article > .icon {
  width: 57px;
  height: 57px;
  border: 2px solid #00acfb;
  border-radius: 50%;
  padding: 13px;
  color: #00b5ff;
}
.pros-grid .cons article > .icon {
  border-color: #7186a6;
  color: #b5c8e6;
}
.pros-grid .pros-item-title {
  font-size: 17px;
  letter-spacing: 0;
  line-height: 1.3;
  font-weight: 700;
}
.pros-grid p {
  font-size: 15px;
  line-height: 1.35;
  color: #b6cbe0;
  margin-top: 4px;
}
.page-ios .pros-cons {
  min-height: 715px;
  padding-top: 28px;
}
.page-ios .pros-cons h2 {
  font-size: 47px;
}
.page-ios .pros-cons .section-description {
  max-width: 100%;
  font-size: 19px;
}
.page-ios .pros-grid {
  margin-top: 52px;
}
.page-ios .pros-grid article {
  min-height: 108px;
  padding: 18px 0;
  gap: 34px;
}
.page-ios .pros-grid article > .icon {
  width: 65px;
  height: 65px;
  padding: 15px;
}
.page-ios .pros-grid .pros-item-title {
  font-size: 19px;
}
.page-ios .pros-grid p {
  font-size: 17px;
  line-height: 1.4;
}
.errors {
  min-height: 855px;
  padding: 25px 0 20px;
}
.errors h2 {
  font-size: 48px;
}
.errors .eyebrow {
  color: #0079ff;
  font-size: 11px;
  margin-bottom: 9px;
  letter-spacing: 2px;
}
.errors .eyebrow:after {
  display: none;
}
.errors > .container > p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.45;
  margin-top: 11px;
  color: #536489;
}
.error-list {
  display: grid;
  gap: 12px;
  margin-top: 23px;
}
.error-card {
  border: 1px solid #ddebfa;
  border-radius: 12px;
  padding: 19px 23px;
  display: grid;
  grid-template-columns: 32% 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.error-card .error-title {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.8px;
}
.error-card .error-title .icon {
  background: #e2f1ff;
  border-radius: 50%;
  width: 76px;
  height: 76px;
  padding: 21px;
  color: #0c3670;
}
.error-card > div {
  border-left: 1px solid var(--line);
  padding-left: 32px;
}
.error-card p {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 3px;
  color: #53658d;
}
.error-card .eyebrow {
  font-size: 11px;
  letter-spacing: 1.7px;
}
.error-conclusion {
  display: grid;
  grid-template-columns: 70% 1fr;
  gap: 26px;
  border-radius: 14px;
  background: #edf6ff;
  padding: 20px 33px;
  margin-top: 16px;
}
.error-conclusion h3 {
  font-size: 31px;
}
.error-conclusion p {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 6px;
  color: #53658d;
}
.error-conclusion aside {
  border-left: 1px solid #c8dff8;
  display: flex;
  gap: 20px;
  align-items: center;
  padding-left: 22px;
}
.error-conclusion aside > .icon {
  width: 70px;
  height: 70px;
  padding: 20px;
  background: #d8ebff;
  border-radius: 50%;
  color: #123d71;
}
.error-conclusion .advice-title {
  font-size: 19px;
  line-height: 1.2;
}
/* Discord */
.channels {
  min-height: 670px;
  display: flex;
  align-items: center;
  padding: 45px 0 80px;
}
.channels .split {
  grid-template-columns: 36% 1fr;
  gap: 36px;
  align-items: start;
}
.channels h2 {
  font-size: 40px;
  letter-spacing: -1px;
  line-height: 1.14;
}
.channels p {
  font-size: 18px;
  line-height: 1.52;
  color: #536b90;
  margin-top: 23px;
}
.channels .table-wrap {
  font-size: 17px;
}
.channels .table-wrap th,
.channels .table-wrap td {
  padding: 20px 32px;
}
.channels .table-wrap tbody th {
  white-space: nowrap;
}
.join-section {
  min-height: 715px;
  padding: 57px 0 40px;
  background:
    radial-gradient(ellipse at 98% 5%, #edf4ff, transparent 36%),
    linear-gradient(#fff, #f7fbff);
}
.join-heading {
  display: grid;
  grid-template-columns: 43% 35% 1fr;
  gap: 40px;
  align-items: center;
}
.join-heading h2 {
  font-size: 53px;
  line-height: 1.04;
  letter-spacing: -2px;
}
.join-heading > div:nth-child(2) {
  padding-left: 48px;
  border-left: 1px solid #aecfff;
}
.join-heading p {
  font-size: 20px;
  line-height: 1.35;
  color: #5b72a0;
  margin: 0;
}
.join-heading .eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 20px;
}
.join-heading > div:nth-child(2) .eyebrow {
  font-size: 8px;
  letter-spacing: 2px;
  margin-top: 23px;
  color: #8ba6d7;
}
.join-heading > div:nth-child(2) .eyebrow:after {
  display: none;
}
.discord-decoration {
  transform: rotate(15deg);
  padding: 25px;
  border-radius: 35px;
  background: linear-gradient(135deg, #ecf3ff, #ccddff);
  box-shadow: 15px 12px 25px #a2c8ff38;
  color: #668fff;
  max-width: 160px;
}
.discord-decoration .icon {
  width: 100%;
  height: auto;
}
.join-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 66px;
  position: relative;
}
.join-steps:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 18px;
  border-top: 2px solid #75adff;
  border-radius: 50%;
}
.join-steps article {
  position: relative;
  background: #fff;
  border: 1px solid #e5f1ff;
  border-radius: 23px;
  padding: 30px 26px;
  box-shadow: 0 7px 22px #8ebfea16;
}
.join-steps article:nth-child(even) {
  background: #edf5ff;
  transform: translateY(17px);
}
.step-count {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #0079ff;
  background: linear-gradient(135deg, #edf5ff, #cce4ff);
  border: 3px solid #f5faff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
}
.join-steps .step-count {
  position: absolute;
  top: -33px;
  left: 42%;
  width: 45px;
  height: 45px;
  font-size: 26px;
}
.join-steps article > .icon {
  width: 55px;
  height: 55px;
  padding: 13px;
  background: #f0f5fc;
  border-radius: 50%;
  margin-bottom: 11px;
}
.join-steps .eyebrow {
  font-size: 11px;
  letter-spacing: 1.7px;
  margin-bottom: 6px;
  color: #1687ff;
}
.join-steps .eyebrow:after {
  display: none;
}
.join-steps h3 {
  font-size: 19px;
  line-height: 1.13;
  letter-spacing: -0.5px;
}
.join-steps p {
  font-size: 14px;
  line-height: 1.39;
  margin-top: 13px;
  color: #5c74a1;
}
.discord-safety {
  min-height: 800px;
  display: flex;
  align-items: center;
}
.discord-safety .split {
  grid-template-columns: 37% 1fr;
  gap: 42px;
}
.discord-safety h2 {
  font-size: 43px;
  line-height: 1.13;
  letter-spacing: -1px;
}
.discord-safety p {
  font-size: 18px;
  line-height: 1.5;
  color: #4c6386;
}
.discord-safety .note p {
  font-size: 16px;
}
.discord-safety .table-wrap th,
.discord-safety .table-wrap td {
  padding: 25px 29px;
}
.discord-safety .icon-label {
  gap: 24px;
}
.discord-safety .icon-label .icon {
  width: 50px;
  height: 50px;
  padding: 12px;
  background: #edf9ff;
  border-radius: 50%;
}
.discord-safety .table-wrap th {
  font-size: 18px;
}
.discord-safety .table-wrap td {
  font-size: 18px;
}
.community {
  min-height: 650px;
  padding: 52px 0 60px;
}
.community > .container {
  max-width: 1145px;
}
.community .eyebrow {
  color: #087aff;
  font-size: 19px;
  letter-spacing: 4px;
  margin-bottom: 22px;
}
.community .eyebrow:after {
  display: none;
}
.community h2 {
  font-size: 52px;
  line-height: 1.07;
  letter-spacing: -1.5px;
}
.community > .container > p:not(.eyebrow) {
  font-size: 25px;
  line-height: 1.42;
  margin-top: 20px;
  color: #5b6c91;
}
.community-table {
  margin-top: 19px;
}
.community-label {
  display: grid;
  grid-template-columns: 39% 1fr;
  font-weight: 600;
  font-size: 23px;
  color: #56688d;
  line-height: 1;
}
.community-row {
  display: grid;
  grid-template-columns: 85px 70px 190px 1fr;
  gap: 50px;
  align-items: center;
  min-height: 98px;
  border-bottom: 1px solid #d6e3f9;
}
.community-row:last-child {
  border: 0;
}
.community-row > span {
  color: var(--blue);
  font-size: 30px;
  font-weight: 700;
  border-right: 1px solid #95b9ff;
}
.social-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, #8c8fff, #405eff);
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}
.social-icon .icon {
  width: 40px;
  height: 40px;
}
.social-icon.telegram {
  background: #00b5f2;
  font-size: 40px;
}
.social-icon.facebook {
  background: #0861ff;
}
.community-row h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.community-row p {
  font-size: 24px;
  color: #54668e;
  margin: 0;
  letter-spacing: -0.6px;
}
/* PC */
.pc-reasons {
  min-height: 763px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 90%, #ecf3fb, transparent 50%),
    linear-gradient(135deg, #f3f7fb, #fff 45%, #f1f6fc);
  padding: 36px 0 0;
}
.pc-reasons .container {
  position: relative;
  min-height: 727px;
}
.pc-reasons .eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  color: #2478ff;
  margin-bottom: 15px;
}
.pc-reasons h2 {
  text-align: center;
  font-size: 56px;
}
.pc-reasons .section-description {
  font-size: 16px;
  line-height: 1.3;
  max-width: 660px;
  color: #617295;
  margin-top: 12px;
}
.reason-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 55px;
  margin-top: 25px;
  z-index: 1;
}
.reason-cards:before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 100px;
  height: 140px;
  border: 2px solid #73a8fc;
  border-radius: 45%;
  transform: rotate(8deg);
}
.reason-cards article {
  position: relative;
  border: 1px solid #cfe4ff;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 6px 18px #9acbff3b;
  padding: 23px 30px;
  transform: rotate(2deg);
}
.reason-cards article:nth-child(2) {
  margin-top: 115px;
  transform: rotate(3deg);
}
.reason-cards article:nth-child(3) {
  margin-top: 22px;
}
.reason-cards article:nth-child(4) {
  margin-top: 185px;
  transform: rotate(-3deg);
}
.reason-cards .step-count {
  position: absolute;
  left: 16px;
  top: -23px;
  background: #0077ff;
  color: white;
  width: 40px;
  height: 40px;
  border: 0;
  font-size: 14px;
}
.reason-cards article > .icon {
  width: 48px;
  height: 48px;
  padding: 9px;
  background: #eaf4ff;
  color: #006eff;
  border: 1px solid #d7eaff;
  border-radius: 10px;
  margin-bottom: 8px;
}
.reason-cards h3 {
  font-size: 17px;
  letter-spacing: -0.6px;
  line-height: 1.2;
}
.reason-cards p {
  font-size: 14px;
  line-height: 1.2;
  margin-top: 8px;
  color: #5d6e98;
  letter-spacing: -0.5px;
}
.desk-art {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 770px;
  mix-blend-mode: multiply;
}
.desk-caption {
  position: absolute;
  bottom: 148px;
  left: 62px;
  font-size: 12px;
  letter-spacing: 3px;
  line-height: 1.5;
  color: #5c78a9;
}
.pc-install {
  min-height: 720px;
  padding: 30px 0 20px;
  background:
    linear-gradient(135deg, transparent 48%, #e1efff 48%, #eff7ff 62%), #f0f8ff;
}
.pc-install .split {
  grid-template-columns: 38% 1fr;
  gap: 30px;
}
.pc-install h2 {
  font-size: 55px;
  line-height: 1.03;
}
.pc-install .eyebrow {
  font-size: 14px;
  letter-spacing: 3.8px;
  color: #458dd9;
  margin-bottom: 24px;
}
.pc-install p {
  font-size: 21px;
  line-height: 1.45;
  margin-top: 24px;
}
.install-signoff {
  margin-top: 105px !important;
  font-size: 12px !important;
  letter-spacing: 3px !important;
  font-weight: 400;
  line-height: 1.8;
}
.pc-steps {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pc-steps li {
  display: flex;
  gap: 35px;
  align-items: center;
  background: #ffffffaa;
  border-radius: 24px;
  padding: 14px 26px;
  min-height: 88px;
}
.pc-steps li > span {
  display: grid;
  place-items: center;
  flex: none;
  width: 59px;
  height: 59px;
  border-radius: 12px;
  background: #0064c7;
  color: white;
  box-shadow: 0 0 0 10px #f0f7ff;
  font-size: 24px;
  font-weight: 600;
}
.pc-steps h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.2;
}
.pc-steps p {
  font-size: 16px;
  line-height: 1.3;
  margin-top: 5px;
  letter-spacing: -0.5px;
}
.pc-tips {
  min-height: 930px;
  padding: 75px 0 90px;
}
.pc-tips .split {
  align-items: start;
  gap: 38px;
}
.pc-tips .eyebrow {
  color: #4c78d6;
  font-size: 11px;
  letter-spacing: 2.5px;
  margin-bottom: 33px;
}
.pc-tips h2 {
  font-size: 62px;
  line-height: 1;
  letter-spacing: -2.9px;
  color: #02050b;
}
.pc-tips p {
  font-size: 18px;
  line-height: 1.5;
  color: #747da8;
}
.ninja-art {
  width: 300px;
  margin: 50px auto 0;
  mix-blend-mode: multiply;
}
.tips-list {
  padding-top: 38px;
}
.tips-list article {
  display: flex;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #d3e6ff;
}
.tips-list article:first-child {
  padding-top: 0;
}
.tips-list article:last-child {
  border: 0;
}
.tips-list article > .icon {
  width: 96px;
  height: 93px;
  padding: 24px;
  background: linear-gradient(130deg, #edf6ff, #e8f3fe);
  color: #0e376e;
  border-radius: 13px;
}
.tips-list h3 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.7px;
}
.tips-list p {
  font-size: 17px;
  line-height: 1.4;
  margin-top: 7px;
}
/* VNG and iOS */
.vng-region {
  min-height: 720px;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #f4faff, #fff 43%, #deedff);
}
.vng-region .container {
  min-height: 720px;
  position: relative;
}
.vng-region .split {
  grid-template-columns: 46% 1fr;
}
.vng-region h2 {
  font-size: 53px;
  line-height: 1.06;
  letter-spacing: -1.7px;
}
.vng-region .blue {
  color: #2871d8;
}
.vng-region .eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 23px;
  color: #2369cc;
}
.vng-region .eyebrow:after {
  display: none;
}
.vng-region p {
  font-size: 17px;
  line-height: 1.53;
  color: #4a6593;
}
.vng-region .install-signoff {
  font-size: 9px !important;
  letter-spacing: 3px !important;
  margin-top: 48px !important;
  margin-left: 72px;
  color: #8eadd9;
}
.region-art {
  position: absolute;
  right: -50px;
  top: 0;
  width: 686px;
  height: 720px;
  max-width: none;
  mask-image: linear-gradient(to right, transparent, #000 10%);
}
.vng-region .split > div {
  position: relative;
  z-index: 1;
}
.vng-features {
  min-height: 552px;
  background: linear-gradient(to bottom, #e9f4ff, #f5faff 75%);
  position: relative;
  overflow: hidden;
  padding: 40px 0 145px;
}
.vng-features:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 157px;
  background: url("images/vng-landscape.webp") bottom center/cover no-repeat;
  mask-image: linear-gradient(transparent, #000 40%);
}
.vng-features .container {
  position: relative;
  z-index: 1;
}
.vng-features .split {
  grid-template-columns: 37% 1fr;
  gap: 35px;
}
.vng-features .eyebrow {
  color: #087aff;
  letter-spacing: 1.5px;
  margin-bottom: 17px;
}
.vng-features h2 {
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -1.5px;
}
.vng-features p {
  font-size: 18px;
  line-height: 1.3;
  margin-top: 17px;
}
.vng-features .button {
  font-size: 16px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 9px;
  margin-top: 12px;
}
.vng-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.vng-feature-grid article {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 23px 20px;
  min-height: 130px;
  border-bottom: 1px solid #dfebfa;
}
.vng-feature-grid article:nth-child(odd) {
  border-right: 1px solid #dfebfa;
}
.vng-feature-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}
.vng-feature-grid article > .icon {
  width: 73px;
  height: 73px;
  border-radius: 50%;
  padding: 20px;
  background: #e8f3ff;
  color: var(--blue);
}
.vng-feature-grid h3 {
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.vng-feature-grid p {
  font-size: 16px;
  line-height: 1.4;
  margin-top: 7px;
  color: #5c6e95;
}
.ios-updates {
  min-height: 854px;
  position: relative;
  overflow: hidden;
  padding: 49px 0 0;
  background:
    radial-gradient(ellipse at 70% 42%, #d5e9ff, transparent 44%),
    linear-gradient(135deg, #eef5ff, #fff 25%, #dceaff 70%, #fbfdff);
}
.ios-updates .container {
  position: relative;
  min-height: 805px;
}
.ios-update-intro {
  width: 35%;
  position: relative;
  z-index: 2;
}
.ios-update-intro .eyebrow {
  letter-spacing: 5px;
  font-size: 11px;
  color: #2167ff;
  margin-bottom: 20px;
}
.ios-update-intro .eyebrow:after {
  display: none;
}
.ios-update-intro h2 {
  font-size: 47px;
  letter-spacing: -1.8px;
  line-height: 1.02;
}
.ios-update-intro p {
  font-size: 17px;
  line-height: 1.3;
  color: #7284b0;
  max-width: 365px;
  margin-top: 20px;
}
.ios-update-intro .install-signoff {
  margin-top: 37px !important;
  color: #8da9d6;
  font-size: 10px !important;
  line-height: 1.8;
}
.ios-update-phone {
  position: absolute;
  bottom: 0;
  left: -50px;
  width: 412px;
  mix-blend-mode: multiply;
}
.ios-orbit {
  position: absolute;
  right: 0;
  top: 0;
  width: 810px;
  height: 765px;
}
.ios-orbit:before {
  content: "";
  position: absolute;
  left: 83px;
  right: 79px;
  top: 48px;
  bottom: 85px;
  border: 1px solid #a9cfff;
  border-radius: 50%;
}
.ios-delta {
  position: absolute;
  left: 282px;
  top: 225px;
  width: 248px;
  mix-blend-mode: multiply;
}
.orbit-card {
  position: absolute;
  width: 225px;
  background: #ffffffc9;
  border: 1px solid #fff;
  border-radius: 45px;
  padding: 24px 25px 20px;
}
.orbit-card > .icon {
  position: absolute;
  top: -38px;
  left: 35px;
  width: 70px;
  height: 70px;
  border: 2px solid white;
  border-radius: 50%;
  padding: 18px;
  color: #0769e6;
  background: linear-gradient(130deg, #f2faff, #cbe0ff);
  box-shadow: 0 4px 12px #b4d4ff70;
}
.orbit-card h3 {
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.6px;
  margin-top: 9px;
}
.orbit-card p {
  font-size: 14px;
  line-height: 1.24;
  color: #7180a6;
  margin-top: 8px;
  letter-spacing: -0.35px;
}
.orbit-1 {
  left: 267px;
  top: 28px;
  width: 245px;
}
.orbit-2 {
  left: 42px;
  top: 160px;
  width: 212px;
}
.orbit-3 {
  right: 0;
  top: 153px;
  width: 244px;
}
.orbit-4 {
  left: 50px;
  top: 460px;
  width: 220px;
}
.orbit-5 {
  right: 12px;
  top: 448px;
  width: 255px;
}
.orbit-6 {
  left: 299px;
  top: 610px;
  width: 234px;
}
.installation {
  padding: 30px 0 15px;
  min-height: 700px;
}
.installation .split.equal {
  grid-template-columns: 45% 1fr;
  gap: 35px;
  align-items: start;
}
.breadcrumbs {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  color: #8694ae;
  margin: 27px 0 35px;
}
.breadcrumbs a {
  color: var(--blue);
}
.breadcrumbs span {
  color: #bac8df;
}
.installation h2 {
  font-size: 49px;
  line-height: 1.07;
  letter-spacing: -1.8px;
  color: #060914;
}
.installation .split > div > p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.48;
  margin-top: 25px;
  color: #7180a5;
}
.install-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 29px;
}
.install-benefits .icon {
  width: 49px;
  height: 49px;
  padding: 12px;
  color: var(--blue);
  background: #ecf5ff;
  border-radius: 10px;
  margin-bottom: 8px;
}
.install-benefits h3 {
  font-size: 13px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.install-benefits p {
  font-size: 13px;
  line-height: 1.35;
  margin-top: 5px;
  color: #7484a7;
}
.installation .eyebrow.small {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #91a3c1;
  margin: 20px 0 4px;
}
.installation .eyebrow.small:after {
  display: none;
}
.installation .split > div > p.small {
  font-size: 12px;
  margin: 0 0 0 44px;
}
.method-list {
  display: grid;
  gap: 14px;
}
.method-card {
  position: relative;
  display: flex;
  align-items: start;
  gap: 23px;
  border: 1px solid #dce8f7;
  border-radius: 9px;
  padding: 20px 18px 21px;
  min-height: 173px;
}
.method-card > .step-count {
  position: absolute;
  top: 13px;
  left: 13px;
  width: 35px;
  height: 35px;
  font-size: 16px;
  border: 0;
}
.method-card > .icon {
  width: 56px;
  height: 56px;
  border-radius: 11px;
  padding: 15px;
  color: var(--blue);
  background: #edf6ff;
}
.method-card h3 {
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.6px;
}
.method-card ol {
  counter-reset: method;
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  display: grid;
  gap: 8px;
}
.method-card li {
  counter-increment: method;
  display: flex;
  align-items: start;
  gap: 11px;
  font-size: 12px;
  color: #6b7fa1;
  line-height: 1.35;
  letter-spacing: -0.2px;
}
.method-card li:before {
  content: counter(method);
  display: grid;
  place-items: center;
  flex: none;
  width: 20px;
  height: 20px;
  background: linear-gradient(120deg, #eef8ff, #dbeaff);
  color: #1681ff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  margin-top: -1px;
}
.installation-note {
  display: grid;
  grid-template-columns: 40px 212px 1fr;
  align-items: center;
  gap: 20px;
  border: 1px solid #d7e8ff;
  border-radius: 10px;
  background: #f1f7ff;
  padding: 16px 25px;
  margin-top: 15px;
}
.installation-note > .icon {
  color: #0079ff;
  width: 28px;
  height: 28px;
}
.installation-note > div {
  border-left: 1px solid #b3d0ee;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.2;
}
.installation-note > div span {
  display: block;
  font-size: 12px;
  margin-top: 4px;
  color: #697c9d;
}
.installation-note p {
  font-size: 13px;
  color: #7084a6;
  border-left: 1px solid #c1d6f0;
  padding-left: 23px;
  line-height: 1.4;
  margin: 0;
}
.page-vng .installation {
  min-height: 720px;
}
.page-vng .install-benefits {
  margin-top: 77px;
}
.page-vng .method-card {
  min-height: 180px;
}
.page-ios .installation {
  min-height: 709px;
}
.page-vng .conclusion {
  min-height: 714px;
}
.page-vng .conclusion p {
  font-size: 27px;
  line-height: 1.58;
}
.page-ios .conclusion {
  min-height: 720px;
}
.page-ios .conclusion p {
  font-size: 28px;
  line-height: 1.58;
}
/* Accessible dialogs and mobile navigation */
dialog {
  position: fixed;
  border: 1px solid #dbe8f4;
  border-radius: 22px;
  padding: 42px;
  width: min(550px, calc(100% - 36px));
  color: var(--ink);
  box-shadow: 0 30px 100px #0005;
}
dialog::backdrop {
  background: #061221bf;
  backdrop-filter: blur(5px);
}
dialog .dialog-title {
  font-size: 30px;
  letter-spacing: -0.8px;
  line-height: 1.15;
  padding-right: 20px;
}
dialog p {
  font-size: 16px;
}
dialog .button {
  font-size: 15px;
  margin-top: 25px;
  min-height: 48px;
}
.dialog-close {
  position: absolute;
  right: 17px;
  top: 10px;
  background: none;
  color: #617084;
  font-size: 30px;
  padding: 3px 9px;
}
#search-dialog label {
  display: block;
  font-size: 14px;
  margin-top: 20px;
}
#search-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #b8cee2;
  border-radius: 8px;
  margin-top: 6px;
  font-size: 15px;
}
#search-results {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  max-height: 50vh;
  overflow: auto;
}
#search-results a {
  display: block;
  padding: 12px;
  background: #f0f7ff;
  border-radius: 6px;
  font-size: 15px;
}
#search-results a:hover {
  background: #ddecff;
}
body:has(dialog[open]) {
  overflow: hidden;
}
/* Tablet: keep the desktop composition, then let every section reflow. */
@media (min-width: 1500px) {
  .hero-art {
    right: calc((1180px - 100vw) / 2 + 50px);
  }
  .hero-main {
    max-width: 1180px;
  }
  .hero .hero-art {
    right: -50px;
  }
  .site-header {
    max-width: 1250px;
  }
  .region-art {
    right: -50px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 64px);
  }
  h2 {
    font-size: 43px;
  }
  .site-header,
  .hero-home .site-header {
    width: calc(100% - 40px);
    gap: 20px;
    padding-inline: 20px;
  }
  .site-header nav,
  .hero-home .site-header nav {
    gap: 23px;
  }
  .site-header nav a {
    font-size: 13px;
  }
  .brand span {
    font-size: 16px;
    letter-spacing: 5px;
  }
  .brand img {
    width: 58px;
    height: 58px;
  }
  .hero-home .brand img {
    width: 85px;
    height: 85px;
  }
  .hero-home .site-header {
    min-height: 102px;
  }
  .nav-download {
    font-size: 14px;
    padding-inline: 18px;
    gap: 10px;
  }
  .hero-home .nav-download {
    margin-left: 0;
    padding: 15px 23px;
  }
  .hero-home .nav-download:before {
    display: none;
  }
  .hero-copy h1,
  .hero-vng .hero-copy h1 {
    font-size: 46px;
  }
  .hero-home .hero-copy h1 {
    font-size: 44px;
  }
  .hero-home .hero-copy > p:not(.eyebrow) {
    font-size: 17px;
    max-width: 95%;
    line-height: 1.4;
  }
  .hero-home .hero-copy {
    width: 56%;
  }
  .hero-home .hero-art {
    width: 54%;
    right: -32px;
    top: 55px;
  }
  .hero-discord .hero-main,
  .hero-pc .hero-main,
  .hero-vng .hero-main,
  .hero-ios .hero-main {
    width: calc(100% - 80px);
  }
  .hero-discord .hero-copy h1 {
    font-size: 53px;
  }
  .hero-discord .hero-copy > p:not(.eyebrow) {
    font-size: 18px;
  }
  .hero-discord .hero-benefits,
  .hero-pc .hero-benefits {
    margin-inline: 40px;
  }
  .hero-discord .hero-benefits {
    margin-top: 10px;
  }
  .invite-card {
    right: 0;
    width: 44%;
    top: 65px;
  }
  .invite-card p {
    font-size: 18px;
  }
  .invite-card h2 {
    font-size: 27px;
  }
  .member-count {
    font-size: 13px;
    gap: 15px;
  }
  .hero-pc .site-header {
    padding-inline: 40px;
  }
  .hero-pc .hero-art {
    width: 58%;
    right: -40px;
    top: 70px;
  }
  .hero-pc .hero-copy {
    width: 46%;
  }
  .hero-pc .hero-copy h1 {
    font-size: 78px;
  }
  .hero-pc .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .hero-pc .hero-benefits {
    gap: 15px;
  }
  .hero-benefits > div {
    gap: 15px;
    padding-right: 15px;
  }
  .hero-benefits strong {
    font-size: 13px;
  }
  .hero-benefits small {
    font-size: 11px;
  }
  .hero-vng .hero-copy > p:not(.eyebrow) {
    font-size: 18px;
  }
  .hero-vng .hero-art {
    width: 52%;
    right: -40px;
    top: 60px;
  }
  .hero-vng .badges {
    margin-top: 40px;
  }
  .hero-ios .site-header {
    width: calc(100% - 80px);
  }
  .hero-ios .hero-copy h1 {
    font-size: 46px;
  }
  .hero-ios .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .hero-ios .hero-art {
    width: 51%;
    right: -40px;
    top: 75px;
  }
  .hero-ios .badges {
    gap: 10px;
  }
  .hero-ios .badge {
    gap: 7px;
    padding-right: 10px;
    font-size: 11px;
  }
  .overview h2 {
    font-size: 43px;
  }
  .overview p {
    font-size: 18px;
  }
  .page-discord .overview h2 {
    font-size: 39px;
  }
  .page-discord .overview p:not(.eyebrow) {
    font-size: 16px;
  }
  .centered-intro h2 {
    font-size: 48px;
  }
  .center-copy p {
    font-size: 20px;
  }
  .stats > div {
    font-size: 17px;
    gap: 18px;
  }
  .stat-number {
    font-size: 49px;
  }
  .feature-intro h2 {
    font-size: 40px;
  }
  .feature-intro p {
    font-size: 22px;
  }
  .feature-card h3 {
    font-size: 22px;
  }
  .feature-card p {
    font-size: 18px;
  }
  .feature-group.reverse .feature-card h3 {
    font-size: 22px;
  }
  .feature-group.reverse .feature-card p {
    font-size: 18px;
  }
  .home-features {
    min-height: 1600px;
  }
  .handwritten {
    font-size: 35px;
  }
  .requirements h2 {
    font-size: 32px;
  }
  .requirements p {
    font-size: 16px;
  }
  .requirements .table-wrap th,
  .requirements .table-wrap td {
    padding: 20px 16px;
    font-size: 15px;
  }
  .icon-label {
    gap: 12px;
  }
  .note {
    gap: 13px;
    padding: 16px;
  }
  .dashboard-section h2 {
    font-size: 56px;
  }
  .dashboard-section p {
    font-size: 18px;
  }
  .page-discord .dashboard-section h2 {
    font-size: 42px;
  }
  .benefit-strip > div {
    gap: 14px;
    font-size: 15px;
  }
  .page-discord .benefit-strip > div {
    font-size: 14px;
    gap: 12px;
  }
  .glance h2 {
    font-size: 57px;
  }
  .glance p {
    font-size: 18px;
  }
  .glance .table-wrap th,
  .glance .table-wrap td {
    font-size: 16px;
  }
  .games h2 {
    font-size: 52px;
  }
  .game-facts {
    gap: 15px;
    padding-left: 22px;
  }
  .game-row {
    gap: 9px;
    padding: 9px 7px;
  }
  .game-row .game-name {
    font-size: 14px;
  }
  .game-row img {
    width: 39px;
    height: 39px;
  }
  .scripts h2 {
    font-size: 49px;
  }
  .scripts p {
    font-size: 18px;
  }
  .script-callout {
    font-size: 18px;
    padding: 18px;
  }
  .script-list {
    padding: 15px 22px;
  }
  .script-list li {
    font-size: 18px;
    gap: 18px;
  }
  .script-list li:before {
    width: 39px;
    height: 39px;
    font-size: 19px;
  }
  .error-card {
    gap: 20px;
    padding: 19px 15px;
  }
  .error-card .error-title {
    font-size: 20px;
    gap: 15px;
  }
  .error-card .error-title .icon {
    width: 57px;
    height: 57px;
    padding: 15px;
  }
  .error-card > div {
    padding-left: 20px;
  }
  .error-conclusion {
    grid-template-columns: 66% 1fr;
  }
  .error-conclusion aside {
    padding-left: 16px;
    gap: 15px;
  }
  .error-conclusion aside > .icon {
    width: 55px;
    height: 55px;
    padding: 15px;
  }
  .conclusion h2 {
    font-size: 70px;
  }
  .conclusion p,
  .page-vng .conclusion p,
  .page-ios .conclusion p {
    font-size: 23px;
  }
  .faq h2 {
    font-size: 35px;
  }
  .help-note {
    flex-basis: 190px;
  }
  .faq-item h3 {
    font-size: 20px;
  }
  .faq-answer {
    font-size: 18px;
  }
  .channels h2 {
    font-size: 32px;
  }
  .channels p {
    font-size: 16px;
  }
  .channels .table-wrap th,
  .channels .table-wrap td {
    padding: 20px 20px;
    font-size: 15px;
  }
  .join-heading {
    gap: 24px;
  }
  .join-heading h2 {
    font-size: 44px;
  }
  .join-heading > div:nth-child(2) {
    padding-left: 28px;
  }
  .join-heading p {
    font-size: 18px;
  }
  .join-steps {
    gap: 14px;
  }
  .join-steps article {
    padding: 26px 19px;
  }
  .join-steps h3 {
    font-size: 17px;
  }
  .join-steps p {
    font-size: 13px;
  }
  .join-steps .eyebrow {
    font-size: 9px;
  }
  .discord-safety h2 {
    font-size: 35px;
  }
  .discord-safety .table-wrap th,
  .discord-safety .table-wrap td {
    padding: 23px 18px;
    font-size: 16px;
  }
  .discord-safety .icon-label {
    gap: 12px;
  }
  .community h2 {
    font-size: 44px;
  }
  .community > .container > p:not(.eyebrow) {
    font-size: 21px;
  }
  .community-row {
    grid-template-columns: 60px 60px 160px 1fr;
    gap: 30px;
  }
  .community-row h3 {
    font-size: 24px;
  }
  .community-row p {
    font-size: 20px;
  }
  .pc-reasons h2 {
    font-size: 49px;
  }
  .reason-cards {
    gap: 30px;
  }
  .reason-cards article {
    padding: 24px 20px;
  }
  .pc-install h2 {
    font-size: 46px;
  }
  .pc-install p {
    font-size: 18px;
  }
  .pc-steps li {
    gap: 27px;
    padding: 15px 22px;
  }
  .pc-steps p {
    font-size: 14px;
  }
  .pc-tips h2 {
    font-size: 51px;
  }
  .pc-tips p {
    font-size: 17px;
  }
  .tips-list article {
    gap: 25px;
  }
  .tips-list article > .icon {
    width: 78px;
    height: 78px;
    padding: 20px;
  }
  .tips-list h3 {
    font-size: 21px;
  }
  .tips-list p {
    font-size: 15px;
  }
  .vng-region h2 {
    font-size: 44px;
  }
  .vng-region p {
    font-size: 16px;
  }
  .region-art {
    width: 58%;
    object-fit: cover;
    object-position: left;
    right: -32px;
  }
  .vng-features h2 {
    font-size: 34px;
  }
  .vng-features p {
    font-size: 16px;
  }
  .vng-feature-grid article {
    gap: 15px;
    padding: 22px 15px;
  }
  .vng-feature-grid article > .icon {
    width: 55px;
    height: 55px;
    padding: 14px;
  }
  .vng-feature-grid h3 {
    font-size: 15px;
  }
  .vng-feature-grid p {
    font-size: 14px;
  }
  .ios-update-intro h2 {
    font-size: 39px;
  }
  .ios-update-intro p {
    font-size: 15px;
    max-width: 300px;
  }
  .ios-orbit {
    width: 690px;
    transform: scale(0.87);
    transform-origin: top right;
    right: -10px;
    top: 35px;
  }
  .ios-update-intro {
    width: 33%;
  }
  .orbit-1 {
    left: 237px;
  }
  .orbit-3 {
    right: -50px;
  }
  .orbit-5 {
    right: -50px;
  }
  .ios-update-phone {
    width: 350px;
    left: -32px;
  }
  .installation h2 {
    font-size: 41px;
  }
  .installation .split > div > p:not(.eyebrow) {
    font-size: 16px;
  }
  .install-benefits {
    gap: 12px;
  }
  .install-benefits h3 {
    font-size: 11px;
  }
  .install-benefits p {
    font-size: 12px;
  }
  .method-card {
    padding: 19px 14px;
    gap: 14px;
  }
  .method-card > .icon {
    width: 43px;
    height: 43px;
    padding: 11px;
  }
  .method-card > .step-count {
    left: 9px;
    width: 29px;
    height: 29px;
  }
  .method-card h3 {
    font-size: 16px;
  }
  .installation-note {
    grid-template-columns: 30px 175px 1fr;
    padding: 15px 18px;
    gap: 15px;
  }
  .installation-note p {
    font-size: 12px;
  }
}
@media (max-width: 900px) {
  .site-header,
  .hero-home .site-header,
  .hero-discord .site-header,
  .hero-pc .site-header,
  .hero-ios .site-header {
    width: calc(100% - 40px);
    padding: 10px 18px;
    margin-top: 18px;
    min-height: 82px;
    border: 1px solid #ffffff1c;
    border-radius: 18px;
  }
  .brand img,
  .hero-home .brand img,
  .hero-ios .brand img {
    width: 55px;
    height: 58px;
  }
  .brand span {
    font-size: 16px;
  }
  .site-header .nav-download {
    margin-left: auto;
    min-height: 45px;
    padding: 11px 18px;
    font-size: 14px;
  }
  .menu-toggle {
    display: flex;
    order: 3;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    color: white;
    border: 1px solid #ffffff30;
    border-radius: 8px;
  }
  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
  }
  .site-header nav,
  .hero-home .site-header nav,
  .hero-ios .site-header nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #0c1b27;
    border: 1px solid #385165;
    border-radius: 14px;
    padding: 14px 22px;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    box-shadow: 0 18px 30px #0005;
  }
  .site-header nav.is-open {
    display: flex;
  }
  .site-header nav a {
    padding: 13px 5px;
    font-size: 16px;
  }
  .site-header nav a:after {
    right: auto;
    width: 45px;
    bottom: 6px;
  }
  .site-header .search-button {
    padding: 14px 5px;
    text-align: left;
  }
  .hero-home .hero-copy h1 {
    font-size: 36px;
  }
  .hero-discord .hero-copy h1 {
    font-size: 44px;
  }
  .hero-discord .hero-copy {
    width: 53%;
  }
  .hero-discord .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .invite-card {
    padding: 25px 18px;
  }
  .invite-card > img {
    width: 95px;
    height: 95px;
  }
  .invite-card h2 {
    font-size: 24px;
  }
  .member-count {
    flex-wrap: wrap;
    gap: 7px;
  }
  .hero-discord .hero-benefits {
    gap: 15px;
  }
  .hero-discord .hero-benefits > div {
    gap: 12px;
    padding-right: 12px;
  }
  .hero-discord .hero-benefits .icon {
    width: 48px;
    height: 48px;
    padding: 11px;
    border-radius: 14px;
  }
  .hero-discord .hero-benefits strong {
    font-size: 13px;
  }
  .hero-discord .hero-benefits small {
    font-size: 11px;
  }
  .hero-pc .hero-copy h1 {
    font-size: 65px;
  }
  .hero-pc .hero-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .hero-pc .hero-copy {
    width: 48%;
  }
  .hero-pc .hero-art {
    top: 110px;
  }
  .hero-pc .hero-button {
    font-size: 15px;
  }
  .hero-pc .hero-benefits .icon {
    width: 35px;
    height: 35px;
  }
  .hero-pc .hero-benefits strong {
    font-size: 11px;
  }
  .hero-pc .hero-benefits small {
    font-size: 10px;
  }
  .hero-vng .hero-copy h1 {
    font-size: 38px;
  }
  .hero-vng .hero-copy > p:not(.eyebrow) {
    font-size: 17px;
  }
  .hero-vng .hero-button {
    font-size: 17px;
    min-height: 58px;
    padding-inline: 22px;
  }
  .hero-vng .hero-art {
    top: 105px;
  }
  .hero-vng .badges {
    width: 700px;
    gap: 17px;
  }
  .hero-vng .badge {
    font-size: 14px;
    gap: 10px;
    padding-right: 17px;
  }
  .hero-ios .hero-copy h1 {
    font-size: 39px;
  }
  .hero-ios .hero-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .hero-ios .hero-art {
    top: 90px;
  }
  .hero-ios .badges {
    gap: 12px;
    flex-wrap: wrap;
  }
  .hero-ios .badge {
    border: 0;
  }
  .overview h2 {
    font-size: 34px;
    letter-spacing: -1.8px;
  }
  .overview p {
    font-size: 17px;
  }
  .overview .eyebrow {
    font-size: 9px;
    gap: 10px;
    letter-spacing: 2px;
  }
  .overview .eyebrow:after {
    width: 55px;
  }
  .page-discord .overview h2 {
    font-size: 33px;
  }
  .page-discord .overview p:not(.eyebrow) {
    font-size: 15px;
  }
  .requirements .split,
  .channels .split,
  .discord-safety .split {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .requirements,
  .channels,
  .discord-safety {
    min-height: 0;
    padding: 80px 0;
  }
  .requirements h2,
  .channels h2,
  .discord-safety h2 {
    font-size: 38px;
  }
  .requirements .note,
  .discord-safety .note {
    max-width: 500px;
  }
  .requirements .table-wrap th,
  .requirements .table-wrap td {
    font-size: 16px;
  }
  .feature-card h3 {
    font-size: 19px;
  }
  .feature-card p {
    font-size: 16px;
  }
  .feature-card img {
    height: 170px;
  }
  .feature-intro h2 {
    font-size: 31px;
  }
  .feature-intro p {
    font-size: 19px;
  }
  .feature-group.reverse .feature-card h3 {
    font-size: 19px;
  }
  .feature-group.reverse .feature-card p {
    font-size: 16px;
  }
  .feature-number {
    font-size: 36px;
  }
  .handwritten {
    font-size: 29px;
  }
  .handwritten:after {
    width: 180px;
  }
  .feature-group.reverse .feature-card > div {
    padding: 13px;
  }
  .download-section h2 {
    font-size: 48px;
  }
  .download-section > div > p {
    font-size: 21px;
  }
  .dashboard-section h2 {
    font-size: 49px;
  }
  .dashboard-section p {
    font-size: 16px;
  }
  .page-discord .dashboard-section h2 {
    font-size: 35px;
  }
  .page-discord .dashboard-section p {
    font-size: 14px;
  }
  .benefit-strip > div,
  .page-discord .benefit-strip > div {
    font-size: 12px;
    gap: 9px;
  }
  .benefit-strip .icon {
    width: 43px;
    height: 43px;
    padding: 11px;
  }
  .home-discord h2 {
    font-size: 50px;
  }
  .home-discord p {
    font-size: 20px;
  }
  .glance h2 {
    font-size: 47px;
  }
  .glance p {
    font-size: 16px;
  }
  .glance .table-wrap th,
  .glance .table-wrap td {
    font-size: 14px;
    padding: 12px;
  }
  .platform-icons .icon {
    width: 43px;
    height: 43px;
  }
  .platform-icons .icon-label {
    font-size: 15px;
  }
  .games-header {
    grid-template-columns: 1fr;
  }
  .game-facts {
    max-width: 550px;
    border: 0;
    padding: 0;
  }
  .games h2 {
    font-size: 55px;
  }
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-inline: 0;
  }
  .game-column:nth-child(2) {
    border: 0;
  }
  .game-column:last-child {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .game-row .game-name {
    font-size: 17px;
  }
  .scripts .split.wide-left {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .scripts {
    padding-block: 70px;
  }
  .script-list li {
    white-space: normal;
  }
  .script-list {
    max-width: 100%;
  }
  .script-callout {
    max-width: 600px;
  }
  .pros-grid {
    gap: 24px;
  }
  .pros-grid > div + div {
    padding-left: 24px;
  }
  .pros-grid article {
    gap: 15px;
  }
  .pros-grid article > .icon {
    width: 46px;
    height: 46px;
    padding: 10px;
  }
  .pros-grid .pros-item-title {
    font-size: 15px;
  }
  .pros-grid p {
    font-size: 14px;
  }
  .error-card {
    grid-template-columns: 1fr 1fr;
  }
  .error-card .error-title {
    grid-column: 1/-1;
  }
  .error-card > div {
    border: 0;
    padding-left: 0;
  }
  .error-conclusion {
    grid-template-columns: 1fr;
  }
  .error-conclusion aside {
    border-left: 0;
    border-top: 1px solid #c8dff8;
    padding: 20px 0 0;
  }
  .faq-header {
    gap: 20px;
  }
  .faq h2 {
    font-size: 30px;
  }
  .help-note {
    flex-basis: 170px;
    font-size: 12px;
  }
  .help-note strong {
    font-size: 15px;
  }
  .faq-item {
    padding-left: 110px;
  }
  .faq-number {
    width: 80px;
    font-size: 20px;
  }
  .faq-item h3 {
    font-size: 19px;
  }
  .faq-answer {
    font-size: 16px;
  }
  .join-heading {
    grid-template-columns: 1fr 1fr;
  }
  .join-heading h2 {
    font-size: 38px;
  }
  .discord-decoration {
    display: none;
  }
  .join-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 18px;
  }
  .join-steps article:nth-child(even) {
    transform: none;
  }
  .join-steps article {
    padding: 26px 20px;
  }
  .join-section {
    padding-bottom: 60px;
  }
  .community h2 {
    font-size: 40px;
  }
  .community-row {
    grid-template-columns: 40px 50px 135px 1fr;
    gap: 20px;
  }
  .community-row h3 {
    font-size: 22px;
  }
  .community-row p {
    font-size: 16px;
  }
  .social-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
  }
  .community-label {
    grid-template-columns: 43% 1fr;
  }
  .community-row > span {
    font-size: 25px;
  }
  .pc-reasons .container {
    min-height: 850px;
  }
  .reason-cards {
    gap: 18px;
  }
  .reason-cards article {
    padding: 24px 15px;
  }
  .reason-cards article:nth-child(4) {
    margin-top: 235px;
  }
  .reason-cards h3 {
    font-size: 15px;
  }
  .reason-cards p {
    font-size: 12px;
  }
  .desk-caption {
    left: 0;
    bottom: 130px;
    font-size: 10px;
  }
  .pc-install .split {
    grid-template-columns: 34% 1fr;
    gap: 25px;
  }
  .pc-install h2 {
    font-size: 37px;
  }
  .pc-install .eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
  }
  .pc-steps h3 {
    font-size: 17px;
  }
  .pc-steps p {
    font-size: 13px;
  }
  .pc-steps li > span {
    width: 43px;
    height: 49px;
    font-size: 20px;
    box-shadow: 0 0 0 6px #f0f7ff;
  }
  .pc-steps li {
    gap: 20px;
    padding: 17px 20px;
  }
  .pc-tips h2 {
    font-size: 40px;
  }
  .pc-tips p {
    font-size: 16px;
  }
  .tips-list article {
    gap: 17px;
  }
  .tips-list article > .icon {
    width: 58px;
    height: 58px;
    padding: 15px;
  }
  .tips-list h3 {
    font-size: 18px;
  }
  .tips-list p {
    font-size: 14px;
  }
  .vng-region h2 {
    font-size: 36px;
  }
  .vng-region p {
    font-size: 14px;
  }
  .vng-region .install-signoff {
    margin-left: 0;
  }
  .vng-features .split {
    grid-template-columns: 1fr;
  }
  .vng-features {
    padding-bottom: 145px;
  }
  .vng-features .split > div:first-child {
    max-width: 550px;
  }
  .vng-feature-grid article {
    padding: 22px;
    gap: 24px;
  }
  .vng-feature-grid h3 {
    font-size: 18px;
  }
  .vng-feature-grid p {
    font-size: 16px;
  }
  .installation .split.equal {
    grid-template-columns: 1fr;
  }
  .installation h2 {
    font-size: 43px;
  }
  .install-benefits {
    max-width: 650px;
    margin-top: 30px !important;
  }
  .install-benefits h3 {
    font-size: 15px;
  }
  .install-benefits p {
    font-size: 14px;
  }
  .method-card {
    padding: 24px 23px;
    gap: 26px;
  }
  .method-card > .icon {
    width: 55px;
    height: 55px;
    padding: 14px;
  }
  .method-card > .step-count {
    left: 15px;
    top: 20px;
    width: 33px;
    height: 33px;
  }
  .method-card h3 {
    font-size: 21px;
  }
  .method-card li {
    font-size: 15px;
    gap: 14px;
  }
  .method-card ol {
    gap: 11px;
  }
  .installation-note {
    grid-template-columns: 35px 1fr;
  }
  .installation-note p {
    grid-column: 1/-1;
    border-left: 0;
    padding: 15px 0 0;
    border-top: 1px solid #c1d6f0;
    font-size: 14px;
  }
  .ios-updates {
    padding-top: 50px;
  }
  .ios-update-intro {
    width: 100%;
    max-width: 640px;
  }
  .ios-update-intro h2 {
    font-size: 42px;
  }
  .ios-update-intro h2 br {
    display: none;
  }
  .ios-update-intro p {
    font-size: 17px;
    max-width: 100%;
  }
  .ios-update-intro .install-signoff {
    display: none;
  }
  .ios-update-phone {
    display: none;
  }
  .ios-orbit {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 20px;
    padding: 300px 0 40px;
    margin-top: 20px;
  }
  .ios-orbit:before {
    display: none;
  }
  .ios-delta {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 225px;
  }
  .orbit-card {
    position: relative;
    inset: auto !important;
    width: auto !important;
    border-radius: 24px;
    padding: 25px 20px;
  }
  .orbit-card h3 {
    font-size: 17px;
    margin-top: 15px;
  }
  .orbit-card p {
    font-size: 14px;
  }
  .orbit-card > .icon {
    width: 58px;
    height: 58px;
    padding: 15px;
    left: 20px;
    top: -27px;
  }
  .page-ios .pros-grid article {
    gap: 18px;
  }
  .page-ios .pros-grid article > .icon {
    width: 50px;
    height: 50px;
    padding: 12px;
  }
  .page-ios .pros-grid .pros-item-title {
    font-size: 17px;
  }
  .page-ios .pros-grid p {
    font-size: 15px;
  }
}
@media (max-width: 640px) {
  :root {
    --max: 1180px;
  }
  body {
    font-size: 16px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .section {
    padding: 55px 0;
    min-height: 0 !important;
  }
  h2 {
    font-size: 34px;
    letter-spacing: -1.1px;
  }
  h3 {
    font-size: 21px;
  }
  p {
    margin-top: 17px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
    gap: 14px;
    margin-bottom: 19px;
  }
  .eyebrow:after {
    width: 50px;
  }
  .split,
  .split.equal,
  .split.wide-left {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
  .button {
    font-size: 15px;
    padding: 14px 22px;
    min-height: 50px;
    gap: 14px;
  }
  .button .icon {
    width: 21px;
    height: 21px;
  }
  .site-header,
  .hero-home .site-header,
  .hero-discord .site-header,
  .hero-pc .site-header,
  .hero-ios .site-header {
    width: calc(100% - 28px);
    gap: 12px;
    padding: 7px 12px;
    margin-top: 14px;
    min-height: 70px;
    border-radius: 15px;
  }
  .brand img,
  .hero-home .brand img,
  .hero-ios .brand img {
    width: 46px;
    height: 49px;
  }
  .brand {
    gap: 7px;
  }
  .brand span {
    font-size: 12px;
    letter-spacing: 3px;
  }
  .site-header .nav-download {
    font-size: 12px;
    min-height: 39px;
    padding: 10px 13px;
    gap: 8px;
  }
  .site-header .nav-download > .icon {
    width: 17px;
    height: 17px;
  }
  .site-header .nav-download > .icon:last-child {
    display: none;
  }
  .menu-toggle {
    width: 36px;
    height: 37px;
    flex-shrink: 0;
  }
  .hero {
    min-height: 0 !important;
    padding-bottom: 0;
  }
  .hero .hero-main {
    width: calc(100% - 40px);
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .hero .hero-copy {
    padding-top: 40px;
    width: 100%;
  }
  .hero .hero-copy h1 {
    font-size: 40px;
    line-height: 1.06;
    letter-spacing: -1.5px;
    white-space: normal;
  }
  .hero-home .hero-copy h1 {
    font-size: 37px;
  }
  .hero-home .hero-copy h1 span {
    display: inline;
  }
  .hero .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.5;
    max-width: 100%;
    margin-top: 20px;
  }
  .hero .hero-copy > p + p {
    margin-top: 18px;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 2.4px;
    margin-bottom: 18px;
  }
  .hero .hero-button {
    font-size: 15px;
    min-height: 51px;
    padding: 14px 22px;
    margin-top: 24px;
  }
  .hero .hero-art {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% + 40px);
    max-width: none;
    margin: 25px -20px 0;
    mask-image: linear-gradient(to bottom, transparent, #000 7%);
    height: auto;
  }
  .hero-home .hero-art {
    margin-top: 0;
  }
  .hero .badges {
    width: auto;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap;
  }
  .hero .badge {
    font-size: 10px;
    gap: 7px;
    padding: 9px 10px;
    border: 1px solid #ffffff24;
    border-radius: 22px;
    min-height: 0;
  }
  .hero .badge .icon {
    width: 18px;
    height: 18px;
  }
  .hero-vng .badge:last-child,
  .hero-ios .badge:last-child {
    border: 1px solid #ffffff24;
    padding: 9px 10px;
  }
  .hero-vng .hero-art {
    margin-top: 15px;
  }
  .hero-ios .hero-copy h1 {
    font-size: 39px;
  }
  .hero-ios .hero-copy h1 br {
    display: none;
  }
  .hero-ios .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .hero-ios .hero-art {
    margin-top: 16px;
  }
  .hero-ios .badges {
    gap: 9px;
  }
  .hero-ios .badge {
    font-size: 11px;
  }
  .hero-ios .hero-button {
    border-radius: 10px;
  }
  .theme-label {
    margin: 16px 20px 0;
    font-size: 9px;
  }
  .hero-pc .hero-copy h1 {
    font-size: 70px;
  }
  .hero-pc .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .hero-pc .hero-art {
    margin-top: 16px;
  }
  .hero-pc .hero-benefits,
  .hero-discord .hero-benefits {
    margin: 10px 20px 0;
    padding: 20px 0 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 23px 18px;
  }
  .hero-benefits > div {
    border: 0;
    gap: 12px;
    padding: 0;
  }
  .hero-pc .hero-benefits .icon {
    width: 32px;
    height: 32px;
  }
  .hero-benefits strong,
  .hero-discord .hero-benefits strong,
  .hero-pc .hero-benefits strong {
    font-size: 12px;
  }
  .hero-benefits small,
  .hero-discord .hero-benefits small,
  .hero-pc .hero-benefits small {
    font-size: 10px;
  }
  .hero-discord .hero-copy h1 {
    font-size: 43px;
  }
  .invite-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    padding: 28px 23px 22px;
    margin: 35px 0 10px;
  }
  .invite-card > img {
    width: 105px;
    height: 105px;
  }
  .invite-card p {
    font-size: 19px;
  }
  .invite-card h2 {
    font-size: 28px;
  }
  .member-count {
    gap: 20px;
    font-size: 13px;
  }
  .invite-button {
    margin-top: 24px;
  }
  .hero-discord .hero-benefits {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-discord .hero-benefits .icon {
    width: 45px;
    height: 45px;
  }
  .hero-discord .hero-benefits strong {
    font-size: 14px;
  }
  .hero-discord .hero-benefits small {
    font-size: 12px;
  }
  .overview .split {
    gap: 20px;
  }
  .overview h2,
  .page-discord .overview h2 {
    font-size: 35px;
    white-space: normal;
    letter-spacing: -1.5px;
  }
  .overview p,
  .page-discord .overview p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.55;
  }
  .overview .eyebrow {
    font-size: 9px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    gap: 14px;
  }
  .overview-art {
    max-width: 100%;
    width: 100%;
  }
  .overview p + p {
    margin-top: 20px;
  }
  .centered-intro {
    text-align: left;
  }
  .centered-intro h2 {
    font-size: 36px;
    line-height: 1.1;
  }
  .center-copy p {
    font-size: 17px;
    line-height: 1.55;
  }
  .stats {
    grid-template-columns: 1fr;
    margin-top: 28px;
    gap: 0;
  }
  .stats > div {
    justify-content: flex-start;
    font-size: 17px;
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid #e2eaf4;
    gap: 25px;
    min-height: 0;
  }
  .stat-number {
    font-size: 40px;
    width: 55px;
  }
  .requirements h2,
  .channels h2,
  .discord-safety h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }
  .requirements p,
  .channels p,
  .discord-safety p {
    font-size: 16px;
    line-height: 1.5;
  }
  .requirements .table-wrap {
    width: 100%;
  }
  .requirements .table-wrap th,
  .requirements .table-wrap td {
    font-size: 13px;
    padding: 16px 13px;
    min-width: 130px;
  }
  .requirements .table-wrap tbody th {
    white-space: normal;
  }
  .requirements .icon-label {
    gap: 9px;
  }
  .requirements .icon-label .icon {
    width: 22px;
    height: 22px;
  }
  .note {
    margin-top: 24px;
    padding: 17px;
    gap: 14px;
  }
  .note strong {
    font-size: 14px;
  }
  .note p,
  .requirements .note p,
  .discord-safety .note p {
    font-size: 13px;
  }
  .note > .icon {
    width: 29px;
    height: 29px;
  }
  .home-features {
    min-height: 0;
    padding: 50px 0 30px;
  }
  .feature-group,
  .feature-group.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 0;
  }
  .feature-group.reverse {
    margin-top: 45px;
  }
  .feature-group.reverse .feature-intro {
    grid-row: 1;
  }
  .feature-intro h2 {
    font-size: 39px;
  }
  .feature-intro p {
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: -0.5px;
    max-width: 430px;
    margin-top: 20px;
  }
  .feature-intro .eyebrow {
    font-size: 12px;
    margin-bottom: 18px;
  }
  .handwritten {
    font-size: 30px;
    display: none;
  }
  .feature-card,
  .feature-group.reverse .feature-card {
    grid-template-columns: 37% 1fr;
    min-height: 140px;
  }
  .feature-card img,
  .feature-group.reverse .feature-card img {
    height: auto;
    padding: 0 0 0 8px;
    object-fit: contain;
  }
  .feature-card > div,
  .feature-group.reverse .feature-card > div {
    padding: 16px 12px;
  }
  .feature-card h3,
  .feature-group.reverse .feature-card h3 {
    font-size: 18px;
    letter-spacing: -0.6px;
    line-height: 1.15;
  }
  .feature-card p,
  .feature-group.reverse .feature-card p {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: -0.2px;
    margin-top: 8px;
  }
  .feature-number,
  .feature-group.reverse .feature-number {
    font-size: 27px;
    top: 4px;
    left: 2px;
    letter-spacing: -1px;
  }
  .home-features .center-line {
    font-size: 10px;
    letter-spacing: 2px;
    gap: 12px;
    margin-top: 30px;
  }
  .home-features .center-line:after,
  .home-features .center-line:before {
    width: 40px;
  }
  .download-section h2 {
    font-size: 39px;
    line-height: 1.1;
  }
  .download-section > div > p {
    font-size: 18px;
    line-height: 1.45;
    margin-top: 18px;
  }
  .download-section > div > p br {
    display: none;
  }
  .download-logo {
    width: 105px;
    height: auto;
    margin: 22px auto 15px;
  }
  .release-info {
    padding: 19px 4px;
    gap: 0;
  }
  .release-info .icon {
    width: 27px;
    height: 27px;
  }
  .release-info span {
    font-size: 12px;
  }
  .release-info strong {
    font-size: 13px;
    margin-top: 3px;
  }
  .release-info > div + div:before {
    top: 6px;
    bottom: 6px;
  }
  .download-section .button {
    font-size: 16px;
    min-height: 56px;
    padding: 15px 20px;
    gap: 16px;
  }
  .download-section .button > .icon {
    width: 25px;
    height: 25px;
  }
  .dashboard-section h2,
  .page-discord .dashboard-section h2 {
    font-size: 42px;
  }
  .dashboard-section p,
  .page-discord .dashboard-section p {
    font-size: 16px;
    line-height: 1.5;
  }
  .dashboard-section .eyebrow {
    font-size: 10px;
    letter-spacing: 1.4px;
  }
  .dashboard-section .split > img {
    width: 100%;
    margin-top: 6px;
  }
  .benefit-strip {
    grid-template-columns: 1fr;
    padding-top: 15px;
    margin-top: 25px;
    gap: 0;
  }
  .benefit-strip > div,
  .page-discord .benefit-strip > div {
    justify-content: flex-start;
    padding: 12px 5px;
    border: 0;
    font-size: 15px;
    gap: 20px;
  }
  .home-discord {
    text-align: left;
  }
  .home-discord h2 {
    font-size: 39px;
    letter-spacing: -1.4px;
  }
  .home-discord p {
    font-size: 17px;
    line-height: 1.6;
    margin-top: 23px;
  }
  .home-discord .stats {
    margin-top: 25px;
  }
  .home-discord .stats > div {
    border-color: #203441;
  }
  .glance h2 {
    font-size: 47px;
    line-height: 1;
  }
  .glance p {
    font-size: 17px;
    line-height: 1.5;
  }
  .platform-icons {
    padding: 0;
    justify-content: space-between;
  }
  .platform-icons .icon-label {
    gap: 12px;
    font-size: 14px;
  }
  .platform-icons .icon {
    width: 40px;
    height: 40px;
  }
  .glance .table-wrap {
    margin-top: 30px;
  }
  .glance .table-wrap table {
    min-width: 810px;
  }
  .glance .table-wrap th,
  .glance .table-wrap td {
    padding: 13px 16px;
    font-size: 14px;
  }
  .games-header {
    gap: 25px;
  }
  .games h2 {
    font-size: 43px;
    line-height: 1.08;
    letter-spacing: -1.2px;
  }
  .games h2 br {
    display: none;
  }
  .games-header p {
    font-size: 16px;
  }
  .game-facts {
    gap: 22px;
  }
  .game-facts .icon {
    width: 44px;
    height: 44px;
    padding: 13px;
    margin-bottom: 10px;
  }
  .game-facts h3 {
    font-size: 23px;
  }
  .game-facts > div:first-child h3 {
    font-size: 30px;
  }
  .game-facts span {
    font-size: 14px;
  }
  .game-facts p {
    font-size: 12px;
    margin-top: 17px;
    padding-top: 15px;
  }
  .game-grid {
    grid-template-columns: 1fr;
    padding: 10px;
    margin-top: 25px;
    gap: 0;
  }
  .game-column,
  .game-column:last-child {
    padding: 0;
    border: 0;
    display: block;
    grid-column: auto;
  }
  .game-row {
    gap: 14px;
    padding: 10px;
  }
  .game-row img {
    width: 42px;
    height: 42px;
  }
  .game-row .game-name {
    font-size: 17px;
  }
  .section-signoff {
    font-size: 8px;
    line-height: 1.6;
    letter-spacing: 2px;
    gap: 20px;
    margin-top: 25px;
  }
  .section-signoff > span:last-child {
    text-align: right;
  }
  .scripts h2 {
    font-size: 39px;
  }
  .scripts p {
    font-size: 17px;
    line-height: 1.55;
  }
  .script-callout {
    font-size: 17px;
    padding: 18px;
    line-height: 1.45;
  }
  .script-list {
    padding: 15px 20px;
    border-radius: 15px;
  }
  .script-list li {
    font-size: 16px;
    gap: 17px;
    min-height: 49px;
  }
  .script-list li:before {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }
  .pros-cons h2,
  .page-ios .pros-cons h2 {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -1px;
  }
  .pros-cons .eyebrow {
    font-size: 10px;
    margin-bottom: 15px;
  }
  .pros-cons .section-description,
  .page-ios .pros-cons .section-description {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 15px;
  }
  .pros-grid,
  .page-ios .pros-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 30px;
  }
  .pros-grid > div + div {
    border: 0;
    padding: 0;
  }
  .pros-grid h3 {
    font-size: 26px;
  }
  .pros-grid article,
  .page-ios .pros-grid article {
    gap: 18px;
    padding: 17px 0;
    min-height: 0;
  }
  .pros-grid article > .icon,
  .page-ios .pros-grid article > .icon {
    width: 49px;
    height: 49px;
    padding: 12px;
  }
  .pros-grid .pros-item-title,
  .page-ios .pros-grid .pros-item-title {
    font-size: 16px;
  }
  .pros-grid p,
  .page-ios .pros-grid p {
    font-size: 14px;
    line-height: 1.45;
  }
  .errors h2 {
    font-size: 35px;
    line-height: 1.1;
  }
  .errors > .container > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 19px;
  }
  .errors > .container > p br {
    display: none;
  }
  .error-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px;
  }
  .error-card .error-title {
    font-size: 21px;
    gap: 18px;
  }
  .error-card .error-title .icon {
    width: 52px;
    height: 52px;
    padding: 14px;
  }
  .error-card p {
    font-size: 14px;
    line-height: 1.55;
  }
  .error-conclusion {
    padding: 22px;
  }
  .error-conclusion h3 {
    font-size: 27px;
  }
  .error-conclusion p {
    font-size: 14px;
  }
  .error-conclusion aside {
    gap: 18px;
  }
  .error-conclusion aside > .icon {
    width: 49px;
    height: 49px;
    padding: 13px;
  }
  .conclusion {
    padding: 80px 0 !important;
  }
  .conclusion h2 {
    font-size: 49px;
    letter-spacing: -1.7px;
    margin-bottom: 30px;
  }
  .conclusion p,
  .page-home .conclusion p,
  .page-vng .conclusion p,
  .page-ios .conclusion p {
    font-size: 18px;
    line-height: 1.75;
    text-align: left;
  }
  .faq {
    padding: 45px 0 20px !important;
  }
  .faq-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 25px;
  }
  .faq h2,
  .page-ios .faq h2 {
    font-size: 33px;
    line-height: 1.15;
    letter-spacing: -1px;
    padding-bottom: 15px;
  }
  .faq-header p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 15px;
  }
  .faq .eyebrow {
    font-size: 9px;
    letter-spacing: 3px;
  }
  .help-note {
    flex-basis: auto;
    max-width: 300px;
    font-size: 13px;
    padding-left: 13px;
  }
  .help-note strong {
    font-size: 14px;
  }
  .faq-item,
  .page-home .faq-item,
  .page-vng .faq-item {
    padding: 20px 12px 20px 55px;
    min-height: 0;
  }
  .faq-item h3,
  .page-home .faq h3,
  .page-vng .faq h3 {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: -0.3px;
  }
  .faq-answer,
  .page-home .faq-answer,
  .page-vng .faq-answer {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 7px;
  }
  .faq-number,
  .page-home .faq-number,
  .page-vng .faq-number {
    width: 41px;
    font-size: 16px;
    top: 20px;
    bottom: 20px;
  }
  .faq-item:not([open]) {
    min-height: 70px;
  }
  .faq-item:not([open]) .faq-number {
    top: 17px;
    bottom: 17px;
  }
  .channels .table-wrap th,
  .channels .table-wrap td {
    padding: 16px 13px;
    font-size: 14px;
  }
  .channels .table-wrap tbody th {
    white-space: normal;
  }
  .channels .icon-label {
    gap: 12px;
  }
  .channels .icon-label .icon {
    width: 23px;
    height: 23px;
  }
  .join-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .join-heading h2 {
    font-size: 39px;
  }
  .join-heading h2 br {
    display: none;
  }
  .join-heading > div:nth-child(2) {
    padding-left: 20px;
  }
  .join-heading p {
    font-size: 17px;
    line-height: 1.5;
  }
  .join-heading > div:nth-child(2) .eyebrow {
    font-size: 8px;
    letter-spacing: 1.5px;
    line-height: 1.8;
    margin-top: 16px;
    margin-bottom: 0;
  }
  .join-steps {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 40px;
    padding-left: 23px;
  }
  .join-steps:before {
    left: 0;
    top: 0;
    bottom: 0;
    right: auto;
    width: 1px;
    height: auto;
    border-top: 0;
    border-left: 1px solid #b7d8ff;
    border-radius: 0;
  }
  .join-steps article {
    padding: 23px 25px;
    border-radius: 18px;
  }
  .join-steps .step-count {
    left: -41px;
    top: 25px;
    width: 35px;
    height: 35px;
    font-size: 19px;
  }
  .join-steps article > .icon {
    width: 44px;
    height: 44px;
    padding: 10px;
    margin-bottom: 11px;
  }
  .join-steps .eyebrow {
    font-size: 10px;
  }
  .join-steps h3 {
    font-size: 22px;
    line-height: 1.2;
  }
  .join-steps p {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 12px;
  }
  .discord-safety .table-wrap th,
  .discord-safety .table-wrap td {
    font-size: 14px;
    padding: 17px 13px;
  }
  .discord-safety .icon-label {
    gap: 9px;
  }
  .discord-safety .icon-label .icon {
    width: 33px;
    height: 33px;
    padding: 8px;
  }
  .community .eyebrow {
    font-size: 12px;
    letter-spacing: 2.5px;
  }
  .community h2 {
    font-size: 35px;
    letter-spacing: -1.1px;
  }
  .community > .container > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.5;
  }
  .community-label {
    display: none;
  }
  .community-row {
    grid-template-columns: 30px 40px 1fr;
    gap: 15px;
    padding: 21px 0;
    min-height: 0;
  }
  .community-row > span {
    font-size: 20px;
    border: 0;
  }
  .social-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    font-size: 43px;
  }
  .social-icon.telegram {
    font-size: 28px;
  }
  .social-icon .icon {
    width: 28px;
    height: 28px;
  }
  .community-row h3 {
    font-size: 22px;
  }
  .community-row p {
    grid-column: 2/-1;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .pc-reasons {
    padding-bottom: 0;
  }
  .pc-reasons .container {
    min-height: 0;
    padding-bottom: 170px;
  }
  .pc-reasons h2 {
    font-size: 37px;
  }
  .pc-reasons .eyebrow {
    font-size: 8px;
    letter-spacing: 1.5px;
    gap: 10px;
  }
  .pc-reasons .eyebrow:after,
  .pc-reasons .eyebrow:before {
    width: 25px;
  }
  .pc-reasons .section-description {
    font-size: 15px;
    line-height: 1.55;
    margin-top: 17px;
  }
  .reason-cards {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
    margin-top: 45px;
  }
  .reason-cards:before {
    display: none;
  }
  .reason-cards article,
  .reason-cards article:nth-child(n) {
    transform: none;
    margin-top: 0;
    padding: 25px 17px 20px;
    border-radius: 16px;
  }
  .reason-cards .step-count {
    width: 33px;
    height: 33px;
    top: -18px;
    font-size: 12px;
  }
  .reason-cards h3 {
    font-size: 17px;
    line-height: 1.15;
  }
  .reason-cards p {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: -0.3px;
  }
  .reason-cards article > .icon {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  .desk-art {
    width: calc(100% + 20px);
    max-width: none;
    bottom: 0;
    mix-blend-mode: multiply;
  }
  .desk-caption {
    display: none;
  }
  .pc-install h2 {
    font-size: 41px;
    line-height: 1.06;
  }
  .pc-install h2 br {
    display: none;
  }
  .pc-install h2 .blue {
    display: inline;
  }
  .pc-install .eyebrow {
    font-size: 10px;
  }
  .pc-install p {
    font-size: 17px;
    margin-top: 20px;
  }
  .pc-install p br {
    display: none;
  }
  .install-signoff {
    display: none;
  }
  .pc-steps {
    gap: 13px;
  }
  .pc-steps li {
    gap: 20px;
    padding: 20px 19px;
    align-items: flex-start;
    border-radius: 16px;
  }
  .pc-steps li > span {
    width: 39px;
    height: 43px;
    font-size: 18px;
    border-radius: 9px;
    box-shadow: 0 0 0 5px #eef6ff;
  }
  .pc-steps h3 {
    font-size: 17px;
    line-height: 1.25;
  }
  .pc-steps p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
    margin-top: 7px;
  }
  .pc-tips h2 {
    font-size: 43px;
  }
  .pc-tips p {
    font-size: 16px;
    line-height: 1.5;
  }
  .pc-tips .eyebrow {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .ninja-art {
    width: 180px;
    margin: 25px auto 0;
  }
  .tips-list {
    padding-top: 0;
  }
  .tips-list article {
    gap: 19px;
    padding: 21px 0;
  }
  .tips-list article > .icon {
    width: 53px;
    height: 53px;
    padding: 13px;
    border-radius: 10px;
  }
  .tips-list h3 {
    font-size: 19px;
    line-height: 1.25;
  }
  .tips-list p {
    font-size: 15px;
    line-height: 1.5;
  }
  .vng-region {
    padding-bottom: 0;
  }
  .vng-region .container {
    min-height: 0;
  }
  .vng-region h2 {
    font-size: 39px;
    line-height: 1.06;
  }
  .vng-region h2 br {
    display: none;
  }
  .vng-region p {
    font-size: 16px;
    line-height: 1.55;
  }
  .vng-region .split {
    gap: 15px;
  }
  .region-art {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% + 40px);
    height: auto;
    max-width: none;
    margin: 0 -20px;
    mask-image: linear-gradient(transparent, #000 7%);
  }
  .vng-features {
    padding-bottom: 155px;
  }
  .vng-features h2 {
    font-size: 35px;
  }
  .vng-features p {
    font-size: 17px;
    line-height: 1.45;
  }
  .vng-feature-grid {
    grid-template-columns: 1fr;
  }
  .vng-feature-grid article {
    padding: 20px 0;
    gap: 23px;
    min-height: 0;
    border-right: 0 !important;
    border-bottom: 1px solid #dce9fa !important;
  }
  .vng-feature-grid article:last-child {
    border: 0 !important;
  }
  .vng-feature-grid article > .icon {
    width: 61px;
    height: 61px;
    padding: 16px;
  }
  .vng-feature-grid h3 {
    font-size: 18px;
  }
  .vng-feature-grid p {
    font-size: 15px;
    margin-top: 6px;
    line-height: 1.45;
  }
  .vng-feature-grid p br {
    display: none;
  }
  .ios-update-intro h2 {
    font-size: 37px;
  }
  .ios-update-intro p {
    font-size: 16px;
    line-height: 1.5;
  }
  .ios-update-intro .eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
  }
  .ios-orbit {
    grid-template-columns: 1fr 1fr;
    gap: 43px 15px;
    padding-top: 267px;
    padding-bottom: 40px;
    margin-top: 25px;
  }
  .ios-delta {
    width: 200px;
    top: 0;
  }
  .orbit-card {
    padding: 25px 17px 20px;
    border-radius: 22px;
  }
  .orbit-card h3 {
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }
  .orbit-card p {
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: -0.3px;
  }
  .orbit-card > .icon {
    width: 53px;
    height: 53px;
    padding: 13px;
    left: 15px;
    top: -25px;
  }
  .installation .breadcrumbs {
    margin: 0 0 23px;
    font-size: 9px;
  }
  .installation h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -1.3px;
  }
  .installation h2 br {
    display: none;
  }
  .installation .split > div > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.55;
    margin-top: 22px;
  }
  .install-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 23px;
    margin-top: 27px !important;
  }
  .install-benefits h3 {
    font-size: 15px;
    letter-spacing: -0.4px;
  }
  .install-benefits p {
    font-size: 14px;
    line-height: 1.4;
  }
  .install-benefits .icon {
    width: 45px;
    height: 45px;
    padding: 11px;
  }
  .installation .eyebrow.small {
    font-size: 8px;
  }
  .installation .split > div > p.small {
    font-size: 12px;
    margin-left: 0;
  }
  .method-list {
    gap: 18px;
  }
  .method-card,
  .page-vng .method-card {
    display: block;
    min-height: 0;
    padding: 22px;
  }
  .method-card > .step-count {
    left: auto;
    right: 18px;
    top: 18px;
    width: 33px;
    height: 33px;
  }
  .method-card > .icon {
    width: 45px;
    height: 45px;
    padding: 11px;
    margin-bottom: 15px;
  }
  .method-card h3 {
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.7px;
  }
  .method-card ol {
    gap: 13px;
    margin-top: 18px;
  }
  .method-card li {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
    gap: 10px;
  }
  .method-card li:before {
    margin-top: 1px;
    width: 21px;
    height: 21px;
  }
  .installation-note {
    padding: 18px;
    gap: 15px;
    margin-top: 23px;
    grid-template-columns: 28px 1fr;
  }
  .installation-note > div {
    padding-left: 15px;
  }
  .installation-note p {
    font-size: 13px;
    line-height: 1.55;
  }
  .page-ios .pros-cons {
    padding: 45px 0;
  }
  .page-ios .pros-cons .section-description {
    font-size: 15px;
  }
  dialog {
    padding: 35px 25px;
  }
  dialog .dialog-title {
    font-size: 26px;
  }
}
@media (max-width: 360px) {
  .container,
  .hero .hero-main {
    width: calc(100% - 32px);
  }
  .brand span {
    display: none;
  }
  .hero .hero-copy h1 {
    font-size: 34px;
  }
  .hero-pc .hero-copy h1 {
    font-size: 62px;
  }
  .hero .badges {
    gap: 7px;
  }
  .hero .badge {
    font-size: 9px;
    padding: 8px;
  }
  .feature-card,
  .feature-group.reverse .feature-card {
    grid-template-columns: 33% 1fr;
  }
  .feature-card h3,
  .feature-group.reverse .feature-card h3 {
    font-size: 17px;
  }
  .feature-card p,
  .feature-group.reverse .feature-card p {
    font-size: 13px;
  }
  .reason-cards,
  .ios-orbit {
    grid-template-columns: 1fr;
  }
  .ios-orbit {
    gap: 45px;
    padding-top: 270px;
  }
  .reason-cards article p {
    font-size: 15px;
  }
  .game-facts {
    gap: 12px;
  }
  .game-facts h3 {
    font-size: 20px;
  }
  .release-info strong {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
/* Final reference alignment and intrinsic sizing. */
.brand img,
.download-logo {
  mix-blend-mode: normal;
}
.member-count > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.status-dot {
  display: inline-block;
  flex: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #aec6e1;
}
.status-dot.online {
  background: #22d994;
}
.games-header > * {
  min-width: 0;
}
.game-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.game-facts h3 {
  overflow-wrap: anywhere;
}
.ios-delta {
  mask-image: radial-gradient(ellipse at center, #000 51%, transparent 75%);
}
.ios-update-phone {
  mask-image: linear-gradient(to right, #000 90%, transparent);
}
@media (min-width: 1151px) {
  .hero-home .hero-copy {
    padding-left: 5px;
  }
  .hero-home .hero-copy > p:not(.eyebrow) {
    letter-spacing: -0.3px;
  }
  .hero-home .hero-button {
    padding-inline: 27px;
  }
  .hero-home .site-header nav {
    gap: 48px;
  }
  .hero-home .nav-download {
    margin-left: 22px;
    padding-inline: 30px;
  }
  .hero-home .site-header {
    gap: 28px;
  }
  .hero-discord .hero-copy > p:not(.eyebrow) {
    font-size: 20px;
    letter-spacing: -0.25px;
  }
  .hero-discord .hero-benefits {
    margin-top: 2px;
  }
  .hero-discord .hero-copy h1 {
    letter-spacing: -0.2px;
  }
  .hero-vng .hero-copy {
    width: 53%;
    padding-top: 59px;
  }
  .hero-vng .hero-copy > p:not(.eyebrow) {
    font-size: 19px;
    letter-spacing: -0.3px;
    line-height: 1.46;
  }
  .hero-vng .hero-copy h1 {
    letter-spacing: -0.2px;
  }
  .hero-vng .eyebrow:after {
    display: none;
  }
  .hero-vng .badges {
    margin-top: 43px;
  }
  .hero-pc .hero-main {
    min-height: 490px;
  }
  .hero-pc .hero-benefits {
    padding-top: 20px;
    padding-bottom: 25px;
  }
  .hero-pc .hero-copy {
    padding-top: 53px;
  }
  .hero-pc .hero-copy h1 {
    letter-spacing: 0;
  }
  .hero-ios .hero-copy {
    padding-top: 25px;
  }
  .hero-ios .hero-copy h1 {
    letter-spacing: -0.6px;
  }
  .hero-ios .hero-copy > p:not(.eyebrow) {
    letter-spacing: -0.3px;
    line-height: 1.3;
  }
  .hero-ios .hero-copy > p + p {
    margin-top: 21px;
  }
  .hero-ios .badges {
    margin-top: 30px;
  }
  .hero-ios .hero-button {
    margin-top: 32px;
  }
  .overview .container {
    width: calc(100% - 116px);
  }
  .overview h2 {
    letter-spacing: -1.7px;
  }
  .overview p {
    letter-spacing: -0.55px;
  }
  .overview .overview-art {
    transform: translateX(5px);
    max-width: 106%;
  }
  .page-pc .overview .split {
    transform: translateY(-22px);
  }
  .centered-intro h2 {
    letter-spacing: -0.4px;
  }
  .center-copy p {
    font-size: 21px;
    letter-spacing: -0.35px;
    line-height: 1.45;
  }
  .page-vng .centered-intro .container {
    transform: translateY(13px);
  }
  .page-ios .center-copy {
    max-width: 1040px;
  }
  .page-ios .center-copy p {
    font-size: 22px;
    line-height: 1.48;
    letter-spacing: -0.25px;
  }
  .feature-group {
    grid-template-columns: 30% 1fr;
  }
  .feature-card {
    grid-template-columns: 40% 1fr;
  }
  .feature-card > div {
    padding-left: 15px;
  }
  .feature-card img {
    padding-left: 13px;
  }
  .feature-intro h2 {
    font-size: 49px;
    letter-spacing: -2.4px;
  }
  .feature-intro p {
    font-size: 25px;
    letter-spacing: -1.2px;
  }
  .feature-group.reverse .feature-intro h2 {
    font-size: 47px;
    letter-spacing: -2.4px;
  }
  .glance .table-wrap table {
    table-layout: fixed;
  }
  .glance .table-wrap th:nth-child(1) {
    width: 18%;
  }
  .glance .table-wrap th:nth-child(2) {
    width: 29%;
  }
  .glance .table-wrap th:nth-child(3) {
    width: 15%;
  }
  .glance .table-wrap th:nth-child(4) {
    width: 18%;
  }
  .glance .table-wrap th:nth-child(5) {
    width: 20%;
  }
  .glance .table-wrap td,
  .glance .table-wrap th {
    padding: 9px 15px;
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: -0.45px;
  }
  .glance .table-wrap thead th {
    padding-block: 15px;
  }
  .glance .split.equal {
    grid-template-columns: 55% 1fr;
  }
  .glance p {
    font-size: 19px;
    letter-spacing: -0.2px;
  }
  .games .games-header {
    grid-template-columns: 58% 1fr;
    gap: 30px;
  }
  .games h2 {
    font-size: 61px;
    letter-spacing: -2.2px;
  }
  .games .game-grid {
    margin-top: 34px;
  }
  .games .game-row {
    min-height: 65px;
    padding-block: 8px;
  }
  .page-home .pros-grid {
    margin-top: 28px;
  }
  .page-home .pros-grid article {
    padding: 12px 0;
    min-height: 85px;
  }
  .page-home .pros-cons .section-description {
    max-width: 920px;
    line-height: 1.4;
  }
  .page-home .pros-grid p {
    font-size: 14px;
    line-height: 1.35;
  }
  .page-home .pros-grid h3 {
    font-size: 28px;
  }
  .errors > .container > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.5;
  }
  .error-card {
    gap: 24px;
    padding-block: 17px;
  }
  .error-card > div {
    padding-left: 25px;
  }
  .error-card p {
    font-size: 14px;
    line-height: 1.5;
  }
  .error-conclusion {
    padding-block: 17px;
  }
  .error-conclusion p {
    font-size: 13px;
  }
  .error-conclusion aside > .icon {
    width: 60px;
    height: 60px;
    padding: 17px;
  }
  .page-home .faq-item {
    padding-top: 13px;
    padding-bottom: 13px;
    min-height: 74px;
  }
  .faq-header .eyebrow {
    margin-top: 0;
  }
  .page-home .faq {
    padding-bottom: 18px;
  }
  .page-home .faq-header {
    margin-bottom: 29px;
  }
  .page-discord .overview {
    min-height: 790px;
  }
  .channels {
    min-height: 655px;
    padding: 40px 0 65px;
  }
  .channels .split {
    grid-template-columns: 36% 1fr;
  }
  .channels h2 {
    font-size: 38px;
    letter-spacing: -1.8px;
  }
  .channels p {
    font-size: 17px;
    letter-spacing: -0.5px;
    line-height: 1.48;
  }
  .channels .table-wrap th,
  .channels .table-wrap td {
    padding: 18px 26px;
    font-size: 16px;
    line-height: 1.4;
  }
  .channels .table-wrap thead th {
    padding-block: 17px;
  }
  .page-discord .dashboard-section {
    padding-top: 55px;
    padding-bottom: 30px;
    min-height: 690px;
  }
  .page-discord .dashboard-section .split {
    grid-template-columns: 42% 1fr;
  }
  .page-discord .dashboard-section h2 {
    font-size: 49px;
    letter-spacing: -2.4px;
  }
  .page-discord .dashboard-section p {
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: -0.5px;
  }
  .page-discord .benefit-strip {
    margin-top: 25px;
    padding-top: 23px;
  }
  .join-steps article {
    padding: 26px 22px;
  }
  .join-steps p {
    font-size: 13px;
    line-height: 1.42;
  }
  .join-steps h3 {
    font-size: 18px;
  }
  .join-section {
    min-height: 715px;
  }
  .community {
    min-height: 650px;
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .community .eyebrow {
    font-size: 19px;
  }
  .community > .container > p:not(.eyebrow) {
    font-size: 24px;
    line-height: 1.4;
  }
  .community-row {
    grid-template-columns: 85px 70px 170px 1fr;
    gap: 40px;
    min-height: 95px;
  }
  .community-row p {
    font-size: 23px;
  }
  .community-label {
    grid-template-columns: 39% 1fr;
  }
  .page-discord .conclusion {
    min-height: 720px;
    padding-top: 110px;
    padding-bottom: 150px;
  }
  .page-discord .faq {
    min-height: 638px;
    padding-top: 50px;
  }
  .page-discord .faq-item {
    min-height: 125px;
  }
  .page-discord .faq-answer {
    font-size: 19px;
  }
  .pc-tips {
    min-height: 930px;
    padding-bottom: 70px;
  }
  .tips-list p {
    font-size: 16px;
    line-height: 1.45;
  }
  .page-pc .faq {
    padding-top: 45px;
    min-height: 640px;
  }
  .page-pc .faq-item {
    min-height: 126px;
  }
  .page-pc .faq-answer {
    font-size: 19px;
  }
  .vng-features {
    min-height: 552px;
    padding-top: 34px;
    padding-bottom: 128px;
  }
  .vng-feature-grid article {
    padding-block: 20px;
    min-height: 125px;
  }
  .page-vng .faq {
    min-height: 663px;
    padding-top: 40px;
  }
  .page-vng .faq-item {
    min-height: 110px;
    padding-top: 19px;
    padding-bottom: 19px;
  }
  .page-vng .faq-answer {
    font-size: 17px;
    line-height: 1.4;
  }
  .page-vng .faq-header {
    margin-bottom: 28px;
  }
  .ios-updates {
    min-height: 854px;
    padding-top: 49px;
  }
  .ios-updates .container {
    min-height: 805px;
  }
  .ios-update-intro h2 {
    font-size: 44px;
    letter-spacing: -1.8px;
  }
  .ios-update-intro p {
    max-width: 340px;
    font-size: 16px;
  }
  .orbit-6 {
    top: 570px;
  }
  .orbit-card p {
    font-size: 13px;
    line-height: 1.3;
  }
  .orbit-card {
    padding-bottom: 19px;
  }
  .page-ios .installation {
    min-height: 709px;
    padding-top: 30px;
  }
  .page-ios .method-card {
    padding-top: 17px;
    padding-bottom: 17px;
    min-height: 165px;
    gap: 20px;
  }
  .page-ios .method-card h3 {
    font-size: 18px;
  }
  .page-ios .method-card li {
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: -0.25px;
  }
  .page-ios .method-card ol {
    gap: 6px;
    margin-top: 13px;
  }
  .page-ios .installation .split.equal {
    grid-template-columns: 45% 1fr;
    gap: 25px;
  }
  .page-ios .installation .split > div > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.45;
  }
  .page-ios .installation .split > div > p.small {
    font-size: 12px;
  }
  .page-ios .installation .eyebrow.small {
    font-size: 8px;
  }
  .page-ios .install-benefits p {
    font-size: 12px;
  }
  .page-ios .installation h2 {
    font-size: 47px;
  }
  .page-ios .installation-note {
    padding-block: 14px;
  }
  .page-ios .pros-grid article {
    padding: 16px 0;
    min-height: 107px;
  }
  .page-ios .pros-grid p {
    font-size: 16px;
    line-height: 1.4;
  }
  .page-ios .faq {
    min-height: 650px;
    padding-top: 45px;
  }
  .page-ios .faq-item {
    min-height: 127px;
  }
  .page-ios .faq-answer {
    font-size: 19px;
  }
}
@media (max-width: 640px) {
  .page-discord .overview .eyebrow {
    font-size: 9px;
    letter-spacing: 2px;
  }
  .games h2 {
    overflow-wrap: break-word;
  }
  .community .eyebrow {
    font-size: 12px;
  }
  .errors > .container > .eyebrow {
    font-size: 10px;
  }
  .installation .split > div > .eyebrow.small {
    font-size: 8px;
  }
  .status-dot {
    width: 10px;
    height: 10px;
  }
  .member-count > span {
    gap: 5px;
  }
}
@media (max-width: 360px) {
  .hero .hero-art,
  .region-art {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }
  .game-facts {
    gap: 10px;
  }
  .game-facts h3 {
    font-size: 19px;
  }
  .game-facts span {
    font-size: 12px;
  }
  .game-facts p {
    font-size: 11px;
  }
  .games h2 {
    font-size: 38px;
  }
}
@media (min-width: 641px) and (max-width: 900px) {
  .hero-vng .badges {
    width: 100%;
    gap: 15px;
  }
  .hero-vng .badge {
    font-size: 12px;
    padding-right: 12px;
  }
  .hero-vng .badge .icon {
    width: 28px;
    height: 28px;
  }
}

/* Shared information pages and locally hosted Font Awesome SVGs. */
.social-icon > .icon { width: 65%; height: 65%; }
.site-footer { padding: 48px 0 24px; color: #ecf3ff; background: #081620; }
.footer-content { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: 4px; }
.footer-brand .icon { width: 30px; height: 30px; color: #66c5ff; }
.footer-content p { margin: 0; color: #a7b9cd; font-size: 14px; flex: 1; }
.footer-content nav { display: flex; flex-wrap: wrap; gap: 22px; font-size: 14px; }
.footer-content nav a:hover, .footer-content nav a:focus-visible { color: #66c5ff; }
.footer-bottom { border-top: 1px solid #ffffff18; padding-top: 20px; margin-top: 28px; color: #a7b9cd; font-size: 12px; }
.info-masthead { display: flow-root; padding-bottom: 26px; background: #081620; color: #fff; }
.info-page { max-width: 1100px; padding-top: 76px; padding-bottom: 90px; }
.info-heading { padding-bottom: 36px; border-bottom: 1px solid var(--line); margin-bottom: 40px; }
.info-heading h1 { font-size: clamp(38px, 5vw, 64px); }
.info-heading p { max-width: 690px; font-size: 19px; line-height: 1.65; }
.info-copy { max-width: 900px; }
.info-copy h2 { margin: 36px 0 16px; font-size: 27px; letter-spacing: -.6px; line-height: 1.3; }
.info-copy h2:first-child { margin-top: 0; }
.info-copy p, .info-copy li { font-size: 17px; line-height: 1.8; }
.info-copy ul { color: var(--body); padding-left: 24px; }
.info-copy li + li { margin-top: 8px; }
.info-copy a { color: #006acb; text-decoration: underline; text-underline-offset: 3px; }
.context-link { color: #006acb; text-decoration: underline; text-underline-offset: 3px; }
.context-link:hover { color: #004d96; }
.context-link:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
/* Let the complete original installation and comparison copy flow naturally. */
.home-install-copy { max-width: 880px; margin: 40px auto 0; padding-top: 30px; border-top: 1px solid #313941; text-align: left; }
.home-install-copy h3 { font-size: 26px; line-height: 1.25; }
.home-install-copy p, .home-install-copy li { font-size: 17px; line-height: 1.6; color: #c1c8d0; }
.home-install-copy p { margin-top: 18px; }
.home-install-copy ol { padding-left: 24px; margin: 20px 0; }
.home-install-copy li + li { margin-top: 12px; }
.comparison-copy { margin-top: 22px; color: var(--body); font-size: 18px; line-height: 1.6; }
@media (max-width: 640px) {
 .home-install-copy h3 { font-size: 23px; }
 .home-install-copy p, .home-install-copy li, .comparison-copy { font-size: 16px; }
}
.info-copy .policy-date { font-size: 14px; margin: 0 0 32px; }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; }
.info-page:has(.contact-layout) .info-copy { max-width: none; }
.contact-privacy { display: flex; align-items: start; gap: 14px; padding: 22px; margin-top: 30px; background: #f1f8ff; border-radius: 12px; }
.contact-privacy .icon { color: #0079ff; width: 28px; height: 28px; }
.contact-privacy p { margin: 0; font-size: 14px; line-height: 1.65; }
.contact-form { padding: 30px; border: 1px solid var(--line); border-radius: 16px; background: #f9fcff; }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; margin-bottom: 7px; font-size: 15px; font-weight: 600; }
.form-row input, .form-row select, .form-row textarea { width: 100%; border: 1px solid #bacde0; background: #fff; border-radius: 8px; padding: 12px; color: var(--ink); font: inherit; font-size: 16px; }
.form-row textarea { resize: vertical; min-height: 150px; }
.form-row :is(input, select, textarea):focus-visible { outline: 3px solid #0079ff40; border-color: #0079ff; }
.form-trap { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.contact-form .button { font-size: 16px; cursor: pointer; }
.contact-form .button:disabled { opacity: .65; cursor: wait; }
.contact-form .form-status { margin-top: 16px; font-size: 14px; }
.form-status[data-state="error"] { color: #b32727; }
.form-status[data-state="success"] { color: #126744; }
.not-found { min-height: 65vh; text-align: center; padding-top: 70px; padding-bottom: 90px; }
.error-art { display: flex; justify-content: center; align-items: center; gap: 24px; color: #087eff; margin-bottom: 24px; }
.error-art .icon { width: 110px; height: 120px; }
.error-art span { font-weight: 800; font-size: clamp(86px, 14vw, 150px); letter-spacing: -8px; line-height: 1; }
.not-found h1 { font-size: clamp(30px, 5vw, 48px); }
.not-found p { max-width: 610px; margin: 22px auto 30px; }
.error-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 32px; font-size: 16px; }
.error-links a { color: #006acb; text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 900px) {
 .contact-layout { grid-template-columns: 1fr; gap: 30px; }
 .footer-content { align-items: flex-start; gap: 22px; }
 .footer-content p, .footer-content nav { flex-basis: 100%; }
}
@media (max-width: 600px) {
 .site-footer { padding-top: 32px; }
 .info-page { padding-top: 42px; padding-bottom: 54px; }
 .info-heading { padding-bottom: 26px; margin-bottom: 28px; }
 .info-heading p { font-size: 17px; }
 .info-copy h2 { font-size: 24px; }
 .info-copy p, .info-copy li { font-size: 16px; }
 .contact-form { padding: 20px; }
 .error-art .icon { width: 76px; height: 86px; }
 .not-found { padding-top: 45px; padding-bottom: 60px; }
 .footer-content nav { gap: 18px; }
}

/* One iOS-inspired shell for every page; platform content uses the same layout. */
html { scrollbar-gutter: stable; }
:root {
  --shell-width: 1144px;
  --shell-gutter: clamp(20px, 5vw, 68px);
  --shell-background: #0c1d29;
  --shell-accent: #a0d8ff;
}
.site-header.site-header-unified {
  width: calc(100% - var(--shell-gutter) - var(--shell-gutter));
  max-width: var(--shell-width);
  min-height: 80px;
  margin: 0 auto;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  gap: 32px;
  color: #f8fbff;
  --hero-accent: var(--shell-accent);
}
.site-header-unified .brand { gap: 10px; flex-shrink: 0; }
.site-header-unified .brand img { width: 54px; height: 60px; }
.site-header-unified .brand span { display: inline; font-size: 18px; font-weight: 600; letter-spacing: 5px; }
.site-header.site-header-unified nav { justify-content: flex-end; gap: 30px; }
.site-header.site-header-unified nav a { font-size: 15px; padding: 16px 0; }
.site-header-unified .nav-download {
  min-height: 48px;
  padding: 13px 26px;
  margin: 0;
  border: 0;
  border-radius: 40px;
  background: var(--shell-accent);
  color: #0c1d29;
  font-size: 15px;
}
.site-header-unified .nav-download > .icon { display: none; }
.site-header-unified .search-button { display: grid; place-items: center; min-width: 40px; min-height: 44px; cursor: pointer; }
.site-header-unified .search-button .icon { width: 22px; height: 22px; }
.site-header-unified :is(a, button):focus-visible { outline: 2px solid var(--shell-accent); outline-offset: 5px; }
.hero.hero-unified {
  --hero-bg: var(--shell-background);
  --hero-accent: #00d4ec;
  min-height: 0;
  padding: 0;
}
/* Platform identity comes from the backdrop; controls retain shared colors. */
.page-home .hero-unified {
  --platform-background: #081d29;
  --platform-glow: rgb(0 189 210 / 8%);
}
.page-ios .hero-unified {
  --platform-background: #0a1932;
  --platform-glow: rgb(139 190 255 / 7%);
}
.page-pc .hero-unified {
  --platform-background: #181b20;
  --platform-glow: rgb(135 159 184 / 5%);
}
.page-vng .hero-unified {
  --platform-background: #18152f;
  --platform-glow: rgb(148 103 221 / 9%);
}
.page-discord .hero-unified {
  --platform-background: #20233e;
  --platform-glow: rgb(111 121 234 / 9%);
}
.hero.hero-unified {
  background-color: var(--platform-background, var(--shell-background));
  background-image: radial-gradient(ellipse at 80% 56%, var(--platform-glow, transparent) 0%, transparent 59%);
}
.hero-header-shell {
  position: relative;
  z-index: 5;
  background: transparent;
}
.page-discord .hero-unified .invite-card {
  background: linear-gradient(135deg, #2c3152, #242b46);
  border-color: #6471a65c;
  box-shadow: 0 10px 28px #0d102b1a;
}
@media (max-width: 900px) {
  .hero.hero-unified {
    background-image: radial-gradient(ellipse at 50% 82%, var(--platform-glow, transparent) 0%, transparent 58%);
  }
}
.hero-unified .hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 40px;
  width: calc(100% - var(--shell-gutter) - var(--shell-gutter));
  max-width: var(--shell-width);
  min-height: 650px;
  padding: 44px 0 52px;
}
.hero-unified .hero-copy { width: 100%; padding: 0; align-self: center; min-width: 0; }
.hero-unified .hero-copy h1 { font-size: 55px; line-height: 1.05; letter-spacing: -1.8px; white-space: normal; color: #f8fbff; }
.hero-unified .hero-copy h1 span { color: inherit; font-size: inherit; }
.hero-unified .hero-copy > p:not(.eyebrow) { max-width: none; margin-top: 24px; color: #d4dee8; font-size: 17px; line-height: 1.5; letter-spacing: 0; }
.hero-unified .hero-copy > p + p { margin-top: 18px; }
.hero-unified .badges { width: auto; margin-top: 28px; gap: 16px 20px; flex-wrap: wrap; }
.hero-unified .badge { padding: 0; border: 0; border-radius: 0; min-height: 34px; gap: 10px; font-size: 12px; }
.hero-unified .badge .icon { width: 26px; height: 26px; }
.hero-unified .hero-button {
  margin-top: 28px;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 12px;
  background: var(--shell-accent);
  color: #0c1d29;
  font-size: 15px;
  gap: 16px;
}
.hero-unified .hero-button .icon { width: 21px; height: 21px; }
/* Center both hero columns; keep the complete artwork inside its own column. */
.hero-unified .hero-visual {
  width: 100%;
  min-width: 0;
  display: grid;
  place-items: center;
  place-self: center;
}
.hero-unified .hero-art {
  display: block;
  position: static;
  inset: auto;
  width: min(100%, 825px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  margin: auto;
  mix-blend-mode: normal;
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}
/* Keep the supplied interface colors intact; soften only the studio edges. */
.hero-unified .hero-art {
  mix-blend-mode: normal;
  filter: none;
  mask-image:
    linear-gradient(to bottom, transparent, #000 12%, #000 84%, transparent),
    linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-composite: intersect;
}
.hero-unified .invite-card { position: static; width: 100%; max-width: 470px; padding: 34px 26px 26px; margin: 0; }
.hero-unified .invite-card > img { width: 110px; height: 110px; }
.hero-unified .invite-card p { font-size: 18px; }
.hero-unified .invite-card h2 { font-size: 30px; }
.hero-unified .member-count { gap: 20px; flex-wrap: wrap; font-size: 13px; }
.hero-unified .invite-button { background: var(--shell-accent); font-size: 16px; min-height: 48px; }
.info-masthead { padding: 0; background: var(--shell-background); }
.site-footer { background: var(--shell-background); color: #f8fbff; }
.site-footer > .container { width: calc(100% - var(--shell-gutter) - var(--shell-gutter)); max-width: var(--shell-width); }
.footer-brand { font-size: 18px; font-weight: 600; letter-spacing: 5px; gap: 10px; }
.footer-brand img { width: 44px; height: 48px; object-fit: contain; mix-blend-mode: screen; }
.footer-content nav a:hover, .footer-content nav a:focus-visible { color: var(--shell-accent); }
@media (min-width: 901px) and (max-width: 1100px) {
  .site-header.site-header-unified { gap: 24px; }
  .site-header.site-header-unified nav { gap: 22px; }
  .hero-unified .hero-copy h1 { font-size: 48px; }
  .hero-unified .hero-main { gap: 28px; }
}
@media (max-width: 900px) {
  .site-header.site-header-unified { gap: 16px; }
  .site-header-unified .nav-download { margin-left: auto; }
  .site-header.site-header-unified nav { display: none; gap: 0; padding: 16px 22px; align-items: stretch; background: var(--platform-background, var(--shell-background)); }
  .site-header.site-header-unified nav.is-open { display: flex; }
  .site-header.site-header-unified nav a { padding: 13px 5px; font-size: 16px; }
  .site-header-unified .search-button { justify-content: start; padding: 12px 5px; }
  .hero-unified .hero-main { grid-template-columns: 1fr; min-height: 0; gap: 36px; padding: 36px 0 44px; }
  .hero-unified .hero-copy { max-width: 680px; }
  .hero-unified .hero-copy h1 { font-size: 48px; }
  .hero-unified .hero-copy h1 br { display: none; }
  .hero-unified .hero-visual { max-width: 580px; justify-self: center; }
}
@media (max-width: 640px) {
  .site-header.site-header-unified { min-height: 74px; gap: 12px; padding: 10px 0; }
  .site-header-unified .brand img { width: 42px; height: 48px; }
  .site-header-unified .brand span { font-size: 13px; letter-spacing: 3px; }
  .site-header-unified .nav-download { display: none; }
  .site-header-unified .menu-toggle { width: 40px; height: 42px; margin-left: auto; }
  .hero.hero-unified .hero-main { display: grid; padding: 30px 0 36px; gap: 30px; }
  .hero-unified .hero-copy h1 { font-size: 38px; letter-spacing: -1.2px; }
  .hero-unified .hero-copy > p:not(.eyebrow) { font-size: 16px; margin-top: 20px; }
  .hero-unified .hero-copy > p + p { margin-top: 16px; }
  .hero-unified .badges { gap: 12px 18px; margin-top: 24px; }
  .hero-unified .badge { font-size: 12px; }
  .hero-unified .badge .icon { width: 24px; height: 24px; }
  .hero-unified .hero-button { margin-top: 24px; }
  .hero-unified .invite-card { padding: 28px 18px 22px; }
  .hero-unified .member-count { font-size: 12px; gap: 12px; }
}
@media (max-width: 360px) {
  .site-header-unified .brand { gap: 7px; }
  .site-header-unified .brand img { width: 34px; }
  .site-header-unified .brand span { font-size: 12px; letter-spacing: 2px; }
  .site-header-unified .nav-download { padding-inline: 13px; }
  .hero-unified .hero-copy h1 { font-size: 34px; }
}

/* Give the homepage download action more prominence beside its long title. */
.page-home .hero-unified .hero-copy h1 { font-size: 46px; line-height: 1.1; letter-spacing: -1.3px; }
.page-home .hero-unified .hero-button {
 min-width: 250px;
 max-width: 100%;
 min-height: 58px;
 padding: 17px 30px;
 font-size: 17px;
 font-weight: 700;
}
.page-home .hero-unified .hero-button .icon { width: 24px; height: 24px; }
@media (max-width: 1100px) {
 .page-home .hero-unified .hero-copy h1 { font-size: 42px; }
}
@media (max-width: 640px) {
 .page-home .hero-unified .hero-copy h1 { font-size: 32px; letter-spacing: -.8px; }
 .hero.hero-unified .hero-button {
  width: 100%; max-width: 100%; min-width: 0; min-height: 56px;
  padding: 16px 24px; font-size: 17px; font-weight: 700;
 }
 .hero.hero-unified .hero-button .icon { width: 24px; height: 24px; }
}
@media (max-width: 360px) {
 .page-home .hero-unified .hero-copy h1 { font-size: 30px; }
}

/* Shared footer based on the supplied three-column reference. */
.footer-redesigned {
 padding: 110px 0 76px;
 border-top: 0;
 background: radial-gradient(ellipse at 100% 0%, #103b4b80, transparent 55%), #061d28;
 color: #f4f8fc;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 1.3fr auto; align-items: start; gap: 60px; }
.footer-redesigned .footer-brand { gap: 18px; font-size: 34px; font-weight: 600; letter-spacing: 7px; line-height: 1; }
.footer-redesigned .footer-brand img { width: 80px; height: 80px; }
.footer-intro > p { margin: 6px 0 0; color: #a7cae3; font-size: 21px; font-weight: 400; line-height: 1.45; letter-spacing: 0; }
.footer-explore, .footer-follow { padding-top: 10px; min-width: 0; }
.footer-redesigned .footer-title { margin: 0 0 26px; font-size: 25px; font-weight: 700; line-height: 1.2; letter-spacing: -.4px; color: #f4f8fc; }
.footer-explore-links { display: grid; grid-template-columns: repeat(3, max-content); gap: 25px 32px; }
.footer-explore-links a { color: #c9dce8; font-size: 19px; line-height: 1.5; }
.footer-socials { display: flex; gap: 9px; flex-wrap: wrap; }
.footer-social { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 6px; background: transparent; border: 1px solid #518fa7; color: #f1f8fc; }
.footer-social .icon { width: 23px; height: 23px; }
.footer-redesigned a:hover, .footer-redesigned a:focus-visible { color: #a0d8ff; }
.footer-redesigned a.footer-social:hover, .footer-redesigned a.footer-social:focus-visible { color: #061d28; background: #a0d8ff; }
.footer-redesigned a:focus-visible { outline: 2px solid #a0d8ff; outline-offset: 5px; }
.footer-baseline { display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid #518fa7; padding-top: 36px; margin-top: 44px; font-size: 15px; color: #a7cae3; line-height: 1.6; }
.footer-legal { display: flex; align-items: center; justify-content: flex-end; gap: 28px; flex-wrap: wrap; }
@media (max-width: 1100px) {
 .footer-grid { gap: 36px; grid-template-columns: 1fr 1.1fr; }
 .footer-follow { grid-column: 2; padding-top: 0; }
 .footer-follow .footer-title { margin-bottom: 18px; }
 .footer-intro { grid-row: span 2; }
}
@media (max-width: 640px) {
 .footer-redesigned { padding: 54px 0 30px; text-align: center; }
 .footer-grid { grid-template-columns: 1fr; gap: 34px; }
 .footer-intro { grid-row: auto; }
 .footer-redesigned .footer-brand { font-size: 29px; gap: 14px; letter-spacing: 6px; }
 .footer-redesigned .footer-brand img { width: 64px; height: 64px; }
 .footer-intro > p { font-size: 19px; margin-top: 10px; }
 .footer-explore, .footer-follow { padding-top: 0; }
 .footer-follow { grid-column: auto; }
 .footer-redesigned .footer-title { font-size: 22px; margin-bottom: 20px; }
 .footer-explore-links { justify-content: center; gap: 18px 30px; }
 .footer-explore-links a { font-size: 17px; }
 .footer-socials { justify-content: center; gap: 10px; }
 .footer-baseline { align-items: center; flex-direction: column; gap: 18px; margin-top: 34px; padding-top: 24px; font-size: 13px; }
 .footer-legal { justify-content: center; gap: 18px; }
}

/* Refreshed landscape interface artwork and transparent brand emblem. */
.site-header-unified .brand img, .footer-brand img, .download-logo { mix-blend-mode: normal; object-fit: contain; }
.page-ios .hero-unified .hero-art, .page-pc .hero-unified .hero-art {
 mask-image: linear-gradient(to bottom, transparent, #000 3%, #000 87%, transparent), linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}
.home-features .feature-card img { height: auto; object-fit: contain; }
.ios-updates .ios-delta { mask-image: radial-gradient(ellipse at center, #000 57%, transparent 74%); }
.ios-updates .ios-update-phone {
 height: auto;
 object-fit: contain;
 mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent), linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
 mask-composite: intersect;
}
@media (min-width: 901px) {
 .ios-updates .ios-update-phone { left: 0; bottom: 40px; width: 36%; }
}
@media (max-width: 900px) {
 .ios-updates .ios-update-phone { display: block; position: relative; left: auto; bottom: auto; width: 100%; max-width: 580px; margin: 30px auto 0; }
}

/* The WebP file itself contains only the invitation card. */
.discord-invite-art {
 display: block;
 width: 100%; max-width: 510px;
 margin: auto; padding: 0; border: 0; border-radius: 18px; background: #1e1e22;
}
.discord-invite-art .discord-hero-image {
 display: block;
 width: 100%; max-width: 100%; height: auto;
 object-fit: contain; border-radius: inherit;
}
@media (max-width: 900px) {
 .discord-invite-art { max-width: 452px; }
}

/* Keep the two iOS download actions compact, centered, and easy to tap. */
.page-ios .hero-unified .ios-download-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin: 28px 0 0;
}
.page-ios .hero-unified .ios-download-actions .hero-button {
  margin: 0;
}
.page-ios .hero-unified .ios-ipa-row {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 7px 0 0;
}
.page-ios .hero-unified .ios-ipa-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 0;
  padding: 9px 14px;
  line-height: 1.2;
  text-align: center;
  text-decoration-line: underline !important;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  touch-action: manipulation;
  color: #9db2c3;
  font-size: 14px;
  font-weight: 600;
  text-decoration-color: #718da3;
}
.page-ios .hero-unified .ios-ipa-link:hover,
.page-ios .hero-unified .ios-ipa-link:focus-visible {
  color: #d9e7f1;
  text-decoration-color: #a0d8ff;
}
@media (max-width: 900px) {
  .page-ios .hero-unified .ios-download-actions {
    margin-right: auto;
    margin-left: auto;
  }
}

.scroll-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0 0 3px;
  border: 1px solid #74b8d3;
  border-radius: 50%;
  background: #0b2633e8;
  box-shadow: 0 10px 28px #0005;
  color: #dff7ff;
  font: 700 24px/1 system-ui, sans-serif;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background-color .2s ease;
}
.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-to-top:hover,
.scroll-to-top:focus-visible {
  background: #16475a;
  color: #ffffff;
}
.scroll-to-top:focus-visible {
  outline: 2px solid #a0d8ff;
  outline-offset: 3px;
}
@media (max-width: 640px) {
  .scroll-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-to-top {
    transition: none;
  }
}
@media (max-width: 640px) {
  .page-ios .hero-unified .ios-download-actions {
    width: 100%;
    margin-top: 20px;
  }
  .page-ios .hero-unified .ios-download-actions .hero-button {
    width: min(100%, 320px);
    margin: 0 auto;
  }
  .page-ios .hero-unified .ios-ipa-row {
    width: auto;
    margin-top: 5px;
  }
  .page-ios .hero-unified .ios-ipa-link {
    min-width: 148px;
    min-height: 44px;
    padding: 10px 16px;
  }
}
