:root {
  --bg: #1c2125;
  --bg-2: #171c1f;
  --panel: #232a2f;
  --panel-2: #1f2529;
  --panel-3: #202529;
  --soft: #262c31;
  --stroke: rgba(255, 255, 255, .06);
  --stroke-2: rgba(255, 255, 255, .09);
  --text: #ffffff;
  --muted: #9aa6ac;
  --yellow: #eed929;
  --yellow-soft: #fff07a;
  --blue: #1b6fff;
  --blue-soft: #5bb2ff;
  --green: #27d17a;
  --green-soft: #54d88b;
  --red: #ff6b6b;
  --shadow: 0 18px 50px rgba(0, 0, 0, .32);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", "Onest", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 14% 0%, rgba(27, 111, 255, .16), transparent 24%),
    radial-gradient(circle at 88% 6%, rgba(238, 217, 41, .11), transparent 16%),
    linear-gradient(180deg, #1c2125 0%, #171c1f 100%);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(18, 22, 25, .76);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(238, 217, 41, .12));
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-title {
  font-family: "Onest", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-nav a {
  padding: 11px 14px;
  border-radius: 14px;
  color: #d9e2e7;
  font-size: 14px;
  font-weight: 700;
  transition: .2s ease;
}

.header-nav a:hover {
  background: rgba(255, 255, 255, .04);
  color: #fff;
}

.header-nav .header-download {
  color: #111518;
  background: linear-gradient(180deg, #f6e85a 0%, #eed929 100%);
  box-shadow: 0 14px 28px rgba(238, 217, 41, .18);
}

.header-burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  flex: 0 0 auto;
  transition: .2s ease;
}

.header-burger:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .04));
}

.header-burger i {
  pointer-events: none;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: rgba(18, 22, 25, .96);
  backdrop-filter: blur(18px);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 0 16px;
}

.mobile-menu-inner a {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  color: #d9e2e7;
  font-size: 15px;
  font-weight: 700;
  transition: .2s ease;
}

.mobile-menu-inner a:hover {
  background: rgba(255, 255, 255, .04);
  color: #fff;
}

.mobile-menu-inner .mobile-download {
  justify-content: center;
  color: #111518;
  background: linear-gradient(180deg, #f6e85a 0%, #eed929 100%);
  box-shadow: 0 14px 28px rgba(238, 217, 41, .18);
}

.site-header.menu-open .mobile-menu {
  display: block;
}

/* HERO */

.hero {
  position: relative;
  padding: 34px 0 48px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: 24px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.hero-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .02));
  color: #d7e0e5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.2;
  flex-wrap: wrap;
}

.hero-title {
  margin: 0;
  font-family: "Onest", "Inter", sans-serif;
  font-size: clamp(38px, 5.8vw, 74px);
  line-height: .95;
  font-weight: 800;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.hero-title span,
.section-head h2 span,
.cta-copy h2 span {
  color: var(--yellow);
}

.hero-text {
  margin: 0;
  max-width: 720px;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.66;
  color: var(--muted);
}

.hero-text strong {
  color: #fff;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.store-button {
  min-height: 60px;
  padding: 0 22px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  transition: .2s ease;
  white-space: nowrap;
}

.store-button.primary {
  color: #111518;
  background: linear-gradient(180deg, #f6e85a 0%, #eed929 100%);
  box-shadow: 0 14px 28px rgba(238, 217, 41, .18);
}

.store-button.secondary {
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
  border-color: var(--stroke);
}

.store-button.small {
  min-height: 54px;
  padding: 0 18px;
}

.store-button:hover {
  transform: translateY(-1px);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pills span {
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--stroke);
  color: #d7e0e5;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

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

.mini-stat {
  padding: 16px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .016)),
    linear-gradient(180deg, #232a2f 0%, #1f2529 100%);
  border: 1px solid var(--stroke);
  min-width: 0;
}

.mini-stat-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 8px;
}

.mini-stat-value {
  font-family: "Onest", "Inter", sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.03em;
  word-break: break-word;
}

.hero-device {
  position: relative;
  min-width: 0;
}

.device-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.glow-blue {
  top: -40px;
  right: -10px;
  width: 230px;
  height: 230px;
  background: radial-gradient(circle, rgba(27, 111, 255, .22), transparent 68%);
}

.glow-yellow {
  bottom: -60px;
  left: -20px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(238, 217, 41, .16), transparent 70%);
}

