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

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
  font-family: "Geist", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;

  color: #000;
}

input,
button,
textarea,
select {
  font: inherit;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}


ul {
  list-style: none;
}

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


.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  backdrop-filter: blur(16px);
  background: linear-gradient(
      to bottom,
      rgba(10, 14, 26, 0.92),
      rgba(10, 14, 26, 0.78)
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header__logo-image {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 999px;
  box-shadow: 0 0 0 2px rgba(205, 166, 103, 0.35),
    0 10px 25px rgba(0, 0, 0, 0.45);
  background: radial-gradient(circle at 30% 20%, #f9f1dc 0, #cda667 40%, #241612 100%);
}

.site-header__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 8, 18, 0.9);
  padding: 0;
  cursor: pointer;
}

.site-header__burger-line {
  display: block;
  height: 2px;
  width: 18px;
  border-radius: 999px;
  background: linear-gradient(to right, #f5f5f5, #cda667);
  margin: 0 auto;
}

.site-header__nav {
  position: absolute;
  inset-inline: 0;
  top: 100%;
  transform: translateY(-4px);
  padding: 0.75rem 1rem 1rem;
  background: radial-gradient(circle at top, rgba(205, 166, 103, 0.16) 0, transparent 60%),
    rgba(6, 9, 20, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: none;
  flex-direction: row;
  gap: 0.75rem;
}

.site-header__nav--open {
  display: flex;
}

.site-header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-header__nav-item {
  display: flex;
  align-items: center;
}

.site-header__nav-item--divider {
  height: 1px;
  width: 100%;
  opacity: 0.26;
  background: radial-gradient(circle, #cda667 0, transparent 70%);
}

.site-header__nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: rgba(240, 240, 240, 0.88);
  transition: color 0.16s ease, transform 0.16s ease;
}

.site-header__nav-link:hover,
.site-header__nav-link:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
}

.site-header__cta {
  margin-top: 0.5rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at 0 0, #ffffff 0, #f4e4c2 26%, #cda667 60%, #7b4b2b 100%);
  color: #1a140c;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.55);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  white-space: nowrap;
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.65);
}

@media (min-width: 768px) {
  .site-header__inner {
    padding-inline: 1.5rem;
  }

  .site-header__burger {
    display: none;
  }

  .site-header__nav {
    position: static;
    transform: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: transparent;
    border-bottom: none;
    gap: 1.25rem;
  }

  .site-header__nav-list {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .site-header__nav-item--divider {
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, #cda667, transparent);
  }

  .site-header__nav-link {
    font-size: 0.85rem;
    padding-inline: 0.35rem;
  }

  .site-header__cta {
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .site-header__logo-image {
    width: 44px;
    height: 44px;
  }

  .site-header__nav-link {
    font-size: 0.9rem;
  }

  .site-header__inner {
    padding-inline: 2rem;
  }
}
.hero-main {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 1rem 3.5rem;
  background: radial-gradient(circle at top, #151b30 0, #070b14 60%, #05060a 100%);
  color: #f7f7fb;
}

.hero-main__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-main__glow {
  position: absolute;
  filter: blur(40px);
  opacity: 0.78;
}

.hero-main__glow--left {
  width: 40%;
  height: 50%;
  left: -10%;
  top: -10%;
  background: radial-gradient(circle, #f0d9a5 0, rgba(240, 217, 165, 0) 70%);
}

.hero-main__glow--right {
  width: 45%;
  height: 55%;
  right: -15%;
  bottom: -10%;
  background: radial-gradient(circle, #3a6cff 0, rgba(58, 108, 255, 0) 70%);
}

.hero-main__texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.12) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(0, 0, 0, 0.6) 0, transparent 60%);
  opacity: 0.3;
  mix-blend-mode: soft-light;
}

.hero-main__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.hero-main__content {
  max-width: 640px;
}

.hero-main__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0.75rem 0.25rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 237, 207, 0.4);
  background: linear-gradient(
      to right,
      rgba(247, 237, 207, 0.25),
      rgba(247, 237, 207, 0)
    ),
    rgba(5, 7, 14, 0.85);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  margin-bottom: 0.9rem;
}

.hero-main__pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #f9f3da 0, #d1aa63 40%, #8b5a27 100%);
  box-shadow: 0 0 12px rgba(249, 243, 218, 0.8);
}

.hero-main__pill-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(252, 249, 236, 0.9);
}

.hero-main__title {
  font-size: 1.65rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 0.7rem;
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.65);
}

