:root {
      --primary-color: #FFD700; /* Gold/Yellow accent */
      --secondary-color: #1a1a2e; /* Dark blue/purple background */
      --tertiary-color: #0f3460; /* Slightly lighter dark blue */
      --text-color: #ffffff;
      --heading-color: #FFD700;
      --button-bg: #FFD700;
      --button-text: #1a1a2e;
      --border-color: #3e4459;
      --shadow-color: rgba(0, 0, 0, 0.3);
    }

    .page-poppy-playtime-chapter-5-lemon {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--secondary-color);
      line-height: 1.6;
      padding-top: 10px; /* Small decorative padding, assuming body has header offset */
    }

    .page-poppy-playtime-chapter-5-lemon__section-title {
      color: var(--heading-color);
      text-align: center;
      font-size: 2.5em;
      margin-bottom: 40px;
      padding-top: 60px;
      text-shadow: 2px 2px 4px var(--shadow-color);
    }

    .page-poppy-playtime-chapter-5-lemon__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 80px 20px;
      background-color: var(--tertiary-color);
      position: relative;
      overflow: hidden;
    }

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

    .page-poppy-playtime-chapter-5-lemon__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.2;
      filter: grayscale(50%);
    }

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

    .page-poppy-playtime-chapter-5-lemon__hero-title {
      font-size: 3.5em;
      color: var(--heading-color);
      margin-bottom: 20px;
      text-shadow: 3px 3px 6px var(--shadow-color);
    }

    .page-poppy-playtime-chapter-5-lemon__hero-description {
      font-size: 1.3em;
      color: var(--text-color);
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-poppy-playtime-chapter-5-lemon__hero-cta-button {
      display: inline-block;
      background-color: var(--button-bg);
      color: var(--button-text);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-poppy-playtime-chapter-5-lemon__hero-cta-button:hover {
      background-color: #ffe066;
      transform: translateY(-3px);
    }

    /* Cooperation Partner/Supplier Logo Area CSS */
    .page-poppy-playtime-chapter-5-lemon__payment-providers {
      display: flex;
      flex-direction: column; /* Changed to column to center title */
      align-items: center;
      padding: 60px 20px;
      background-color: var(--secondary-color);
    }

    .page-poppy-playtime-chapter-5-lemon__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-poppy-playtime-chapter-5-lemon__payment-logo {
      flex: 0 0 auto;
      width: 80px;
      height: 80px;
      max-width: 80px;
      max-height: 80px;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--tertiary-color);
      border-radius: 8px;
      padding: 5px;
      box-shadow: 0 4px 8px var(--shadow-color);
    }

    .page-poppy-playtime-chapter-5-lemon__payment-logo img {
      display: block;
      width: 80px !important;
      height: 80px !important;
      max-width: 80px !important;
      max-height: 80px !important;
      object-fit: contain;
      filter: brightness(0.8) grayscale(0.5);
      transition: filter 0.3s ease;
    }
    .page-poppy-playtime-chapter-5-lemon__payment-logo img:hover {
      filter: brightness(1) grayscale(0);
    }

    .page-poppy-playtime-chapter-5-lemon__intro-section,
    .page-poppy-playtime-chapter-5-lemon__security-section {
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 80px 40px;
      gap: 40px;
      background-color: var(--tertiary-color);
      margin-top: 20px;
    }

    .page-poppy-playtime-chapter-5-lemon__intro-section:nth-of-type(odd) {
      flex-direction: row-reverse; /* Alternate image and text */
    }

    .page-poppy-playtime-chapter-5-lemon__intro-content,
    .page-poppy-playtime-chapter-5-lemon__security-content {
      flex: 1;
      min-width: 300px;
    }

    .page-poppy-playtime-chapter-5-lemon__intro-image-wrapper,
    .page-poppy-playtime-chapter-5-lemon__security-image-wrapper {
      flex: 1;
      min-width: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-poppy-playtime-chapter-5-lemon__intro-image,
    .page-poppy-playtime-chapter-5-lemon__security-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 8px 16px var(--shadow-color);
    }

    .page-poppy-playtime-chapter-5-lemon__intro-text,
    .page-poppy-playtime-chapter-5-lemon__security-text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--text-color);
    }

    .page-poppy-playtime-chapter-5-lemon__quick-access-section {
      padding: 80px 20px;
      background-color: var(--secondary-color);
      text-align: center;
    }

    .page-poppy-playtime-chapter-5-lemon__quick-access-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-poppy-playtime-chapter-5-lemon__quick-access-button {
      display: block;
      background-color: var(--tertiary-color);
      color: var(--text-color);
      padding: 20px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: 1px solid var(--border-color);
      box-shadow: 0 4px 8px var(--shadow-color);
    }

    .page-poppy-playtime-chapter-5-lemon__quick-access-button:hover {
      background-color: var(--primary-color);
      color: var(--button-text);
      transform: translateY(-5px);
    }

    .page-poppy-playtime-chapter-5-lemon__games-section,
    .page-poppy-playtime-chapter-5-lemon__promotions-section,
    .page-poppy-playtime-chapter-5-lemon__blog-section {
      padding: 80px 20px;
      background-color: var(--secondary-color);
      text-align: center;
      margin-top: 20px;
    }

    .page-poppy-playtime-chapter-5-lemon__game-grid,
    .page-poppy-playtime-chapter-5-lemon__promo-grid,
    .page-poppy-playtime-chapter-5-lemon__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-poppy-playtime-chapter-5-lemon__game-card,
    .page-poppy-playtime-chapter-5-lemon__promo-card,
    .page-poppy-playtime-chapter-5-lemon__blog-card {
      background-color: var(--tertiary-color);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 16px var(--shadow-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      text-align: left;
      position: relative;
      padding-bottom: 20px; /* Space for button */
    }

    .page-poppy-playtime-chapter-5-lemon__game-card:hover,
    .page-poppy-playtime-chapter-5-lemon__promo-card:hover,
    .page-poppy-playtime-chapter-5-lemon__blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 24px var(--shadow-color);
    }

    .page-poppy-playtime-chapter-5-lemon__game-image,
    .page-poppy-playtime-chapter-5-lemon__promo-image,
    .page-poppy-playtime-chapter-5-lemon__blog-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-bottom: 1px solid var(--border-color);
    }

    .page-poppy-playtime-chapter-5-lemon__game-title,
    .page-poppy-playtime-chapter-5-lemon__promo-title,
    .page-poppy-playtime-chapter-5-lemon__blog-title {
      color: var(--heading-color);
      font-size: 1.5em;
      margin: 20px 20px 10px;
      line-height: 1.3;
    }

    .page-poppy-playtime-chapter-5-lemon__game-description,
    .page-poppy-playtime-chapter-5-lemon__promo-description,
    .page-poppy-playtime-chapter-5-lemon__blog-excerpt {
      color: var(--text-color);
      font-size: 1em;
      margin: 0 20px 20px;
      flex-grow: 1; /* Pushes button to bottom */
    }

    .page-poppy-playtime-chapter-5-lemon__blog-date {
      color: #aaa;
      font-size: 0.9em;
      margin: 0 20px 10px;
    }

    .page-poppy-playtime-chapter-5-lemon__game-button,
    .page-poppy-playtime-chapter-5-lemon__promo-button,
    .page-poppy-playtime-chapter-5-lemon__blog-button {
      display: inline-block;
      background-color: var(--button-bg);
      color: var(--button-text);
      padding: 10px 20px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      margin: 0 20px 0;
      align-self: flex-start;
    }

    .page-poppy-playtime-chapter-5-lemon__game-button:hover,
    .page-poppy-playtime-chapter-5-lemon__promo-button:hover,
    .page-poppy-playtime-chapter-5-lemon__blog-button:hover {
      background-color: #ffe066;
      transform: translateY(-2px);
    }

    .page-poppy-playtime-chapter-5-lemon__faq-section {
      padding: 80px 20px;
      background-color: var(--tertiary-color);
      margin-top: 20px;
    }

    .page-poppy-playtime-chapter-5-lemon__faq-list {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-poppy-playtime-chapter-5-lemon__faq-item {
      background-color: var(--secondary-color);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 8px var(--shadow-color);
    }

    .page-poppy-playtime-chapter-5-lemon__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      user-select: none;
      background-color: var(--secondary-color);
      color: var(--heading-color);
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease;
    }

    .page-poppy-playtime-chapter-5-lemon__faq-question:hover {
      background-color: #2b2b4d;
    }

    .page-poppy-playtime-chapter-5-lemon__faq-question-title {
      margin: 0;
      pointer-events: none;
      color: var(--heading-color);
      flex-grow: 1;
    }

    .page-poppy-playtime-chapter-5-lemon__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none;
      transition: transform 0.3s ease;
      color: var(--primary-color);
    }

    .page-poppy-playtime-chapter-5-lemon__faq-item.active .page-poppy-playtime-chapter-5-lemon__faq-toggle {
      transform: rotate(45deg);
      color: var(--text-color);
    }

    .page-poppy-playtime-chapter-5-lemon__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: var(--text-color);
      background-color: #2b2b4d;
    }

    .page-poppy-playtime-chapter-5-lemon__faq-item.active .page-poppy-playtime-chapter-5-lemon__faq-answer {
      max-height: 2000px !important;
      padding: 20px !important;
      opacity: 1;
    }

    .page-poppy-playtime-chapter-5-lemon__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-poppy-playtime-chapter-5-lemon__hero-title {
        font-size: 2.8em;
      }
      .page-poppy-playtime-chapter-5-lemon__hero-description {
        font-size: 1.1em;
      }
      .page-poppy-playtime-chapter-5-lemon__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-poppy-playtime-chapter-5-lemon__hero-section {
        padding: 60px 15px;
      }
      .page-poppy-playtime-chapter-5-lemon__hero-title {
        font-size: 2.2em;
      }
      .page-poppy-playtime-chapter-5-lemon__hero-description {
        font-size: 1em;
      }
      .page-poppy-playtime-chapter-5-lemon__hero-cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      /* Cooperation Partner/Supplier Logo Area CSS */
      .page-poppy-playtime-chapter-5-lemon__payment-providers {
        flex-direction: column;
        padding: 40px 15px;
      }
      .page-poppy-playtime-chapter-5-lemon__logo-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
      }
      .page-poppy-playtime-chapter-5-lemon__payment-logo,
      .page-poppy-playtime-chapter-5-lemon__payment-logo img {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
      }

      .page-poppy-playtime-chapter-5-lemon__intro-section,
      .page-poppy-playtime-chapter-5-lemon__security-section {
        flex-direction: column;
        padding: 60px 15px;
        gap: 30px;
      }
      .page-poppy-playtime-chapter-5-lemon__intro-section:nth-of-type(odd) {
        flex-direction: column; /* Reset order for mobile */
      }

      .page-poppy-playtime-chapter-5-lemon__intro-image,
      .page-poppy-playtime-chapter-5-lemon__security-image,
      .page-poppy-playtime-chapter-5-lemon__hero-image,
      .page-poppy-playtime-chapter-5-lemon__game-image,
      .page-poppy-playtime-chapter-5-lemon__promo-image,
      .page-poppy-playtime-chapter-5-lemon__blog-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-poppy-playtime-chapter-5-lemon__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding-top: 40px;
      }

      .page-poppy-playtime-chapter-5-lemon__quick-access-section,
      .page-poppy-playtime-chapter-5-lemon__games-section,
      .page-poppy-playtime-chapter-5-lemon__promotions-section,
      .page-poppy-playtime-chapter-5-lemon__blog-section,
      .page-poppy-playtime-chapter-5-lemon__faq-section {
        padding: 60px 15px;
      }

      .page-poppy-playtime-chapter-5-lemon__quick-access-grid,
      .page-poppy-playtime-chapter-5-lemon__game-grid,
      .page-poppy-playtime-chapter-5-lemon__promo-grid,
      .page-poppy-playtime-chapter-5-lemon__blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-poppy-playtime-chapter-5-lemon__quick-access-button {
        font-size: 1em;
        padding: 15px;
      }

      .page-poppy-playtime-chapter-5-lemon__game-card,
      .page-poppy-playtime-chapter-5-lemon__promo-card,
      .page-poppy-playtime-chapter-5-lemon__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-chapter-5-lemon__game-title,
      .page-poppy-playtime-chapter-5-lemon__promo-title,
      .page-poppy-playtime-chapter-5-lemon__blog-title {
        font-size: 1.3em;
        margin: 15px 15px 8px;
      }

      .page-poppy-playtime-chapter-5-lemon__game-description,
      .page-poppy-playtime-chapter-5-lemon__promo-description,
      .page-poppy-playtime-chapter-5-lemon__blog-excerpt {
        font-size: 0.95em;
        margin: 0 15px 15px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-poppy-playtime-chapter-5-lemon__faq-question {
        font-size: 1.1em;
        padding: 15px;
      }

      .page-poppy-playtime-chapter-5-lemon__faq-answer {
        padding: 0 15px;
      }
      .page-poppy-playtime-chapter-5-lemon__faq-item.active .page-poppy-playtime-chapter-5-lemon__faq-answer {
        padding: 15px !important;
      }
      .page-poppy-playtime-chapter-5-lemon__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }