@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

:root {
  --bg: #050506;
  --ink: #f7f4f5;
  --red: #ff2636;
  --red-deep-1: #cf101c;
  --red-deep-2: #ff3341;
  --red-soft: #ff8b92;
  --badge-pink: #ffc4c8;
  --nav-ink: #d6cfd1;
  --text-1: #cac1c4;
  --text-2: #a9a1a4;
  --text-3: #b9b0b3;
  --text-4: #aaa1a4;
  --text-5: #b7aeb1;
  --text-6: #c6bdc0;
  --copyright: #766f72;
  --symbol-font: 'Inter', 'Apple Color Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg);
  background-image:
    radial-gradient(880px 900px at 144px 250px, rgba(255, 38, 54, 0.16), rgba(255, 38, 54, 0) 58%),
    radial-gradient(900px 940px at calc(100% - 116px) 660px, rgba(255, 38, 54, 0.11), rgba(255, 38, 54, 0) 60%),
    linear-gradient(180deg, #020203 0%, #080607 52%, #020203 100%);
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

.section {
  display: flex;
  justify-content: center;
  padding-left: 130px;
  padding-right: 130px;
}

.container {
  width: 100%;
  max-width: 1180px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 999px;
  background: rgba(255, 38, 54, 0.08);
  border: 1px solid rgba(255, 38, 54, 0.24);
}

.tag__dot {
  width: 9px;
  height: 9px;
  border-radius: 4.5px;
  background: var(--red);
  box-shadow: 0 0 18px 0 var(--red);
}

.tag__text {
  font-size: 12.2px;
  font-weight: 700;
  letter-spacing: 1.946px;
  text-transform: uppercase;
  color: var(--badge-pink);
  white-space: nowrap;
}

.btn-primary,
.btn-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 51px;
  padding: 0 44px 0 23px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.48px;
  white-space: nowrap;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 21px) 0, 100% 50%, calc(100% - 21px) 100%, 0 100%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-deep-1) 0%, var(--red-deep-2) 100%);
  color: #ffffff;
}

.btn-ghost {
  background: rgba(255, 38, 54, 0.24);
  color: #f6d9dc;
}

.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: rgba(0, 0, 0, 0.34);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
  z-index: 0;
}

.btn-primary span,
.btn-ghost span {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand__mark {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 8px rgba(255, 38, 54, 0.42));
}

.brand__name {
  font-size: 18.4px;
  font-weight: 700;
  letter-spacing: 0.368px;
  color: var(--ink);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  padding: 0 130px 1px;
  background: rgba(3, 3, 4, 0.74);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav__link {
  font-size: 15px;
  font-weight: 400;
  color: var(--nav-ink);
  padding: 1px 0 2px;
}

.nav__link:hover {
  color: var(--ink);
}

.nav__play {
  display: inline-flex;
  align-items: center;
  padding: 14px 19px 15px;
  border-radius: 999px;
  background: rgba(255, 38, 54, 0.08);
  border: 1px solid rgba(255, 38, 54, 0.24);
  color: #ffffff;
  font-size: 15px;
}

.nav__play:hover {
  background: rgba(255, 38, 54, 0.16);
}

.hero {
  padding-top: 26px;
  padding-bottom: 64px;
}

.hero__card {
  position: relative;
  width: 100%;
  min-height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 38px;
  background: #050506;
  box-shadow: 0 40px 110px 0 rgba(0, 0, 0, 0.55), inset 0 0 0 2px rgba(255, 38, 54, 0.08);
  overflow: hidden;
}

.hero__grid {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  padding: 1px;
}

.hero__left {
  flex: 1 0 0;
  min-width: 0;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22.9px;
  padding: 48px;
}

.hero__title {
  font-size: 132.5px;
  font-weight: 700;
  line-height: 108.63px;
  letter-spacing: -9.274px;
  text-transform: uppercase;
  padding: 4.04px 0 0.56px;
}

.hero__title span {
  display: block;
}

.hero__title .l-ghost {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(247, 244, 245, 0.1);
}

.hero__title .l-white {
  color: var(--ink);
}

.hero__title .l-red {
  color: var(--red);
}

.hero__title .l-join {
  display: none;
}

.hero__lead {
  max-width: 560px;
  font-size: 17.3px;
  line-height: 29.72px;
  color: var(--text-1);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 11.1px;
}

.hero__right {
  width: 462px;
  display: flex;
  justify-content: flex-end;
  padding: 0 42px 44px 0;
}

.info-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 11.39px;
  padding: 25px 23px 23px;
  background: rgba(4, 4, 5, 0.64);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 38, 54, 0.24);
  box-shadow: 0 22px 60px 0 rgba(0, 0, 0, 0.42);
}

.info-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.info-card__text {
  font-size: 16px;
  line-height: 26.4px;
  color: var(--text-2);
}

.hero__vlabel {
  position: absolute;
  left: 26px;
  bottom: 37.35px;
  font-size: 11.8px;
  letter-spacing: 5.92px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.adventure {
  padding-top: 50px;
  padding-bottom: 50px;
}

.adventure__inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

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

.h2-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 66.24px;
  letter-spacing: -4.32px;
  text-transform: uppercase;
}

.h2-title span {
  display: block;
}

.h2-title .l-red {
  color: var(--red);
}

.adventure__sub {
  max-width: 410px;
  padding-right: 23.16px;
  font-size: 16px;
  line-height: 26.4px;
  color: var(--text-2);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-bottom: 30px;
}

.card {
  position: relative;
  width: calc((100% - 36px) / 3);
  min-height: 232px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(23, 20, 22, 0.92) 0%, rgba(8, 8, 9, 0.92) 100%);
  box-shadow: 0 22px 54px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.card__glow {
  position: absolute;
  inset: 0;
  opacity: 0.75;
  pointer-events: none;
  background:
    radial-gradient(133px 133px at 76px 23px, rgba(255, 38, 54, 0.22), rgba(255, 38, 54, 0) 100%),
    linear-gradient(135deg, rgba(255, 38, 54, 0.11) 0%, rgba(255, 38, 54, 0) 45%);
}

.card__deco {
  position: absolute;
  right: -74.67px;
  bottom: -84.33px;
  width: 152px;
  height: 152px;
  border: 1px solid rgba(255, 38, 54, 0.19);
  transform: rotate(24deg);
  pointer-events: none;
}

.card__top {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  width: 100%;
}

.card__logo {
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
  border-radius: 23px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 34px 0 rgba(0, 0, 0, 0.35);
  overflow: hidden;
  padding: 1px;
  align-self: center;
}

.card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: center;
  min-width: 0;
}

.card__kicker {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.498px;
  text-transform: uppercase;
  color: var(--red-soft);
}

.card__title {
  font-size: 21.6px;
  font-weight: 700;
  line-height: 22.68px;
  color: var(--ink);
}

.card__desc {
  font-size: 14.9px;
  line-height: 23px;
  color: var(--text-3);
}

.card__play {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 43px;
  margin-top: 20px;
  background: rgba(255, 38, 54, 0.04);
  border: 1px solid rgba(255, 38, 54, 0.78);
  font-size: 13.1px;
  font-weight: 700;
  letter-spacing: 0.787px;
  color: var(--ink);
}

.card__play:hover {
  background: rgba(255, 38, 54, 0.14);
}

a.card {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

a.card:hover {
  border-color: rgba(255, 38, 54, 0.45);
  box-shadow: 0 26px 60px 0 rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 38, 54, 0.18);
  transform: translateY(-2px);
}

a.card:hover .card__play {
  background: rgba(255, 38, 54, 0.14);
}

.adventure--catalog {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (max-width: 600px) {
  .adventure--catalog {
    padding-top: 32px;
    padding-bottom: 28px;
  }
}

.rail {
  display: flex;
  border: 1px solid rgba(255, 38, 54, 0.24);
  background: linear-gradient(90deg, rgba(255, 38, 54, 0.11) 0%, rgba(9, 8, 9, 0.82) 100%);
  box-shadow: 0 30px 80px 0 rgba(0, 0, 0, 0.32);
}

.rail__item {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6.9px;
  padding: 28px 29px 50px 28px;
  border-right: 1px solid rgba(255, 38, 54, 0.18);
}

.rail__item:last-child {
  border-right: 0;
}

.rail__icon {
  font-family: var(--symbol-font);
  font-size: 32px;
  color: var(--red);
  line-height: 1;
  text-shadow: 0 0 22px rgba(255, 38, 54, 0.5);
  padding: 4px 0 3px;
}

.rail__title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 6px;
}

.rail__text {
  font-size: 14.7px;
  line-height: 22.82px;
  color: var(--text-5);
}

.designed {
  padding-top: 50px;
  padding-bottom: 50px;
}

.designed__inner {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.designed__left {
  position: relative;
  flex: 1 0 0;
  min-width: 0;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 35px 35px 51px;
  background: rgba(14, 13, 14, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 80px 0 rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.designed__title {
  width: 100%;
  font-size: 72px;
  font-weight: 700;
  line-height: 66.24px;
  letter-spacing: -4.32px;
  text-transform: uppercase;
  word-break: break-word;
  margin-top: 28px;
}

.designed__title span {
  display: block;
}

.designed__title .l-red {
  color: var(--red);
}

.designed__title .l-inline {
  display: inline;
}

.designed__p {
  max-width: 560px;
  font-size: 16px;
  line-height: 28px;
  color: var(--text-2);
}

.designed__p--1 {
  margin-top: 22px;
}

.designed__p--2 {
  margin-top: 16px;
}

.designed__watermark {
  position: absolute;
  top: 180px;
  left: 392px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: left center;
  font-size: 96px;
  font-weight: 700;
  letter-spacing: -7.68px;
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
}

.designed__right {
  position: relative;
  flex: 1 0 0;
  min-width: 0;
  min-height: 420px;
  display: flex;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 80px 0 rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.designed__right::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 12%, rgba(255, 38, 54, 0.18), rgba(255, 38, 54, 0) 60%),
    repeating-linear-gradient(90deg, rgba(255, 38, 54, 0.07) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(0deg, rgba(255, 38, 54, 0.05) 0 1px, transparent 1px 46px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.15) 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.15) 70%, transparent 100%);
}

.theme-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 17.8px 21px 19.39px;
  background: rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 38, 54, 0.24);
}

.theme-card p {
  font-size: 16px;
  line-height: 25.6px;
  color: #d6cfd1;
  font-weight: 400;
}

.theme-card strong {
  font-weight: 700;
}

.cta {
  padding-top: 50px;
  padding-bottom: 70px;
}

.cta__card {
  width: 100%;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 41.4px 42px 42px;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 36px 96px 0 rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.cta__title {
  font-size: 72px;
  font-weight: 700;
  line-height: 64.8px;
  letter-spacing: -4.32px;
  text-transform: uppercase;
}

.cta__title span {
  display: block;
}

.cta__title .l-red {
  color: var(--red);
}

.cta__title .l-inline {
  display: inline;
}

.cta__text {
  font-size: 16px;
  line-height: 26.4px;
  color: var(--text-6);
}

.site-footer {
  width: 100%;
  padding: 47px 130px 28px;
  background: #020202;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 0;
}

.foot-col {
  flex: 1 1 0;
  min-width: 200px;
}

.foot-col--brand {
  display: flex;
  flex-direction: column;
  gap: 15.4px;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.foot-brand__name {
  font-size: 21.6px;
  font-weight: 700;
  color: var(--ink);
}

.foot-tagline {
  font-size: 16px;
  line-height: 28.8px;
  color: var(--text-4);
}

.foot-social {
  display: flex;
  gap: 10px;
  padding-top: 4.6px;
}

.foot-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 19px;
  background: #151313;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: var(--symbol-font);
  font-size: 16px;
}

.foot-social a:hover {
  border-color: rgba(255, 38, 54, 0.4);
}

.foot-col__title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 13px;
}

.foot-list {
  list-style: none;
}

.foot-list a {
  display: block;
  font-size: 16px;
  line-height: 28.8px;
  color: var(--text-4);
}

.foot-list a:hover {
  color: var(--ink);
}

.foot-contact {
  font-size: 16px;
  line-height: 28.8px;
  color: var(--text-4);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 24px;
  padding-bottom: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  font-size: 16px;
  color: var(--copyright);
  text-align: center;
}

.policy {
  padding-top: 32px;
  padding-bottom: 64px;
}

.policy__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  word-break: break-word;
}

.policy__title {
  font-size: 72px;
  font-weight: 700;
  line-height: 66.24px;
  letter-spacing: -4.32px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

.policy__body {
  width: 100%;
  font-size: 17.3px;
  line-height: 29.72px;
  color: var(--text-1);
}

.policy__body p {
  margin: 0;
}

.policy__body ul {
  list-style: disc;
  padding-left: 26px;
  margin: 0;
}

.policy__body li {
  margin: 0;
}

.policy__body a {
  color: inherit;
  text-decoration: underline;
}

.policy__body a:hover {
  color: var(--ink);
}

.game-hero {
  padding-top: 26px;
  padding-bottom: 64px;
}

.game-hero__card {
  position: relative;
  width: 100%;
  min-height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 38px;
  background: #050506;
  box-shadow: 0 40px 110px 0 rgba(0, 0, 0, 0.55), inset 0 0 0 2px rgba(255, 38, 54, 0.08);
  overflow: hidden;
}

.game-hero__grid {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  padding: 1px;
}

.game-hero__left {
  flex: 1 0 0;
  min-width: 0;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22.9px;
  padding: 48px;
}

.game-hero__title {
  width: 100%;
  font-size: 132.5px;
  font-weight: 700;
  line-height: 108.63px;
  letter-spacing: -9.274px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(247, 244, 245, 0.5);
  word-break: break-word;
  padding: 4.04px 0 0.56px;
}

.game-hero__desc {
  max-width: 560px;
  font-size: 17.3px;
  line-height: 29.72px;
  color: var(--text-1);
}

.game-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 11.1px;
}

.game-hero__right {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 48px 48px 0;
}

.game-hero__image {
  width: 100%;
  max-width: 577px;
  height: auto;
  border-radius: 18px;
  display: block;
}

