@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;
}

.header-game {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(to right, #050816 0%, #050816ee 40%, #050816 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-game__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header-game__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-game__logo {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(255, 107, 0, 0.5);
  object-fit: cover;
}

.header-game__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f9fafb;
}

.header-game__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-game__link {
  font-size: 14px;
  text-decoration: none;
  color: #e5e7eb;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-game__link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.header-game__cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 0% 0%, #ffd166 0%, #ff6b00 40%, #ff3b65 100%);
  color: #050816;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.header-game__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(255, 107, 0, 0.7);
}

.hero-game {
  background: radial-gradient(circle at top left, #1f2937 0%, #050816 45%, #020617 100%);
  color: #f9fafb;
  padding: 64px 24px 80px;
}

.hero-game__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-game__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.hero-game__badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f97316;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(249, 115, 22, 0.4);
}

.hero-game__title {
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-game__subtitle {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: #e5e7eb;
  max-width: 540px;
}

.hero-game__meta {
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
}

.hero-game__cta-group {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-game__store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-game__store-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;

  width: 200px;
}

.hero-game__store-button--google {
  background: linear-gradient(135deg, #111827, #020617);
  border: 1px solid rgba(251, 191, 36, 0.5);
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
  color: #fefce8;
}

.hero-game__store-button--google:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #1f2937, #020617);
  box-shadow: 0 16px 36px rgba(251, 191, 36, 0.5);
}

.hero-game__store-button--apple {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}

.hero-game__store-button--apple:hover {
  transform: translateY(-1px);
  background: rgba(15, 23, 42, 1);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.6);
}

.hero-game__store-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.hero-game__store-text {
  white-space: nowrap;
}

.hero-game__legal {
  max-width: 420px;
}

.hero-game__legal-text {
  font-size: 12px;
  line-height: 1.5;
  color: #9ca3af;
}

.hero-game__visual {
  display: flex;
  justify-content: center;
}

.hero-game__card {
  position: relative;
  border-radius: 26px;
  padding: 12px;
  background: radial-gradient(circle at top, rgba(251, 146, 60, 0.18), rgba(15, 23, 42, 0.96));
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.9);
  max-width: 360px;
  width: 100%;
}

.hero-game__image {
  width: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

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

.hero-game__rating,
.hero-game__stats {
  padding: 8px 10px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-game__rating-score {
  font-size: 16px;
  font-weight: 700;
  color: #facc15;
}

.hero-game__rating-label {
  font-size: 11px;
  color: #9ca3af;
}

.hero-game__stat-label {
  font-size: 11px;
  color: #9ca3af;
}

.hero-game__stat-value {
  font-size: 14px;
  font-weight: 600;
  color: #e5e7eb;
}

@media (max-width: 960px) {
  .header-game__container {
    gap: 16px;
  }

  .header-game__nav {
    display: none;
  }

  .hero-game__container {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .hero-game__visual {
    order: -1;
  }

  .hero-game__title {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .header-game__container {
    padding-inline: 16px;
  }

  .hero-game {
    padding: 40px 16px 56px;
  }

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

  .hero-game__store-button {
    justify-content: center;
    width: 100%;
  }

  .hero-game__subtitle {
    font-size: 15px;
  }
}
.features-game {
  background: radial-gradient(circle at top, #0b1220 0%, #020617 40%, #020617 100%);
  color: #f9fafb;
  padding: 64px 24px 72px;
}

.features-game__container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-game__header {
  max-width: 720px;
  margin-bottom: 32px;
}

.features-game__title {
  font-size: 28px;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.features-game__subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #e5e7eb;
}

.features-game__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.features-game__item {
  border-radius: 18px;
  padding: 18px 20px;
  background: radial-gradient(circle at top left, rgba(248, 113, 113, 0.2), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.9);
}

.features-game__item-title {
  font-size: 17px;
  margin-bottom: 6px;
}

.features-game__item-text {
  font-size: 14px;
  line-height: 1.6;
  color: #e5e7eb;
}

.features-game__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.1), rgba(248, 113, 113, 0.2));
  border: 1px solid rgba(250, 204, 21, 0.6);
}

.features-game__cta-text {
  font-size: 15px;
  max-width: 520px;
}

.features-game__store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.features-game__store-button {
  display: inline-flex;
  border-radius: 14px;
  overflow: hidden;
}

.features-game__store-img {
  display: block;
  height: 44px;
  width: auto;
}

.overview-game {
  background: radial-gradient(circle at top, #020617 0%, #020617 35%, #020617 100%);
  color: #f9fafb;
  padding: 64px 24px 72px;
}

.overview-game__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.overview-game__title {
  font-size: 26px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.overview-game__text {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 12px;
}

.overview-game__text--highlight {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fbbf24;
}

.overview-game__side {
  display: flex;
  justify-content: flex-end;
}

.overview-game__card {
  width: 100%;
  max-width: 380px;
  border-radius: 22px;
  padding: 20px 20px 18px;
  background: radial-gradient(circle at top, rgba(96, 165, 250, 0.18), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.95);
}

.overview-game__card-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.overview-game__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.overview-game__list-item {
  font-size: 14px;
  line-height: 1.6;
  color: #e5e7eb;
  padding-left: 18px;
  position: relative;
}

.overview-game__list-item + .overview-game__list-item {
  margin-top: 6px;
}

.overview-game__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fbbf24, #fb7185);
}

.overview-game__store {
  border-top: 1px solid rgba(148, 163, 184, 0.6);
  padding-top: 12px;
}

.overview-game__store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}

.overview-game__store-button {
  display: inline-flex;
  border-radius: 12px;
  overflow: hidden;
}

.overview-game__store-img {
  display: block;
  height: 40px;
  width: auto;
}

.overview-game__legal {
  font-size: 12px;
  line-height: 1.5;
  color: #9ca3af;
}

.modes-game {
  background: radial-gradient(circle at top, #020617 0%, #020617 40%, #020617 100%);
  color: #f9fafb;
  padding: 64px 24px 80px;
}

.modes-game__container {
  max-width: 1200px;
  margin: 0 auto;
}

.modes-game__header {
  max-width: 720px;
  margin-bottom: 28px;
}

.modes-game__title {
  font-size: 26px;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.modes-game__subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #e5e7eb;
}

.modes-game__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 28px;
}

.modes-game__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modes-game__block {
  border-radius: 18px;
  padding: 18px 20px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.modes-game__block-title {
  font-size: 17px;
  margin-bottom: 6px;
}

.modes-game__block-text {
  font-size: 14px;
  line-height: 1.6;
  color: #e5e7eb;
}

.modes-game__column--accent {
  align-self: stretch;
}

.modes-game__highlight {
  height: 100%;
  border-radius: 22px;
  padding: 22px 22px 18px;
  background: radial-gradient(circle at top, rgba(251, 191, 36, 0.15), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(250, 204, 21, 0.7);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.modes-game__highlight-title {
  font-size: 18px;
  margin-bottom: 6px;
}

.modes-game__highlight-text {
  font-size: 14px;
  line-height: 1.6;
  color: #e5e7eb;
}

.modes-game__store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modes-game__store-button {
  display: inline-flex;
  border-radius: 14px;
  overflow: hidden;
}

.modes-game__store-img {
  display: block;
  height: 44px;
  width: auto;
}

.cta-strip-game {
  background: linear-gradient(90deg, #111827, #020617);
  color: #f9fafb;
  padding: 32px 24px 40px;
  border-top: 1px solid rgba(31, 41, 55, 0.8);
}

.cta-strip-game__container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 18px;
  padding: 18px 20px;
  background: radial-gradient(circle at top left, rgba(251, 191, 36, 0.14), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(250, 204, 21, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-strip-game__title {
  font-size: 20px;
  margin-bottom: 4px;
}

.cta-strip-game__text {
  font-size: 14px;
  color: #e5e7eb;
}

.cta-strip-game__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cta-strip-game__store-button {
  display: inline-flex;
  border-radius: 12px;
  overflow: hidden;
}

.cta-strip-game__store-img {
  display: block;
  height: 40px;
  width: auto;
}

@media (max-width: 960px) {
  .features-game__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .overview-game__container {
    grid-template-columns: minmax(0, 1fr);
  }

  .overview-game__side {
    justify-content: flex-start;
  }

  .modes-game__layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .features-game,
  .overview-game,
  .modes-game {
    padding-inline: 16px;
  }

  .features-game__cta,
  .cta-strip-game__container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.gallery-game {
  padding: 64px 24px 80px;
  background: radial-gradient(circle at top, #0b1220 0%, #020617 50%);
  color: #f9fafb;
}

.gallery-game__container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-game__title {
  font-size: 28px;
  text-align: center;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.gallery-game__subtitle {
  text-align: center;
  font-size: 15px;
  color: #e5e7eb;
  margin-bottom: 32px;
}

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

.gallery-game__item {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.gallery-game__img {
  width: 100%;
  display: block;
  object-fit: cover;
}


.visual-game {
  padding: 80px 24px;
  background: radial-gradient(circle at bottom, #111827 0%, #020617 60%);
  color: #f9fafb;
}

.visual-game__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.visual-game__image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}

.visual-game__image {
  width: 100%;
  display: block;
  object-fit: cover;
}

.visual-game__title {
  font-size: 28px;
  margin-bottom: 12px;
}

.visual-game__text {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 16px;
}

.visual-game__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.visual-game__store-button {
  display: inline-flex;
  border-radius: 14px;
  overflow: hidden;
}

.visual-game__store-img {
  height: 44px;
  width: auto;
  display: block;
}


/* ===== FOOTER ===== */

.footer-game {
  background: #020617;
  padding: 48px 24px;
  border-top: 1px solid rgba(148,163,184,0.2);
  color: #e5e7eb;
}

.footer-game__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 32px;
}

.footer-game__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-game__logo {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  object-fit: cover;
}

.footer-game__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-game__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.footer-game__link {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.85;
  transition: opacity .2s ease;
}

.footer-game__link:hover {
  opacity: 1;
}

.footer-game__legal {
  grid-column: 1 / -1;
  font-size: 13px;
  color: #9ca3af;
  margin-top: 16px;
}


@media (max-width: 960px) {
  .gallery-game__grid {
    grid-template-columns: 1fr;
  }

  .visual-game__container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-game__container {
    grid-template-columns: 1fr;
  }
}
.about-game {
  background: radial-gradient(circle at top, #020617 0%, #020617 45%, #020617 100%);
  color: #f9fafb;
}

.about-game__hero {
  padding: 64px 24px 56px;
}

.about-game__container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-game__container--split {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.about-game__hero-content {
  max-width: 640px;
}

.about-game__eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 8px;
}

.about-game__title {
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.about-game__intro {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 10px;
}

.about-game__meta {
  font-size: 13px;
  line-height: 1.6;
  color: #9ca3af;
}

.about-game__hero-visual {
  display: flex;
  justify-content: flex-end;
}

.about-game__hero-card {
  position: relative;
  max-width: 420px;
  width: 100%;
  border-radius: 24px;
  padding: 10px;
  background: radial-gradient(circle at top, rgba(96, 165, 250, 0.2), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.95);
}

.about-game__hero-image {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}

.about-game__hero-overlay {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.about-game__hero-pill {
  border-radius: 14px;
  padding: 6px 10px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.about-game__hero-pill-label {
  display: block;
  font-size: 11px;
  color: #9ca3af;
}

.about-game__hero-pill-value {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #e5e7eb;
}

.about-game__section {
  padding: 40px 24px 40px;
}

.about-game__section-title {
  font-size: 24px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.about-game__text {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 12px;
}

.about-game__aside {
  display: flex;
  justify-content: flex-end;
}

.about-game__panel {
  max-width: 360px;
  width: 100%;
  border-radius: 20px;
  padding: 18px 20px;
  background: radial-gradient(circle at top, rgba(251, 191, 36, 0.18), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(250, 204, 21, 0.8);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.95);
}

.about-game__panel-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.about-game__panel-text {
  font-size: 14px;
  line-height: 1.6;
  color: #e5e7eb;
  margin-bottom: 8px;
}

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

.about-game__card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
}

.about-game__card-image {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 180px;
}

.about-game__card-body {
  padding: 14px 16px 16px;
}

.about-game__card-title {
  font-size: 16px;
  margin-bottom: 6px;
}

.about-game__card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #e5e7eb;
}

.about-game__section--cta {
  padding-bottom: 64px;
}

.about-game__container--cta {
  border-radius: 22px;
  padding: 20px 22px;
  background: radial-gradient(circle at top left, rgba(251, 191, 36, 0.16), rgba(15, 23, 42, 0.97));
  border: 1px solid rgba(250, 204, 21, 0.7);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
}

.about-game__cta-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.about-game__cta-text {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 8px;
}

.about-game__cta-meta {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fde68a;
}

.about-game__cta-stores {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.about-game__store-button {
  display: inline-flex;
  border-radius: 14px;
  overflow: hidden;
}

.about-game__store-img {
  height: 44px;
  width: auto;
  display: block;
}

.about-game__cta-legal {
  font-size: 12px;
  line-height: 1.5;
  color: #9ca3af;
}

@media (max-width: 960px) {
  .about-game__container--split {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-game__hero-visual {
    justify-content: flex-start;
    margin-top: 24px;
  }

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

  .about-game__container--cta {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .about-game__hero,
  .about-game__section {
    padding-inline: 16px;
  }

  .about-game__title {
    font-size: 24px;
  }

  .about-game__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.legal-privacy {
  background: radial-gradient(circle at top, #020617 0%, #020617 45%, #020617 100%);
  color: #f9fafb;
  padding-bottom: 64px;
}

.legal-privacy__hero {
  padding: 56px 24px 32px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.legal-privacy__container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-privacy__title {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.legal-privacy__updated {
  font-size: 14px;
  color: #e5e7eb;
}

.legal-privacy__body {
  padding: 32px 24px 0;
}

.legal-privacy__section {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(31, 41, 55, 0.7);
}

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

.legal-privacy__section-title {
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.legal-privacy__subheading {
  font-size: 16px;
  margin-top: 12px;
  margin-bottom: 8px;
}

.legal-privacy__text {
  font-size: 14px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 10px;
}

.legal-privacy__list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 8px;
}

.legal-privacy__list-item {
  font-size: 14px;
  line-height: 1.7;
  color: #e5e7eb;
  position: relative;
  padding-left: 16px;
}

.legal-privacy__list-item + .legal-privacy__list-item {
  margin-top: 4px;
}

.legal-privacy__list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #fbbf24;
}

.legal-privacy__link {
  color: #bfdbfe;
  text-decoration: none;
}

.legal-privacy__link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .legal-privacy__hero,
  .legal-privacy__body {
    padding-inline: 16px;
  }

  .legal-privacy__title {
    font-size: 24px;
  }
}
.legal-terms {
  background: radial-gradient(circle at top, #020617 0%, #020617 45%, #020617 100%);
  color: #f9fafb;
  padding-bottom: 64px;
}

.legal-terms__hero {
  padding: 56px 24px 32px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.legal-terms__container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-terms__title {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.legal-terms__updated {
  font-size: 14px;
  color: #e5e7eb;
}

.legal-terms__body {
  padding: 32px 24px 0;
}

.legal-terms__section {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(31, 41, 55, 0.7);
}

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

.legal-terms__section-title {
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.legal-terms__text {
  font-size: 14px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 10px;
}

.legal-terms__list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 8px;
}

.legal-terms__list-item {
  font-size: 14px;
  line-height: 1.7;
  color: #e5e7eb;
  position: relative;
  padding-left: 16px;
}

.legal-terms__list-item + .legal-terms__list-item {
  margin-top: 4px;
}

.legal-terms__list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #fbbf24;
}

.legal-terms__link {
  color: #bfdbfe;
  text-decoration: none;
}

.legal-terms__link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .legal-terms__hero,
  .legal-terms__body {
    padding-inline: 16px;
  }

  .legal-terms__title {
    font-size: 24px;
  }
}
.contact-page {
  background: radial-gradient(circle at top, #020617 0%, #020617 45%, #020617 100%);
  color: #f9fafb;
  padding-bottom: 72px;
}

.contact-page__hero {
  padding: 56px 24px 32px;
  border-bottom: 1px solid rgba(148,163,184,0.25);
}

.contact-page__container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-page__title {
  font-size: 30px;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.contact-page__intro {
  font-size: 15px;
  color: #e5e7eb;
  max-width: 640px;
  line-height: 1.7;
}

.contact-page__body {
  padding: 32px 24px;
}

.contact-page__container--grid {
  display: grid;
  grid-template-columns: minmax(0,1.4fr) minmax(0,1fr);
  gap: 40px;
}

.contact-page__section-title {
  font-size: 22px;
  margin-bottom: 16px;
}

.contact-form__field {
  margin-bottom: 16px;
}

.contact-form__label {
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
  color: #cbd5e1;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(148,163,184,0.35);
  border-radius: 8px;
  padding: 12px 14px;
  color: #f1f5f9;
  font-size: 14px;
}

.contact-form__textarea {
  height: 120px;
  resize: none;
}

.contact-form__submit {
  margin-top: 10px;
  background: #4f46e5;
  border: none;
  padding: 14px 20px;
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: opacity .2s ease;
}

.contact-form__submit:hover {
  opacity: .85;
}

.contact-form__legal {
  margin-top: 12px;
  font-size: 12px;
  color: #94a3b8;
}

.contact-form__success {
  display: none;
  margin-top: 14px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.4);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: #86efac;
}

.contact-form__success--visible {
  display: block;
}

.contact-info-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(148,163,184,0.4);
  padding: 18px 20px;
  border-radius: 16px;
  margin-bottom: 20px;
}

.contact-info-block__title {
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-info-block__text {
  font-size: 14px;
  line-height: 1.7;
  color: #e5e7eb;
}

@media (max-width: 960px) {
  .contact-page__container--grid {
    grid-template-columns: 1fr;
  }
}
.contact-page {
  background: radial-gradient(circle at top, #020617 0%, #020617 45%, #020617 100%);
  color: #f9fafb;
  padding-bottom: 72px;
}

.contact-page__hero {
  padding: 56px 24px 32px;
  border-bottom: 1px solid rgba(148,163,184,0.25);
}

.contact-page__container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-page__title {
  font-size: 30px;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.contact-page__intro {
  font-size: 15px;
  color: #e5e7eb;
  max-width: 640px;
  line-height: 1.7;
}

.contact-page__body {
  padding: 32px 24px;
}

.contact-page__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(148,163,184,0.4);
  padding: 18px 20px;
  border-radius: 16px;
}

.contact-info-block__title {
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-info-block__text {
  font-size: 14px;
  line-height: 1.7;
  color: #e5e7eb;
}

.contact-info-block__link {
  color: #bfdbfe;
  text-decoration: none;
}

.contact-info-block__link:hover {
  text-decoration: underline;
}
.legal-impressum {
  background: radial-gradient(circle at top, #020617 0%, #020617 45%, #020617 100%);
  color: #f9fafb;
  padding-bottom: 64px;
}

.legal {
  padding: 56px 24px 40px;
}

.legal__container {
  max-width: 900px;
  margin: 0 auto;
}

.legal__title {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.legal__section {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(31, 41, 55, 0.7);
}

.legal__section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.legal__section-title {
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.legal__text {
  font-size: 14px;
  line-height: 1.7;
  color: #e5e7eb;
}

.legal__link {
  color: #bfdbfe;
  text-decoration: none;
}

.legal__link:hover {
  text-decoration: underline;
}

.contact-info {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.contact-info__title {
  font-size: 18px;
  margin-bottom: 6px;
}

.contact-info__text {
  font-size: 14px;
  line-height: 1.7;
  color: #e5e7eb;
}

@media (max-width: 640px) {
  .legal {
    padding-inline: 16px;
  }

  .legal__title {
    font-size: 24px;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
  padding: 24px;
  z-index: 9999;
  display: none;
  font-family: inherit;
}

.cookie-banner--visible {
  display: block;
}

.cookie-banner__inner {
  max-width: 900px;
  margin: 0 auto;
}

.cookie-banner__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cookie-banner__tabs {
  display: flex;
  gap: 12px;
}

.cookie-banner__tab {
  background: none;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 14px;
  border-bottom: 2px solid transparent;
}

.cookie-banner__tab--active {
  border-color: #1f3aff;
  color: #1f3aff;
}

.cookie-banner__powered {
  font-size: 12px;
  opacity: 0.6;
}

.cookie-banner__title {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 600;
}

.cookie-banner__text {
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner__toggles {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: 16px 0;
}

.cookie-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  gap: 6px;
}

/* SWITCHES */
.toggle {
  position: relative;
  width: 46px;
  height: 24px;
  display: inline-block;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  border-radius: 34px;
  transition: .3s;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: .3s;
}

.toggle input:checked + .toggle-slider {
  background-color: #1f3aff;
}

.toggle input:checked + .toggle-slider:before {
  transform: translateX(22px);
}

/* BUTTONS */
.cookie-banner__buttons {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.cookie-banner__btn {
  flex: 1;
  padding: 12px;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #000;
  transition: 0.2s ease;
}

.cookie-banner__btn--deny {
  background: #fff;
  border-color: #000;
}

.cookie-banner__btn--select {
  background: #fff;
  border-color: #1f3aff;
  color: #1f3aff;
}

.cookie-banner__btn--all {
  background: #1f3aff;
  color: #fff;
  border-color: #1f3aff;
}
.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  padding: 24px 16px;
  background: #ffffff;
  box-shadow: 0 -6px 32px rgba(15, 23, 42, 0.2);
  z-index: 9999;
  display: none;
  font-family: inherit;
}

.cookie-banner--visible {
  display: block;
}

.cookie-banner__inner {
  max-width: 960px;
  margin: 0 auto;
}

.cookie-banner__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.cookie-banner__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-banner__tab {
  border: none;
  background: transparent;
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  color: #111827;
}

.cookie-banner__tab--active {
  border-color: #2563eb;
  color: #2563eb;
}

.cookie-banner__powered {
  font-size: 12px;
  color: #6b7280;
  white-space: nowrap;
}

.cookie-banner__panels {
  margin-bottom: 16px;
}

.cookie-banner__panel {
  display: none;
}

.cookie-banner__panel--active {
  display: block;
}

.cookie-banner__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.cookie-banner__text {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
}

.cookie-banner__toggles {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 16px;
}

.cookie-banner__toggle {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #111827;
}

.cookie-banner__toggle-label {
  white-space: nowrap;
}

/* switches */

.cookie-banner__switch {
  position: relative;
  width: 46px;
  height: 24px;
  display: inline-block;
}

.cookie-banner__switch-input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-banner__switch-slider {
  position: absolute;
  inset: 0;
  background-color: #d1d5db;
  border-radius: 999px;
  transition: background-color 0.25s ease;
}

.cookie-banner__switch-slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  border-radius: 999px;
  transition: transform 0.25s ease;
}

.cookie-banner__switch-input:checked + .cookie-banner__switch-slider {
  background-color: #2563eb;
}

.cookie-banner__switch-input:checked + .cookie-banner__switch-slider::before {
  transform: translateX(22px);
}

/* buttons */

.cookie-banner__buttons {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.cookie-banner__button {
  flex: 1;
  padding: 11px 12px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #111827;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    opacity 0.2s ease;
}

.cookie-banner__button--deny {
  background-color: #ffffff;
  border-color: #111827;
  color: #111827;
}

.cookie-banner__button--selection {
  background-color: #ffffff;
  border-color: #2563eb;
  color: #2563eb;
}

.cookie-banner__button--all {
  background-color: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}

.cookie-banner__button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .cookie-banner__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__toggles {
    flex-wrap: wrap;
  }

  .cookie-banner__toggle {
    flex: 0 0 48%;
  }

  .cookie-banner__buttons {
    flex-direction: column;
  }
}