.device-frame {
  position: relative;
  min-height: 720px;
  padding: 18px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .02)),
    linear-gradient(180deg, #252c31 0%, #1a1f23 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .36);
  overflow: hidden;
}

.device-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.device-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.device-back {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, #232a2f 0%, #1f2529 100%);
  border: 1px solid var(--stroke);
  flex: 0 0 auto;
}

.device-title strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.device-title small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.device-energy {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .02));
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  flex: 0 0 auto;
}

.device-energy i {
  color: var(--green-soft);
}

.roller-shell {
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, #232a2f 0%, #1c2125 100%);
  border: 1px solid rgba(255, 255, 255, .06);
}

.roller-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.skin-tile {
  position: relative;
  min-height: 184px;
  border-radius: 18px;
  overflow: hidden;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .015)),
    linear-gradient(180deg, #242b30 0%, #202529 100%);
  border: 1px solid rgba(255, 255, 255, .05);
}

.skin-tile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 54%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), transparent);
  pointer-events: none;
}

.skin-tile img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 94px;
  object-fit: contain;
  margin: 6px auto 8px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .32));
}

.skin-tile h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
}

.skin-tile p {
  position: relative;
  z-index: 1;
  margin: 5px 0 0;
  font-size: 11px;
  line-height: 1.3;
  color: var(--muted);
  font-weight: 700;
}

.skin-tile.small {
  min-height: 166px;
}

.skin-line {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  margin: 0 0 10px;
  background: rgba(255, 255, 255, .05);
  overflow: hidden;
}

.skin-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
}

