html,
body {
  box-sizing: border-box;
  height: 100%;
  min-height: 100%;
  font-size: 14px;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #fffbe7 0%, #fffde9 100%);
  color: #2b2e2f;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  --main-bg: #fffbe7;
  --main-bg-gradient: linear-gradient(135deg, #fffbe7 0%, #fffde9 100%);
  --accent: #3ad06b;
  --accent-hover: #2bb255;
  --accent-bg: rgba(58, 208, 107, 0.07);
  --shadow: 0 4px 24px 0 rgba(60, 72, 88, 0.08), 0 1.5px 8px 0 rgba(58, 208, 107, 0.06);
  --card-radius: 18px;
  --card-radius-lg: 28px;
  --card-radius-sm: 10px;
  --border: 1px solid #3ad06b;
  --text-muted: #7c7f81;
  --section-padding: 48px 0 40px 0;
  --container-max: 1240px;
  --transition: 0.22s cubic-bezier(.55,.08,.68,.53);
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.AnimalGamesDoctorForKids-body {
  background: var(--main-bg-gradient);
  min-height: 100vh;
}

/* Container */
.AnimalGamesDoctorForKids-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.AnimalGamesDoctorForKids-header {
  background: rgba(255, 251, 231, 0.97);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 20;
  transition: box-shadow var(--transition);
}

.AnimalGamesDoctorForKids-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 18px 20px 14px 20px;
}

.AnimalGamesDoctorForKids-logo__img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 2px 10px 0 rgba(58, 208, 107, 0.11);
  background: #fff;
  object-fit: cover;
  display: block;
  transition: box-shadow var(--transition);
}

.AnimalGamesDoctorForKids-logo:hover .AnimalGamesDoctorForKids-logo__img {
  box-shadow: 0 4px 18px 0 rgba(58, 208, 107, 0.18);
}

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

.AnimalGamesDoctorForKids-nav__link {
  color: #2b2e2f;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  position: relative;
}

.AnimalGamesDoctorForKids-nav__link:hover,
.AnimalGamesDoctorForKids-nav__link:focus {
  background: var(--accent-bg);
  color: var(--accent);
}

