.page-poppy-playtime-plot {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Small decorative top padding, assuming body already has header offset */
    }

    .page-poppy-playtime-plot__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 40px 20px;
      background-color: #222;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .page-poppy-playtime-plot__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      opacity: 0.3;
      overflow: hidden;
    }

    .page-poppy-playtime-plot__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-poppy-playtime-plot__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-poppy-playtime-plot__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #e74c3c; /* A horror-themed color */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-poppy-playtime-plot__highlight {
      color: #f1c40f; /* Highlight color */
    }

    .page-poppy-playtime-plot__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-poppy-playtime-plot__cta-button {
      display: inline-block;
      background-color: #e74c3c;
      color: #fff;
      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-plot__cta-button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    .page-poppy-playtime-plot__section-title {
      font-size: 2.2em;
      color: #333;
      text-align: center;
      margin: 60px 20px 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-poppy-playtime-plot__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #e74c3c;
      border-radius: 2px;
    }

    .page-poppy-playtime-plot__story-overview-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-poppy-playtime-plot__content-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 60px;
    }

    .page-poppy-playtime-plot__story-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-poppy-playtime-plot__story-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-poppy-playtime-plot__story-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-poppy-playtime-plot__card-title {
      font-size: 1.5em;
      color: #e74c3c;
      margin: 20px 15px 10px;
    }

    .page-poppy-playtime-plot__card-text {
      font-size: 1em;
      color: #555;
      padding: 0 15px;
    }

    .page-poppy-playtime-plot__promo-banner {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #34495e;
        color: #fff;
        padding: 30px;
        border-radius: 10px;
        margin-top: 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-poppy-playtime-plot__promo-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.1;
        z-index: 0;
        max-width: 100%; /* Ensure responsiveness */
    }

    .page-poppy-playtime-plot__promo-text-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
    }

    .page-poppy-playtime-plot__promo-heading {
        font-size: 2em;
        margin-bottom: 15px;
        color: #f1c40f;
    }

    .page-poppy-playtime-plot__promo-description {
        font-size: 1.1em;
        margin-bottom: 25px;
    }

    .page-poppy-playtime-plot__promo-button {
        background-color: #27ae60;
    }

    .page-poppy-playtime-plot__promo-button:hover {
        background-color: #2ecc71;
    }

    .page-poppy-playtime-plot__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto 80px;
    }

    .page-poppy-playtime-plot__faq-list {
      margin-top: 30px;
    }

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

    .page-poppy-playtime-plot__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f5f5f5;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-poppy-playtime-plot__faq-question:hover {
      background-color: #eee;
    }

    .page-poppy-playtime-plot__faq-title {
      font-size: 1.2em;
      color: #333;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-poppy-playtime-plot__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #e74c3c;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event */
    }

    .page-poppy-playtime-plot__faq-item.active .page-poppy-playtime-plot__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus */
    }

    .page-poppy-playtime-plot__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
      font-size: 1em;
    }

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

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

    .page-poppy-playtime-plot__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-poppy-playtime-plot__floating-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 120px;
      height: 50px;
      border-radius: 25px;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      font-size: 1em;
    }

    .page-poppy-playtime-plot__floating-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .page-poppy-playtime-plot__register-btn {
      background-color: #27ae60;
    }

    .page-poppy-playtime-plot__register-btn:hover {
      background-color: #2ecc71;
    }

    .page-poppy-playtime-plot__login-btn {
      background-color: #3498db;
    }

    .page-poppy-playtime-plot__login-btn:hover {
      background-color: #5dade2;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-poppy-playtime-plot__hero-title {
        font-size: 2em;
      }

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

      .page-poppy-playtime-plot__section-title {
        font-size: 1.8em;
        margin-top: 30px;
        margin-bottom: 20px;
      }

      .page-poppy-playtime-plot__content-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
      }

      .page-poppy-playtime-plot__story-card {
        margin: 0 auto;
        width: 100%;
        max-width: 350px; /* Constrain width for smaller screens */
        box-sizing: border-box !important;
      }

      .page-poppy-playtime-plot__story-image {
        height: 200px;
      }

      .page-poppy-playtime-plot__card-title {
        font-size: 1.3em;
      }

      .page-poppy-playtime-plot__promo-banner {
          padding: 20px;
      }

      .page-poppy-playtime-plot__promo-heading {
          font-size: 1.5em;
      }

      .page-poppy-playtime-plot__promo-description {
          font-size: 0.95em;
      }

      .page-poppy-playtime-plot__faq-question,
      .page-poppy-playtime-plot__faq-answer {
        padding: 15px 15px;
      }

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

      .page-poppy-playtime-plot__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Buttons side-by-side on mobile */
        gap: 8px;
      }

      .page-poppy-playtime-plot__floating-btn {
        width: 100px;
        height: 45px;
        font-size: 0.9em;
      }

      /* List item specific responsive rules, for generic list-like elements */
      .page-poppy-playtime-plot__content-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-poppy-playtime-plot__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important; /* Adjust padding for mobile */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-poppy-playtime-plot__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
        .page-poppy-playtime-plot__hero-title {
            font-size: 1.7em;
        }
        .page-poppy-playtime-plot__promo-heading {
            font-size: 1.3em;
        }
        .page-poppy-playtime-plot__floating-buttons {
            bottom: 10px;
            right: 10px;
        }
        .page-poppy-playtime-plot__floating-btn {
            width: 90px;
            height: 40px;
            font-size: 0.85em;
        }
    }