.review-pin {
  top: 46px;
  padding: 16px 22px;
  color: var(--asphalt);
  background: var(--white);
  box-shadow: var(--shadow);
}
.review-pin::after {
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 22px;
  height: 22px;
  content: "";
  background: var(--white);
  transform: translateX(-50%) rotate(45deg);
}
.xp-burst {
  bottom: 26px;
  color: var(--yellow);
  font-size: 26px;
}
.conquer-visual {
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(255, 159, 28, 0.32), transparent 55%), #243443;
}
.capture-flag {
  position: relative;
  z-index: 2;
  color: var(--yellow);
  font-size: 74px;
}
.capture-ring {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 5px solid var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 32px rgba(255, 159, 28, 0.6);
}
.capture-copy {
  position: absolute;
  bottom: 22px;
  font-weight: 900;
}

.faq-section {
  background: var(--paper);
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  position: relative;
  padding: 20px 38px 20px 0;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  position: absolute;
  top: 17px;
  right: 4px;
  content: "+";
  color: var(--orange-dark);
  font-size: 24px;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details p {
  max-width: 720px;
  margin: -6px 0 20px;
  color: var(--muted);
}

.news-section {
  overflow: hidden;
  background: var(--white);
}
.heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.news-scroller {
  display: grid;
  grid-auto-columns: minmax(280px, 84vw);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding: 2px 20px 18px 0;
  scroll-snap-type: x mandatory;
}
.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  scroll-snap-align: start;
}
.news-image {
  min-height: 168px;
}
.news-image-territory {
  background:
    linear-gradient(135deg, rgba(22, 139, 255, 0.88), rgba(118, 74, 241, 0.8)),
    radial-gradient(circle at 70% 30%, var(--yellow) 0 8%, transparent 9%);
}
.news-image-missions {
  background:
    radial-gradient(circle at 50% 45%, var(--cyan) 0 10%, transparent 11%),
    linear-gradient(145deg, var(--asphalt-2), #334d61);
}
.news-image-rewards {
  background:
    radial-gradient(circle, var(--yellow) 0 18%, var(--orange) 19% 31%, transparent 32%),
    var(--asphalt-2);
}
.news-body {
  padding: 18px;
}
.news-meta {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.news-body h3 {
  margin-bottom: 8px;
  font-size: 21px;
}
.news-body > p:last-of-type {
  color: var(--muted);
}
.news-body a {
  color: var(--orange-dark);
  font-weight: 900;
  text-decoration: none;
}

.final-cta {
  padding: 72px 20px;
  color: var(--white);
  text-align: center;
  background: var(--asphalt);
}
.final-cta > p:not(.eyebrow) {
  max-width: 550px;
  margin: 0 auto 24px;
  color: #b9c5ce;
}
.final-cta .hero-actions {
  justify-content: center;
}
.final-cta-mark {
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 52px;
}
.site-footer {
  padding: 42px 20px 110px;
  color: #c7d0d7;
  background: #0c1218;
}
.footer-brand {
  color: var(--white);
}
.site-footer > p {
  margin: 16px 0 24px;
  color: #8e9ba5;
}
.footer-links {
  display: grid;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid #293642;
  border-bottom: 1px solid #293642;
}
.footer-links a,
.footer-links button {
  width: fit-content;
  padding: 0;
  border: 0;
  color: inherit;
  background: none;
  text-decoration: none;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  color: #8e9ba5;
  font-size: 12px;
}
.footer-bottom label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom select {
  min-height: 44px;
  border: 1px solid #34434f;
  border-radius: 8px;
  color: var(--white);
  background: var(--asphalt);
}

.mobile-cta {
  position: fixed;
  z-index: 30;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid #34434f;
  background: rgba(12, 18, 24, 0.96);
  backdrop-filter: blur(12px);
  transform: translateY(110%);
  transition: transform 0.25s ease;
}
.mobile-cta.visible {
  transform: translateY(0);
}
.mobile-cta .button {
  min-height: 46px;
}
.cookie-banner {
  position: fixed;
  z-index: 40;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  padding: 16px;
  border: 1px solid #34434f;
  border-radius: 8px;
  color: var(--white);
  background: var(--asphalt);
  box-shadow: var(--shadow);
}
.cookie-banner.visible {
  display: block;
}
.cookie-banner p {
  margin-bottom: 14px;
  font-size: 13px;
}
.cookie-banner div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.cookie-banner .button {
  min-height: 44px;
  padding: 0 10px;
  font-size: 13px;
}

@media (min-width: 760px) {
  body.has-sticky-cta {
    padding-bottom: 0;
  }
  .site-header {
    padding: 18px 5vw;
  }
  .hero-content {
    padding-right: 5vw;
    padding-left: 5vw;
  }
  .section {
    padding: 92px 5vw;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 40px;
  }
  .section-cta {
    width: auto;
  }
  .game-loop {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .step-visual {
    min-height: 240px;
  }
  .news-scroller {
    grid-auto-columns: minmax(320px, 32vw);
  }
  .final-cta {
    padding: 100px 5vw;
  }
  .site-footer {
    padding: 56px 5vw;
  }
  .footer-links {
    grid-template-columns: repeat(5, auto);
    justify-content: start;
    gap: 26px;
  }
  .mobile-cta {
    display: none;
  }
  .cookie-banner {
    right: 24px;
    bottom: 24px;
    left: auto;
    width: 430px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-media video {
    display: none;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