.hero-main__subtitle {
  margin: 0 0 0.5rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(241, 240, 248, 0.9);
}

.hero-main__lead {
  margin: 0 0 1.3rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(222, 224, 239, 0.9);
}

.hero-main__store-area {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-main__store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-main__store-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 7, 14, 0.9);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.6);
  transform: translateY(0);
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease,
    background 0.12s ease;
}

.hero-main__store-button--google {
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.12) 0, transparent 55%),
    rgba(7, 9, 20, 0.96);
}

.hero-main__store-button--apple {
  background: rgba(6, 8, 18, 0.96);
}

.hero-main__store-button:hover,
.hero-main__store-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.75);
  border-color: rgba(255, 255, 255, 0.32);
}

.hero-main__store-icon {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  flex-shrink: 0;
}

.hero-main__store-icon--google {
  background:
    conic-gradient(from 210deg, #00ff84, #00b3ff, #ffdc00, #ff4b4b, #00ff84);
  mask-image: radial-gradient(circle at 30% 30%, #000 0, #000 40%, transparent 60%);
}

.hero-main__store-icon--apple {
  background: radial-gradient(circle at 10% 0, #ffffff 0, #d3d7e6 35%, #707588 100%);
}

.hero-main__store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hero-main__store-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(228, 229, 240, 0.82);
}

.hero-main__store-brand {
  font-size: 0.98rem;
  font-weight: 600;
  color: #ffffff;
}

.hero-main__disclaimer {
  font-size: 0.74rem;
  line-height: 1.4;
  color: rgba(228, 228, 240, 0.9);
}

.hero-main__disclaimer-line + .hero-main__disclaimer-line {
  margin-top: 0.1rem;
}

.hero-main__visual {
  position: relative;
  max-width: 460px;
  margin-inline: auto;
}

.hero-main__card {
  border-radius: 22px;
  overflow: hidden;
  background: radial-gradient(circle at top, #252b4c 0, #111522 45%, #070811 100%);
  border: 1px solid rgba(244, 222, 187, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
}

.hero-main__card-top {
  position: relative;
  padding: 0.75rem 0.75rem 0.4rem;
}

.hero-main__image {
  display: block;
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.hero-main__badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.74rem;
  background: rgba(7, 10, 19, 0.95);
  border: 1px solid rgba(240, 223, 190, 0.6);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.75);
}

.hero-main__badge--mode {
  left: 1.1rem;
  bottom: 1.15rem;
}

.hero-main__badge--map {
  right: 1.1rem;
  top: 1.1rem;
}

.hero-main__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, #ffdd8e 0, #f1b15c 45%, #d9792e 100%);
}

.hero-main__badge-text {
  color: #fef6df;
}

.hero-main__badge-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(242, 233, 210, 0.88);
}

.hero-main__badge-value {
  font-size: 0.8rem;
  color: #ffffff;
}

.hero-main__card-bottom {
  padding: 0.6rem 0.75rem 0.8rem;
}

.hero-main__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.35rem 0.4rem 0.45rem;
  border-radius: 12px;
  background: rgba(7, 10, 20, 0.95);
}

.hero-main__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.hero-main__meta-label {
  font-size: 0.7rem;
  color: rgba(214, 215, 232, 0.8);
}

.hero-main__meta-value {
  font-size: 0.86rem;
  color: #ffffff;
}

.hero-main__meta-separator {
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, rgba(237, 220, 189, 0.9), transparent);
  opacity: 0.7;
}

.hero-main__progress {
  margin-top: 0.65rem;
}

.hero-main__progress-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.hero-main__progress-label {
  font-size: 0.75rem;
  color: rgba(214, 216, 233, 0.9);
}

.hero-main__progress-value {
  font-size: 0.78rem;
  color: #ffe6b3;
}

.hero-main__progress-bar {
  position: relative;
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: rgba(15, 19, 34, 0.95);
  overflow: hidden;
}

.hero-main__progress-fill {
  position: absolute;
  inset: 0;
  width: 70%;
  border-radius: 999px;
  background: linear-gradient(to right, #ffdf9b, #f1b75c, #ff8252);
  box-shadow: 0 0 16px rgba(255, 205, 133, 0.85);
}

.hero-main__floating {
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.9;
  animation: heroMainFloat 12s ease-in-out infinite;
}


@keyframes heroMainFloat {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) translateX(6px) rotate(2deg);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
}

