.page-poppy-playtime-stick-nodes {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-poppy-playtime-stick-nodes__hero-section {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 500px;
      background-color: #1a1a1a;
      color: #fff;
      overflow: hidden;
      padding: 10px 20px 60px; /* Add a small top padding for decoration, body handles main offset */
      box-sizing: border-box;
    }

    .page-poppy-playtime-stick-nodes__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
      max-width: 100%;
    }

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

    .page-poppy-playtime-stick-nodes__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: #ffcc00;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-poppy-playtime-stick-nodes__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-poppy-playtime-stick-nodes__cta-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-poppy-playtime-stick-nodes__cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-poppy-playtime-stick-nodes__introduction-section,
    .page-poppy-playtime-stick-nodes__quick-access-section,
    .page-poppy-playtime-stick-nodes__game-features-section,
    .page-poppy-playtime-stick-nodes__promotions-section,
    .page-poppy-playtime-stick-nodes__security-support-section,
    .page-poppy-playtime-stick-nodes__faq-section,
    .page-poppy-playtime-stick-nodes__blog-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-poppy-playtime-stick-nodes__section-title {
      font-size: 2.5em;
      color: #222;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-poppy-playtime-stick-nodes__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: #ffcc00;
      margin: 15px auto 0;
      border-radius: 2px;
    }

    .page-poppy-playtime-stick-nodes__section-description {
      font-size: 1.1em;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px;
      color: #555;
    }

    .page-poppy-playtime-stick-nodes__intro-image {
      display: block;
      margin: 40px auto 0;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-poppy-playtime-stick-nodes__keyword-highlight {
      font-weight: bold;
    }

    .page-poppy-playtime-stick-nodes__hero-section .page-poppy-playtime-stick-nodes__keyword-highlight,
    .page-poppy-playtime-stick-nodes__promotions-section .page-poppy-playtime-stick-nodes__keyword-highlight {
      color: #ffcc00;
    }

    .page-poppy-playtime-stick-nodes__introduction-section .page-poppy-playtime-stick-nodes__keyword-highlight,
    .page-poppy-playtime-stick-nodes__game-features-section .page-poppy-playtime-stick-nodes__keyword-highlight,
    .page-poppy-playtime-stick-nodes__security-support-section .page-poppy-playtime-stick-nodes__keyword-highlight,
    .page-poppy-playtime-stick-nodes__faq-section .page-poppy-playtime-stick-nodes__keyword-highlight,
    .page-poppy-playtime-stick-nodes__blog-section .page-poppy-playtime-stick-nodes__keyword-highlight {
      color: #1a1a1a; /* Dark color for light backgrounds to ensure contrast */
    }

    .page-poppy-playtime-stick-nodes__access-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-poppy-playtime-stick-nodes__access-buttons .page-poppy-playtime-stick-nodes__cta-button {
      min-width: 200px;
      text-align: center;
      background-color: #333;
      color: #fff;
    }

    .page-poppy-playtime-stick-nodes__access-buttons .page-poppy-playtime-stick-nodes__cta-button:hover {
      background-color: #555;
    }

    .page-poppy-playtime-stick-nodes__game-features-section {
      background-color: #f0f0f0;
    }

    .page-poppy-playtime-stick-nodes__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-poppy-playtime-stick-nodes__feature-item {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-poppy-playtime-stick-nodes__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    }

    .page-poppy-playtime-stick-nodes__feature-image {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
      margin-bottom: 20px;
      min-width: 200px; /* Ensure minimum size */
      min-height: 200px;
      object-fit: cover;
    }

    .page-poppy-playtime-stick-nodes__feature-title {
      font-size: 1.5em;
      color: #333;
      margin-bottom: 15px;
    }

    .page-poppy-playtime-stick-nodes__feature-text {
      font-size: 1em;
      color: #666;
    }

    .page-poppy-playtime-stick-nodes__promotions-section {
      background-color: #1a1a1a;
      color: #fff;
    }

    .page-poppy-playtime-stick-nodes__promotions-section .page-poppy-playtime-stick-nodes__section-title {
      color: #fff;
    }

    .page-poppy-playtime-stick-nodes__promotions-section .page-poppy-playtime-stick-nodes__section-description {
      color: #ccc;
    }

    .page-poppy-playtime-stick-nodes__promotions-section .page-poppy-playtime-stick-nodes__section-title::after {
      background-color: #ffcc00;
    }

    .page-poppy-playtime-stick-nodes__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-poppy-playtime-stick-nodes__promo-card {
      background-color: #333;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-poppy-playtime-stick-nodes__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    .page-poppy-playtime-stick-nodes__promo-image {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
      margin-bottom: 20px;
      min-width: 200px;
      min-height: 200px;
      object-fit: cover;
    }

    .page-poppy-playtime-stick-nodes__promo-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 15px;
    }

    .page-poppy-playtime-stick-nodes__promo-text {
      font-size: 1em;
      color: #ccc;
      margin-bottom: 20px;
    }

    .page-poppy-playtime-stick-nodes__security-support-section {
      background-color: #f8f8f8;
    }

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

    .page-poppy-playtime-stick-nodes__support-item {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      padding: 25px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-poppy-playtime-stick-nodes__support-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      min-width: 200px; /* Ensure minimum size */
      min-height: 200px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
    }

    .page-poppy-playtime-stick-nodes__support-title {
      font-size: 1.4em;
      color: #333;
      margin-bottom: 10px;
    }

    .page-poppy-playtime-stick-nodes__support-text {
      font-size: 0.95em;
      color: #666;
    }

    .page-poppy-playtime-stick-nodes__faq-section {
      background-color: #eee;
    }

    .page-poppy-playtime-stick-nodes__faq-container {
      max-width: 800px;
      margin: 40px auto 0;
    }

    .page-poppy-playtime-stick-nodes__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-poppy-playtime-stick-nodes__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #ffcc00;
      color: #1a1a1a;
      font-weight: bold;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-poppy-playtime-stick-nodes__faq-question:hover {
      background-color: #e6b800;
    }

    .page-poppy-playtime-stick-nodes__faq-title {
      font-size: 1.1em;
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent text from blocking click */
      color: #1a1a1a; /* Ensure good contrast */
    }

    .page-poppy-playtime-stick-nodes__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent icon from blocking click */
      transition: transform 0.3s ease;
    }

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

    .page-poppy-playtime-stick-nodes__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: #444;
      background-color: #fff;
    }

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

    .page-poppy-playtime-stick-nodes__faq-answer p {
      margin: 0;
    }

    .page-poppy-playtime-stick-nodes__blog-section {
      background-color: #f0f0f0;
    }

    .page-poppy-playtime-stick-nodes__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-poppy-playtime-stick-nodes__blog-post {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .page-poppy-playtime-stick-nodes__blog-post:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    }

    .page-poppy-playtime-stick-nodes__post-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      min-width: 200px;
      min-height: 200px;
      max-width: 100%;
    }

    .page-poppy-playtime-stick-nodes__blog-post > div {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-poppy-playtime-stick-nodes__post-title {
      font-size: 1.3em;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .page-poppy-playtime-stick-nodes__post-title a {
      color: #333;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-poppy-playtime-stick-nodes__post-title a:hover {
      color: #ffcc00;
    }

    .page-poppy-playtime-stick-nodes__post-excerpt {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-poppy-playtime-stick-nodes__post-date {
      font-size: 0.85em;
      color: #999;
      text-align: right;
      margin-top: auto;
    }

    /* --- Mobile Responsiveness --- */
    @media (max-width: 768px) {
      .page-poppy-playtime-stick-nodes__hero-section {
        min-height: 400px;
        padding: 10px 15px 40px;
      }

      .page-poppy-playtime-stick-nodes__hero-title {
        font-size: 2.2em;
      }

      .page-poppy-playtime-stick-nodes__hero-description {
        font-size: 1em;
      }

      .page-poppy-playtime-stick-nodes__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-poppy-playtime-stick-nodes__introduction-section,
      .page-poppy-playtime-stick-nodes__quick-access-section,
      .page-poppy-playtime-stick-nodes__game-features-section,
      .page-poppy-playtime-stick-nodes__promotions-section,
      .page-poppy-playtime-stick-nodes__security-support-section,
      .page-poppy-playtime-stick-nodes__faq-section,
      .page-poppy-playtime-stick-nodes__blog-section {
        padding: 40px 15px;
      }

      .page-poppy-playtime-stick-nodes__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }

      .page-poppy-playtime-stick-nodes__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
      }

      .page-poppy-playtime-stick-nodes__access-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-poppy-playtime-stick-nodes__access-buttons .page-poppy-playtime-stick-nodes__cta-button {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-poppy-playtime-stick-nodes__feature-grid,
      .page-poppy-playtime-stick-nodes__promo-grid,
      .page-poppy-playtime-stick-nodes__support-items,
      .page-poppy-playtime-stick-nodes__blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-poppy-playtime-stick-nodes__feature-item,
      .page-poppy-playtime-stick-nodes__promo-card,
      .page-poppy-playtime-stick-nodes__support-item,
      .page-poppy-playtime-stick-nodes__blog-post {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-poppy-playtime-stick-nodes__feature-title,
      .page-poppy-playtime-stick-nodes__promo-title,
      .page-poppy-playtime-stick-nodes__support-title {
        font-size: 1.3em;
      }

      .page-poppy-playtime-stick-nodes__post-title {
        font-size: 1.1em;
      }

      .page-poppy-playtime-stick-nodes__post-image {
        height: 180px;
      }

      .page-poppy-playtime-stick-nodes__faq-question {
        padding: 12px 15px;
      }

      .page-poppy-playtime-stick-nodes__faq-title {
        font-size: 1em;
      }

      .page-poppy-playtime-stick-nodes__faq-answer {
        padding: 15px !important; /* Adjusted for mobile */
        box-sizing: border-box !important;
      }

      .page-poppy-playtime-stick-nodes__faq-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
    }