.skin-tile.nameless .skin-line::after {
  background: linear-gradient(90deg, rgba(238, 217, 41, .38), #eed929);
}

.skin-tile.rare .skin-line::after {
  background: linear-gradient(90deg, rgba(45, 72, 210, .34), #5bb2ff);
}

.skin-tile.uncommon .skin-line::after {
  background: linear-gradient(90deg, rgba(63, 175, 217, .34), #27d17a);
}

.skin-tile.arcane .skin-line::after {
  background: linear-gradient(90deg, rgba(211, 49, 49, .34), #ff6b6b);
}

.device-pointer {
  margin: 8px auto 0;
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 17px solid rgb(255, 197, 0);
  filter: drop-shadow(0 6px 12px rgba(255, 197, 0, .18));
}

.level-card {
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #232a2f 0%, #1c2125 100%);
  border: 1px solid rgba(255, 255, 255, .06);
}

.level-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.level-meta strong {
  font-size: 14px;
  font-weight: 800;
}

.level-meta span {
  font-size: 12px;
  text-align: right;
  color: var(--muted);
  font-weight: 700;
}

.level-progress {
  width: 100%;
  height: 7px;
  border-radius: 999px;
  overflow: hidden;
  background: #262c31;
}

.level-progress span {
  display: block;
  width: 63%;
  height: 100%;
  border-radius: 999px;
  background: var(--blue-soft);
}

.device-block-title {
  padding: 16px 0 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-bottom: 104px;
}

.device-bottom {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px;
  border-radius: 28px;
  background: linear-gradient(180deg, #232a2f 0%, #1f2529 58%, #1a1f22 100%);
  border: 1px solid rgba(255, 255, 255, .06);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.pay-button {
  min-height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .05);
  background: #202529;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  position: relative;
  overflow: hidden;
}

.pay-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.pay-button.blue::before {
  background: linear-gradient(180deg, rgba(27, 111, 255, .34), rgba(27, 111, 255, .08));
}

.pay-button.green::before {
  background: linear-gradient(180deg, rgba(39, 209, 122, .34), rgba(39, 209, 122, .08));
}

.pay-button.yellow::before {
  background: linear-gradient(180deg, rgba(238, 217, 41, .30), rgba(238, 217, 41, .08));
}

/* SECTIONS */

.section {
  padding: 88px 0;
}

.section-stats {
  padding-top: 0;
  padding-bottom: 20px;
}

.section-gameplay {
  position: relative;
}

.section-video {
  padding-top: 76px;
}

.section-cta {
  padding-top: 72px;
  padding-bottom: 96px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0;
  font-family: "Onest", "Inter", sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.04em;
}

.section-head p {
  margin: 0;
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.68;
}

/* STATS */

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

.stat-card {
  position: relative;
  min-height: 146px;
  padding: 18px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .018)),
    linear-gradient(180deg, #232a2f 0%, #1f2529 100%);
  border: 1px solid var(--stroke);
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: auto -20px -48px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  opacity: .2;
  pointer-events: none;
}

.stat-blue::after {
  background: radial-gradient(circle, rgba(27, 111, 255, .95), transparent 68%);
}

.stat-yellow::after {
  background: radial-gradient(circle, rgba(238, 217, 41, .95), transparent 68%);
}

.stat-green::after {
  background: radial-gradient(circle, rgba(39, 209, 122, .95), transparent 68%);
}

.stat-red::after {
  background: radial-gradient(circle, rgba(255, 107, 107, .95), transparent 68%);
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .04));
  color: #fff;
  font-size: 18px;
}

.stat-label {
  margin: 0 0 8px;
  color: #d7e0e5;
  font-size: 13px;
  font-weight: 700;
}

.stat-value {
  margin: 0;
  font-family: "Onest", "Inter", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 800;
}

.stat-text {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
}

/* FEATURES */

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

.feature-card {
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .018)),
    linear-gradient(180deg, #232a2f 0%, #1e2428 100%);
  border: 1px solid var(--stroke);
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .04));
  font-size: 21px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.02em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

/* GAMEPLAY */

.gameplay-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 16px;
}

.module-card {
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .018)),
    linear-gradient(180deg, #232a2f 0%, #1e2428 100%);
  border: 1px solid var(--stroke);
  min-height: 208px;
}

.module-wide {
  grid-column: span 1;
}

.module-drop img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .34));
}

.module-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.module-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.module-top h3 {
  margin: 0;
  font-family: "Onest", "Inter", sans-serif;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.03em;
}

.module-chip {
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, .05);
  background: rgba(255, 255, 255, .03);
}

.module-chip.yellow {
  color: var(--yellow);
}

.module-chip.green {
  color: var(--green-soft);
}

.module-chip.blue {
  color: var(--blue-soft);
}

.module-chip.red {
  color: var(--red);
}

.module-progress {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: #262c31;
  margin-bottom: 14px;
}

.module-progress span {
  display: block;
  height: 100%;
  border-radius: 999px;
}

.module-progress.yellow span {
  background: linear-gradient(90deg, var(--yellow-soft), var(--yellow));
  box-shadow: 0 0 16px rgba(238, 217, 41, .34);
}

.module-progress.green span {
  background: linear-gradient(90deg, var(--green-soft), var(--green));
  box-shadow: 0 0 16px rgba(39, 209, 122, .28);
}

.module-progress.blue span {
  background: linear-gradient(90deg, var(--blue-soft), var(--blue));
  box-shadow: 0 0 16px rgba(27, 111, 255, .28);
}

.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.drop-preview {
  height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* SCREENS */

.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.screen-shot {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: none;
  /* убрать фон */
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 600 / 1024;
}

.screen-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* заполняет полностью */
  object-position: center;
  display: block;
}