@media (min-width: 640px) {
  .hero-main {
    padding-inline: 1.5rem;
    padding-top: 5rem;
    padding-bottom: 4rem;
  }

  .hero-main__title {
    font-size: 2rem;
  }

  .hero-main__subtitle {
    font-size: 1.05rem;
  }

  .hero-main__lead {
    font-size: 0.98rem;
  }
}

@media (min-width: 900px) {
  .hero-main__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }

  .hero-main__content {
    max-width: 540px;
  }

  .hero-main__visual {
    max-width: 420px;
    margin-inline: 0;
  }

  .hero-main__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1120px) {
  .hero-main {
    padding-inline: 2rem;
    padding-top: 5.25rem;
  }

  .hero-main__title {
    font-size: 2.5rem;
  }
}
.section-description {
  padding: 3rem 1rem 2.5rem;
  background: #05060b;
  color: #f3f3fb;
}

.section-description__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-description__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 222, 187, 0.35);
  background: rgba(10, 12, 24, 0.9);
  margin-bottom: 0.8rem;
}

.section-description__tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, #f9f3da 0, #d1aa63 40%, #8b5a27 100%);
}

.section-description__tag-text {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 241, 215, 0.9);
}

.section-description__title {
  margin: 0 0 1rem;
  font-size: 1.4rem;
  line-height: 1.3;
}

.section-description__grid {
  display: grid;
  gap: 1.75rem;
}

.section-description__text-block {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.section-description__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(227, 229, 243, 0.92);
}

.section-description__text--highlight {
  color: #ffe5b0;
}

.section-description__info-card {
  border-radius: 16px;
  padding: 1rem 1rem 0.9rem;
  background: radial-gradient(circle at 0 0, rgba(244, 222, 187, 0.08) 0, transparent 60%),
    rgba(10, 13, 26, 0.96);
  border: 1px solid rgba(244, 222, 187, 0.35);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.75);
}

.section-description__info-title {
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.section-description__info-list {
  list-style: none;
  margin: 0 0 0.6rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.section-description__info-item {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(227, 229, 243, 0.92);
  position: relative;
  padding-left: 1.1rem;
}

.section-description__info-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(to bottom, #ffd992, #f1b15c);
}

.section-description__info-note {
  font-size: 0.82rem;
  color: #ffe2a1;
}

@media (min-width: 768px) {
  .section-description {
    padding-inline: 1.5rem;
    padding-top: 3.5rem;
  }

  .section-description__title {
    font-size: 1.7rem;
  }

  .section-description__grid {
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
    gap: 2.25rem;
    align-items: flex-start;
  }
}

@media (min-width: 1120px) {
  .section-description {
    padding-inline: 2rem;
  }

  .section-description__title {
    font-size: 1.9rem;
  }
}

.section-features {
  padding: 2.75rem 1rem 2.75rem;
  background: #060713;
  color: #f3f3fb;
}

.section-features__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-features__header {
  max-width: 640px;
  margin-bottom: 1.75rem;
}

.section-features__title {
  margin: 0 0 0.6rem;
  font-size: 1.4rem;
}

.section-features__subtitle {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(220, 223, 241, 0.9);
}

.section-features__grid {
  display: grid;
  gap: 1rem;
}

.section-features__item {
  border-radius: 16px;
  padding: 1rem 0.9rem 0.95rem;
  background: radial-gradient(circle at 0 0, rgba(244, 222, 187, 0.08) 0, transparent 60%),
    rgba(10, 13, 26, 0.98);
  border: 1px solid rgba(110, 127, 188, 0.4);
}

.section-features__item-title {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.section-features__item-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(223, 226, 244, 0.92);
}

@media (min-width: 640px) {
  .section-features {
    padding-inline: 1.5rem;
  }

  .section-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .section-features {
    padding-inline: 2rem;
  }

  .section-features__title {
    font-size: 1.7rem;
  }

  .section-features__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.section-how-to-play {
  padding: 2.75rem 1rem 2.75rem;
  background: #05060d;
  color: #f3f3fb;
}

.section-how-to-play__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-how-to-play__header {
  max-width: 640px;
  margin-bottom: 1.75rem;
}

.section-how-to-play__title {
  margin: 0 0 0.6rem;
  font-size: 1.4rem;
}

.section-how-to-play__subtitle {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(220, 223, 241, 0.9);
}

.section-how-to-play__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.section-how-to-play__step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  background: rgba(10, 13, 26, 0.96);
  border: 1px solid rgba(110, 127, 188, 0.45);
}

.section-how-to-play__step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  background: radial-gradient(circle at 0 0, #ffd992 0, #f1b15c 45%, #d9792e 100%);
  color: #1b1309;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.7);
}

.section-how-to-play__step-title {
  margin: 0 0 0.25rem;
  font-size: 0.98rem;
}

.section-how-to-play__step-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(223, 226, 244, 0.92);
}

@media (min-width: 768px) {
  .section-how-to-play {
    padding-inline: 1.5rem;
  }

  .section-how-to-play__title {
    font-size: 1.7rem;
  }

  .section-how-to-play__steps {
    gap: 1rem;
  }
}

@media (min-width: 1120px) {
  .section-how-to-play {
    padding-inline: 2rem;
  }
}

.section-screenshots {
  padding: 2.75rem 1rem 3rem;
  background: #04050a;
  color: #f3f3fb;
}

.section-screenshots__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-screenshots__header {
  max-width: 640px;
  margin-bottom: 1.75rem;
}

.section-screenshots__title {
  margin: 0 0 0.6rem;
  font-size: 1.4rem;
}

.section-screenshots__subtitle {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(220, 223, 241, 0.9);
}

.section-screenshots__grid {
  display: grid;
  gap: 0.75rem;
}

.section-screenshots__item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #090b16;
  border: 1px solid rgba(45, 60, 115, 0.8);
}

