:root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #1a202c; /* Dark Grey */
      --accent-color: #E53E3E; /* Red */
      --text-color: #e2e8f0; /* Light Grey */
      --background-color: #111827; /* Very Dark Blue-Grey */
      --card-background: #2d3748; /* Medium Dark Grey */
      --border-color: #4a5568; /* Greyish Blue */
      --header-offset: 122px; /* Default for sites without body padding */
    }

    body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      background-color: var(--background-color);
      color: var(--text-color);
      line-height: 1.6;
      padding-top: var(--header-offset); /* Ensure content is not hidden behind fixed header */
    }

    .page-poppy-playtime-all-the-characters {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-poppy-playtime-all-the-characters__section {
      padding: 60px 0;
      border-bottom: 1px solid var(--border-color);
    }

    .page-poppy-playtime-all-the-characters__section:last-of-type {
      border-bottom: none;
    }

    .page-poppy-playtime-all-the-characters__h1,
    .page-poppy-playtime-all-the-characters__h2 {
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 40px;
      font-weight: bold;
    }

    .page-poppy-playtime-all-the-characters__h1 {
      font-size: 2.8em;
    }

    .page-poppy-playtime-all-the-characters__h2 {
      font-size: 2.2em;
    }

    .page-poppy-playtime-all-the-characters__p {
      margin-bottom: 20px;
      text-align: center;
      font-size: 1.1em;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-poppy-playtime-all-the-characters__btn {
      display: inline-block;
      background-color: var(--accent-color);
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: 20px;
      font-size: 1.1em;
    }

    .page-poppy-playtime-all-the-characters__btn:hover {
      background-color: #C53030;
    }

    /* Hero Section */
    .page-poppy-playtime-all-the-characters__hero-section {
      position: relative;
      height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, body already handles main offset */
    }

    .page-poppy-playtime-all-the-characters__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.5);
    }

    .page-poppy-playtime-all-the-characters__hero-content {
      z-index: 1;
      color: #ffffff;
      max-width: 900px;
      padding: 0 20px;
    }

    .page-poppy-playtime-all-the-characters__hero-content .page-poppy-playtime-all-the-characters__h1 {
      color: #ffffff;
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-poppy-playtime-all-the-characters__hero-content .page-poppy-playtime-all-the-characters__p {
      color: #e2e8f0;
      font-size: 1.3em;
      margin-bottom: 30px;
    }

    /* Payment Providers */
    .page-poppy-playtime-all-the-characters__payment-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 30px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: 40px 0;
      background-color: var(--card-background);
    }
    .page-poppy-playtime-all-the-characters__payment-logo {
      flex: 0 0 auto;
      width: 80px;
      height: 80px;
      max-width: 80px;
      max-height: 80px;
      box-sizing: border-box;
    }
    .page-poppy-playtime-all-the-characters__payment-logo img {
      display: block;
      width: 80px !important;
      height: 80px !important;
      max-width: 80px !important;
      max-height: 80px !important;
      object-fit: contain;
    }

    /* Intro Section */
    .page-poppy-playtime-all-the-characters__intro-section .page-poppy-playtime-all-the-characters__p {
      text-align: left;
      max-width: 100%;
    }

    /* Quick Access */
    .page-poppy-playtime-all-the-characters__quick-access-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-poppy-playtime-all-the-characters__quick-access-item {
      background-color: var(--card-background);
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .page-poppy-playtime-all-the-characters__quick-access-item:hover {
      transform: translateY(-5px);
    }

    .page-poppy-playtime-all-the-characters__quick-access-item h3 {
      color: var(--primary-color);
      margin-top: 0;
      font-size: 1.4em;
    }

    .page-poppy-playtime-all-the-characters__quick-access-item .page-poppy-playtime-all-the-characters__btn {
      margin-top: 15px;
      font-size: 1em;
      padding: 10px 20px;
    }

    /* Games Section */
    .page-poppy-playtime-all-the-characters__games-grid,
    .page-poppy-playtime-all-the-characters__promotions-grid,
    .page-poppy-playtime-all-the-characters__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-poppy-playtime-all-the-characters__card {
      background-color: var(--card-background);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-poppy-playtime-all-the-characters__card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    }

    .page-poppy-playtime-all-the-characters__card-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
    }

    .page-poppy-playtime-all-the-characters__card-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-poppy-playtime-all-the-characters__card-content h3 {
      color: var(--primary-color);
      margin-top: 0;
      font-size: 1.5em;
      margin-bottom: 15px;
    }

    .page-poppy-playtime-all-the-characters__card-content p {
      color: var(--text-color);
      font-size: 1em;
      line-height: 1.5;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-poppy-playtime-all-the-characters__card-content .page-poppy-playtime-all-the-characters__btn {
      align-self: flex-start;
      margin-top: auto;
      font-size: 0.9em;
      padding: 10px 20px;
    }

    /* Security Section */
    .page-poppy-playtime-all-the-characters__security-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-poppy-playtime-all-the-characters__security-item {
      background-color: var(--card-background);
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
    }

    .page-poppy-playtime-all-the-characters__security-item h3 {
      color: var(--primary-color);
      font-size: 1.6em;
      margin-bottom: 15px;
    }

    .page-poppy-playtime-all-the-characters__security-item p {
      color: var(--text-color);
      font-size: 1em;
    }

    /* FAQ Section */
    .page-poppy-playtime-all-the-characters__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-poppy-playtime-all-the-characters__faq-item {
      background-color: var(--card-background);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .page-poppy-playtime-all-the-characters__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: var(--secondary-color);
      color: var(--primary-color);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-poppy-playtime-all-the-characters__faq-question:hover {
      background-color: #2c3440;
    }

    .page-poppy-playtime-all-the-characters__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--primary-color);
      pointer-events: none; /* Prevent click on h3 from interfering */
    }

    .page-poppy-playtime-all-the-characters__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent click on toggle from interfering */
    }

    .page-poppy-playtime-all-the-characters__faq-item.active .page-poppy-playtime-all-the-characters__faq-toggle {
      transform: rotate(45deg);
    }

    .page-poppy-playtime-all-the-characters__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Blog Section */
    .page-poppy-playtime-all-the-characters__blog-card .page-poppy-playtime-all-the-characters__card-content h3 {
      min-height: 50px; /* Ensure consistent height for titles */
    }

    .page-poppy-playtime-all-the-characters__blog-card .page-poppy-playtime-all-the-characters__card-content p {
      min-height: 70px; /* Ensure consistent height for summaries */
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-poppy-playtime-all-the-characters__h1 {
        font-size: 2.2em;
      }

      .page-poppy-playtime-all-the-characters__h2 {
        font-size: 1.8em;
      }

      .page-poppy-playtime-all-the-characters__p {
        font-size: 1em;
        padding: 0 10px;
      }

      .page-poppy-playtime-all-the-characters__hero-section {
        height: 400px;
      }

      .page-poppy-playtime-all-the-characters__hero-content .page-poppy-playtime-all-the-characters__h1 {
        font-size: 2.5em;
      }

      .page-poppy-playtime-all-the-characters__hero-content .page-poppy-playtime-all-the-characters__p {
        font-size: 1.1em;
      }

      .page-poppy-playtime-all-the-characters__payment-providers {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 20px 0;
      }
      .page-poppy-playtime-all-the-characters__payment-logo,
      .page-poppy-playtime-all-the-characters__payment-logo img {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
      }

      .page-poppy-playtime-all-the-characters__section {
        padding: 40px 0;
      }

      .page-poppy-playtime-all-the-characters__quick-access-grid,
      .page-poppy-playtime-all-the-characters__games-grid,
      .page-poppy-playtime-all-the-characters__promotions-grid,
      .page-poppy-playtime-all-the-characters__security-content,
      .page-poppy-playtime-all-the-characters__blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-poppy-playtime-all-the-characters__card-image {
        height: 200px;
      }

      .page-poppy-playtime-all-the-characters__card-content {
        padding: 20px;
      }

      .page-poppy-playtime-all-the-characters__card-content h3 {
        font-size: 1.3em;
      }

      .page-poppy-playtime-all-the-characters__card-content p {
        font-size: 0.95em;
      }

      /* List item responsiveness */
      .page-poppy-playtime-all-the-characters__quick-access-item,
      .page-poppy-playtime-all-the-characters__games-grid > *,
      .page-poppy-playtime-all-the-characters__promotions-grid > *,
      .page-poppy-playtime-all-the-characters__security-item,
      .page-poppy-playtime-all-the-characters__blog-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-poppy-playtime-all-the-characters__faq-list {
        padding: 0 10px;
      }

      .page-poppy-playtime-all-the-characters__faq-question,
      .page-poppy-playtime-all-the-characters__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .page-poppy-playtime-all-the-characters__faq-question h3 {
        font-size: 1em;
      }

      .page-poppy-playtime-all-the-characters__faq-answer p {
        font-size: 0.9em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }