.page-how-to-play-poppy-playtime-on-mobile {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
    }

    .page-how-to-play-poppy-playtime-on-mobile__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-how-to-play-poppy-playtime-on-mobile__section-title {
      font-size: 2.5em;
      color: #ffffff;
      text-align: center;
      margin-bottom: 40px;
      padding-top: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-how-to-play-poppy-playtime-on-mobile__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
      color: #d0d0d0;
    }

    /* Hero Section */
    .page-how-to-play-poppy-playtime-on-mobile__hero-section {
      position: relative;
      width: 100%;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Relying on body padding for header offset */
      background: linear-gradient(135deg, #2a003a, #000000);
    }

    .page-how-to-play-poppy-playtime-on-mobile__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      opacity: 0.3;
    }

    .page-how-to-play-poppy-playtime-on-mobile__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(50%) brightness(50%);
    }

    .page-how-to-play-poppy-playtime-on-mobile__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
    }

    .page-how-to-play-poppy-playtime-on-mobile__hero-title {
      font-size: 3.5em;
      color: #ffcc00;
      margin-bottom: 20px;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    }

    .page-how-to-play-poppy-playtime-on-mobile__hero-description {
      font-size: 1.3em;
      color: #e0e0e0;
      margin-bottom: 30px;
    }

    .page-how-to-play-poppy-playtime-on-mobile__hero-cta {
      display: inline-block;
      background-color: #e60073; /* Pink/Purple for accent */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-how-to-play-poppy-playtime-on-mobile__hero-cta:hover {
      background-color: #ff3399;
      transform: translateY(-3px);
    }

    /* Payment Providers Section (Partner Logos) */
    .page-how-to-play-poppy-playtime-on-mobile__payment-providers {
      padding: 40px 20px;
      background-color: #222222;
      text-align: center;
      border-bottom: 1px solid #333;
    }

    .page-how-to-play-poppy-playtime-on-mobile__payment-providers .page-how-to-play-poppy-playtime-on-mobile__section-title {
      margin-bottom: 30px;
      font-size: 2em;
    }

    .page-how-to-play-poppy-playtime-on-mobile__logo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 30px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-how-to-play-poppy-playtime-on-mobile__payment-logo {
      flex: 0 0 auto;
      width: 80px;
      height: 80px;
      max-width: 80px;
      max-height: 80px;
      box-sizing: border-box;
      object-fit: contain;
      filter: grayscale(100%) brightness(150%);
      transition: filter 0.3s ease;
    }

    .page-how-to-play-poppy-playtime-on-mobile__payment-logo:hover {
      filter: grayscale(0%) brightness(100%);
    }

    /* Introduction Section */
    .page-how-to-play-poppy-playtime-on-mobile__intro-section {
      padding: 60px 0;
      background-color: #1a1a1a;
    }

    /* Quick Access Section */
    .page-how-to-play-poppy-playtime-on-mobile__quick-access-section {
      padding: 60px 0;
      background-color: #222222;
      text-align: center;
    }

    .page-how-to-play-poppy-playtime-on-mobile__buttons-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-how-to-play-poppy-playtime-on-mobile__action-button {
      display: block;
      background-color: #007bff;
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      min-width: 150px;
      text-align: center;
    }

    .page-how-to-play-poppy-playtime-on-mobile__action-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* Game Guide Section */
    .page-how-to-play-poppy-playtime-on-mobile__game-guide-section {
      padding: 60px 0;
      background-color: #1a1a1a;
    }

    .page-how-to-play-poppy-playtime-on-mobile__guide-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-how-to-play-poppy-playtime-on-mobile__guide-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
    }

    .page-how-to-play-poppy-playtime-on-mobile__guide-item:hover {
      transform: translateY(-5px);
    }

    .page-how-to-play-poppy-playtime-on-mobile__guide-image {
      width: 100%;
      max-width: 300px;
      height: auto;
      border-radius: 5px;
      margin-bottom: 20px;
      object-fit: cover;
      min-width: 200px; /* Minimum image size */
      min-height: 200px;
    }

    .page-how-to-play-poppy-playtime-on-mobile__guide-heading {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 15px;
    }

    .page-how-to-play-poppy-playtime-on-mobile__guide-text {
      color: #c0c0c0;
    }

    .page-how-to-play-poppy-playtime-on-mobile__main-cta {
      display: block;
      width: fit-content;
      margin: 50px auto 0;
      background-color: #e60073;
      color: #ffffff;
      padding: 15px 40px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.3em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-how-to-play-poppy-playtime-on-mobile__main-cta:hover {
      background-color: #ff3399;
      transform: translateY(-3px);
    }

    /* Promotion Section */
    .page-how-to-play-poppy-playtime-on-mobile__promo-section {
      padding: 60px 0;
      background-color: #222222;
    }

    .page-how-to-play-poppy-playtime-on-mobile__promo-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-how-to-play-poppy-playtime-on-mobile__promo-card {
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-how-to-play-poppy-playtime-on-mobile__promo-image {
      width: 100%;
      max-width: 400px;
      height: auto;
      border-radius: 5px;
      margin-bottom: 20px;
      object-fit: cover;
      min-width: 200px; /* Minimum image size */
      min-height: 200px;
    }

    .page-how-to-play-poppy-playtime-on-mobile__promo-heading {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-how-to-play-poppy-playtime-on-mobile__promo-description {
      color: #c0c0c0;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-how-to-play-poppy-playtime-on-mobile__promo-button {
      display: inline-block;
      background-color: #007bff;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-how-to-play-poppy-playtime-on-mobile__promo-button:hover {
      background-color: #0056b3;
    }

    /* Security Section */
    .page-how-to-play-poppy-playtime-on-mobile__security-section {
      padding: 60px 0;
      background-color: #1a1a1a;
    }

    .page-how-to-play-poppy-playtime-on-mobile__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-how-to-play-poppy-playtime-on-mobile__feature-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .page-how-to-play-poppy-playtime-on-mobile__feature-icon {
      width: 200px; /* Minimum image size */
      height: 200px;
      max-width: 200px;
      max-height: 200px;
      object-fit: contain;
      margin-bottom: 20px;
      filter: brightness(150%);
    }

    .page-how-to-play-poppy-playtime-on-mobile__feature-heading {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-how-to-play-poppy-playtime-on-mobile__feature-text {
      color: #c0c0c0;
    }

    /* FAQ Section */
    .page-how-to-play-poppy-playtime-on-mobile__faq-section {
      padding: 60px 0;
      background-color: #222222;
    }

    .page-how-to-play-poppy-playtime-on-mobile__faq-list {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-how-to-play-poppy-playtime-on-mobile__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      overflow: hidden;
    }

    .page-how-to-play-poppy-playtime-on-mobile__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #3a3a3a;
      color: #ffffff;
      font-size: 1.2em;
      font-weight: bold;
      border-bottom: 1px solid #444;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-how-to-play-poppy-playtime-on-mobile__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-how-to-play-poppy-playtime-on-mobile__faq-question h3 {
      margin: 0;
      color: #ffffff;
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-how-to-play-poppy-playtime-on-mobile__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent span from blocking click event on parent */
      transition: transform 0.3s ease;
    }

    .page-how-to-play-poppy-playtime-on-mobile__faq-item.active .page-how-to-play-poppy-playtime-on-mobile__faq-toggle {
      transform: rotate(45deg);
    }

    .page-how-to-play-poppy-playtime-on-mobile__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #2a2a2a;
      color: #c0c0c0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-how-to-play-poppy-playtime-on-mobile__faq-item.active .page-how-to-play-poppy-playtime-on-mobile__faq-answer {
      max-height: 2000px !important;
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-how-to-play-poppy-playtime-on-mobile__faq-answer p {
      margin: 0;
    }

    /* Blog Section */
    .page-how-to-play-poppy-playtime-on-mobile__blog-section {
      padding: 60px 0;
      background-color: #1a1a1a;
    }

    .page-how-to-play-poppy-playtime-on-mobile__blog-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-how-to-play-poppy-playtime-on-mobile__blog-card {
      background-color: #2a2a2a;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-how-to-play-poppy-playtime-on-mobile__blog-card:hover {
      transform: translateY(-5px);
    }

    .page-how-to-play-poppy-playtime-on-mobile__blog-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      min-width: 200px; /* Minimum image size */
      min-height: 200px;
    }

    .page-how-to-play-poppy-playtime-on-mobile__blog-content {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .page-how-to-play-poppy-playtime-on-mobile__blog-title {
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-how-to-play-poppy-playtime-on-mobile__blog-title a {
      color: #ffcc00;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-how-to-play-poppy-playtime-on-mobile__blog-title a:hover {
      color: #ffe066;
    }

    .page-how-to-play-poppy-playtime-on-mobile__blog-excerpt {
      color: #c0c0c0;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-how-to-play-poppy-playtime-on-mobile__blog-date {
      font-size: 0.9em;
      color: #888888;
      text-align: right;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-how-to-play-poppy-playtime-on-mobile__hero-title {
        font-size: 3em;
      }
      .page-how-to-play-poppy-playtime-on-mobile__hero-description {
        font-size: 1.1em;
      }
      .page-how-to-play-poppy-playtime-on-mobile__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-how-to-play-poppy-playtime-on-mobile__container {
        padding: 15px;
      }
      .page-how-to-play-poppy-playtime-on-mobile__hero-section {
        min-height: 400px;
      }
      .page-how-to-play-poppy-playtime-on-mobile__hero-title {
        font-size: 2.2em;
      }
      .page-how-to-play-poppy-playtime-on-mobile__hero-description {
        font-size: 1em;
      }
      .page-how-to-play-poppy-playtime-on-mobile__hero-cta {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-how-to-play-poppy-playtime-on-mobile__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      /* Partner Logos */
      .page-how-to-play-poppy-playtime-on-mobile__payment-providers {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
      }
      .page-how-to-play-poppy-playtime-on-mobile__payment-logo {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
      }

      /* Quick Access Buttons */
      .page-how-to-play-poppy-playtime-on-mobile__buttons-grid {
        flex-direction: column;
        align-items: center;
      }
      .page-how-to-play-poppy-playtime-on-mobile__action-button {
        width: 100% !important;
        max-width: 300px !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* General Images for responsiveness */
      .page-how-to-play-poppy-playtime-on-mobile__guide-image,
      .page-how-to-play-poppy-playtime-on-mobile__promo-image,
      .page-how-to-play-poppy-playtime-on-mobile__feature-icon,
      .page-how-to-play-poppy-playtime-on-mobile__blog-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        min-width: 200px !important; /* Enforce min size for content images */
        min-height: 200px !important;
      }

      /* List items (e.g., guide steps, promo cards, blog cards, feature items) */
      .page-how-to-play-poppy-playtime-on-mobile__guide-item,
      .page-how-to-play-poppy-playtime-on-mobile__promo-card,
      .page-how-to-play-poppy-playtime-on-mobile__feature-item,
      .page-how-to-play-poppy-playtime-on-mobile__blog-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-how-to-play-poppy-playtime-on-mobile__guide-steps,
      .page-how-to-play-poppy-playtime-on-mobile__promo-cards,
      .page-how-to-play-poppy-playtime-on-mobile__features-grid,
      .page-how-to-play-poppy-playtime-on-mobile__blog-cards {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-how-to-play-poppy-playtime-on-mobile__faq-question,
      .page-how-to-play-poppy-playtime-on-mobile__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }
      .page-how-to-play-poppy-playtime-on-mobile__faq-answer {
        padding: 15px !important;
      }
      .page-how-to-play-poppy-playtime-on-mobile__faq-heading {
        font-size: 1.1em;
      }
      .page-how-to-play-poppy-playtime-on-mobile__blog-title {
        font-size: 1.1em;
      }
    }

    @media (max-width: 480px) {
      .page-how-to-play-poppy-playtime-on-mobile__hero-title {
        font-size: 1.8em;
      }
      .page-how-to-play-poppy-playtime-on-mobile__hero-description {
        font-size: 0.9em;
      }
      .page-how-to-play-poppy-playtime-on-mobile__section-title {
        font-size: 1.5em;
      }
      .page-how-to-play-poppy-playtime-on-mobile__text-content {
        font-size: 0.9em;
      }
    }