.screen-shot:hover img {
  transform: scale(1.03);
}

.screen-shot::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .62));
}

.screen-shot figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* VIDEO */

.video-banner {
  padding: 24px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(27, 111, 255, .13), rgba(238, 217, 41, .11)),
    linear-gradient(180deg, #232a2f 0%, #1f2529 100%);
  border: 1px solid rgba(255, 255, 255, .08);
}

.video-copy h2 {
  margin: 14px 0 12px;
  font-family: "Onest", "Inter", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -.04em;
}

.video-copy h2 span {
  color: var(--green-soft);
}

.video-copy p {
  margin: 0 0 18px;
  color: #d0dae0;
  font-size: 15px;
  line-height: 1.68;
}

.video-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .07);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .28));
}

.video-play {
  width: 98px;
  height: 98px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 34px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
  backdrop-filter: blur(6px);
}

/* FAQ */

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

.faq-card {
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .015)),
    linear-gradient(180deg, #232a2f 0%, #1d2226 100%);
  border: 1px solid var(--stroke);
}

.faq-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -.02em;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* CTA */

.cta-card {
  padding: 26px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  background:
    linear-gradient(90deg, rgba(27, 111, 255, .15), rgba(238, 217, 41, .12)),
    linear-gradient(180deg, #232a2f, #1f2529);
  border: 1px solid rgba(255, 255, 255, .08);
}

.cta-copy {
  max-width: 760px;
}

.cta-copy h2 {
  margin: 14px 0 12px;
  font-family: "Onest", "Inter", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -.04em;
}

.cta-copy p {
  margin: 0;
  color: #d0dae0;
  font-size: 15px;
  line-height: 1.68;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-badge {
  min-width: 220px;
  min-height: 64px;
  padding: 10px 18px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02)),
    linear-gradient(180deg, #242b30 0%, #202529 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: .2s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
}

.store-badge img {
  max-height: 40px;
  width: auto;
}

/* FOOTER */

.site-footer {
  padding: 42px 0 56px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: linear-gradient(180deg, rgba(255, 255, 255, .01), rgba(255, 255, 255, 0));
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  max-width: 820px;
}

.footer-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 14px;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  transition: .2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .025));
  border: 1px solid rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 18px;
  transition: .2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
}

/* BACK TO TOP */

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .08);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .2s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 404 PAGE */

.error-page {
  min-height: calc(100vh - 79px);
  display: flex;
  align-items: center;
  padding: 56px 0 72px;
}

.error-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 30px;
  align-items: center;
}

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

.error-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .02));
  color: #d7e0e5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  margin-bottom: 18px;
}

.error-code {
  margin: 0 0 12px;
  font-family: "Onest", "Inter", sans-serif;
  font-size: clamp(56px, 9vw, 112px);
  line-height: .9;
  font-weight: 800;
  letter-spacing: -.06em;
}

.error-code span {
  color: var(--yellow);
}

.error-title {
  margin: 0 0 14px;
  font-family: "Onest", "Inter", sans-serif;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.04em;
}

.error-text {
  margin: 0 0 12px;
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  min-height: 58px;
  padding: 0 22px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  transition: .2s ease;
  white-space: nowrap;
}

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

.btn-primary {
  color: #111518;
  background: linear-gradient(180deg, #f6e85a 0%, #eed929 100%);
  box-shadow: 0 14px 28px rgba(238, 217, 41, .18);
}

.btn-dark {
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .03));
  border-color: var(--stroke);
}

.error-card {
  position: relative;
  padding: 22px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .016)),
    linear-gradient(180deg, #232a2f 0%, #1f2529 100%);
  border: 1px solid var(--stroke);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.error-card::before {
  content: "";
  position: absolute;
  inset: -40px auto auto -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 111, 255, .18), transparent 68%);
  pointer-events: none;
}

.error-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -60px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 217, 41, .14), transparent 70%);
  pointer-events: none;
}