/* Hero Section */
.AnimalGamesDoctorForKids-hero {
  padding: 48px 0 38px 0;
  background: linear-gradient(120deg, #fffbe7 80%, #fffde9 100%);
  box-shadow: 0 4px 32px 0 rgba(60, 72, 88, 0.04);
}

.AnimalGamesDoctorForKids-hero__inner {
  display: flex;
  gap: 48px;
  align-items: stretch;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.AnimalGamesDoctorForKids-hero__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.AnimalGamesDoctorForKids-hero__col--left {
  max-width: 520px;
  padding-right: 20px;
}

.AnimalGamesDoctorForKids-hero__title {
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0 0 10px 0;
  letter-spacing: -1.2px;
  color: #212523;
  line-height: 1.1;
}

.AnimalGamesDoctorForKids-hero__tagline {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
  margin-top: 0;
}

.AnimalGamesDoctorForKids-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin: 0 0 18px 0;
  padding: 0;
  list-style: none;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.AnimalGamesDoctorForKids-hero__meta-item {
  padding-left: 18px;
  position: relative;
}
.AnimalGamesDoctorForKids-hero__meta-item::before {
  content: '';
  display: block;
  position: absolute;
  left: 4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
  opacity: 0.36;
}

.AnimalGamesDoctorForKids-hero__short {
  color: #3d3f41;
  margin-bottom: 26px;
  margin-top: 0;
  line-height: 1.6;
}

.AnimalGamesDoctorForKids-hero__actions {
  display: flex;
  gap: 18px;
  margin-top: 6px;
}

.AnimalGamesDoctorForKids-playstore-btn,
.AnimalGamesDoctorForKids-scroll-btn {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 32px;
  border: none;
  outline: none;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 14px 0 rgba(58, 208, 107, 0.13);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
}
.AnimalGamesDoctorForKids-scroll-btn {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}
.AnimalGamesDoctorForKids-playstore-btn:hover, .AnimalGamesDoctorForKids-playstore-btn:focus {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: 0 4px 18px 0 rgba(58, 208, 107, 0.13);
}
.AnimalGamesDoctorForKids-scroll-btn:hover, .AnimalGamesDoctorForKids-scroll-btn:focus {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}

.AnimalGamesDoctorForKids-hero__col--right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.AnimalGamesDoctorForKids-hero__visuals {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  min-width: 260px;
}

.AnimalGamesDoctorForKids-hero__img {
  width: 320px;
  max-width: 100%;
  border-radius: var(--card-radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  background: #fff;
  display: block;
}

.AnimalGamesDoctorForKids-hero__decor--small {
  position: absolute;
  right: -22px;
  bottom: -26px;
  width: 92px;
  height: auto;
  opacity: 0.92;
  pointer-events: none;
}

/* Screenshots Section */
.AnimalGamesDoctorForKids-screenshots {
  padding: var(--section-padding);
  background: linear-gradient(120deg, #fffbe7 90%, #fffde9 100%);
}

.AnimalGamesDoctorForKids-section__title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #262a28;
  letter-spacing: -0.5px;
}

.AnimalGamesDoctorForKids-section__lead {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
}

.AnimalGamesDoctorForKids-screenshots__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 22px;
}

.AnimalGamesDoctorForKids-screenshot {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 12px 12px 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow var(--transition), transform var(--transition);
  min-width: 0;
}

.AnimalGamesDoctorForKids-screenshot:hover {
  box-shadow: 0 8px 32px 0 rgba(58, 208, 107, 0.16);
  transform: translateY(-3px) scale(1.025);
}

.AnimalGamesDoctorForKids-screenshot__img {
  width: 100%;
  max-width: 220px;
  max-height: 140px;
  object-fit: cover;
  border-radius: var(--card-radius-sm);
  margin-bottom: 10px;
  background: #f7f7f7;
}

.AnimalGamesDoctorForKids-screenshot__cap {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
  margin-top: 4px;
}

/* World Section */
.AnimalGamesDoctorForKids-world {
  padding: var(--section-padding);
  background: linear-gradient(120deg, #fffbe7 95%, #fffde9 100%);
}

.AnimalGamesDoctorForKids-world__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 34px;
}

.AnimalGamesDoctorForKids-world__col {
  background: #fff;
  border-radius: var(--card-radius-lg);
  box-shadow: var(--shadow);
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.AnimalGamesDoctorForKids-world__col--visual {
  align-items: center;
  justify-content: flex-start;
  padding: 16px 18px 18px 18px;
  background: #fff;
  min-width: 0;
}

.AnimalGamesDoctorForKids-world__img {
  width: 100%;
  max-width: 260px;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--card-radius);
  margin-bottom: 18px;
  box-shadow: 0 2px 12px 0 rgba(58, 208, 107, 0.11);
}

.AnimalGamesDoctorForKids-world__list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.98rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.AnimalGamesDoctorForKids-world__list li {
  position: relative;
  padding-left: 18px;
}
.AnimalGamesDoctorForKids-world__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.21;
}

.AnimalGamesDoctorForKids-world__elements {
  margin: 18px 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  color: #3d3f41;
}
.AnimalGamesDoctorForKids-world__elements li {
  position: relative;
  padding-left: 22px;
}
.AnimalGamesDoctorForKids-world__elements li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.17;
}

/* Subtitle */
.AnimalGamesDoctorForKids-subtitle {
  font-size: 1.13rem;
  font-weight: 700;
  color: #2b2e2f;
  margin: 18px 0 7px 0;
  letter-spacing: -0.2px;
}

/* Howto Section */
.AnimalGamesDoctorForKids-howto {
  padding: var(--section-padding);
  background: linear-gradient(120deg, #fffbe7 98%, #fffde9 100%);
}

.AnimalGamesDoctorForKids-howto__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 44px;
  align-items: flex-start;
}

.AnimalGamesDoctorForKids-howto__col {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 28px 26px 24px 26px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.AnimalGamesDoctorForKids-howto__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #3d3f41;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.AnimalGamesDoctorForKids-howto__steps li {
  position: relative;
  padding-left: 22px;
}
.AnimalGamesDoctorForKids-howto__steps li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.17;
}

.AnimalGamesDoctorForKids-subsubtitle {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--accent);
  margin: 14px 0 4px 0;
  letter-spacing: -0.1px;
}

.AnimalGamesDoctorForKids-howto__text {
  color: var(--text-muted);
  margin-bottom: 6px;
  margin-top: 0;
  line-height: 1.6;
}

/* Rhythm Section */
.AnimalGamesDoctorForKids-rhythm {
  padding: var(--section-padding);
  background: linear-gradient(120deg, #fffbe7 94%, #fffde9 100%);
}

.AnimalGamesDoctorForKids-rhythm__content {
  background: #fff;
  border-radius: var(--card-radius-lg);
  box-shadow: var(--shadow);
  padding: 34px 32px 28px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.AnimalGamesDoctorForKids-rhythm__steps {
  margin: 0 0 16px 0;
  padding: 0 0 0 16px;
  color: #3d3f41;
  font-size: 1rem;
}

.AnimalGamesDoctorForKids-rhythm__reasons {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.AnimalGamesDoctorForKids-rhythm__reasons li {
  position: relative;
  padding-left: 18px;
}
.AnimalGamesDoctorForKids-rhythm__reasons li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.15;
}

/* Features Section */
.AnimalGamesDoctorForKids-features {
  padding: var(--section-padding);
  background: linear-gradient(120deg, #fffbe7 97%, #fffde9 100%);
}

.AnimalGamesDoctorForKids-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}

.AnimalGamesDoctorForKids-features__item {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 26px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  transition: box-shadow var(--transition), transform var(--transition);
}
.AnimalGamesDoctorForKids-features__item:hover {
  box-shadow: 0 8px 32px 0 rgba(58, 208, 107, 0.14);
  transform: translateY(-2px) scale(1.018);
}

.AnimalGamesDoctorForKids-features__text {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.98rem;
}

/* Content Section */
.AnimalGamesDoctorForKids-content {
  padding: var(--section-padding);
  background: linear-gradient(120deg, #fffbe7 91%, #fffde9 100%);
}

.AnimalGamesDoctorForKids-content__cols {
  display: flex;
  gap: 36px;
  margin-bottom: 32px;
}
.AnimalGamesDoctorForKids-content__col {
  flex: 1 1 0;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 22px 18px 18px 18px;
  min-width: 0;
}
.AnimalGamesDoctorForKids-content__list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #3d3f41;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.AnimalGamesDoctorForKids-content__list li {
  position: relative;
  padding-left: 20px;
}
.AnimalGamesDoctorForKids-content__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.15;
}

.AnimalGamesDoctorForKids-content__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.AnimalGamesDoctorForKids-content__img {
  width: 340px;
  max-width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--card-radius-lg);
  box-shadow: 0 2px 12px 0 rgba(58, 208, 107, 0.13);
}

/* FAQ Section */
.AnimalGamesDoctorForKids-faq {
  padding: var(--section-padding);
  background: linear-gradient(120deg, #fffbe7 96%, #fffde9 100%);
}

.AnimalGamesDoctorForKids-faq__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}

.AnimalGamesDoctorForKids-faq__item {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 22px 20px 18px 20px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.AnimalGamesDoctorForKids-faq__text {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.98rem;
}

/* Reviews Section */
.AnimalGamesDoctorForKids-reviews {
  padding: var(--section-padding);
  background: linear-gradient(120deg, #fffbe7 93%, #fffde9 100%);
}

.AnimalGamesDoctorForKids-reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 32px;
}

.AnimalGamesDoctorForKids-review {
  background: #fff;
  border-radius: var(--card-radius-lg);
  box-shadow: var(--shadow);
  padding: 24px 22px 18px 22px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.AnimalGamesDoctorForKids-review__quote {
  font-size: 1.08rem;
  font-style: italic;
  color: #262a28;
  margin: 0 0 10px 0;
  line-height: 1.5;
}
.AnimalGamesDoctorForKids-review__meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: right;
}

/* Footer */
.AnimalGamesDoctorForKids-footer {
  background: #fffbe7;
  border-top: 1px solid #f5eebc;
  padding: 0;
  margin: 0;
  box-shadow: 0 -2px 16px 0 rgba(58, 208, 107, 0.05);
}

.AnimalGamesDoctorForKids-footer__grid {
  display: grid;
  grid-template-columns: 2.1fr 1.1fr 1.1fr 1.7fr;
  gap: 38px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 38px 20px 18px 20px;
}

.AnimalGamesDoctorForKids-footer__logoimg {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 2px 10px 0 rgba(58, 208, 107, 0.10);
  background: #fff;
  object-fit: cover;
  margin-bottom: 8px;
}

.AnimalGamesDoctorForKids-footer__about {
  color: var(--text-muted);
  font-size: 0.97rem;
  margin: 0 0 10px 0;
}

.AnimalGamesDoctorForKids-footer__title {
  font-size: 1.04rem;
  font-weight: 700;
  color: #2b2e2f;
  margin-bottom: 10px;
}

.AnimalGamesDoctorForKids-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.AnimalGamesDoctorForKids-footer__link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 500;
  padding: 4px 0;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.AnimalGamesDoctorForKids-footer__link:hover,
.AnimalGamesDoctorForKids-footer__link:focus {
  background: var(--accent-bg);
  color: var(--accent-hover);
}

.AnimalGamesDoctorForKids-footer__text {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin: 0 0 8px 0;
}

.AnimalGamesDoctorForKids-footer__bottom {
  border-top: 1px solid #f5eebc;
  margin-top: 18px;
  padding: 10px 20px 16px 20px;
  text-align: center;
}

.AnimalGamesDoctorForKids-footer__copy {
  color: #b1b2af;
  font-size: 0.93rem;
  margin: 0;
}

/* Cookie Banner */
.AnimalGamesDoctorForKids-cookie {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(58, 208, 107, 0.13);
  padding: 18px 32px 18px 24px;
  z-index: 1000;
  align-items: center;
  gap: 18px;
  min-width: 0;
  max-width: 96vw;
  flex-wrap: wrap;
  flex-direction: row;
}

.AnimalGamesDoctorForKids-cookie__text {
  color: #2b2e2f;
  font-size: 1rem;
  margin: 0;
  padding: 0 12px 0 0;
}

.AnimalGamesDoctorForKids-cookie__actions {
  display: flex;
  gap: 12px;
}

.AnimalGamesDoctorForKids-cookie__btn {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  box-shadow: 0 2px 10px 0 rgba(58, 208, 107, 0.10);
}
.AnimalGamesDoctorForKids-cookie__btn:hover,
.AnimalGamesDoctorForKids-cookie__btn:focus {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

/* Responsive Design */
@media (max-width: 1100px) {
  .AnimalGamesDoctorForKids-header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 12px 10px 12px;
  }
  .AnimalGamesDoctorForKids-hero__inner {
    flex-direction: column;
    gap: 36px;
    padding: 0 12px;
  }
  .AnimalGamesDoctorForKids-hero__col--left {
    padding-right: 0;
    max-width: 100%;
  }
  .AnimalGamesDoctorForKids-hero__img {
    width: 260px;
  }
  .AnimalGamesDoctorForKids-screenshots__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 14px;
  }
  .AnimalGamesDoctorForKids-world__grid,
  .AnimalGamesDoctorForKids-howto__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .AnimalGamesDoctorForKids-features__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }
  .AnimalGamesDoctorForKids-content__cols {
    flex-direction: column;
    gap: 18px;
  }
  .AnimalGamesDoctorForKids-content__img {
    width: 100%;
    max-width: 320px;
  }
  .AnimalGamesDoctorForKids-faq__list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .AnimalGamesDoctorForKids-reviews__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .AnimalGamesDoctorForKids-footer__grid {
    grid-template-columns: 1.7fr 1fr 1fr;
    gap: 24px 12px;
    padding: 28px 12px 12px 12px;
  }
}

