:root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #00BFFF; /* Deep Sky Blue */
      --dark-background: #1a1a2e; /* Dark Blue/Purple */
      --text-color: #e0e0e0; /* Light Gray */
      --accent-color: #E94560; /* Reddish Pink */
      --button-bg: #FFD700; /* Gold */
      --button-text: #1a1a2e; /* Dark background */
      --hover-bg: #FFFACD; /* Light Gold */
      --border-color: #3e206b; /* Dark Purple */
    }

    .page-poppy-playtime-chapter-5-pictures {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--dark-background);
      line-height: 1.6;
      padding-bottom: 20px;
    }

    .page-poppy-playtime-chapter-5-pictures__hero-section,
    .page-poppy-playtime-chapter-5-pictures__introduction-section,
    .page-poppy-playtime-chapter-5-pictures__quick-access-section,
    .page-poppy-playtime-chapter-5-pictures__games-section,
    .page-poppy-playtime-chapter-5-pictures__promotions-section,
    .page-poppy-playtime-chapter-5-pictures__security-section,
    .page-poppy-playtime-chapter-5-pictures__faq-section,
    .page-poppy-playtime-chapter-5-pictures__blog-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      box-sizing: border-box;
    }

    .page-poppy-playtime-chapter-5-pictures__hero-section {
      position: relative;
      overflow: hidden;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 10px; /* Adhering to the 8-16px decorative top spacing */
    }

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

    .page-poppy-playtime-chapter-5-pictures__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.4);
    }

    .page-poppy-playtime-chapter-5-pictures__hero-content {
      position: relative;
      z-index: 2;
      color: #FFFFFF;
      max-width: 800px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-poppy-playtime-chapter-5-pictures__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--primary-color);
      line-height: 1.2;
    }

    .page-poppy-playtime-chapter-5-pictures__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    .page-poppy-playtime-chapter-5-pictures__hero-button,
    .page-poppy-playtime-chapter-5-pictures__access-button,
    .page-poppy-playtime-chapter-5-pictures__game-button,
    .page-poppy-playtime-chapter-5-pictures__promo-button,
    .page-poppy-playtime-chapter-5-pictures__contact-button,
    .page-poppy-playtime-chapter-5-pictures__blog-link {
      display: inline-block;
      background-color: var(--button-bg);
      color: var(--button-text);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 10px;
    }

    .page-poppy-playtime-chapter-5-pictures__hero-button:hover,
    .page-poppy-playtime-chapter-5-pictures__access-button:hover,
    .page-poppy-playtime-chapter-5-pictures__game-button:hover,
    .page-poppy-playtime-chapter-5-pictures__promo-button:hover,
    .page-poppy-playtime-chapter-5-pictures__contact-button:hover,
    .page-poppy-playtime-chapter-5-pictures__blog-link:hover {
      background-color: var(--hover-bg);
      transform: translateY(-3px);
    }

    .page-poppy-playtime-chapter-5-pictures__section-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--primary-color);
      text-align: center;
    }

    .page-poppy-playtime-chapter-5-pictures__section-description {
      font-size: 1.1em;
      margin-bottom: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-poppy-playtime-chapter-5-pictures__image-grid,
    .page-poppy-playtime-chapter-5-pictures__game-categories,
    .page-poppy-playtime-chapter-5-pictures__promo-grid,
    .page-poppy-playtime-chapter-5-pictures__security-features,
    .page-poppy-playtime-chapter-5-pictures__blog-grid {
      display: grid;
      gap: 20px;
      margin-top: 20px;
      justify-content: center;
    }

    .page-poppy-playtime-chapter-5-pictures__image-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .page-poppy-playtime-chapter-5-pictures__grid-image,
    .page-poppy-playtime-chapter-5-pictures__game-image,
    .page-poppy-playtime-chapter-5-pictures__promo-image,
    .page-poppy-playtime-chapter-5-pictures__feature-icon,
    .page-poppy-playtime-chapter-5-pictures__blog-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      border-radius: 8px;
      object-fit: cover;
      box-sizing: border-box;
    }

    .page-poppy-playtime-chapter-5-pictures__grid-image {
      height: 250px;
    }

    .page-poppy-playtime-chapter-5-pictures__access-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-bottom: 40px;
    }

    .page-poppy-playtime-chapter-5-pictures__game-categories {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-poppy-playtime-chapter-5-pictures__game-card {
      background-color: rgba(0, 0, 0, 0.3);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-poppy-playtime-chapter-5-pictures__game-card:hover {
      transform: translateY(-5px);
    }

    .page-poppy-playtime-chapter-5-pictures__game-image {
      height: 200px;
      margin-bottom: 15px;
    }

    .page-poppy-playtime-chapter-5-pictures__game-title {
      font-size: 1.5em;
      color: var(--secondary-color);
      margin-bottom: 10px;
    }

    .page-poppy-playtime-chapter-5-pictures__game-text {
      font-size: 0.95em;
      margin-bottom: 20px;
      color: var(--text-color);
    }

    .page-poppy-playtime-chapter-5-pictures__promo-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .page-poppy-playtime-chapter-5-pictures__promo-card {
      background-color: rgba(0, 0, 0, 0.3);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-poppy-playtime-chapter-5-pictures__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-poppy-playtime-chapter-5-pictures__promo-image {
      height: 200px;
      margin-bottom: 15px;
    }

    .page-poppy-playtime-chapter-5-pictures__promo-title {
      font-size: 1.5em;
      color: var(--secondary-color);
      margin-bottom: 10px;
    }

    .page-poppy-playtime-chapter-5-pictures__promo-text {
      font-size: 0.95em;
      margin-bottom: 20px;
      color: var(--text-color);
    }

    .page-poppy-playtime-chapter-5-pictures__security-features {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-poppy-playtime-chapter-5-pictures__feature-item {
      background-color: rgba(0, 0, 0, 0.3);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 20px;
      text-align: center;
    }

    .page-poppy-playtime-chapter-5-pictures__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 15px;
    }

    .page-poppy-playtime-chapter-5-pictures__feature-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-poppy-playtime-chapter-5-pictures__feature-text {
      font-size: 0.9em;
      color: var(--text-color);
    }

    .page-poppy-playtime-chapter-5-pictures__contact-button {
      margin-top: 30px;
    }

    .page-poppy-playtime-chapter-5-pictures__faq-list {
      text-align: left;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-poppy-playtime-chapter-5-pictures__faq-item {
      background-color: rgba(0, 0, 0, 0.3);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-poppy-playtime-chapter-5-pictures__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: rgba(0, 0, 0, 0.5);
      transition: background-color 0.3s ease;
    }

    .page-poppy-playtime-chapter-5-pictures__faq-question:hover {
      background-color: rgba(0, 0, 0, 0.7);
    }

    .page-poppy-playtime-chapter-5-pictures__faq-title {
      font-size: 1.2em;
      color: var(--primary-color);
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-poppy-playtime-chapter-5-pictures__faq-toggle {
      font-size: 1.5em;
      color: var(--secondary-color);
      margin-left: 10px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event */
    }

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

    .page-poppy-playtime-chapter-5-pictures__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);
    }

    .page-poppy-playtime-chapter-5-pictures__faq-item.active .page-poppy-playtime-chapter-5-pictures__faq-answer {
      max-height: 2000px !important; /* Use !important to ensure override */
      padding: 20px !important; /* Use !important to ensure override */
      opacity: 1;
    }

    .page-poppy-playtime-chapter-5-pictures__blog-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .page-poppy-playtime-chapter-5-pictures__blog-card {
      background-color: rgba(0, 0, 0, 0.3);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      text-align: left;
      transition: transform 0.3s ease;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .page-poppy-playtime-chapter-5-pictures__blog-card:hover {
      transform: translateY(-5px);
    }

    .page-poppy-playtime-chapter-5-pictures__blog-image {
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid var(--border-color);
    }

    .page-poppy-playtime-chapter-5-pictures__blog-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-poppy-playtime-chapter-5-pictures__blog-title {
      font-size: 1.4em;
      color: var(--secondary-color);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .page-poppy-playtime-chapter-5-pictures__blog-date {
      font-size: 0.85em;
      color: #999;
      margin-bottom: 10px;
    }

    .page-poppy-playtime-chapter-5-pictures__blog-excerpt {
      font-size: 0.9em;
      color: var(--text-color);
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-poppy-playtime-chapter-5-pictures__blog-link {
      align-self: flex-start;
      padding: 10px 20px;
      font-size: 0.9em;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-poppy-playtime-chapter-5-pictures__hero-title {
        font-size: 2.5em;
      }

      .page-poppy-playtime-chapter-5-pictures__hero-description,
      .page-poppy-playtime-chapter-5-pictures__section-description {
        font-size: 1em;
      }

      .page-poppy-playtime-chapter-5-pictures__section-title {
        font-size: 2em;
      }

      .page-poppy-playtime-chapter-5-pictures__hero-section,
      .page-poppy-playtime-chapter-5-pictures__introduction-section,
      .page-poppy-playtime-chapter-5-pictures__quick-access-section,
      .page-poppy-playtime-chapter-5-pictures__games-section,
      .page-poppy-playtime-chapter-5-pictures__promotions-section,
      .page-poppy-playtime-chapter-5-pictures__security-section,
      .page-poppy-playtime-chapter-5-pictures__faq-section,
      .page-poppy-playtime-chapter-5-pictures__blog-section {
        padding: 30px 15px;
      }

      .page-poppy-playtime-chapter-5-pictures__hero-button,
      .page-poppy-playtime-chapter-5-pictures__access-button,
      .page-poppy-playtime-chapter-5-pictures__game-button,
      .page-poppy-playtime-chapter-5-pictures__promo-button,
      .page-poppy-playtime-chapter-5-pictures__contact-button,
      .page-poppy-playtime-chapter-5-pictures__blog-link {
        padding: 12px 20px;
        font-size: 0.9em;
      }

      .page-poppy-playtime-chapter-5-pictures__image-grid,
      .page-poppy-playtime-chapter-5-pictures__game-categories,
      .page-poppy-playtime-chapter-5-pictures__promo-grid,
      .page-poppy-playtime-chapter-5-pictures__security-features,
      .page-poppy-playtime-chapter-5-pictures__blog-grid {
        grid-template-columns: 1fr;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-poppy-playtime-chapter-5-pictures__grid-image,
      .page-poppy-playtime-chapter-5-pictures__game-image,
      .page-poppy-playtime-chapter-5-pictures__promo-image,
      .page-poppy-playtime-chapter-5-pictures__feature-icon,
      .page-poppy-playtime-chapter-5-pictures__blog-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-poppy-playtime-chapter-5-pictures__access-buttons {
        flex-direction: column;
      }

      .page-poppy-playtime-chapter-5-pictures__faq-question {
        padding: 15px;
      }

      .page-poppy-playtime-chapter-5-pictures__faq-answer {
        padding: 0 15px;
      }

      .page-poppy-playtime-chapter-5-pictures__faq-item.active .page-poppy-playtime-chapter-5-pictures__faq-answer {
        padding: 15px !important;
      }

      .page-poppy-playtime-chapter-5-pictures__blog-card {
        margin: 0 auto;
      }

      .page-poppy-playtime-chapter-5-pictures__faq-title {
        font-size: 1.1em;
      }
    }