/* General styling for the page-poppy-playtime-chapter-1-poppy-playtime-chapter-1 */
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1 {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: var(--header-offset, 122px); /* Fallback if body padding is not set by shared CSS */
    }

    /* Section common styles */
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__section-title {
      font-size: 2.5em;
      color: #e94560; /* Accent color */
      text-align: center;
      margin-bottom: 40px;
      padding: 20px 15px;
      position: relative;
      text-transform: uppercase;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: #0f3460; /* Darker accent */
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* Hero Section */
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__hero-section {
      position: relative;
      width: 100%;
      height: 70vh; /* Responsive height */
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small top padding after body padding */
      box-sizing: border-box;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 2;
    }

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

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__hero-title {
      font-size: 3.5em;
      color: #ffffff;
      margin-bottom: 20px;
      line-height: 1.2;
    }

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

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

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__hero-cta-button,
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__hero-download-button,
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__access-button,
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__game-button,
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__promo-button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #e94560;
      color: #ffffff;
      text-decoration: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      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-poppy-playtime-chapter-1__hero-cta-button:hover,
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__hero-download-button:hover,
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__access-button:hover,
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__game-button:hover,
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__promo-button:hover {
      background-color: #ff6a80;
      transform: translateY(-3px);
    }

    /* Partner/Supplier Logo Section */
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__payment-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 30px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: 40px 20px;
      background-color: #0f3460; /* Darker background for logo strip */
      text-align: center;
    }
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__payment-providers .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__section-title {
        width: 100%;
        margin-bottom: 20px;
    }
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__payment-logo {
      flex: 0 0 auto;
      width: 80px;
      height: 80px;
      max-width: 80px;
      max-height: 80px;
      box-sizing: border-box;
      filter: grayscale(100%) brightness(150%); /* Make logos fit theme, but no color change */
      transition: filter 0.3s ease;
    }
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__payment-logo:hover {
      filter: grayscale(0%) brightness(100%);
    }
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__payment-logo img {
      display: block;
      width: 80px !important;
      height: 80px !important;
      max-width: 80px !important;
      max-height: 80px !important;
      object-fit: contain;
    }

    /* Introduction Section */
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__introduction-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__intro-content p {
      margin-bottom: 20px;
      font-size: 1.1em;
      color: #cccccc;
    }

    /* Quick Access Section */
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__quick-access-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      background-color: #16213e;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__access-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      justify-content: center;
    }

    /* Games Section */
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__games-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__game-card {
      background-color: #0f3460;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
      box-sizing: border-box;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__game-title {
      font-size: 1.6em;
      color: #e94560;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__game-description {
      font-size: 0.95em;
      color: #cccccc;
      margin-bottom: 20px;
      padding: 0 15px;
      flex-grow: 1; /* Make descriptions take available space */
    }

    /* Promotions Section */
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__promotions-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      background-color: #16213e;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__promo-card {
      background-color: #0f3460;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
      box-sizing: border-box;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__promo-title {
      font-size: 1.6em;
      color: #e94560;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__promo-description {
      font-size: 0.95em;
      color: #cccccc;
      margin-bottom: 20px;
      padding: 0 15px;
      flex-grow: 1;
    }

    /* Security Section */
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__security-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__security-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__security-item {
      background-color: #0f3460;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      text-align: center;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__security-icon {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
      box-sizing: border-box;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__security-subtitle {
      font-size: 1.4em;
      color: #e94560;
      margin-bottom: 10px;
    }

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

    /* FAQ Section */
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
      background-color: #16213e;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__faq-list {
      margin-top: 30px;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__faq-item {
      margin-bottom: 15px;
      border: 1px solid #0f3460;
      border-radius: 8px;
      background-color: #1a1a2e;
      overflow: hidden;
      box-sizing: border-box; /* Crucial for list items */
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #0f3460;
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }

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

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__faq-question-text {
      font-size: 1.2em;
      color: #ffffff;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ffffff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click */
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__faq-item.active .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

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

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

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

    /* Blog Section */
    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__blog-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__blog-card {
      background-color: #0f3460;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__blog-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
      box-sizing: border-box;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__blog-title {
      font-size: 1.4em;
      color: #e94560;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__blog-title a {
      color: #e94560;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__blog-title a:hover {
      color: #ff6a80;
      text-decoration: underline;
    }

    .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__blog-excerpt {
      font-size: 0.9em;
      color: #cccccc;
      margin-bottom: 15px;
      padding: 0 15px;
      flex-grow: 1;
    }

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

    @media (max-width: 768px) {
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1 {
        padding-top: var(--header-offset, 90px); /* Adjust for potentially smaller mobile header */
      }
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__hero-section {
        height: 60vh;
        min-height: 400px;
        padding-top: 8px;
      }
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__hero-title {
        font-size: 2em;
      }
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__hero-description {
        font-size: 1em;
      }
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__hero-cta-button,
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__hero-download-button {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
        font-size: 1em;
        padding: 12px 25px;
      }

      /* Logo Section Mobile */
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__payment-providers {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 30px 15px;
      }
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__payment-logo,
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__payment-logo img {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
      }

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

      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__intro-content p,
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__game-description,
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__promo-description,
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__security-description,
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__blog-excerpt,
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__faq-answer p {
        font-size: 0.9em;
      }

      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__access-grid,
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__game-categories,
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__promo-grid,
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__security-content,
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__blog-grid {
        grid-template-columns: 1fr; /* Single column for most grids */
        gap: 20px;
      }
      
      /* List item responsive styles */
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__faq-question-text,
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__faq-answer {
        padding: 15px !important; /* Adjust padding for mobile */
      }

      /* Image responsive styles for general images */
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__game-image,
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__promo-image,
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__security-icon,
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__blog-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__game-card,
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__promo-card,
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__security-item,
      .page-poppy-playtime-chapter-1-poppy-playtime-chapter-1__blog-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
    }