.page-mod-menu-for-poppy-playtime {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #e0e0e0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-top: 10px; /* Small top padding, assuming body has header offset */
    }

    .page-mod-menu-for-poppy-playtime__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-mod-menu-for-poppy-playtime__section-title {
      font-size: 2.5rem;
      color: #00ff00; /* Bright green for titles */
      text-align: center;
      margin-bottom: 40px;
      padding-top: 20px;
      text-shadow: 0 0 8px rgba(0, 255, 0, 0.6);
    }

    .page-mod-menu-for-poppy-playtime__text-content {
      font-size: 1.1rem;
      margin-bottom: 20px;
      text-align: center;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-mod-menu-for-poppy-playtime__cta-button,
    .page-mod-menu-for-poppy-playtime__hero-button,
    .page-mod-menu-for-poppy-playtime__access-button,
    .page-mod-menu-for-poppy-playtime__promo-button,
    .page-mod-menu-for-poppy-playtime__blog-button {
      display: inline-block;
      background-color: #00ff00; /* Bright green */
      color: #1a1a1a; /* Dark text for contrast */
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1rem;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 20px;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 255, 0, 0.4);
    }

    .page-mod-menu-for-poppy-playtime__cta-button:hover,
    .page-mod-menu-for-poppy-playtime__hero-button:hover,
    .page-mod-menu-for-poppy-playtime__access-button:hover,
    .page-mod-menu-for-poppy-playtime__promo-button:hover,
    .page-mod-menu-for-poppy-playtime__blog-button:hover {
      background-color: #00e600;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 255, 0, 0.6);
    }

    /* Hero Section */
    .page-mod-menu-for-poppy-playtime__hero-section {
      position: relative;
      height: 600px; /* Adjusted for content and image */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      margin-bottom: 50px;
    }

    .page-mod-menu-for-poppy-playtime__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
    }

    .page-mod-menu-for-poppy-playtime__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.5); /* Darken background image */
      max-width: 100%;
    }

    .page-mod-menu-for-poppy-playtime__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
    }

    .page-mod-menu-for-poppy-playtime__hero-title {
      font-size: 3.5rem;
      color: #fff;
      margin-bottom: 20px;
      text-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
      line-height: 1.2;
    }

    .page-mod-menu-for-poppy-playtime__hero-subtitle {
      font-size: 1.4rem;
      color: #ccc;
      margin-bottom: 30px;
    }

    /* Introduction Section */
    .page-mod-menu-for-poppy-playtime__introduction-section {
      padding: 60px 0;
      background-color: #222;
      text-align: center;
    }

    /* Quick Access Section */
    .page-mod-menu-for-poppy-playtime__quick-access-section {
      padding: 60px 0;
      background-color: #1a1a1a;
      text-align: center;
    }

    .page-mod-menu-for-poppy-playtime__access-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    /* Features Section */
    .page-mod-menu-for-poppy-playtime__features-section {
      padding: 60px 0;
      background-color: #222;
    }

    .page-mod-menu-for-poppy-playtime__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-mod-menu-for-poppy-playtime__feature-card {
      background-color: #333;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-mod-menu-for-poppy-playtime__feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    }

    .page-mod-menu-for-poppy-playtime__feature-icon {
      width: 100%;
      max-width: 250px; /* Ensure images are not too large */
      height: auto;
      margin-bottom: 20px;
      border-radius: 5px;
      object-fit: cover;
      max-height: 180px;
    }

    .page-mod-menu-for-poppy-playtime__feature-title {
      font-size: 1.5rem;
      color: #00ff00;
      margin-bottom: 10px;
    }

    .page-mod-menu-for-poppy-playtime__feature-description {
      font-size: 1rem;
      color: #b0b0b0;
    }

    /* Promotions Section */
    .page-mod-menu-for-poppy-playtime__promotions-section {
      padding: 60px 0;
      background-color: #1a1a1a;
      text-align: center;
    }

    .page-mod-menu-for-poppy-playtime__promo-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-mod-menu-for-poppy-playtime__promo-card {
      background-color: #333;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
      max-width: 450px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-mod-menu-for-poppy-playtime__promo-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    }

    .page-mod-menu-for-poppy-playtime__promo-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 5px;
      margin-bottom: 20px;
      max-width: 100%;
    }

    .page-mod-menu-for-poppy-playtime__promo-title {
      font-size: 1.8rem;
      color: #00ff00;
      margin-bottom: 10px;
    }

    .page-mod-menu-for-poppy-playtime__promo-description {
      font-size: 1rem;
      color: #b0b0b0;
      margin-bottom: 20px;
      flex-grow: 1; /* Ensures button is at bottom */
    }

    /* Security Section */
    .page-mod-menu-for-poppy-playtime__security-section {
      padding: 60px 0;
      background-color: #222;
      text-align: center;
    }

    .page-mod-menu-for-poppy-playtime__support-info {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .page-mod-menu-for-poppy-playtime__support-logo {
      height: 80px; /* gamelogo does not specify width/height, use CSS */
      width: auto;
      max-width: 200px;
    }

    .page-mod-menu-for-poppy-playtime__support-text {
      font-size: 1.2rem;
      color: #ccc;
      font-style: italic;
    }

    /* FAQ Section */
    .page-mod-menu-for-poppy-playtime__faq-section {
      padding: 60px 0;
      background-color: #1a1a1a;
    }

    .page-mod-menu-for-poppy-playtime__faq-list {
      max-width: 900px;
      margin: 40px auto 0 auto;
    }

    .page-mod-menu-for-poppy-playtime__faq-item {
      background-color: #333;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-mod-menu-for-poppy-playtime__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #444;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-mod-menu-for-poppy-playtime__faq-question:hover {
      background-color: #555;
    }

    .page-mod-menu-for-poppy-playtime__faq-title {
      font-size: 1.3rem;
      color: #fff;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-mod-menu-for-poppy-playtime__faq-toggle {
      font-size: 1.8rem;
      color: #00ff00;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event */
    }

    .page-mod-menu-for-poppy-playtime__faq-item.active .page-mod-menu-for-poppy-playtime__faq-toggle {
      transform: rotate(45deg);
    }

    .page-mod-menu-for-poppy-playtime__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: #ccc;
      font-size: 1rem;
      box-sizing: border-box; /* Crucial for padding calculation */
    }

    .page-mod-menu-for-poppy-playtime__faq-item.active .page-mod-menu-for-poppy-playtime__faq-answer {
      max-height: 2000px !important; /* Large enough to contain content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-mod-menu-for-poppy-playtime__faq-answer p {
      margin-bottom: 10px;
    }
    .page-mod-menu-for-poppy-playtime__faq-answer p:last-child {
      margin-bottom: 0;
    }


    /* Blog Section */
    .page-mod-menu-for-poppy-playtime__blog-section {
      padding: 60px 0;
      background-color: #222;
    }

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

    .page-mod-menu-for-poppy-playtime__blog-card {
      background-color: #333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-mod-menu-for-poppy-playtime__blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    }

    .page-mod-menu-for-poppy-playtime__blog-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
    }

    .page-mod-menu-for-poppy-playtime__blog-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-mod-menu-for-poppy-playtime__blog-title {
      font-size: 1.5rem;
      color: #00ff00;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .page-mod-menu-for-poppy-playtime__blog-excerpt {
      font-size: 1rem;
      color: #b0b0b0;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-mod-menu-for-poppy-playtime__blog-button {
      align-self: flex-start;
    }

    /* General Image Styles */
    .page-mod-menu-for-poppy-playtime img {
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-mod-menu-for-poppy-playtime__hero-title {
        font-size: 3rem;
      }
      .page-mod-menu-for-poppy-playtime__hero-subtitle {
        font-size: 1.2rem;
      }
      .page-mod-menu-for-poppy-playtime__section-title {
        font-size: 2rem;
      }
      .page-mod-menu-for-poppy-playtime__feature-grid,
      .page-mod-menu-for-poppy-playtime__promo-cards,
      .page-mod-menu-for-poppy-playtime__blog-grid {
        gap: 20px;
      }
    }

    @media (max-width: 768px) {
      .page-mod-menu-for-poppy-playtime__hero-section {
        height: 500px;
      }
      .page-mod-menu-for-poppy-playtime__hero-title {
        font-size: 2.5rem;
      }
      .page-mod-menu-for-poppy-playtime__hero-subtitle {
        font-size: 1rem;
      }
      .page-mod-menu-for-poppy-playtime__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
      }
      .page-mod-menu-for-poppy-playtime__text-content {
        font-size: 1rem;
      }
      .page-mod-menu-for-poppy-playtime__cta-button,
      .page-mod-menu-for-poppy-playtime__hero-button,
      .page-mod-menu-for-poppy-playtime__access-button,
      .page-mod-menu-for-poppy-playtime__promo-button,
      .page-mod-menu-for-poppy-playtime__blog-button {
        padding: 12px 25px;
        font-size: 1rem;
      }
      .page-mod-menu-for-poppy-playtime__access-links {
        flex-direction: column;
        align-items: center;
      }
      .page-mod-menu-for-poppy-playtime__feature-grid {
        grid-template-columns: 1fr;
      }
      .page-mod-menu-for-poppy-playtime__feature-card {
        padding: 20px;
      }
      .page-mod-menu-for-poppy-playtime__promo-card {
        max-width: 100%;
      }
      .page-mod-menu-for-poppy-playtime__blog-grid {
        grid-template-columns: 1fr;
      }

      /* List item responsive rules */
      .page-mod-menu-for-poppy-playtime__feature-card,
      .page-mod-menu-for-poppy-playtime__promo-card,
      .page-mod-menu-for-poppy-playtime__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; /* Adjust padding to avoid excessive inner padding */
        padding-right: 15px !important;
      }
      .page-mod-menu-for-poppy-playtime__feature-description,
      .page-mod-menu-for-poppy-playtime__promo-description,
      .page-mod-menu-for-poppy-playtime__blog-excerpt,
      .page-mod-menu-for-poppy-playtime__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-mod-menu-for-poppy-playtime__container {
        padding: 0 15px; /* Adjust container padding for mobile */
      }
      .page-mod-menu-for-poppy-playtime__faq-question {
        padding: 15px 20px;
      }
      .page-mod-menu-for-poppy-playtime__faq-answer {
        padding: 0 20px;
      }
      .page-mod-menu-for-poppy-playtime__faq-item.active .page-mod-menu-for-poppy-playtime__faq-answer {
        padding: 15px 20px !important;
      }
      .page-mod-menu-for-poppy-playtime__faq-title {
        font-size: 1.1rem;
      }
      .page-mod-menu-for-poppy-playtime__faq-toggle {
        font-size: 1.5rem;
      }
      .page-mod-menu-for-poppy-playtime__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-mod-menu-for-poppy-playtime__hero-section {
        height: 400px;
      }
      .page-mod-menu-for-poppy-playtime__hero-title {
        font-size: 2rem;
      }
      .page-mod-menu-for-poppy-playtime__hero-subtitle {
        font-size: 0.9rem;
      }
      .page-mod-menu-for-poppy-playtime__section-title {
        font-size: 1.5rem;
      }
      .page-mod-menu-for-poppy-playtime__feature-icon {
        max-width: 180px;
        max-height: 120px;
      }
      .page-mod-menu-for-poppy-playtime__promo-image {
        height: 200px;
      }
      .page-mod-menu-for-poppy-playtime__support-logo {
        height: 60px;
      }
    }