.error-image-wrap {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  background: linear-gradient(180deg, #202529 0%, #1a1f23 100%);
  padding: 18px;
}

.error-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, .28));
}

.error-mini {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.error-mini-card {
  padding: 14px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .016)),
    linear-gradient(180deg, #232a2f 0%, #1f2529 100%);
  border: 1px solid rgba(255, 255, 255, .06);
}

.error-mini-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}

.error-mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-device {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }

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

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

  .video-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .error-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .error-card {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 920px) {
  .header-nav {
    display: none;
  }

  .header-burger {
    display: inline-flex;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .header-burger {
    position: relative;
    z-index: 1002;
  }

  .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1001;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, .06);
    background: rgba(18, 22, 25, .98);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
  }

  .site-header.menu-open .mobile-menu {
    display: block;
  }

  .mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 0 16px;
  }

  .mobile-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px 0;
    margin-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, .06);
  }

  .mobile-lang .lang-item {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
  }

  .hero {
    padding: 26px 0 40px;
  }

  .hero-copy {
    gap: 14px;
  }

  .hero-title {
    font-size: clamp(34px, 8vw, 48px);
    line-height: .98;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.62;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .store-button {
    width: 100%;
  }

  .hero-pills {
    gap: 8px;
  }

  .hero-pills span {
    width: 100%;
    justify-content: flex-start;
  }

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

  .device-frame {
    min-height: auto;
    padding: 16px;
    border-radius: 28px;
  }

  .roller-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .items-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: 96px;
  }

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

  .screen-shot {
    max-width: 100%;
  }

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

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

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .brand-copy {
    display: none;
  }

  .brand img {
    width: 96px;
    height: 96px;
  }

  @media (max-width: 640px) {
    .header-inner {
      min-height: 64px;
    }

    .brand img {
      width: 96px;
      height: 72px;
      object-fit: contain;
    }
  }

  .section-stats {
    padding-top: 0;
    padding-bottom: 10px;
  }

  .hero {
    padding: 22px 0 34px;
  }

  .hero-layout {
    gap: 18px;
  }

  .hero-badge,
  .section-kicker {
    font-size: 12px;
    padding: 8px 12px;
    min-height: 36px;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.02;
    letter-spacing: -.045em;
  }

  .hero-text {
    font-size: 14px;
    line-height: 1.58;
  }

  .section-head h2,
  .video-copy h2,
  .cta-copy h2 {
    font-size: 30px;
  }

  .stats-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .mini-stat {
    padding: 14px;
    border-radius: 18px;
  }

  .mini-stat-value {
    font-size: 20px;
  }

  .device-frame {
    padding: 14px;
    border-radius: 24px;
  }

  .device-topbar {
    align-items: flex-start;
    gap: 10px;
  }

  .device-title strong {
    font-size: 14px;
  }

  .device-title small {
    font-size: 11px;
  }

  .device-energy {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .roller-shell {
    padding: 12px;
    border-radius: 18px;
  }

  .roller-row {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .roller-row::-webkit-scrollbar {
    display: none;
  }

  .roller-row .skin-tile {
    flex: 0 0 112px;
    min-height: 160px;
    padding: 10px;
    border-radius: 16px;
  }

  .roller-row .skin-tile img {
    height: 74px;
    margin: 4px auto 8px;
  }

  .roller-row .skin-tile h3 {
    font-size: 12px;
  }

  .roller-row .skin-tile p {
    font-size: 10px;
  }

  .level-card {
    padding: 12px;
    border-radius: 16px;
  }

  .level-meta {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 8px;
  }

  .level-meta span {
    text-align: left;
    font-size: 11px;
  }

  .device-block-title {
    padding: 14px 0 10px;
    font-size: 13px;
  }

  .items-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-bottom: 82px;
  }

  .items-grid .skin-tile {
    min-height: 150px;
    padding: 10px;
    border-radius: 14px;
  }

  .items-grid .skin-tile img {
    height: 68px;
    margin: 4px auto 8px;
  }

  .items-grid .skin-tile h3 {
    font-size: 11px;
  }

  .items-grid .skin-tile p {
    font-size: 10px;
  }

  .device-bottom {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 10px;
    border-radius: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .device-bottom .pay-button {
    min-height: 46px;
    border-radius: 14px;
    font-size: 12px;
    padding: 0 6px;
  }

  .screens-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .screen-shot {
    max-width: 340px;
    width: 100%;
  }

  .screen-shot figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 11px;
    line-height: 1.28;
  }

  .cta-actions,
  .hero-actions {
    width: 100%;
  }

  .store-button,
  .store-badge {
    width: 100%;
    min-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
  }

  .error-page {
    padding: 28px 0 52px;
    min-height: auto;
  }

  .error-code {
    font-size: 56px;
  }

  .error-title {
    font-size: 30px;
  }

  .error-text {
    font-size: 15px;
  }

  .error-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .error-card {
    padding: 16px;
    border-radius: 24px;
  }

  .error-image-wrap {
    padding: 12px;
    border-radius: 18px;
  }

  .error-mini {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 30px;
  }

  .device-frame {
    padding: 12px;
  }

  .roller-row .skin-tile {
    flex: 0 0 104px;
    min-height: 152px;
  }

  .items-grid {
    gap: 8px;
  }

  .device-bottom {
    grid-template-columns: 1fr;
  }

  .device-bottom .pay-button {
    min-height: 44px;
    font-size: 12px;
  }
}

