.page-poppy-playtime-chapter-1-2 {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0;
  background-color: #1a1a1a;
  line-height: 1.6;
  padding-top: 10px; /* Small decorative top padding, assuming body already handles header offset */
}

.page-poppy-playtime-chapter-1-2__hero-section {
  position: relative;
  height: 500px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('[GALLERY:hero:1920x1080:poppy playtime,horror,game,dark]');
  background-size: cover;
  background-position: center;
  margin-bottom: 40px;
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
}

.page-poppy-playtime-chapter-1-2__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
  z-index: 1;
}

.page-poppy-playtime-chapter-1-2__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.page-poppy-playtime-chapter-1-2__hero-title {
  font-size: 3.5em;
  color: #ffcc00; /* Gold/yellow for accent */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-poppy-playtime-chapter-1-2__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-poppy-playtime-chapter-1-2__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-poppy-playtime-chapter-1-2__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-poppy-playtime-chapter-1-2__cta-button--primary {
  background-color: #ffcc00;
  color: #1a1a1a;
}

.page-poppy-playtime-chapter-1-2__cta-button--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-poppy-playtime-chapter-1-2__cta-button--secondary {
  background-color: #333333;
  color: #ffcc00;
  border: 2px solid #ffcc00;
}

.page-poppy-playtime-chapter-1-2__cta-button--secondary:hover {
  background-color: #444444;
  transform: translateY(-2px);
}

.page-poppy-playtime-chapter-1-2__section-title {
  text-align: center;
  font-size: 2.8em;
  color: #ffcc00;
  margin-bottom: 40px;
  padding: 0 20px;
}

.page-poppy-playtime-chapter-1-2__about-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #222222;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-poppy-playtime-chapter-1-2__about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-poppy-playtime-chapter-1-2__about-text {
  flex: 1;
  min-width: 300px;
}

.page-poppy-playtime-chapter-1-2__about-text p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-poppy-playtime-chapter-1-2__about-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-poppy-playtime-chapter-1-2__about-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-poppy-playtime-chapter-1-2__features-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.page-poppy-playtime-chapter-1-2__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-poppy-playtime-chapter-1-2__feature-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  box-sizing: border-box; /* Ensure padding and border are included in width */
}

.page-poppy-playtime-chapter-1-2__feature-item:hover {
  transform: translateY(-5px);
}

.page-poppy-playtime-chapter-1-2__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-poppy-playtime-chapter-1-2__feature-title {
  font-size: 1.8em;
  color: #ffcc00;
  margin-bottom: 10px;
}

.page-poppy-playtime-chapter-1-2__feature-description {
  font-size: 1em;
  color: #cccccc;
}

.page-poppy-playtime-chapter-1-2__download-section {
  padding: 60px 20px;
  background-color: #333333;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-poppy-playtime-chapter-1-2__download-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.page-poppy-playtime-chapter-1-2__download-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-poppy-playtime-chapter-1-2__download-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-poppy-playtime-chapter-1-2__download-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-poppy-playtime-chapter-1-2__download-note {
  font-size: 0.9em;
  color: #aaaaaa;
  margin-top: 20px;
}

.page-poppy-playtime-chapter-1-2__faq-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto 40px auto;
  background-color: #222222;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-poppy-playtime-chapter-1-2__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-poppy-playtime-chapter-1-2__faq-item {
  background-color: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-poppy-playtime-chapter-1-2__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #3a3a3a;
  color: #ffcc00;
  font-size: 1.2em;
  font-weight: bold;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-poppy-playtime-chapter-1-2__faq-question:hover {
  background-color: #4a4a4a;
}

.page-poppy-playtime-chapter-1-2__faq-question h3 {
  margin: 0;
  color: inherit;
  font-size: 1em; /* Adjust to match parent font-size */
  pointer-events: none; /* Prevent h3 from intercepting click */
}

.page-poppy-playtime-chapter-1-2__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent toggle from intercepting click */
}

.page-poppy-playtime-chapter-1-2__faq-item.active .page-poppy-playtime-chapter-1-2__faq-toggle {
  transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
}

.page-poppy-playtime-chapter-1-2__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background-color: #2a2a2a;
  color: #e0e0e0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.page-poppy-playtime-chapter-1-2__faq-item.active .page-poppy-playtime-chapter-1-2__faq-answer {
  max-height: 2000px !important; /* Sufficiently large */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-poppy-playtime-chapter-1-2__faq-answer p {
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-poppy-playtime-chapter-1-2__hero-title {
    font-size: 3em;
  }
  .page-poppy-playtime-chapter-1-2__section-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-poppy-playtime-chapter-1-2__hero-section {
    height: 400px;
  }
  .page-poppy-playtime-chapter-1-2__hero-title {
    font-size: 2.2em;
  }
  .page-poppy-playtime-chapter-1-2__hero-description {
    font-size: 1em;
  }
  .page-poppy-playtime-chapter-1-2__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poppy-playtime-chapter-1-2__cta-button {
    width: 100%;
    max-width: 300px; /* Limit button width on small screens */
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-poppy-playtime-chapter-1-2__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-poppy-playtime-chapter-1-2__about-content,
  .page-poppy-playtime-chapter-1-2__download-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-poppy-playtime-chapter-1-2__about-text,
  .page-poppy-playtime-chapter-1-2__download-text {
    text-align: center;
  }

  .page-poppy-playtime-chapter-1-2__feature-list {
    grid-template-columns: 1fr;
  }

  /* List item responsive requirements */
  .page-poppy-playtime-chapter-1-2__feature-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 20px !important; /* Reduce padding for mobile */
    word-wrap: break-word !important; /* Ensure text wraps */
    overflow-wrap: break-word !important;
  }

  .page-poppy-playtime-chapter-1-2__feature-list {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Image responsive requirements */
  .page-poppy-playtime-chapter-1-2__about-image,
  .page-poppy-playtime-chapter-1-2__feature-image,
  .page-poppy-playtime-chapter-1-2__download-image {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    /* No filter properties to change color */
  }

  .page-poppy-playtime-chapter-1-2__about-image-wrapper,
  .page-poppy-playtime-chapter-1-2__download-content {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .page-poppy-playtime-chapter-1-2__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-poppy-playtime-chapter-1-2__faq-answer {
    padding: 0 20px;
  }
  .page-poppy-playtime-chapter-1-2__faq-item.active .page-poppy-playtime-chapter-1-2__faq-answer {
    padding: 15px 20px !important;
  }
}

@media (max-width: 480px) {
  .page-poppy-playtime-chapter-1-2__hero-section {
    height: 350px;
    padding: 15px;
  }
  .page-poppy-playtime-chapter-1-2__hero-title {
    font-size: 1.8em;
  }
  .page-poppy-playtime-chapter-1-2__hero-description {
    font-size: 0.9em;
  }
  .page-poppy-playtime-chapter-1-2__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .page-poppy-playtime-chapter-1-2__about-section,
  .page-poppy-playtime-chapter-1-2__features-section,
  .page-poppy-playtime-chapter-1-2__download-section,
  .page-poppy-playtime-chapter-1-2__faq-section {
    padding: 40px 15px;
  }
}