:root {
  --bg: #090714;
  --header-border: #6c3fff26;
  --menu-color: #ffffffb2;
  --white: #ffffff;
  --text-secondary: #ffffffbf;
  --accent-purple: #6c3fff;
  --accent-purple-dark: #4f23d8;
  --accent-cyan: #00d4ff;
  --card-bg: #1478b60d;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--header-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.5px;
}
.logo-icon {
  width: 212px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg {
  width: 18px;
  height: 18px;
}

nav.desktop-nav {
  display: flex;
  gap: 36px;
}
nav.desktop-nav a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0;
  text-align: center;
  color: var(--menu-color);
  text-decoration: none;
  transition: color 0.2s ease;
}
nav.desktop-nav a:hover {
  color: var(--white);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav a {
  color: var(--menu-color);
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
}
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.hero {
  padding: 100px 0 60px;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}
.hero-content {
  flex: 1;
  max-width: 584px;
}
.hero-content h1 {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 68px;
  line-height: 71.4px;
  letter-spacing: -2.04px;
  color: var(--white);
  margin: 0 0 28px 0;
  max-width: 100%;
}
.hero-content p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28.9px;
  letter-spacing: 0;
  color: var(--text-secondary);
  margin: 0 0 18px 0;
  max-width: 584px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 28px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    var(--accent-purple) 0%,
    var(--accent-purple-dark) 100%
  );
  box-shadow: 0px 8px 32px 0px #6c3fff80;
  text-decoration: none;
  border: none;
  cursor: pointer;
  max-width: 395px;
  width: 100%;
}
.btn-download span {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 22.5px;
  letter-spacing: 0;
  color: var(--white);
  white-space: nowrap;
}
.btn-download svg {
  flex-shrink: 0;
}

.hero-image {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  max-width: 450px;
}
.hero-image img {
  border-radius: 53px;
}

.why-section {
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.why-image {
  flex: 1;
  max-width: 480px;
}
.why-image .placeholder-box {
  width: 100%;
  aspect-ratio: 480/420;
  border: 2px dashed var(--accent-purple);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--menu-color);
  font-size: 13px;
  padding: 20px;
}
.why-content {
  flex: 1;
  max-width: 560px;
}
.section-title {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 68px;
  line-height: 71.4px;
  letter-spacing: -2.04px;
  color: var(--white);
  margin: 0 0 24px 0;
}
.why-content p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28.9px;
  letter-spacing: 0;
  color: var(--text-secondary);
  margin: 0 0 20px 0;
}

.gameplay-section {
  padding: 80px 0;
  text-align: center;
}
.gameplay-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}
.gameplay-list {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  padding-left: 40px;
}
.gameplay-item {
  margin-bottom: 36px;
}
.gameplay-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.gameplay-item-header svg {
  flex-shrink: 0;
  color: var(--accent-purple);
}
.gameplay-item-header h3 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0;
  color: var(--white);
  margin: 0;
}
.gameplay-item p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28.9px;
  letter-spacing: 0;
  color: var(--text-secondary);
  margin: 0;
  padding-left: 30px;
}

.reviews-section {
  padding: 80px 0;
  text-align: center;
}
.reviews-section .section-title {
  text-align: center;
  margin-bottom: 24px;
}
.reviews-intro {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28.9px;
  letter-spacing: 0;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 50px auto;
}
.reviews-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.review-card {
  width: 365px;
  min-height: 132px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid var(--accent-cyan);
  background: var(--card-bg);
  box-shadow:
    0px 2px 4px -2px #0000001a,
    0px 4px 6px -1px #0000001a;
}
.review-card p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28.9px;
  letter-spacing: 0;
  color: var(--text-secondary);
  margin: 0;
  text-align: left;
}

.support-section {
  padding: 80px 0 100px;
  text-align: center;
}
.support-section .section-title {
  text-align: center;
  margin-bottom: 24px;
}
.support-section .support-intro {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28.9px;
  letter-spacing: 0;
  color: var(--text-secondary);
  max-width: 748px;
  margin: 0 auto 32px auto;
}
.support-box {
  width: 287px;
  min-height: 68px;
  margin: 0 auto 32px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid var(--accent-cyan);
  background: var(--card-bg);
  box-shadow:
    0px 2px 4px -2px #0000001a,
    0px 4px 6px -1px #0000001a;
}
.support-box a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
}
.support-section .support-outro {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28.9px;
  letter-spacing: 0;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

footer {
  border-top: 1px solid var(--header-border);
  padding: 50px 0 40px;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
  color: var(--white);
  text-decoration: none;
}
.footer-copyright {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
  color: var(--white);
}

@media (max-width: 900px) {
  .container {
    padding: 0 24px;
  }
  .header-inner {
    padding: 16px 24px;
  }
  nav.desktop-nav {
    display: none;
  }
  .burger {
    display: block;
  }

  .hero {
    padding: 50px 0 40px;
  }
  .hero-inner {
    flex-direction: column;
    text-align: left;
  }
  .hero-content h1 {
    font-size: 38px;
    line-height: 42px;
    letter-spacing: -1px;
    max-width: 100%;
  }
  .hero-content p {
    font-size: 15px;
    line-height: 24px;
    max-width: 100%;
  }
  .btn-download {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
  .hero-image {
    width: 200px;
    margin: 30px auto 0;
  }

  .why-section {
    flex-direction: column;
    padding: 50px 24px;
    gap: 36px;
  }
  .why-image {
    order: 2;
  }
  .section-title {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -0.6px;
  }

  .gameplay-list {
    padding: 0 4px;
  }

  .reviews-cards {
    flex-direction: column;
    align-items: center;
  }
  .review-card,
  .support-box {
    width: 100%;
    max-width: 365px;
  }
  .support-section {
    padding-top: 50px;
  }
  .footer-links {
    gap: 32px;
  }
  .footer-links a,
  .footer-copyright {
    font-size: 16px;
  }
}

.policy-page {
  position: relative;
  padding: 60px 0 100px;
}

.policy-close {
  position: fixed;
  top: 24px;
  left: 40px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 50;
}

.policy-container {
  max-width: 1360px;
  margin: 0 auto;
}

.policy-title {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.6px;
  color: var(--white);
  text-align: center;
  margin: 0 0 40px 0;
}

.policy-content p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0;
  color: var(--text-secondary);
  text-align: justify;
  margin: 0 0 22px 0;
}

.policy-content h2 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--white);
  text-align: left;
  margin: 36px 0 16px 0;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content ul,
.policy-content ol {
  margin: 0 0 22px 0;
  padding-left: 24px;
}

.policy-content li {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0;
  color: var(--text-secondary);
  text-align: left;
  margin-bottom: 12px;
}

.policy-content a {
  color: var(--text-secondary);
  text-decoration: none;
}

.policy-content strong,
.policy-content b {
  color: var(--white);
  font-weight: 700;
}

.policy-content em {
  font-style: italic;
}

.policy-updated {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: var(--text-secondary);
  text-align: left;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .policy-page {
    padding: 40px 0 70px;
  }
  .policy-close {
    top: 18px;
    left: 24px;
  }
  .policy-container {
    padding: 0 24px;
  }
  .policy-title {
    font-size: 26px;
    margin-bottom: 28px;
  }
  .policy-content p,
  .policy-content li {
    font-size: 14px;
    line-height: 23px;
    text-align: left;
  }
  .policy-content h2 {
    font-size: 16px;
    margin: 28px 0 12px 0;
  }
}
