.page-poppy-playtime-rule-3 {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a1a;
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: 10px; /* Small decorative padding, assuming body has header offset */
    }

    .page-poppy-playtime-rule-3__section-title {
      font-size: 2.5em;
      color: #f7b32b;
      text-align: center;
      margin-bottom: 40px;
      padding-top: 40px;
      position: relative;
    }

    .page-poppy-playtime-rule-3__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: #f7b32b;
      margin: 15px auto 0;
    }

    .page-poppy-playtime-rule-3__keyword-highlight {
      color: #f7b32b;
      font-weight: bold;
    }

    /* Hero Section */
    .page-poppy-playtime-rule-3__hero-section {
      position: relative;
      width: 100%;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #ffffff;
      overflow: hidden;
      box-sizing: border-box;
      padding: 20px;
    }

    .page-poppy-playtime-rule-3__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.5);
      max-width: 100%; /* Responsive image */
    }

    .page-poppy-playtime-rule-3__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
    }

    .page-poppy-playtime-rule-3__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #f7b32b;
    }

    .page-poppy-playtime-rule-3__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    .page-poppy-playtime-rule-3__hero-cta {
      display: inline-block;
      background-color: #e63946;
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-poppy-playtime-rule-3__hero-cta:hover {
      background-color: #c02935;
    }

    /* Partner Logos Section */
    .page-poppy-playtime-rule-3__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: 50px 20px;
      background-color: #2c2c2c;
    }

    .page-poppy-playtime-rule-3__payment-logo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 30px;
      width: 100%;
      max-width: 1200px;
    }

    .page-poppy-playtime-rule-3__payment-logo {
      flex: 0 0 auto;
      width: 80px !important;
      height: 80px !important;
      max-width: 80px !important;
      max-height: 80px !important;
      box-sizing: border-box;
      object-fit: contain;
    }

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

    .page-poppy-playtime-rule-3__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: left;
    }

    .page-poppy-playtime-rule-3__image-content {
      width: 100%;
      max-width: 800px;
      height: auto;
      border-radius: 8px;
      margin: 30px auto;
      display: block;
      object-fit: cover;
      box-sizing: border-box;
    }

    /* Quick Access Section */
    .page-poppy-playtime-rule-3__quick-access-section {
      padding: 60px 20px;
      background-color: #2c2c2c;
      max-width: 100%;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-poppy-playtime-rule-3__access-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-poppy-playtime-rule-3__access-item {
      background-color: #3a3a3a;
      border-radius: 8px;
      flex: 1 1 calc(50% - 20px); /* Two columns on desktop */
      min-width: 280px; /* Minimum width for item */
      box-sizing: border-box;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-poppy-playtime-rule-3__access-item:hover {
      transform: translateY(-5px);
    }

    .page-poppy-playtime-rule-3__access-link {
      display: block;
      padding: 20px;
      color: #f7b32b;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
    }

    /* Core Features Section */
    .page-poppy-playtime-rule-3__core-features-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-poppy-playtime-rule-3__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-poppy-playtime-rule-3__feature-card {
      background-color: #2c2c2c;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      transition: transform 0.3s ease;
    }

    .page-poppy-playtime-rule-3__feature-card:hover {
      transform: translateY(-5px);
    }

    .page-poppy-playtime-rule-3__feature-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-poppy-playtime-rule-3__feature-title {
      font-size: 1.5em;
      color: #f7b32b;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-poppy-playtime-rule-3__feature-description {
      font-size: 0.95em;
      color: #cccccc;
      padding: 0 15px;
    }

    /* Promotions Section */
    .page-poppy-playtime-rule-3__promotions-section {
      padding: 60px 20px;
      background-color: #2c2c2c;
      max-width: 100%;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-poppy-playtime-rule-3__promo-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-poppy-playtime-rule-3__promo-card {
      background-color: #3a3a3a;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      transition: transform 0.3s ease;
    }

    .page-poppy-playtime-rule-3__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-poppy-playtime-rule-3__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-poppy-playtime-rule-3__promo-title {
      font-size: 1.4em;
      color: #f7b32b;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-poppy-playtime-rule-3__promo-description {
      font-size: 0.9em;
      color: #cccccc;
      margin-bottom: 20px;
      padding: 0 15px;
    }

    .page-poppy-playtime-rule-3__promo-cta {
      display: inline-block;
      background-color: #e63946;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 0.9em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-poppy-playtime-rule-3__promo-cta:hover {
      background-color: #c02935;
    }

    /* Security and Support Section */
    .page-poppy-playtime-rule-3__security-support-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-poppy-playtime-rule-3__support-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-poppy-playtime-rule-3__support-item {
      background-color: #2c2c2c;
      border-radius: 8px;
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-poppy-playtime-rule-3__support-item:hover {
      transform: translateY(-5px);
    }

    .page-poppy-playtime-rule-3__support-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-poppy-playtime-rule-3__support-title {
      font-size: 1.5em;
      color: #f7b32b;
      margin-bottom: 10px;
    }

    .page-poppy-playtime-rule-3__support-description {
      font-size: 0.95em;
      color: #cccccc;
      margin-bottom: 20px;
    }

    .page-poppy-playtime-rule-3__support-cta {
      display: inline-block;
      background-color: #e63946;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 0.9em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-poppy-playtime-rule-3__support-cta:hover {
      background-color: #c02935;
    }

    /* FAQ Section */
    .page-poppy-playtime-rule-3__faq-section {
      padding: 60px 20px;
      background-color: #2c2c2c;
      max-width: 100%;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-poppy-playtime-rule-3__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-poppy-playtime-rule-3__faq-item {
      background-color: #3a3a3a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-poppy-playtime-rule-3__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #4a4a4a;
      transition: background-color 0.3s ease;
    }

    .page-poppy-playtime-rule-3__faq-question:hover {
      background-color: #5a5a5a;
    }

    .page-poppy-playtime-rule-3__faq-title {
      margin: 0;
      font-size: 1.2em;
      color: #f7b32b;
      pointer-events: none; /* Crucial for click event on parent */
    }

    .page-poppy-playtime-rule-3__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #f7b32b;
      transition: color 0.3s ease; /* Transition for color */
      pointer-events: none; /* Crucial for click event on parent */
      width: 20px; /* Ensure consistent width */
      text-align: center;
    }

    .page-poppy-playtime-rule-3__faq-item.active .page-poppy-playtime-rule-3__faq-toggle {
      color: #e63946; /* Example: change color when active */
    }

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

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

    /* Blog Section */
    .page-poppy-playtime-rule-3__blog-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-poppy-playtime-rule-3__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-poppy-playtime-rule-3__blog-card {
      background-color: #2c2c2c;
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .page-poppy-playtime-rule-3__blog-card:hover {
      transform: translateY(-5px);
    }

    .page-poppy-playtime-rule-3__blog-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-poppy-playtime-rule-3__blog-content {
      padding: 20px;
    }

    .page-poppy-playtime-rule-3__blog-title {
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-poppy-playtime-rule-3__blog-title a {
      color: #f7b32b;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-poppy-playtime-rule-3__blog-title a:hover {
      color: #e63946;
    }

    .page-poppy-playtime-rule-3__blog-excerpt {
      font-size: 0.9em;
      color: #cccccc;
      margin-bottom: 15px;
    }

    .page-poppy-playtime-rule-3__blog-date {
      font-size: 0.85em;
      color: #888888;
    }

    /* General Image Responsiveness - Apply to all images within the page context, excluding gamelogo */
    .page-poppy-playtime-rule-3 img:not(.page-poppy-playtime-rule-3__payment-logo) {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Media Queries for Responsiveness */
    @media (max-width: 1024px) {
      .page-poppy-playtime-rule-3__hero-title {
        font-size: 3em;
      }
      .page-poppy-playtime-rule-3__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-poppy-playtime-rule-3__hero-section {
        min-height: 400px;
      }
      .page-poppy-playtime-rule-3__hero-title {
        font-size: 2.5em;
      }
      .page-poppy-playtime-rule-3__hero-description {
        font-size: 1em;
      }
      .page-poppy-playtime-rule-3__hero-cta {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-poppy-playtime-rule-3__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      /* Partner Logos Mobile */
      .page-poppy-playtime-rule-3__payment-providers {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 30px 10px;
      }
      .page-poppy-playtime-rule-3__payment-logo {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
      }

      .page-poppy-playtime-rule-3__text-content {
        font-size: 1em;
      }

      /* Lists responsiveness */
      .page-poppy-playtime-rule-3__access-list,
      .page-poppy-playtime-rule-3__features-grid,
      .page-poppy-playtime-rule-3__promo-cards,
      .page-poppy-playtime-rule-3__support-grid,
      .page-poppy-playtime-rule-3__blog-grid {
        grid-template-columns: 1fr; /* Single column */
        gap: 20px;
      }

      .page-poppy-playtime-rule-3__access-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-poppy-playtime-rule-3__access-link {
        font-size: 1em;
        padding: 15px;
      }

      .page-poppy-playtime-rule-3__feature-card,
      .page-poppy-playtime-rule-3__promo-card,
      .page-poppy-playtime-rule-3__support-item,
      .page-poppy-playtime-rule-3__blog-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

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

      /* Ensure all other images are responsive */
      .page-poppy-playtime-rule-3 img:not(.page-poppy-playtime-rule-3__payment-logo) {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* Text wrapping for lists and cards */
      .page-poppy-playtime-rule-3__access-item,
      .page-poppy-playtime-rule-3__feature-description,
      .page-poppy-playtime-rule-3__promo-description,
      .page-poppy-playtime-rule-3__support-description,
      .page-poppy-playtime-rule-3__blog-excerpt,
      .page-poppy-playtime-rule-3__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-poppy-playtime-rule-3__hero-title {
        font-size: 2em;
      }
      .page-poppy-playtime-rule-3__hero-description {
        font-size: 0.9em;
      }
      .page-poppy-playtime-rule-3__section-title {
        font-size: 1.5em;
      }
      .page-poppy-playtime-rule-3__faq-title {
        font-size: 1em;
      }
    }