@media (max-width: 700px) {
  html, body {
    font-size: 13px;
  }
  .AnimalGamesDoctorForKids-header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 6px 8px 6px;
  }
  .AnimalGamesDoctorForKids-nav__list {
    flex-wrap: wrap;
    gap: 10px;
  }
  .AnimalGamesDoctorForKids-hero {
    padding: 30px 0 22px 0;
  }
  .AnimalGamesDoctorForKids-hero__inner {
    gap: 18px;
    padding: 0 6px;
  }
  .AnimalGamesDoctorForKids-hero__img {
    width: 92vw;
    max-width: 100%;
  }
  .AnimalGamesDoctorForKids-hero__decor--small {
    display: none;
  }
  .AnimalGamesDoctorForKids-screenshots {
    padding: 28px 0 18px 0;
  }
  .AnimalGamesDoctorForKids-screenshots__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .AnimalGamesDoctorForKids-world,
  .AnimalGamesDoctorForKids-howto,
  .AnimalGamesDoctorForKids-rhythm,
  .AnimalGamesDoctorForKids-features,
  .AnimalGamesDoctorForKids-content,
  .AnimalGamesDoctorForKids-faq,
  .AnimalGamesDoctorForKids-reviews {
    padding: 24px 0 14px 0;
  }
  .AnimalGamesDoctorForKids-world__col,
  .AnimalGamesDoctorForKids-howto__col,
  .AnimalGamesDoctorForKids-rhythm__content,
  .AnimalGamesDoctorForKids-features__item,
  .AnimalGamesDoctorForKids-content__col,
  .AnimalGamesDoctorForKids-faq__item,
  .AnimalGamesDoctorForKids-review {
    padding: 14px 10px 12px 10px;
    border-radius: 14px;
  }
  .AnimalGamesDoctorForKids-world__img,
  .AnimalGamesDoctorForKids-content__img {
    max-width: 100vw;
    max-height: 180px;
    border-radius: 12px;
  }
  .AnimalGamesDoctorForKids-world__elements {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .AnimalGamesDoctorForKids-features__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .AnimalGamesDoctorForKids-footer__grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 6px 6px 6px;
  }
  .AnimalGamesDoctorForKids-footer__bottom {
    padding: 8px 6px 10px 6px;
  }
  .AnimalGamesDoctorForKids-cookie {
    padding: 12px 10px 12px 12px;
    border-radius: 14px;
    bottom: 10px;
    font-size: 0.98rem;
  }
}

/* Hide scrollbars for aesthetic */
body::-webkit-scrollbar {
  width: 8px;
  background: #fffbe7;
}
body::-webkit-scrollbar-thumb {
  background: #f7f7f7;
  border-radius: 8px;
}