@import url("https://fonts.googleapis.com/css2?family=Inter: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: "Inter", 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 (CIV) ====== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.94),
    rgba(15, 23, 42, 0.9)
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.site-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-header__logo {
  height: 32px;
  width: auto;
  display: block;
}

.site-header__brand-text {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-header__nav-link {
  position: relative;
  font-size: 14px;
  color: #e5e7eb;
  text-decoration: none;
  padding: 4px 0;
  opacity: 0.85;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.site-header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #facc15, #f97316);
  transition: width 0.2s ease;
}

.site-header__nav-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.site-header__nav-link:hover::after {
  width: 100%;
}

.site-header__burger {
  display: none;
  width: 28px;
  height: 20px;
  padding: 0;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: space-between;
}

.site-header__burger span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: #e5e7eb;
}

/* ====== HERO (CIV) ====== */

.hero-civ {
  padding: 140px 20px 90px;
  background:
    radial-gradient(circle at 0% 0%, #facc15 0, transparent 45%),
    radial-gradient(circle at 100% 10%, #f97316 0, transparent 55%),
    #0b1020;
  color: #e5e7eb;
}

.hero-civ__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}

.hero-civ__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-civ__eyebrow {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #facc15;
}

.hero-civ__title {
  font-size: 36px;
  line-height: 1.2;
  color: #f9fafb;
  margin: 0;
}

.hero-civ__subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #cbd5f5;
  max-width: 560px;
}

.hero-civ__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.hero-civ__store-img {
  height: 48px;
  display: block;
  border-radius: 8px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.hero-civ__store-btn:hover .hero-civ__store-img {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.7);
}

.hero-civ__note {
  font-size: 13px;
  color: #e5e7eb;
  opacity: 0.85;
}

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

.hero-civ__card {
  position: relative;
  padding: 14px;
  border-radius: 24px;
  background: radial-gradient(circle at 0% 0%, #1f2937, #020617);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(148, 163, 184, 0.4);
  overflow: hidden;
}

.hero-civ__card-grid {
  position: absolute;
  inset: -30%;
  background-image: linear-gradient(
      120deg,
      rgba(148, 163, 184, 0.28) 1px,
      transparent 1px
    ),
    linear-gradient(
      210deg,
      rgba(148, 163, 184, 0.18) 1px,
      transparent 1px
    );
  background-size: 40px 40px;
  opacity: 0.35;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-civ__image {
  position: relative;
  display: block;
  width: 340px;
  max-width: 100%;
  border-radius: 18px;
}

/* ====== RESPONSIVE ====== */

@media (max-width: 960px) {
  .site-header__nav {
    display: none;
  }

  .site-header__burger {
    display: flex;
  }

  .hero-civ {
    padding-top: 120px;
  }

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

  .hero-civ__content {
    order: 2;
  }

  .hero-civ__visual {
    order: 1;
  }

  .hero-civ__content,
  .hero-civ__subtitle {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hero-civ__title {
    font-size: 28px;
  }

  .hero-civ__subtitle {
    font-size: 15px;
  }

  .hero-civ__image {
    width: 280px;
  }
}
.game-section {
  padding: 70px 20px 50px;
  background: #020617;
  color: #e5e7eb;
}

.game-section__inner {
  max-width: 960px;
  margin: 0 auto;
}

.game-section__title {
  font-size: 28px;
  margin: 0 0 18px;
  color: #facc15;
}

.game-section__text {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 10px;
  color: #e5e7eb;
  opacity: 0.92;
}

.steps-section {
  padding: 60px 20px 50px;
  background: radial-gradient(circle at 0 0, #1e293b, #020617 55%);
  color: #e5e7eb;
}

.steps-section__inner {
  max-width: 960px;
  margin: 0 auto;
}

.steps-section__title {
  font-size: 26px;
  margin: 0 0 16px;
  color: #facc15;
}

.steps-section__list {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.steps-section__item {
  font-size: 15px;
  line-height: 1.8;
  color: #e5e7eb;
  opacity: 0.9;
}

.media-section {
  padding: 70px 20px;
  background: #020617;
  color: #e5e7eb;
}

.media-section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.media-section__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 26px;
}

.media-section__title {
  font-size: 26px;
  margin: 0;
  color: #facc15;
}

.media-section__subtitle {
  font-size: 15px;
  margin: 0;
  color: #cbd5f5;
  max-width: 580px;
}

.media-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.media-section__item {
  margin: 0;
}

.media-section__img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.7);
}

.features-section {
  padding: 70px 20px;
  background: #020617;
  color: #e5e7eb;
}

.features-section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.features-section__title {
  font-size: 26px;
  margin: 0 0 22px;
  color: #facc15;
}

.features-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.features-section__card {
  border-radius: 18px;
  padding: 18px 18px 20px;
  background: radial-gradient(circle at 0 0, #1f2937, #020617);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(148, 163, 184, 0.4);
}

.features-section__card-title {
  font-size: 16px;
  margin: 0 0 8px;
  color: #facc15;
}

.features-section__card-text {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: #e5e7eb;
  opacity: 0.95;
}

.download-section {
  padding: 70px 20px 80px;
  background: radial-gradient(circle at 100% 0, #f97316 0, #020617 55%);
  color: #f9fafb;
}

.download-section__inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.download-section__title {
  font-size: 26px;
  margin: 0 0 16px;
}

.download-section__text {
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 8px;
}

.download-section__text--note {
  font-size: 14px;
  color: #fef3c7;
}

.download-section__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}

.download-section__store-img {
  height: 48px;
  display: block;
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.7);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.download-section__store-btn:hover .download-section__store-img {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.9);
}

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

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

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

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

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

  .game-section {
    padding-top: 60px;
  }

  .download-section {
    padding-bottom: 60px;
  }

  .game-section__title,
  .steps-section__title,
  .media-section__title,
  .features-section__title,
  .download-section__title {
    font-size: 22px;
  }
}
.civ-footer {
  background: radial-gradient(circle at 0 0, #1e293b 0, #020617 55%);
  color: #e5e7eb;
  padding: 60px 20px 40px;
}

.civ-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.civ-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 34px;
}

.civ-footer__brand {
  max-width: 360px;
}

.civ-footer__logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}

.civ-footer__tagline {
  font-size: 14px;
  line-height: 1.7;
  color: #cbd5f5;
}

.civ-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.civ-footer__nav-link {
  font-size: 14px;
  color: #e5e7eb;
  text-decoration: none;
  padding: 3px 0;
  opacity: 0.9;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.civ-footer__nav-link:hover {
  opacity: 1;
  transform: translateX(2px);
}

.civ-footer__stores {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.civ-footer__store-img {
  height: 44px;
  display: block;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.8);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.civ-footer__store-btn:hover .civ-footer__store-img {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.95);
}

.civ-footer__divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(148, 163, 184, 0),
    rgba(148, 163, 184, 0.6),
    rgba(148, 163, 184, 0)
  );
  margin-bottom: 18px;
}

.civ-footer__bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.civ-footer__legal {
  font-size: 13px;
  color: #cbd5f5;
}

.civ-footer__notice {
  font-size: 13px;
  color: #fef3c7;
}

.civ-footer__copyright {
  font-size: 13px;
  color: #9ca3af;
}

/* responsive */

@media (max-width: 960px) {
  .civ-footer__top {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .civ-footer__brand {
    max-width: none;
    margin: 0 auto;
  }

  .civ-footer__nav {
    align-items: center;
  }

  .civ-footer__stores {
    flex-direction: row;
    justify-content: center;
  }
}
.civ-legal {
  padding: 140px 20px 80px;
  background: #020617;
  color: #e5e7eb;
}

.civ-legal__inner {
  max-width: 860px;
  margin: 0 auto;
  background: #0f172a;
  border-radius: 20px;
  padding: 32px 26px 40px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.55);
}

.civ-legal__title {
  font-size: 30px;
  margin: 0 0 18px;
  color: #facc15;
}

.civ-legal__section {
  margin-bottom: 26px;
}

.civ-legal__subtitle {
  font-size: 18px;
  margin: 0 0 8px;
  color: #facc15;
}

.civ-legal__text {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 10px;
  color: #e5e7eb;
  opacity: 0.95;
}

.civ-legal__list {
  margin: 0 0 10px 18px;
  padding: 0;
}

.civ-legal__list-item {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e7eb;
  opacity: 0.9;
}

@media (max-width: 640px) {
  .civ-legal {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .civ-legal__inner {
    padding: 24px 18px 32px;
    border-radius: 16px;
  }

  .civ-legal__title {
    font-size: 24px;
  }
}