.section-screenshots__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 640px) {
  .section-screenshots {
    padding-inline: 1.5rem;
  }

  .section-screenshots__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .section-screenshots {
    padding-inline: 2rem;
  }
}

.section-download-cta {
  padding: 3rem 1rem 3.25rem;
  background: radial-gradient(circle at top, #151b30 0, #070b14 55%, #05060a 100%);
  color: #f3f3fb;
}

.section-download-cta__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-download-cta__content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.section-download-cta__title {
  margin: 0 0 0.7rem;
  font-size: 1.5rem;
}

.section-download-cta__text {
  margin: 0 0 1.1rem;
  font-size: 0.96rem;
  line-height: 1.7;
  color: rgba(225, 228, 244, 0.92);
}

.section-download-cta__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.section-download-cta__store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.section-download-cta__store-link:hover,
.section-download-cta__store-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}

.section-download-cta__store-image {
  display: block;
  height: 52px;
  width: auto;
}

.section-download-cta__disclaimer {
  margin: 0;
  font-size: 0.78rem;
  color: #ffe4af;
}

@media (min-width: 640px) {
  .section-download-cta {
    padding-inline: 1.5rem;
  }

  .section-download-cta__title {
    font-size: 1.8rem;
  }
}

@media (min-width: 1120px) {
  .section-download-cta {
    padding-inline: 2rem;
  }

  .section-download-cta__title {
    font-size: 2rem;
  }
}
.site-footer {
  background: #020308;
  color: #e6e7f4;
  padding: 2.5rem 1rem 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 1.9rem;
}

.site-footer__brand {
  max-width: 320px;
}

.site-footer__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.site-footer__logo-image {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: contain;
  box-shadow: 0 0 0 2px rgba(205, 166, 103, 0.35),
    0 10px 25px rgba(0, 0, 0, 0.45);
  background: radial-gradient(circle at 30% 20%, #f9f1dc 0, #cda667 40%, #241612 100%);
}

.site-footer__brand-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(223, 225, 243, 0.9);
}

.site-footer__nav {
  min-width: 0;
}

.site-footer__nav-title {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(219, 222, 243, 0.8);
}

.site-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.site-footer__nav-item {
  display: flex;
}

.site-footer__nav-link {
  font-size: 0.88rem;
  text-decoration: none;
  color: rgba(229, 231, 246, 0.9);
  padding: 0.1rem 0;
  transition: color 0.12s ease, transform 0.12s ease;
}

.site-footer__nav-link:hover,
.site-footer__nav-link:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
}

.site-footer__stores {
  min-width: 0;
}

.site-footer__store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 0.55rem;
}

.site-footer__store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.site-footer__store-link:hover,
.site-footer__store-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}

.site-footer__store-image {
  display: block;
  height: 44px;
  width: auto;
}

.site-footer__disclaimer {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #ffe4b2;
}

.site-footer__disclaimer--de {
  color: rgba(233, 223, 200, 0.9);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer__company-line {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(204, 207, 230, 0.9);
}

.site-footer__copyright {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(198, 201, 224, 0.85);
}

@media (min-width: 640px) {
  .site-footer {
    padding-inline: 1.5rem;
    padding-top: 2.75rem;
  }

  .site-footer__top {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 900px) {
  .site-footer__top {
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
    align-items: flex-start;
  }

  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1120px) {
  .site-footer {
    padding-inline: 2rem;
  }
}


.hero-main__store-img-link {
  width: 200px;
}
.privacy-page {
  padding: 4.5rem 1rem 3rem;
  background: #05060b;
  color: #f3f3fb;
}

.privacy-page__inner {
  max-width: 960px;
  margin: 0 auto;
}

.privacy-page__header {
  margin-bottom: 2rem;
}

.privacy-page__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(231, 225, 204, 0.85);
}

.privacy-page__title {
  margin: 0 0 0.6rem;
  font-size: 1.7rem;
}

.privacy-page__intro {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(223, 225, 240, 0.92);
}

.privacy-page__content {
  display: grid;
  gap: 1.75rem;
  align-items: flex-start;
}

.privacy-page__toc {
  padding: 1rem 0.9rem;
  border-radius: 16px;
  background: rgba(10, 13, 26, 0.96);
  border: 1px solid rgba(110, 127, 188, 0.5);
}

.privacy-page__toc-title {
  margin: 0 0 0.5rem;
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(225, 227, 245, 0.92);
}

.privacy-page__toc-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.privacy-page__toc-item {
  line-height: 1.5;
}

.privacy-page__toc-link {
  text-decoration: none;
  color: rgba(225, 228, 246, 0.92);
  transition: color 0.12s ease, transform 0.12s ease;
}

.privacy-page__toc-link:hover,
.privacy-page__toc-link:focus-visible {
  color: #ffffff;
  transform: translateX(1px);
}

.privacy-page__article {
  border-radius: 16px;
  padding: 1.2rem 1rem;
  background: radial-gradient(circle at 0 0, rgba(244, 222, 187, 0.08) 0, transparent 60%),
    rgba(10, 13, 26, 0.98);
  border: 1px solid rgba(110, 127, 188, 0.45);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.75);
}

.privacy-page__section {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 1.2rem;
}

.privacy-page__section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-page__section-title {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.privacy-page__text {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(226, 228, 244, 0.95);
}

.privacy-page__text--muted {
  color: rgba(189, 193, 216, 0.9);
  font-size: 0.86rem;
}

.privacy-page__list {
  margin: 0 0 0.5rem;
  padding-left: 1.1rem;
  font-size: 0.92rem;
}

.privacy-page__list-item {
  margin-bottom: 0.2rem;
  line-height: 1.6;
  color: rgba(226, 228, 244, 0.95);
}

.privacy-page__link {
  color: #ffd992;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 217, 146, 0.7);
  padding-bottom: 1px;
  transition: color 0.12s ease, border-color 0.12s ease;
}

.privacy-page__link:hover,
.privacy-page__link:focus-visible {
  color: #ffe7b5;
  border-color: rgba(255, 231, 181, 0.9);
}

@media (min-width: 768px) {
  .privacy-page {
    padding-inline: 1.5rem;
    padding-top: 5rem;
  }

  .privacy-page__title {
    font-size: 2rem;
  }

  .privacy-page__content {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
    gap: 2rem;
  }

  .privacy-page__article {
    padding: 1.4rem 1.4rem;
  }
}

@media (min-width: 1120px) {
  .privacy-page {
    padding-inline: 2rem;
  }

  .privacy-page__title {
    font-size: 2.1rem;
  }
}
.terms-page {
  padding: 4.5rem 1rem 3rem;
  background: #05060b;
  color: #f3f3fb;
}

.terms-page__inner {
  max-width: 960px;
  margin: 0 auto;
}

.terms-page__header {
  margin-bottom: 2rem;
}

.terms-page__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(231, 225, 204, 0.85);
}

.terms-page__title {
  margin: 0 0 0.6rem;
  font-size: 1.7rem;
}

.terms-page__intro {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(223, 225, 240, 0.92);
}

.terms-page__content {
  display: grid;
  gap: 1.75rem;
}

.terms-page__toc {
  padding: 1rem 0.9rem;
  border-radius: 16px;
  background: rgba(10, 13, 26, 0.96);
  border: 1px solid rgba(110, 127, 188, 0.5);
}

.terms-page__toc-title {
  margin: 0 0 0.5rem;
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(225, 227, 245, 0.92);
}

.terms-page__toc-list {
  margin: 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.9rem;
}

.terms-page__toc-link {
  text-decoration: none;
  color: rgba(225, 228, 246, 0.92);
  transition: color 0.12s ease, transform 0.12s ease;
}

.terms-page__toc-link:hover {
  color: #ffffff;
  transform: translateX(1px);
}

.terms-page__article {
  border-radius: 16px;
  padding: 1.2rem 1rem;
  background: radial-gradient(circle at 0 0, rgba(244, 222, 187, 0.08) 0, transparent 60%),
    rgba(10, 13, 26, 0.98);
  border: 1px solid rgba(110, 127, 188, 0.45);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.75);
}

.terms-page__section {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 1.2rem;
}

.terms-page__section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-page__section-title {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.terms-page__text {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(226, 228, 244, 0.95);
}

.terms-page__text--muted {
  color: rgba(189, 193, 216, 0.9);
  font-size: 0.86rem;
}

.terms-page__list {
  margin: 0 0 0.5rem;
  padding-left: 1.1rem;
  font-size: 0.92rem;
}

.terms-page__list li {
  margin-bottom: 0.2rem;
  line-height: 1.6;
  color: rgba(226, 228, 244, 0.95);
}

.terms-page__link {
  color: #ffd992;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 217, 146, 0.7);
}

.terms-page__link:hover {
  color: #ffe7b5;
  border-color: rgba(255, 231, 181, 0.9);
}

@media (min-width: 768px) {
  .terms-page {
    padding-inline: 1.5rem;
    padding-top: 5rem;
  }

  .terms-page__title {
    font-size: 2rem;
  }

  .terms-page__content {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
    gap: 2rem;
  }

  .terms-page__article {
    padding: 1.4rem 1.4rem;
  }
}

@media (min-width: 1120px) {
  .terms-page {
    padding-inline: 2rem;
  }

  .terms-page__title {
    font-size: 2.1rem;
  }
}
.legal-page {
  padding: 4.5rem 1rem 3rem;
  background: #05060b;
  color: #f3f3fb;
}

.legal-page__inner {
  max-width: 960px;
  margin: 0 auto;
}

.legal-page__header {
  margin-bottom: 2rem;
}

.legal-page__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(231, 225, 204, 0.85);
}

.legal-page__title {
  margin: 0 0 0.6rem;
  font-size: 1.7rem;
}

.legal-page__intro {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(223, 225, 240, 0.92);
}

.legal-page__content {
  display: grid;
  gap: 1.75rem;
}

.legal-page__toc {
  padding: 1rem 0.9rem;
  border-radius: 16px;
  background: rgba(10, 13, 26, 0.96);
  border: 1px solid rgba(110, 127, 188, 0.5);
}

.legal-page__toc-title {
  margin: 0 0 0.5rem;
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(225, 227, 245, 0.92);
}

.legal-page__toc-list {
  margin: 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.9rem;
}

.legal-page__toc-link {
  text-decoration: none;
  color: rgba(225, 228, 246, 0.92);
  transition: color 0.12s ease, transform 0.12s ease;
}

.legal-page__toc-link:hover {
  color: #ffffff;
  transform: translateX(1px);
}

.legal-page__article {
  border-radius: 16px;
  padding: 1.2rem 1rem;
  background: radial-gradient(circle at 0 0, rgba(244, 222, 187, 0.08) 0, transparent 60%),
    rgba(10, 13, 26, 0.98);
  border: 1px solid rgba(110, 127, 188, 0.45);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.75);
}

.legal-page__section {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 1.2rem;
}

.legal-page__section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-page__section-title {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.legal-page__text {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(226, 228, 244, 0.95);
}

.legal-page__text--muted {
  color: rgba(189, 193, 216, 0.9);
  font-size: 0.86rem;
}

.legal-page__list {
  margin: 0 0 0.5rem;
  padding-left: 1.1rem;
  font-size: 0.92rem;
}

.legal-page__list li {
  margin-bottom: 0.2rem;
  line-height: 1.6;
  color: rgba(226, 228, 244, 0.95);
}

.legal-page__link {
  color: #ffd992;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 217, 146, 0.7);
}

.legal-page__link:hover {
  color: #ffe7b5;
  border-color: rgba(255, 231, 181, 0.9);
}

@media (min-width: 768px) {
  .legal-page {
    padding-inline: 1.5rem;
    padding-top: 5rem;
  }

  .legal-page__title {
    font-size: 2rem;
  }

  .legal-page__content {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
    gap: 2rem;
  }

  .legal-page__article {
    padding: 1.4rem 1.4rem;
  }
}

@media (min-width: 1120px) {
  .legal-page {
    padding-inline: 2rem;
  }

  .legal-page__title {
    font-size: 2.1rem;
  }
}
