:root {
      --primary-color: #e04a4a; /* Poppy Playtime inspired red */
      --secondary-color: #2c3e50; /* Dark blue/grey for contrast */
      --accent-color: #f39c12; /* Orange for highlights */
      --text-color: #333;
      --light-text-color: #f8f8f8;
      --background-color: #f4f7f6;
      --dark-background-color: #222;
      --border-color: #ddd;
    }

    /* Base styles for the specific page wrapper */
    .page-poppy-playtime-chapter-3-apk-mob {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      line-height: 1.6;
      background-color: var(--background-color);
      padding: 10px 0; /* Minimal padding-top, relying on body padding-top for header offset */
    }

    /* Section common styles */
    .page-poppy-playtime-chapter-3-apk-mob__hero-section,
    .page-poppy-playtime-chapter-3-apk-mob__introduction-section,
    .page-poppy-playtime-chapter-3-apk-mob__quick-access-section,
    .page-poppy-playtime-chapter-3-apk-mob__game-features-section,
    .page-poppy-playtime-chapter-3-apk-mob__promotions-section,
    .page-poppy-playtime-chapter-3-apk-mob__security-support-section,
    .page-poppy-playtime-chapter-3-apk-mob__faq-section,
    .page-poppy-playtime-chapter-3-apk-mob__blog-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-poppy-playtime-chapter-3-apk-mob h1,
    .page-poppy-playtime-chapter-3-apk-mob h2,
    .page-poppy-playtime-chapter-3-apk-mob h3 {
      color: var(--secondary-color);
      margin-bottom: 20px;
      text-align: center;
    }

    .page-poppy-playtime-chapter-3-apk-mob h1 {
      font-size: 2.8em;
    }

    .page-poppy-playtime-chapter-3-apk-mob h2 {
      font-size: 2.2em;
      border-bottom: 2px solid var(--primary-color);
      padding-bottom: 10px;
      display: inline-block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-poppy-playtime-chapter-3-apk-mob h3 {
      font-size: 1.6em;
    }

    /* Buttons common styles */
    .page-poppy-playtime-chapter-3-apk-mob__hero-cta,
    .page-poppy-playtime-chapter-3-apk-mob__introduction-cta,
    .page-poppy-playtime-chapter-3-apk-mob__quick-link-button,
    .page-poppy-playtime-chapter-3-apk-mob__game-features-cta,
    .page-poppy-playtime-chapter-3-apk-mob__promo-card-cta,
    .page-poppy-playtime-chapter-3-apk-mob__support-cta,
    .page-poppy-playtime-chapter-3-apk-mob__blog-card-link {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--light-text-color);
      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;
      text-align: center;
      box-sizing: border-box;
    }

    .page-poppy-playtime-chapter-3-apk-mob__hero-cta:hover,
    .page-poppy-playtime-chapter-3-apk-mob__introduction-cta:hover,
    .page-poppy-playtime-chapter-3-apk-mob__quick-link-button:hover,
    .page-poppy-playtime-chapter-3-apk-mob__game-features-cta:hover,
    .page-poppy-playtime-chapter-3-apk-mob__promo-card-cta:hover,
    .page-poppy-playtime-chapter-3-apk-mob__support-cta:hover,
    .page-poppy-playtime-chapter-3-apk-mob__blog-card-link:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    /* Image common styles */
    .page-poppy-playtime-chapter-3-apk-mob img {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border-radius: 8px;
    }

    /* Hero Section */
    .page-poppy-playtime-chapter-3-apk-mob__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 30px;
      background-color: var(--dark-background-color);
      color: var(--light-text-color);
      padding: 60px 20px;
      border-radius: 12px;
    }

    .page-poppy-playtime-chapter-3-apk-mob__hero-title {
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-poppy-playtime-chapter-3-apk-mob__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      color: rgba(255,255,255,0.9); /* Ensure contrast */
    }

    .page-poppy-playtime-chapter-3-apk-mob__hero-image-wrapper {
      width: 100%;
      max-width: 900px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-poppy-playtime-chapter-3-apk-mob__hero-image {
      width: 100%;
      height: auto;
      min-height: 200px; /* Ensure minimum size */
    }

    /* Payment Providers (Gamelogo) Section */
    .page-poppy-playtime-chapter-3-apk-mob__payment-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 30px;
      width: 100%;
      max-width: 100%; /* Important: this section has special max-width handling */
      box-sizing: border-box;
      padding-top: 40px;
      padding-bottom: 40px;
      background-color: var(--dark-background-color);
    }

    .page-poppy-playtime-chapter-3-apk-mob__payment-providers-title {
      color: var(--light-text-color);
      width: 100%;
      margin-bottom: 30px;
      border-bottom-color: var(--accent-color);
    }

    .page-poppy-playtime-chapter-3-apk-mob__payment-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 30px;
      width: 100%;
    }

    .page-poppy-playtime-chapter-3-apk-mob__payment-logo {
      flex: 0 0 auto;
      width: 80px;
      height: 80px;
      max-width: 80px;
      max-height: 80px;
      box-sizing: border-box;
      background-color: #fff; /* Ensure visibility for logos */
      padding: 5px;
      border-radius: 50%;
    }

    .page-poppy-playtime-chapter-3-apk-mob__payment-logo img {
      display: block;
      width: 80px !important;
      height: 80px !important;
      max-width: 80px !important;
      max-height: 80px !important;
      object-fit: contain;
      border-radius: 0; /* Remove border-radius for the image inside logo */
    }

    /* Introduction Section */
    .page-poppy-playtime-chapter-3-apk-mob__introduction-section {
      text-align: center;
      background-color: #fff;
      border-radius: 12px;
      margin-top: 30px;
    }

    .page-poppy-playtime-chapter-3-apk-mob__introduction-content p {
      margin-bottom: 20px;
      font-size: 1.1em;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-poppy-playtime-chapter-3-apk-mob__introduction-cta {
      margin-top: 20px;
    }

    /* Quick Access Section */
    .page-poppy-playtime-chapter-3-apk-mob__quick-access-section {
      text-align: center;
      background-color: var(--dark-background-color);
      color: var(--light-text-color);
      padding-top: 60px;
      padding-bottom: 60px;
      margin-top: 30px;
      border-radius: 12px;
    }

    .page-poppy-playtime-chapter-3-apk-mob__quick-access-title {
      color: var(--light-text-color);
      border-bottom-color: var(--accent-color);
    }

    .page-poppy-playtime-chapter-3-apk-mob__quick-access-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-poppy-playtime-chapter-3-apk-mob__quick-link-button {
      flex-grow: 1;
      max-width: 280px;
      padding: 12px 20px;
      font-size: 1em;
      background-color: var(--accent-color);
    }

    .page-poppy-playtime-chapter-3-apk-mob__quick-link-button:hover {
      background-color: #e67e22;
    }

    /* Game Features Section */
    .page-poppy-playtime-chapter-3-apk-mob__game-features-section {
      text-align: center;
      background-color: #fff;
      margin-top: 30px;
      border-radius: 12px;
    }

    .page-poppy-playtime-chapter-3-apk-mob__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-poppy-playtime-chapter-3-apk-mob__feature-item {
      background-color: var(--background-color);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      box-sizing: border-box;
    }

    .page-poppy-playtime-chapter-3-apk-mob__feature-image {
      width: 100%;
      height: 200px; /* Fixed height for consistent look, ensures >= 200px */
      object-fit: cover;
      margin-bottom: 15px;
    }

    .page-poppy-playtime-chapter-3-apk-mob__feature-heading {
      color: var(--primary-color);
      font-size: 1.4em;
      margin-top: 0;
      margin-bottom: 10px;
      text-align: left;
      width: 100%;
    }

    .page-poppy-playtime-chapter-3-apk-mob__feature-description {
      font-size: 0.95em;
      color: var(--text-color);
    }

    .page-poppy-playtime-chapter-3-apk-mob__game-features-cta {
      margin-top: 40px;
    }

    /* Promotions Section */
    .page-poppy-playtime-chapter-3-apk-mob__promotions-section {
      background-color: var(--dark-background-color);
      color: var(--light-text-color);
      text-align: center;
      margin-top: 30px;
      border-radius: 12px;
      padding-top: 60px;
      padding-bottom: 60px;
    }

    .page-poppy-playtime-chapter-3-apk-mob__promotions-title {
      color: var(--light-text-color);
      border-bottom-color: var(--primary-color);
    }

    .page-poppy-playtime-chapter-3-apk-mob__promo-cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-poppy-playtime-chapter-3-apk-mob__promo-card {
      background-color: var(--secondary-color);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      text-align: left;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-sizing: border-box;
    }

    .page-poppy-playtime-chapter-3-apk-mob__promo-card-title {
      color: var(--accent-color);
      font-size: 1.3em;
      margin-top: 0;
      margin-bottom: 10px;
      text-align: left;
    }

    .page-poppy-playtime-chapter-3-apk-mob__promo-card-description {
      font-size: 0.95em;
      color: rgba(255,255,255,0.9); /* Ensure contrast */
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-poppy-playtime-chapter-3-apk-mob__promo-card-cta {
      width: 100%;
      padding: 10px 15px;
      font-size: 0.9em;
      background-color: var(--primary-color);
    }

    /* Security & Support Section */
    .page-poppy-playtime-chapter-3-apk-mob__security-support-section {
      text-align: center;
      background-color: #fff;
      margin-top: 30px;
      border-radius: 12px;
    }

    .page-poppy-playtime-chapter-3-apk-mob__security-support-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-poppy-playtime-chapter-3-apk-mob__security-item {
      background-color: var(--background-color);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      text-align: center;
      box-sizing: border-box;
    }

    .page-poppy-playtime-chapter-3-apk-mob__security-image {
      width: 200px; /* Adhere to minimum 200x200 */
      height: 200px; /* Adhere to minimum 200x200 */
      margin: 0 auto 15px auto;
      object-fit: contain;
    }

    .page-poppy-playtime-chapter-3-apk-mob__security-heading {
      color: var(--secondary-color);
      font-size: 1.3em;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-poppy-playtime-chapter-3-apk-mob__security-description {
      font-size: 0.95em;
      color: var(--text-color);
    }

    .page-poppy-playtime-chapter-3-apk-mob__support-cta {
      margin-top: 40px;
    }

    /* FAQ Section */
    .page-poppy-playtime-chapter-3-apk-mob__faq-section {
      background-color: var(--dark-background-color);
      color: var(--light-text-color);
      margin-top: 30px;
      border-radius: 12px;
      padding-top: 60px;
      padding-bottom: 60px;
    }

    .page-poppy-playtime-chapter-3-apk-mob__faq-title {
      color: var(--light-text-color);
      border-bottom-color: var(--accent-color);
    }

    .page-poppy-playtime-chapter-3-apk-mob__faq-container {
      max-width: 900px;
      margin: 40px auto 0 auto;
    }

    .page-poppy-playtime-chapter-3-apk-mob__faq-item {
      background-color: var(--secondary-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .page-poppy-playtime-chapter-3-apk-mob__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: var(--secondary-color);
      border-bottom: 1px solid rgba(255,255,255,0.1);
      transition: background-color 0.3s ease;
    }

    .page-poppy-playtime-chapter-3-apk-mob__faq-question:hover {
      background-color: #34495e;
    }

    .page-poppy-playtime-chapter-3-apk-mob__faq-question-text {
      color: var(--light-text-color);
      font-size: 1.1em;
      margin: 0;
      pointer-events: none; /* Prevent text from intercepting click event */
    }

    .page-poppy-playtime-chapter-3-apk-mob__faq-toggle {
      color: var(--primary-color);
      font-size: 1.5em;
      font-weight: bold;
      pointer-events: none; /* Prevent toggle from intercepting click event */
      transition: transform 0.3s ease;
    }

    .page-poppy-playtime-chapter-3-apk-mob__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #34495e;
      color: rgba(255,255,255,0.9); /* Ensure contrast */
      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-3-apk-mob__faq-item.active .page-poppy-playtime-chapter-3-apk-mob__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px !important;
      opacity: 1;
    }

    .page-poppy-playtime-chapter-3-apk-mob__faq-item.active .page-poppy-playtime-chapter-3-apk-mob__faq-toggle {
      transform: rotate(45deg);
      /* content: "−"; This is not a CSS property for direct content change, handled by JS */
    }

    /* Blog Section */
    .page-poppy-playtime-chapter-3-apk-mob__blog-section {
      text-align: center;
      background-color: #fff;
      margin-top: 30px;
      border-radius: 12px;
    }

    .page-poppy-playtime-chapter-3-apk-mob__blog-articles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-poppy-playtime-chapter-3-apk-mob__blog-card {
      background-color: var(--background-color);
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      text-align: left;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-sizing: border-box;
    }

    .page-poppy-playtime-chapter-3-apk-mob__blog-image {
      width: 100%;
      height: 180px; /* Fixed height for consistent look, ensures >= 200px for placeholder */
      object-fit: cover;
      margin-bottom: 15px;
    }

    .page-poppy-playtime-chapter-3-apk-mob__blog-card-title {
      font-size: 1.2em;
      margin-top: 0;
      margin-bottom: 10px;
      text-align: left;
      line-height: 1.3;
    }

    .page-poppy-playtime-chapter-3-apk-mob__blog-card-title a {
      color: var(--primary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-poppy-playtime-chapter-3-apk-mob__blog-card-title a:hover {
      color: var(--secondary-color);
    }

    .page-poppy-playtime-chapter-3-apk-mob__blog-card-excerpt {
      font-size: 0.9em;
      color: var(--text-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-poppy-playtime-chapter-3-apk-mob__blog-card-link {
      padding: 8px 15px;
      font-size: 0.85em;
      align-self: flex-start;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      .page-poppy-playtime-chapter-3-apk-mob__hero-section,
      .page-poppy-playtime-chapter-3-apk-mob__introduction-section,
      .page-poppy-playtime-chapter-3-apk-mob__quick-access-section,
      .page-poppy-playtime-chapter-3-apk-mob__game-features-section,
      .page-poppy-playtime-chapter-3-apk-mob__promotions-section,
      .page-poppy-playtime-chapter-3-apk-mob__security-support-section,
      .page-poppy-playtime-chapter-3-apk-mob__faq-section,
      .page-poppy-playtime-chapter-3-apk-mob__blog-section {
        padding: 30px 15px;
      }

      .page-poppy-playtime-chapter-3-apk-mob h1 {
        font-size: 2em;
      }

      .page-poppy-playtime-chapter-3-apk-mob h2 {
        font-size: 1.8em;
      }

      .page-poppy-playtime-chapter-3-apk-mob h3 {
        font-size: 1.4em;
      }

      /* Hero Section */
      .page-poppy-playtime-chapter-3-apk-mob__hero-section {
        padding: 40px 15px;
      }

      .page-poppy-playtime-chapter-3-apk-mob__hero-description {
        font-size: 1em;
      }

      .page-poppy-playtime-chapter-3-apk-mob__hero-cta {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
      }

      /* Payment Providers (Gamelogo) Section */
      .page-poppy-playtime-chapter-3-apk-mob__payment-providers {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
      }
      .page-poppy-playtime-chapter-3-apk-mob__payment-logo,
      .page-poppy-playtime-chapter-3-apk-mob__payment-logo img {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
      }

      /* Quick Access Section */
      .page-poppy-playtime-chapter-3-apk-mob__quick-access-links {
        flex-direction: column;
        align-items: center;
      }

      .page-poppy-playtime-chapter-3-apk-mob__quick-link-button {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px 15px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      
      /* Feature, Promo, Security Grids */
      .page-poppy-playtime-chapter-3-apk-mob__features-grid,
      .page-poppy-playtime-chapter-3-apk-mob__promo-cards-grid,
      .page-poppy-playtime-chapter-3-apk-mob__security-support-content,
      .page-poppy-playtime-chapter-3-apk-mob__blog-articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-poppy-playtime-chapter-3-apk-mob__feature-item,
      .page-poppy-playtime-chapter-3-apk-mob__promo-card,
      .page-poppy-playtime-chapter-3-apk-mob__security-item,
      .page-poppy-playtime-chapter-3-apk-mob__blog-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-poppy-playtime-chapter-3-apk-mob__feature-image,
      .page-poppy-playtime-chapter-3-apk-mob__blog-image {
        height: 150px; /* Adjust image height for mobile */
      }

      /* FAQ Section */
      .page-poppy-playtime-chapter-3-apk-mob__faq-question {
        padding: 12px 15px;
      }

      .page-poppy-playtime-chapter-3-apk-mob__faq-question-text {
        font-size: 1em;
      }

      .page-poppy-playtime-chapter-3-apk-mob__faq-answer {
        padding: 0 15px; /* Adjust initial padding */
      }

      .page-poppy-playtime-chapter-3-apk-mob__faq-item.active .page-poppy-playtime-chapter-3-apk-mob__faq-answer {
        padding: 15px !important; /* Adjust active padding */
      }

      /* General image responsive rules for all images except gamelogo */
      .page-poppy-playtime-chapter-3-apk-mob img:not(.page-poppy-playtime-chapter-3-apk-mob__payment-logo img) {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }