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

:root {
  --header-bg: #eef5f7;
  --nav-color: #15202c;
  --hero-title-color: #fafafa;
  --hero-title-stroke: #2f4052;
  --section-title-bg: #6f95bc;
  --section-title-color: #1d1711;
  --section-title-border: #2f4052;
  --text-color: #15202c;
  --card-bg: #d8e8f3;
  --card-border: #6f95bc;
  --footer-bg: #6f95bc;
  --footer-color: #fafafa;
  --btn-bg: #0a3b67;
  --btn-border: #6f95bc;
  --btn-shadow: 2px 3px 3px 0px #28407080;
  --title-card: #2f4052;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Livvic", sans-serif;
  font-weight: 400;
  color: var(--text-color);
  background: #fff;
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(47, 64, 82, 0.12);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-wrap img {
  width: 32px;
  height: 32px;
  opacity: 1;
  border-radius: 8px;
  object-fit: contain;
}
.logo-placeholder {
  width: 32px;
  height: 32px;
  background: var(--section-title-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
nav a {
  font-family: "Livvic", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(21, 32, 44, 0.65);
  text-decoration: none;
  transition: color 0.15s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
nav a:hover {
  color: #15202c;
}
nav a.active,
nav a:active {
  color: #15202c;
  border-bottom: 2px solid #15202c;
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-circle {
  width: 40px;
  height: 40px;
  background-color: #6f95bc;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  transition: background 0.3s;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #eef5f7;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 52px;
  left: 0;
  width: 100%;
  height: calc(100vh - 52px);
  background: #eef5f7;
  display: none;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  z-index: 999;
  align-items: stretch;
  padding: 40px 20px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: "Livvic", sans-serif;
  font-size: 16px;
  color: #15202c;
  text-decoration: none;
  padding: 15px 0;
  text-align: center;
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 2px solid transparent;
}

.mobile-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  height: 2px;
  background-color: transparent;
  transition: background-color 0.2s;
}

.mobile-menu a.active::after {
  background-color: #15202c;
}

.mobile-footer-links a::after {
  display: none;
}
.mobile-menu a:active,
.mobile-menu a.active {
  border-bottom: 2px solid #15202c;
}

.mobile-footer-links {
  margin-top: auto;
  margin-bottom: 40px;
  display: flex;
  gap: 20px;
}

.mobile-footer-links a {
  font-size: 14px;
  color: rgba(21, 32, 44, 0.6);
  border-bottom: none !important;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

/* ── GOOGLE PLAY BUTTON ── */
.gplay-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 40px;
  background: var(--btn-bg);
  border: 1px solid var(--btn-border);
  box-shadow: var(--btn-shadow);
  border-radius: 16px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s,
    box-shadow 0.2s;
}
.gplay-btn:hover {
  background: linear-gradient(180deg, #15202c 0%, #0a3b67 100%);
  box-shadow: var(--btn-shadow);
}
.gplay-btn:active {
  background: linear-gradient(180deg, #15202c 0%, #0a3b67 100%);
  box-shadow: none;
}
.gplay-btn-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.gplay-btn-inner span.small {
  font-family: "Livvic", sans-serif;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1;
}
.gplay-btn-inner span.big {
  font-family: "Livvic", sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.gplay-icon {
  width: 24px;
  height: 24px;
}

/* ── SECTION TITLE ── */
.section-title-wrap {
  background: var(--section-title-bg);
  text-align: center;
  /* padding: 10px 24px; */
  padding-top: 80px;
  padding-bottom: 16px;
}
.section-title-wrap h2 {
  font-family: "Luckiest Guy", sans-serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--header-bg);
  -webkit-text-stroke: 1px var(--section-title-border);
}

/* ── GENERAL TEXT ── */
.general-text {
  font-family: "Livvic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0;
  text-align: center;
  color: var(--text-color);
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 803px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.desktop-only {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile-only {
  display: none;
}

.hero-text-block {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  text-align: center;
}
.hero-btn-block {
  position: absolute;
  bottom: 520px;
  z-index: 2;
}
.hero-bg {
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-title {
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  font-size: 48px;
  line-height: 160%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--hero-title-color);
  -webkit-text-stroke: 6px var(--hero-title-stroke);
  paint-order: stroke fill;
  width: 100%;
  margin-bottom: 0;
}
.hero-sub {
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  font-size: 24px;
  line-height: 160%;
  letter-spacing: 0;
  text-align: center;
  color: var(--hero-title-color);
  -webkit-text-stroke: 4px var(--hero-title-stroke);
  paint-order: stroke fill;
  margin-bottom: 17px;
}

/* ── ABOUT ── */
.about {
  background-color: var(--card-bg);
}
.about-section {
  padding: 48px 24px;
  max-width: 800px;
  margin: 0 auto;
}

/* ── GAMEPLAY MECHANICS ── */
.gameplay-section {
  padding: 0 0 48px;
  background: #f5f9fc;
}
.gameplay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 32px auto 0;
  padding: 0 24px;
  align-items: stretch;
}
.gameplay-card {
  background: var(--card-bg);
  border: 4px solid var(--card-border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  padding: 20px;
}
.gameplay-card-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.gameplay-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #4a6d8a;
  text-align: center;
  font-family: "Livvic", sans-serif;
}
.gameplay-card h3 {
  font-family: "Livvic", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--title-card);
  text-align: center;
  padding-top: 0;
}
.gameplay-card p {
  font-family: "Livvic", sans-serif;
  font-size: 16px;
  line-height: 160%;
  color: var(--text-color);
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}

/* ── FEATURES ── */
.features-section {
  padding: 0 0 48px;
  background-color: var(--card-bg);
}
.features-inner {
  margin: 32px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.features-center {
  display: flex;
  flex-direction: column;
  gap: 23px;
  align-items: flex-start;
}
.features-headline {
  font-family: "Luckiest Guy", cursive;
  font-size: 24px;
  line-height: 140%;
  font-weight: 400;
  color: var(--btn-border);
  text-align: center;
  -webkit-text-stroke: 1px var(--hero-title-stroke);
  paint-order: stroke fill;
  grid-column: 1 / -1;
  margin-bottom: 8px;
}
.feat-sub {
  max-width: 1050px;
  margin: 0 auto;
  padding: 32px 24px 0;
}
.feat-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
  align-items: center;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Livvic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color);
}
.feature-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.features-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── WORLD PROGRESSION ── */

.world-desc {
  max-width: 909px;
  margin: 24px auto 0;
  padding: 0 24px;
}
.general-text {
  padding-bottom: 40px;
}

/* ── VISUAL GALLERY SLIDER ── */
.gallery-section {
  padding: 0 0 48px;
  background-color: var(--card-bg);
}

.slider-container {
  position: relative;
  max-width: 1150px;
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-wrap {
  position: relative;
  max-width: 1000px;
  overflow: hidden;
  padding: 0 5px;
}
.slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
  will-change: transform;
}
.slide-item {
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 64px;
  height: 64px;
  background: var(--btn-bg);
  border: 1px solid var(--hero-title-stroke);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.15s;
}
.slider-btn::before {
  content: "";
  width: 16px;
  height: 16px;
  border-left: 2px solid var(--card-bg);
  border-bottom: 2px solid var(--card-bg);
  display: block;
}

.slider-btn.prev::before {
  transform: rotate(45deg);
  margin-left: 6px;
}

.slider-btn.next::before {
  transform: rotate(-135deg);
  margin-right: 6px;
}
.slider-btn:hover {
  background: #0f5ea5;
}
.slider-btn.prev {
  left: 0;
}
.slider-btn.next {
  right: 0;
}

/* ── PLAYER REVIEWS ── */
.reviews-section {
  padding: 0 0 48px;
  background: #f5f9fc;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 1178px;
  margin: 32px auto 0;
  padding: 0 24px;
}
.review-card {
  background: var(--card-border);
  border: 2px solid var(--hero-title-stroke);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-name {
  font-family: "Livvic", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--card-bg);
}
.stars {
  color: #f0a500;
  font-size: 13px;
  letter-spacing: 1px;
}
.review-text {
  font-family: "Livvic", sans-serif;
  font-size: 16px;
  line-height: 160%;
  color: var(--header-bg);
}

/* ── FAQ ── */
.faq-section {
  padding: 0 0 48px;
  background-color: var(--card-bg);
}
.faq-inner {
  max-width: 1062px;
  margin: 32px auto 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  /* gap: 4px; */
}
.faq-item {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--card-border);
  padding: 24px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: "Livvic", sans-serif;
  font-size: 18px;
  color: var(--text-color);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover {
  background: transparent;
  color: #0f5ea5;
}
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2b4560;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.3s ease,
    background 0.3s;
}
.faq-icon::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.3s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
  font-family: "Livvic", sans-serif;
  font-size: 16px;
  line-height: 160%;
  color: var(--text-color);
  background: transparent;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 16px 0 24px;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

/* ── CONTACT ── */
.contact-section {
  padding: 0 0 48px;
  background: #f5f9fc;
}
.contact-inner {
  max-width: 800px;
  margin: 40px auto 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-label {
  font-family: "Livvic", sans-serif;
  font-size: 18px;
  color: #334;
  font-weight: 500;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0a3b67;
  font-family: "Livvic", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.contact-link:hover {
  opacity: 0.8;
}
.email-icon {
  display: flex;
  align-items: center;
  width: 20.575000762939453px;
  height: 17.600000381469727px;
}

.email-icon img {
  width: 100%;
  display: block;
}

/* ── BEFORE FOOTER BANNER ── */
.cta-banner {
  width: 100%;
  max-width: 100%;
  height: 404px;
  display: flex;
  overflow: hidden;
}

.cta-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── FOOTER ── */
footer {
  background: var(--footer-bg);
  color: var(--footer-color);
  padding-top: 80px;
  padding-bottom: 54px;
  text-align: center;
  gap: 16px;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-family: "Livvic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  color: var(--footer-color);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer-copy {
  font-family: "Livvic", sans-serif;
  font-size: 14px;
  line-height: 160%;
  opacity: 0.75;
  color: var(--footer-color);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    height: auto;
    position: static;
    padding-top: 30px;
    background-color: var(--card-bg);
  }
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
    width: 100%;
    height: auto;
  }

  .hero-text-block {
    position: static;
    margin-top: 0;
    padding: 30px 20px;
    background-color: var(--card-bg);
    width: 100%;
  }

  .hero-image-wrap {
    position: static;
    height: auto;
    width: 100%;
  }

  .hero-btn-block {
    position: static;
    padding: 40px 20px;
    background-color: var(--card-bg);
    width: 100%;
    display: flex;
    justify-content: center;
  }

  nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 32px;
    -webkit-text-stroke: 4px var(--hero-title-stroke);
  }
  .hero-sub {
    font-size: 18px;
    -webkit-text-stroke: 2px var(--hero-title-stroke);
  }

  .features-inner {
    grid-template-columns: 1fr;
  }
  .features-headline {
    grid-column: 1;
  }
  .feat-tiles {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .features-center {
    display: flex;
    flex-direction: column;
    gap: 16px;
    order: 2;
  }

  .features-img img {
    max-width: 280px;
    height: auto;
  }

  .feat-tiles .features-img:first-child {
    order: 1;
  }
  .features-center {
    order: 2;
    align-items: center;
  }
  .feat-tiles .features-img:last-child {
    order: 3;
  }

  .world-grid {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none !important;
  }

  .slider-wrap {
    max-width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .slider-wrap::-webkit-scrollbar {
    display: none;
  }

  .slider-track {
    padding: 0 10px;
    transition: none;
    transform: none !important;
  }

  .slide-item {
    scroll-snap-align: center;
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-logo-title {
    font-size: 28px;
  }

  .cta-banner {
    height: 206px;
  }
}

@media (max-width: 480px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .gameplay-grid {
    grid-template-columns: 1fr;
  }
}

section {
  width: 100%;
}

.pp-body {
  background: #eef5f7;
  font-family: "Livvic", sans-serif;
  font-weight: 400;
  color: #15202c;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── BACK LINK ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Livvic", sans-serif;
  font-size: 14px;
  color: #15202c;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.15s;
  padding: 24px 0 0 204px;
}
.back-link:hover {
  opacity: 1;
}
.back-link svg {
  flex-shrink: 0;
}

/* ── MAIN CONTENT ── */
.pp-main {
  flex: 1;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px 64px;
}

/* ── PAGE TITLE ── */
.page-title {
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0;
  color: #2f4052;
  text-align: center;
  margin: 32px 0 40px;
}

/* ── LAST UPDATED / INTRO ── */
.intro-block {
  margin-bottom: 32px;
}
.intro-block p {
  font-family: "Livvic", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0;
  color: #15202c;
}
.intro-block p + p {
  margin-top: 4px;
}

/* ── SECTION ── */
.policy-section {
  margin-bottom: 32px;
}

/* ── SUBTITLE ── */
.policy-section h2 {
  font-family: "Livvic", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0;
  color: #15202c;
  margin-bottom: 20px;
}

/* ── BODY TEXT ── */
.policy-section p,
.policy-section li {
  font-family: "Livvic", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0;
  color: #15202c;
}

.policy-section ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.policy-section ul li {
  padding-left: 18px;
  position: relative;
}
.policy-section ul li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: #15202c;
}

/* nested list for GDPR rights */
.policy-section ul.rights-list {
  gap: 12px;
}
.policy-section ul.rights-list > li {
  padding-left: 0;
}
.policy-section ul.rights-list > li::before {
  display: none;
}

.rights-list .right-title {
  font-weight: 400;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.rights-list .right-title::before {
  content: "•";
  flex-shrink: 0;
  margin-top: 0;
}
.rights-list .right-desc {
  padding-left: 14px;
  margin-top: 2px;
  font-size: 14px;
  line-height: 150%;
  color: #15202c;
}

/* ── LINKS ── */
a.policy-link {
  color: #0a3b67;
  text-decoration: none;
  font-size: 14px;
  font-family: "Livvic", sans-serif;
  border-bottom: 1px solid rgba(10, 59, 103, 0.3);
  transition: border-color 0.15s;
}
a.policy-link:hover {
  border-bottom-color: #0a3b67;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .pp-main {
    padding: 0 20px 48px;
  }
  .page-title {
    font-size: 42px;
  }
  .back-link {
    padding: 24px 0 0 20px;
  }
}