.game-hero__vlabel {
  position: absolute;
  left: 26px;
  bottom: 37.35px;
  font-size: 11.8px;
  letter-spacing: 5.92px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@media (max-width: 1200px) {
  .section,
  .site-header,
  .site-footer {
    padding-left: 64px;
    padding-right: 64px;
  }
  .hero__title {
    font-size: 108px;
    line-height: 92px;
    letter-spacing: -6px;
  }
  .game-hero__title {
    font-size: 108px;
    line-height: 92px;
    letter-spacing: -6px;
  }
}

@media (max-width: 992px) {
  .hero__grid {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__left {
    max-width: 100%;
  }
  .hero__right {
    width: 100%;
    justify-content: stretch;
    padding: 0 48px 48px;
  }
  .info-card {
    max-width: 460px;
  }
  .game-hero__grid {
    flex-direction: column;
    align-items: stretch;
  }
  .game-hero__left {
    max-width: 100%;
  }
  .game-hero__right {
    width: 100%;
    justify-content: stretch;
    padding: 0 48px 48px;
  }
  .game-hero__image {
    max-width: 100%;
  }
  .card {
    width: calc((100% - 18px) / 2);
  }
  .designed__inner {
    flex-direction: column;
    gap: 18px;
  }
  .designed__left,
  .designed__right {
    flex: none;
  }
  .designed__left {
    min-height: auto;
    overflow: visible;
  }
  .designed__watermark {
    display: none;
  }
  .rail {
    flex-wrap: wrap;
  }
  .rail__item {
    flex: 1 1 50%;
    border-bottom: 1px solid rgba(255, 38, 54, 0.18);
  }
  .rail__item:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 768px) {
  .section,
  .site-header,
  .site-footer {
    padding-left: 32px;
    padding-right: 32px;
  }
  .hero__title {
    font-size: 84px;
    line-height: 72px;
    letter-spacing: -4.8px;
  }
  .game-hero__title {
    font-size: 84px;
    line-height: 72px;
    letter-spacing: -4.8px;
  }
  .h2-title {
    font-size: 56px;
    line-height: 52px;
    letter-spacing: -3px;
  }
  .policy__title {
    font-size: 56px;
    line-height: 52px;
    letter-spacing: -3px;
  }
}

@media (max-width: 600px) {
  .section,
  .site-header,
  .site-footer {
    padding-left: 12px;
    padding-right: 12px;
  }
  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0 14px;
  }
  .hero {
    padding-bottom: 40px;
  }
  .hero__left {
    padding: 28px 28px 0;
    gap: 18px;
  }
  .hero__title {
    font-size: 64px;
    line-height: 52.48px;
    letter-spacing: -4.48px;
    padding-top: 4px;
  }
  .game-hero {
    padding-bottom: 40px;
  }
  .game-hero__left {
    padding: 28px 28px 0;
    gap: 18px;
  }
  .game-hero__title {
    font-size: 64px;
    line-height: 52.48px;
    letter-spacing: -4.48px;
    padding-top: 4px;
  }
  .game-hero__desc {
    font-size: 16px;
    line-height: 27px;
  }
  .game-hero__right {
    padding: 24px 28px 28px;
  }
  .hero__title .l-split {
    display: none;
  }
  .hero__title .l-join {
    display: block;
  }
  .hero__lead {
    font-size: 16px;
    line-height: 27px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__right {
    padding: 24px 28px 28px;
  }
  .info-card {
    max-width: 100%;
  }
  .rail__item {
    flex: 1 1 100%;
    border-right: 0;
    padding-bottom: 28px;
  }
  .rail__item:last-child {
    border-bottom: 0;
  }
  .designed__right {
    min-height: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .designed__right::before {
    display: none;
  }
  .theme-card {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
  }
  .adventure__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .h2-title {
    font-size: 38.4px;
    line-height: 35.33px;
    letter-spacing: -2.304px;
  }
  .policy__title {
    font-size: 38.4px;
    line-height: 35.33px;
    letter-spacing: -2.304px;
  }
  .policy__body {
    font-size: 16px;
    line-height: 27px;
  }
  .adventure__sub {
    max-width: 100%;
    padding-right: 0;
  }
  .card {
    width: 100%;
  }
  .designed__title {
    font-size: 72px;
    line-height: 66.24px;
  }
  .designed__p {
    max-width: 100%;
  }
  .cta__card {
    padding: 32px 24px;
    min-height: 0;
  }
  .cta__title {
    font-size: 38.4px;
    line-height: 34.56px;
    letter-spacing: -2.304px;
  }
  .footer-top {
    flex-direction: column;
    gap: 28px;
  }
  .foot-col {
    flex: 1 1 100%;
    min-width: 0;
  }
  .footer-bottom p {
    font-size: 14px;
  }
}

/* ============================================================
   Cookie consent banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 200;
  width: min(1040px, calc(100% - 36px));
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 26px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), visibility 0.45s;
}

.cookie-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.cookie-banner__inner {
  position: relative;
  padding: 30px 36px 32px;
  border-radius: 22px;
  background:
    radial-gradient(620px 260px at 16% -20%, rgba(255, 38, 54, 0.32), rgba(255, 38, 54, 0) 70%),
    linear-gradient(180deg, #120a0b 0%, #060405 62%, #040304 100%);
  border: 1px solid rgba(255, 38, 54, 0.22);
  box-shadow: 0 40px 120px 0 rgba(0, 0, 0, 0.62), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.cookie-banner__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(420px 180px at 12% 0%, rgba(255, 38, 54, 0.18), rgba(255, 38, 54, 0) 65%);
}

.cookie-banner__title {
  position: relative;
  z-index: 1;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -1.4px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}

.cookie-banner__text {
  position: relative;
  z-index: 1;
  max-width: 940px;
  font-size: 16px;
  line-height: 26px;
  color: var(--text-2);
  margin-bottom: 22px;
}

.cookie-banner__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 51px;
  padding: 0 44px 0 23px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.48px;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 21px) 0, 100% 50%, calc(100% - 21px) 100%, 0 100%);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.cookie-btn--accept {
  background: linear-gradient(135deg, var(--red-deep-1) 0%, var(--red-deep-2) 100%);
  color: #ffffff;
}

.cookie-btn--reject {
  background: rgba(255, 38, 54, 0.45);
  color: #f6d9dc;
}

.cookie-btn--reject::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: #0a0708;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
  z-index: 0;
}

.cookie-btn span {
  position: relative;
  z-index: 1;
}

.cookie-btn--accept:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.cookie-btn--reject:hover {
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 12px;
    width: calc(100% - 24px);
  }
  .cookie-banner__inner {
    padding: 24px 22px 24px;
    border-radius: 18px;
  }
  .cookie-banner__title {
    font-size: 30px;
  }
  .cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-btn {
    width: 100%;
  }
}

/* ============================================================
   Scroll reveal animations (progressive enhancement via .js)
   ============================================================ */
.js .hero__left,
.js .hero__right,
.js .adventure__head,
.js .card,
.js .rail__item,
.js .designed__left,
.js .designed__right,
.js .cta__card,
.js .game-hero__left,
.js .game-hero__right,
.js .policy__inner,
.js .info-card {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}

.js .is-revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================================
   Hover effects & micro-interactions
   ============================================================ */
.btn-primary,
.btn-ghost {
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary span,
.btn-ghost span {
  transition: transform 0.18s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 14px 30px rgba(255, 38, 54, 0.32);
}

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

.btn-primary:hover span {
  transform: translateX(2px);
}

.brand__mark {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand:hover .brand__mark,
.foot-brand:hover .brand__mark {
  transform: rotate(-6deg) scale(1.06);
  filter: drop-shadow(0 0 12px rgba(255, 38, 54, 0.6));
}

.nav__link {
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.22s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.nav__play {
  transition: background 0.2s ease, transform 0.2s ease;
}

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

.card__logo img {
  transition: transform 0.35s ease;
}

.card:hover .card__logo img {
  transform: scale(1.06);
}

.rail__item {
  transition: background 0.25s ease, transform 0.25s ease;
}

.rail__item:hover {
  background: rgba(255, 38, 54, 0.08);
  transform: translateY(-3px);
}

.foot-social a {
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.foot-social a:hover {
  transform: translateY(-2px);
  background: #1c1818;
}

.foot-list a {
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.foot-list a:hover {
  padding-left: 5px;
}

.game-hero__image {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.game-hero__image:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 60px rgba(255, 38, 54, 0.2);
}

.theme-card {
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.theme-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 38, 54, 0.4);
}

.policy__body a {
  transition: color 0.2s ease;
}

/* Pulsing accent dot in the section tags */
.tag__dot {
  animation: kx-pulse 2.4s ease-in-out infinite;
}

@keyframes kx-pulse {
  0%, 100% {
    box-shadow: 0 0 18px 0 var(--red);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 28px 3px var(--red);
    opacity: 0.65;
  }
}

/* ============================================================
   Reduced motion — disable animations
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .js .hero__left,
  .js .hero__right,
  .js .adventure__head,
  .js .card,
  .js .rail__item,
  .js .designed__left,
  .js .designed__right,
  .js .cta__card,
  .js .game-hero__left,
  .js .game-hero__right,
  .js .policy__inner,
  .js .info-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .tag__dot {
    animation: none;
  }
  .cookie-banner {
    transition: opacity 0.2s ease, visibility 0.2s ease;
    transform: translate(-50%, 0);
  }
}

.inline-link{color:#ff6e6e;text-decoration:underline;text-underline-offset:3px;font-weight:500}
.inline-link:hover{opacity:.85}
.editorial-meta{display:block;color:rgba(255,255,255,.78);font-size:13px;line-height:1.6;margin:6px 0 14px;letter-spacing:.02em}
.source-line{font-size:14px;line-height:1.7;color:rgba(255,255,255,.85);margin:14px 0 0}
.byline{margin-bottom:8px;color:rgba(255,255,255,.78);font-size:13px;line-height:1.6}
