:root {
  --color-bg: #e8f3fc;
  --color-bg-alt: #f6fbff;
  --color-accent: #21c97a;
  --color-accent-dark: #1aa65f;
  --color-accent-light: #6be6b9;
  --color-text: #25324b;
  --color-text-muted: #6d7b8a;
  --color-border: #21c97a;
  --color-shadow: rgba(33, 201, 122, 0.08);
  --color-shadow-dark: rgba(33, 201, 122, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-lg: 0 8px 32px var(--color-shadow-dark);
  --shadow-md: 0 4px 16px var(--color-shadow);
  --shadow-sm: 0 2px 8px var(--color-shadow);
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
  --max-width: 1240px;
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-size: 14px;
  --font-size-lg: 1.5rem;
  --font-size-md: 1.15rem;
  --font-size-sm: 0.95rem;
  --section-spacing: 52px;
}

html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: var(--font-size);
  line-height: 1.6;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body.jungleadventures4-body {
  margin: 0;
  background: var(--color-bg);
}

/* --- HEADER --- */
.jungleadventures4-header {
  background: #fff;
  box-shadow: var(--shadow-md);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.jungleadventures4-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  min-height: 68px;
}

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

.jungleadventures4-logo__img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.jungleadventures4-logo__img:hover {
  box-shadow: 0 0 0 3px var(--color-accent-light);
}

.jungleadventures4-nav__list {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.jungleadventures4-nav__link {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-xs);
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.jungleadventures4-nav__link:hover,
.jungleadventures4-nav__link:focus {
  background: var(--color-accent);
  color: #fff;
}

/* --- GENERIC SECTION --- */
.jungleadventures4-section {
  padding: var(--section-spacing) 0;
  background: var(--color-bg-alt);
}
.jungleadventures4-section:nth-child(even) {
  background: #fff;
}
.jungleadventures4-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* --- HERO --- */
.jungleadventures4-hero {
  background: linear-gradient(100deg, #e8f3fc 60%, #d6fbe6 100%);
  padding: 64px 0 56px 0;
  box-shadow: var(--shadow-lg);
}
.jungleadventures4-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
  padding: 0 24px;
}
.jungleadventures4-hero__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.jungleadventures4-hero__col--text {
  gap: 18px;
}
.jungleadventures4-hero__title {
  font-size: 2.1rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -1px;
}
.jungleadventures4-hero__subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin: 0 0 16px 0;
}
.jungleadventures4-hero__summary {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 18px 22px;
  margin-bottom: 18px;
  color: var(--color-text);
  font-size: var(--font-size);
}
.jungleadventures4-hero__actions {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 10px;
}
.jungleadventures4-hero__button {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  letter-spacing: 0.5px;
}
.jungleadventures4-hero__button:hover, .jungleadventures4-hero__button:focus {
  background: var(--color-accent-dark);
  box-shadow: 0 6px 18px var(--color-shadow-dark);
  transform: translateY(-2px) scale(1.03);
}
.jungleadventures4-hero__muted {
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  transition: color var(--transition);
  border-bottom: 1px dashed var(--color-accent);
}
.jungleadventures4-hero__muted:hover,
.jungleadventures4-hero__muted:focus {
  color: var(--color-accent-dark);
  border-bottom: 1px solid var(--color-accent-dark);
}
.jungleadventures4-hero__col--visual {
  align-items: flex-end;
}
.jungleadventures4-hero__image {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg) var(--radius-md) var(--radius-lg) var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 340px;
  background: #fff;
}

/* --- WORLD SECTION --- */
.jungleadventures4-world .jungleadventures4-section__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}
.jungleadventures4-section__media {
  display: flex;
  align-items: center;
  justify-content: center;
}
.jungleadventures4-world__image {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  width: 100%;
  max-height: 300px;
  background: #fff;
}
.jungleadventures4-section__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}
.jungleadventures4-section__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: var(--color-text);
  letter-spacing: -0.5px;
}
.jungleadventures4-world__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.jungleadventures4-world__item {
  position: relative;
  margin-bottom: 9px;
  padding-left: 22px;
  color: var(--color-text);
  font-size: var(--font-size);
}
.jungleadventures4-world__item::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 2px #fff, 0 2px 8px var(--color-shadow);
}

/* --- MECHANICS SECTION --- */
.jungleadventures4-mechanics .jungleadventures4-section__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: flex-start;
}
.jungleadventures4-mechanics__block {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 18px 22px 16px 22px;
  margin-bottom: 18px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.jungleadventures4-mechanics__block:hover {
  box-shadow: 0 6px 18px var(--color-shadow-dark);
  transform: translateY(-2px) scale(1.01);
}
.jungleadventures4-mechanics__heading {
  font-size: 1.08rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--color-accent);
  letter-spacing: -0.2px;
}
.jungleadventures4-mechanics__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.jungleadventures4-mechanics__item {
  position: relative;
  padding-left: 18px;
  margin-bottom: 7px;
  font-size: var(--font-size);
  color: var(--color-text);
}
.jungleadventures4-mechanics__item::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}
.jungleadventures4-mechanics__text {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  margin: 0 0 4px 0;
}
.jungleadventures4-mechanics__image {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  width: 100%;
  max-height: 300px;
  background: #fff;
}

/* --- FEATURES SECTION --- */
.jungleadventures4-features .jungleadventures4-section__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.jungleadventures4-features__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.jungleadventures4-features__item {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 16px 20px;
  font-size: var(--font-size);
  color: var(--color-text);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.jungleadventures4-features__item::before {
  content: '';
  position: absolute;
  left: 12px; top: 22px;
  width: 7px; height: 7px;
  background: var(--color-accent);
  border-radius: 50%;
}
.jungleadventures4-features__visual {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}
.jungleadventures4-features__image {
  max-width: 320px;
  width: 100%;
  border-radius: var(--radius-lg) var(--radius-md) var(--radius-lg) var(--radius-md);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  background: #fff;
}

/* --- LOOP SECTION --- */
.jungleadventures4-loop__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.jungleadventures4-loop__item {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 14px 18px;
  position: relative;
  color: var(--color-text);
  font-size: var(--font-size);
  transition: box-shadow var(--transition), transform var(--transition);
}
.jungleadventures4-loop__item::before {
  content: counter(loopitem) ".";
  counter-increment: loopitem;
  color: var(--color-accent);
  font-weight: 600;
  margin-right: 8px;
  font-size: 1.1em;
  position: absolute;
  left: 14px; top: 13px;
}
.jungleadventures4-loop__list {
  counter-reset: loopitem;
}

/* --- FEEL SECTION --- */
.jungleadventures4-feel__list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.jungleadventures4-feel__item {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 14px 18px;
  color: var(--color-text);
  font-size: var(--font-size);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.jungleadventures4-feel__item strong {
  color: var(--color-accent);
}

/* --- HIGHLIGHTS SECTION --- */
.jungleadventures4-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 18px;
}
.jungleadventures4-card {
  background: #fff;
  border-radius: var(--radius-lg) var(--radius-md) var(--radius-lg) var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 20px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.jungleadventures4-card:hover {
  box-shadow: 0 8px 28px var(--color-shadow-dark);
  transform: translateY(-4px) scale(1.02);
}
.jungleadventures4-card__title {
  font-size: 1.08rem;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: var(--color-accent);
  letter-spacing: -0.2px;
}
.jungleadventures4-card__text {
  color: var(--color-text);
  font-size: var(--font-size);
  margin: 0;
}

/* --- FAQ SECTION --- */
.jungleadventures4-faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}
.jungleadventures4-faq__question {
  font-weight: 600;
  color: var(--color-accent-dark);
  font-size: var(--font-size-md);
  margin: 0 0 3px 0;
  background: #e8f3fc;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
}
.jungleadventures4-faq__answer {
  background: #fff;
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-sm);
  padding: 10px 16px;
  color: var(--color-text);
  font-size: var(--font-size);
  margin: 0 0 6px 0;
}

/* --- REVIEWS SECTION --- */
.jungleadventures4-review {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 16px 22px;
  margin-bottom: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.jungleadventures4-review:hover {
  box-shadow: 0 6px 18px var(--color-shadow-dark);
  transform: scale(1.01);
}
.jungleadventures4-review__quote {
  color: var(--color-text);
  font-size: var(--font-size);
  margin: 0;
}
.jungleadventures4-reviews__media {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}
.jungleadventures4-reviews__image {
  max-width: 320px;
  width: 100%;
  border-radius: var(--radius-lg) var(--radius-md) var(--radius-lg) var(--radius-md);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  background: #fff;
}

/* --- CONCLUSION SECTION --- */
.jungleadventures4-conclusion__cta {
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 14px 22px;
  font-weight: 600;
  font-size: var(--font-size-md);
  margin-top: 18px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

/* --- SCREENSHOTS SECTION --- */
.jungleadventures4-screenshots__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 16px;
  margin-top: 18px;
}
.jungleadventures4-screenshot {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.jungleadventures4-screenshot:hover {
  box-shadow: 0 8px 28px var(--color-shadow-dark);
  transform: scale(1.03);
}
.jungleadventures4-screenshot__img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: #f6fbff;
  transition: filter var(--transition);
}
.jungleadventures4-screenshot:hover .jungleadventures4-screenshot__img {
  filter: brightness(1.08) saturate(1.2);
}
.jungleadventures4-screenshot__caption {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  padding: 8px 10px 10px 10px;
  text-align: center;
}

/* --- CONTACT SECTION --- */
.jungleadventures4-contact__download {
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  display: inline-block;
  margin: 10px 0 16px 0;
}
.jungleadventures4-contact__download:hover,
.jungleadventures4-contact__download:focus {
  background: var(--color-accent-dark);
  box-shadow: 0 6px 18px var(--color-shadow-dark);
  transform: translateY(-2px) scale(1.03);
}
.jungleadventures4-contact__note {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  margin-top: 10px;
}

/* --- FOOTER --- */
.jungleadventures4-footer {
  background: #fff;
  border-top: 1px solid #e6f4ee;
  box-shadow: 0 -2px 16px var(--color-shadow);
  padding: 0;
  margin-top: 48px;
}
.jungleadventures4-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 32px 24px 18px 24px;
}
.jungleadventures4-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.jungleadventures4-footer__logoimg {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  margin-bottom: 4px;
}
.jungleadventures4-footer__about,
.jungleadventures4-footer__legal,
.jungleadventures4-footer__note {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  margin: 0;
}
.jungleadventures4-footer__heading {
  font-size: var(--font-size-md);
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.jungleadventures4-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.jungleadventures4-footer__link {
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--font-size);
  transition: color var(--transition);
  border-bottom: 1px dotted var(--color-accent);
  padding-bottom: 2px;
}
.jungleadventures4-footer__link:hover,
.jungleadventures4-footer__link:focus {
  color: var(--color-accent-dark);
  border-bottom: 1px solid var(--color-accent);
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .jungleadventures4-hero__inner,
  .jungleadventures4-world .jungleadventures4-section__inner,
  .jungleadventures4-mechanics .jungleadventures4-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .jungleadventures4-highlights__grid,
  .jungleadventures4-screenshots__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jungleadventures4-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 800px) {
  .jungleadventures4-features__list,
  .jungleadventures4-loop__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .jungleadventures4-highlights__grid,
  .jungleadventures4-screenshots__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .jungleadventures4-footer__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .jungleadventures4-header__inner {
    flex-direction: column;
    gap: 12px;
    padding: 0 14px;
  }
}

@media (max-width: 600px) {
  .jungleadventures4-section,
  .jungleadventures4-hero {
    padding: 28px 0;
  }
  .jungleadventures4-section__inner,
  .jungleadventures4-hero__inner {
    padding: 0 6px;
  }
  .jungleadventures4-hero__title {
    font-size: 1.3rem;
  }
  .jungleadventures4-section__title {
    font-size: 1.08rem;
  }
  .jungleadventures4-hero__button,
  .jungleadventures4-contact__download {
    padding: 10px 18px;
    font-size: 0.98rem;
  }
  .jungleadventures4-hero__image,
  .jungleadventures4-world__image,
  .jungleadventures4-mechanics__image,
  .jungleadventures4-features__image,
  .jungleadventures4-reviews__image {
    max-width: 100%;
    max-height: 180px;
  }
  .jungleadventures4-screenshot__img {
    height: 80px;
  }
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent-light);
  border-radius: 8px;
}