/* LEGAL PAGES */

.legal-section {
  padding: 34px 0 88px;
}

.legal-layout {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.legal-back {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  border: 1px solid var(--stroke);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: .2s ease;
}

.legal-back:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .04));
}

.legal-brand-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.legal-card {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .016)),
    linear-gradient(180deg, #232a2f 0%, #1f2529 100%);
  border: 1px solid var(--stroke);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.legal-card-head {
  padding: 26px 28px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background:
    radial-gradient(circle at right top, rgba(27, 111, 255, .12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .015));
}

.legal-card-head h1 {
  margin: 16px 0 12px;
  font-family: "Onest", "Inter", sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.04em;
}

.legal-card-lead {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.legal-card-body {
  padding: 28px;
}

.legal-card-body h2 {
  margin: 30px 0 14px;
  font-family: "Onest", "Inter", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.03em;
}

.legal-card-body h3 {
  margin: 24px 0 12px;
  font-family: "Onest", "Inter", sans-serif;
  font-size: 21px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.02em;
}

.legal-card-body p {
  margin: 0 0 16px;
  color: #d7e0e5;
  font-size: 15px;
  line-height: 1.78;
}

.legal-card-body ul,
.legal-card-body ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-card-body li {
  margin-bottom: 10px;
  color: #d7e0e5;
  font-size: 15px;
  line-height: 1.75;
}

.legal-card-body strong {
  color: #fff;
}

.legal-card-body a {
  color: var(--blue-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-card-body a:hover {
  color: #fff;
}

.legal-note {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 920px) {
  .legal-section {
    padding: 24px 0 64px;
  }

  .legal-card-head,
  .legal-card-body {
    padding: 22px 18px;
  }
}

@media (max-width: 640px) {
  .legal-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .legal-brand-note {
    text-align: left;
  }

  .legal-card-head h1 {
    font-size: 32px;
  }

  .legal-card-lead,
  .legal-card-body p,
  .legal-card-body li {
    font-size: 14px;
  }

  .legal-card-body h2 {
    font-size: 26px;
  }

  .legal-card-body h3 {
    font-size: 18px;
  }
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.lang-item {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  opacity: 0.6;
}

.lang-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* активный */
.lang-item.active {
  opacity: 1;
  transform: scale(1.03);
  box-shadow: 0 0 0 1.5px #eed929;
}

/* hover */
.lang-item:hover {
  opacity: 0.85;
}