:root {
      --page-poppy-toy-poppy-playtime-primary-color: #FFD700; /* Gold */
      --page-poppy-toy-poppy-playtime-secondary-color: #E60000; /* Red */
      --page-poppy-toy-poppy-playtime-dark-bg: #1A1A1A; /* Dark Gray */
      --page-poppy-toy-poppy-playtime-light-text: #FFFFFF;
      --page-poppy-toy-poppy-playtime-gray-text: #CCCCCC;
      --page-poppy-toy-poppy-playtime-medium-gray: #333333;
      --page-poppy-toy-poppy-playtime-border-color: #444444;
      --page-poppy-toy-poppy-playtime-box-shadow: rgba(0, 0, 0, 0.5);
    }

    .page-poppy-toy-poppy-playtime {
      font-family: 'Arial', sans-serif;
      color: var(--page-poppy-toy-poppy-playtime-light-text);
      background-color: var(--page-poppy-toy-poppy-playtime-dark-bg);
      line-height: 1.6;
    }

    .page-poppy-toy-poppy-playtime__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-poppy-toy-poppy-playtime__section-title {
      color: var(--page-poppy-toy-poppy-playtime-primary-color);
      text-align: center;
      margin-bottom: 40px;
      font-size: 2.5em;
      padding-top: 20px;
    }

    .page-poppy-toy-poppy-playtime__text-content {
      text-align: center;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--page-poppy-toy-poppy-playtime-gray-text);
      font-size: 1.1em;
    }

    /* HERO Section */
    .page-poppy-toy-poppy-playtime__hero-section {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      min-height: 600px;
      overflow: hidden;
      padding: 10px 0 60px 0; /* 10px top padding for decorative spacing, body handles main offset */
      background-color: #000;
    }

    .page-poppy-toy-poppy-playtime__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .page-poppy-toy-poppy-playtime__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
    }

    .page-poppy-toy-poppy-playtime__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
    }

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

    .page-poppy-toy-poppy-playtime__hero-subtitle {
      font-size: 1.5em;
      color: var(--page-poppy-toy-poppy-playtime-light-text);
      margin-bottom: 40px;
    }

    .page-poppy-toy-poppy-playtime__hero-cta-group {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .page-poppy-toy-poppy-playtime__hero-button {
      display: inline-block;
      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;
      box-sizing: border-box;
    }

    .page-poppy-toy-poppy-playtime__hero-button--primary {
      background-color: var(--page-poppy-toy-poppy-playtime-primary-color);
      color: var(--page-poppy-toy-poppy-playtime-dark-bg);
      border: 2px solid var(--page-poppy-toy-poppy-playtime-primary-color);
    }

    .page-poppy-toy-poppy-playtime__hero-button--primary:hover {
      background-color: #FFC400;
      transform: translateY(-3px);
    }

    .page-poppy-toy-poppy-playtime__hero-button--secondary {
      background-color: transparent;
      color: var(--page-poppy-toy-poppy-playtime-primary-color);
      border: 2px solid var(--page-poppy-toy-poppy-playtime-primary-color);
    }

    .page-poppy-toy-poppy-playtime__hero-button--secondary:hover {
      background-color: var(--page-poppy-toy-poppy-playtime-primary-color);
      color: var(--page-poppy-toy-poppy-playtime-dark-bg);
      transform: translateY(-3px);
    }

    /* Introduction Section */
    .page-poppy-toy-poppy-playtime__introduction-section {
      padding: 60px 0;
      background-color: var(--page-poppy-toy-poppy-playtime-medium-gray);
    }

    .page-poppy-toy-poppy-playtime__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .page-poppy-toy-poppy-playtime__feature-item {
      background-color: var(--page-poppy-toy-poppy-playtime-dark-bg);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px var(--page-poppy-toy-poppy-playtime-box-shadow);
      transition: transform 0.3s ease;
    }

    .page-poppy-toy-poppy-playtime__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-poppy-toy-poppy-playtime__feature-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
    }

    .page-poppy-toy-poppy-playtime__feature-title {
      font-size: 1.5em;
      color: var(--page-poppy-toy-poppy-playtime-primary-color);
      margin-bottom: 10px;
    }

    .page-poppy-toy-poppy-playtime__feature-description {
      color: var(--page-poppy-toy-poppy-playtime-gray-text);
    }

    /* Quick Access Section */
    .page-poppy-toy-poppy-playtime__quick-access-section {
      padding: 60px 0;
      background-color: var(--page-poppy-toy-poppy-playtime-dark-bg);
    }

    .page-poppy-toy-poppy-playtime__access-links-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-poppy-toy-poppy-playtime__access-link {
      background-color: var(--page-poppy-toy-poppy-playtime-medium-gray);
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      text-decoration: none;
      color: var(--page-poppy-toy-poppy-playtime-light-text);
      font-weight: bold;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-poppy-toy-poppy-playtime__access-link:hover {
      background-color: var(--page-poppy-toy-poppy-playtime-primary-color);
      color: var(--page-poppy-toy-poppy-playtime-dark-bg);
      transform: translateY(-5px);
    }

    .page-poppy-toy-poppy-playtime__access-icon {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 15px;
      max-width: 100%;
      height: auto;
    }

    .page-poppy-toy-poppy-playtime__access-text {
      font-size: 1.1em;
    }

    /* Games Section */
    .page-poppy-toy-poppy-playtime__games-section {
      padding: 60px 0;
      background-color: var(--page-poppy-toy-poppy-playtime-medium-gray);
    }

    .page-poppy-toy-poppy-playtime__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .page-poppy-toy-poppy-playtime__game-card {
      background-color: var(--page-poppy-toy-poppy-playtime-dark-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px var(--page-poppy-toy-poppy-playtime-box-shadow);
      text-align: center;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
    }

    .page-poppy-toy-poppy-playtime__game-card:hover {
      transform: translateY(-5px);
    }

    .page-poppy-toy-poppy-playtime__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
    }

    .page-poppy-toy-poppy-playtime__game-title {
      font-size: 1.6em;
      color: var(--page-poppy-toy-poppy-playtime-primary-color);
      margin: 20px 15px 10px 15px;
    }

    .page-poppy-toy-poppy-playtime__game-description {
      color: var(--page-poppy-toy-poppy-playtime-gray-text);
      padding: 0 15px 20px 15px;
      flex-grow: 1;
    }

    .page-poppy-toy-poppy-playtime__game-button {
      display: inline-block;
      background-color: var(--page-poppy-toy-poppy-playtime-secondary-color);
      color: var(--page-poppy-toy-poppy-playtime-light-text);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      margin: 0 15px 20px 15px;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-poppy-toy-poppy-playtime__game-button:hover {
      background-color: #CC0000;
    }

    .page-poppy-toy-poppy-playtime__providers-logos {
        margin-top: 60px;
        text-align: center;
        padding: 30px;
        background-color: var(--page-poppy-toy-poppy-playtime-dark-bg);
        border-radius: 10px;
    }

    .page-poppy-toy-poppy-playtime__providers-title {
        color: var(--page-poppy-toy-poppy-playtime-primary-color);
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-poppy-toy-poppy-playtime__logo-strip {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .page-poppy-toy-poppy-playtime__provider-logo {
        height: 60px; /* Adjust height as needed, as gamelogo doesn't have intrinsic size */
        width: auto;
        object-fit: contain;
        max-width: 100%;
        height: auto;
    }

    /* Promotions Section */
    .page-poppy-toy-poppy-playtime__promotions-section {
      padding: 60px 0;
      background-color: var(--page-poppy-toy-poppy-playtime-dark-bg);
    }

    .page-poppy-toy-poppy-playtime__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .page-poppy-toy-poppy-playtime__promo-card {
      background-color: var(--page-poppy-toy-poppy-playtime-medium-gray);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px var(--page-poppy-toy-poppy-playtime-box-shadow);
      text-align: center;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
    }

    .page-poppy-toy-poppy-playtime__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-poppy-toy-poppy-playtime__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100%;
    }

    .page-poppy-toy-poppy-playtime__promo-title {
      font-size: 1.6em;
      color: var(--page-poppy-toy-poppy-playtime-primary-color);
      margin: 20px 15px 10px 15px;
    }

    .page-poppy-toy-poppy-playtime__promo-description {
      color: var(--page-poppy-toy-poppy-playtime-gray-text);
      padding: 0 15px 20px 15px;
      flex-grow: 1;
    }

    .page-poppy-toy-poppy-playtime__promo-button {
      display: inline-block;
      background-color: var(--page-poppy-toy-poppy-playtime-primary-color);
      color: var(--page-poppy-toy-poppy-playtime-dark-bg);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      margin: 0 15px 20px 15px;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-poppy-toy-poppy-playtime__promo-button:hover {
      background-color: #FFC400;
    }

    /* Security & Support Section */
    .page-poppy-toy-poppy-playtime__security-support-section {
      padding: 60px 0;
      background-color: var(--page-poppy-toy-poppy-playtime-medium-gray);
    }

    .page-poppy-toy-poppy-playtime__info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .page-poppy-toy-poppy-playtime__info-item {
      background-color: var(--page-poppy-toy-poppy-playtime-dark-bg);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px var(--page-poppy-toy-poppy-playtime-box-shadow);
      transition: transform 0.3s ease;
    }

    .page-poppy-toy-poppy-playtime__info-item:hover {
      transform: translateY(-5px);
    }

    .page-poppy-toy-poppy-playtime__info-icon {
      width: 90px;
      height: 90px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
    }

    .page-poppy-toy-poppy-playtime__info-title {
      font-size: 1.5em;
      color: var(--page-poppy-toy-poppy-playtime-primary-color);
      margin-bottom: 10px;
    }

    .page-poppy-toy-poppy-playtime__info-description {
      color: var(--page-poppy-toy-poppy-playtime-gray-text);
    }

    .page-poppy-toy-poppy-playtime__contact-cta {
      text-align: center;
      margin-top: 60px;
    }

    .page-poppy-toy-poppy-playtime__contact-button {
      display: inline-block;
      background-color: var(--page-poppy-toy-poppy-playtime-secondary-color);
      color: var(--page-poppy-toy-poppy-playtime-light-text);
      padding: 15px 35px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-poppy-toy-poppy-playtime__contact-button:hover {
      background-color: #CC0000;
      transform: translateY(-3px);
    }

    /* FAQ Section */
    .page-poppy-toy-poppy-playtime__faq-section {
      padding: 60px 0;
      background-color: var(--page-poppy-toy-poppy-playtime-dark-bg);
    }

    .page-poppy-toy-poppy-playtime__faq-list {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-poppy-toy-poppy-playtime__faq-item {
      background-color: var(--page-poppy-toy-poppy-playtime-medium-gray);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-poppy-toy-poppy-playtime__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--page-poppy-toy-poppy-playtime-medium-gray);
      color: var(--page-poppy-toy-poppy-playtime-light-text);
      font-weight: bold;
      font-size: 1.2em;
      border-bottom: 1px solid var(--page-poppy-toy-poppy-playtime-border-color);
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-poppy-toy-poppy-playtime__faq-question:hover {
      background-color: #444444;
    }

    .page-poppy-toy-poppy-playtime__faq-question .page-poppy-toy-poppy-playtime__faq-title {
      margin: 0;
      color: var(--page-poppy-toy-poppy-playtime-light-text);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-poppy-toy-poppy-playtime__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent span from blocking click event */
      transition: transform 0.3s ease;
      color: var(--page-poppy-toy-poppy-playtime-primary-color);
    }

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

    .page-poppy-toy-poppy-playtime__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      color: var(--page-poppy-toy-poppy-playtime-gray-text);
      background-color: #282828;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    .page-poppy-toy-poppy-playtime__faq-answer p {
      margin: 0;
    }

    /* Blog Section */
    .page-poppy-toy-poppy-playtime__blog-section {
      padding: 60px 0;
      background-color: var(--page-poppy-toy-poppy-playtime-medium-gray);
    }

    .page-poppy-toy-poppy-playtime__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .page-poppy-toy-poppy-playtime__blog-card {
      background-color: var(--page-poppy-toy-poppy-playtime-dark-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px var(--page-poppy-toy-poppy-playtime-box-shadow);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
    }

    .page-poppy-toy-poppy-playtime__blog-card:hover {
      transform: translateY(-5px);
    }

    .page-poppy-toy-poppy-playtime__blog-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      max-width: 100%;
    }

    .page-poppy-toy-poppy-playtime__blog-content {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

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

    .page-poppy-toy-poppy-playtime__blog-excerpt {
      color: var(--page-poppy-toy-poppy-playtime-gray-text);
      font-size: 0.95em;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-poppy-toy-poppy-playtime__blog-link {
      display: inline-block;
      background-color: var(--page-poppy-toy-poppy-playtime-secondary-color);
      color: var(--page-poppy-toy-poppy-playtime-light-text);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      align-self: flex-start;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-poppy-toy-poppy-playtime__blog-link:hover {
      background-color: #CC0000;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-poppy-toy-poppy-playtime__hero-title {
        font-size: 3em;
      }
      .page-poppy-toy-poppy-playtime__hero-subtitle {
        font-size: 1.3em;
      }
      .page-poppy-toy-poppy-playtime__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-poppy-toy-poppy-playtime__container {
        padding: 15px;
      }
      .page-poppy-toy-poppy-playtime__hero-section {
        min-height: 500px;
      }
      .page-poppy-toy-poppy-playtime__hero-title {
        font-size: 2.5em;
      }
      .page-poppy-toy-poppy-playtime__hero-subtitle {
        font-size: 1.1em;
      }
      .page-poppy-toy-poppy-playtime__hero-cta-group {
        flex-direction: column;
        gap: 15px;
      }
      .page-poppy-toy-poppy-playtime__hero-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }
      .page-poppy-toy-poppy-playtime__section-title {
        font-size: 1.8em;
      }
      .page-poppy-toy-poppy-playtime__text-content {
        font-size: 1em;
      }

      /* Mobile list item responsiveness for grids acting as lists */
      .page-poppy-toy-poppy-playtime__features-grid,
      .page-poppy-toy-poppy-playtime__access-links-grid,
      .page-poppy-toy-poppy-playtime__game-categories,
      .page-poppy-toy-poppy-playtime__promo-grid,
      .page-poppy-toy-poppy-playtime__info-grid,
      .page-poppy-toy-poppy-playtime__blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
        margin: 30px auto;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-poppy-toy-poppy-playtime__feature-item,
      .page-poppy-toy-poppy-playtime__access-link,
      .page-poppy-toy-poppy-playtime__game-card,
      .page-poppy-toy-poppy-playtime__promo-card,
      .page-poppy-toy-poppy-playtime__info-item,
      .page-poppy-toy-poppy-playtime__blog-card,
      .page-poppy-toy-poppy-playtime__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-poppy-toy-poppy-playtime__faq-question,
      .page-poppy-toy-poppy-playtime__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .page-poppy-toy-poppy-playtime__faq-answer.active {
        padding: 15px !important; /* Adjusted for mobile */
      }

      .page-poppy-toy-poppy-playtime__faq-title {
        font-size: 1.1em;
      }

      .page-poppy-toy-poppy-playtime__faq-toggle {
        font-size: 1.2em;
      }

      .page-poppy-toy-poppy-playtime__providers-title {
        font-size: 1.4em;
      }
      .page-poppy-toy-poppy-playtime__logo-strip {
          gap: 10px;
      }
      .page-poppy-toy-poppy-playtime__provider-logo {
          height: 40px;
      }
      
      /* Text wrapping for long content */
      .page-poppy-toy-poppy-playtime__feature-description,
      .page-poppy-toy-poppy-playtime__game-description,
      .page-poppy-toy-poppy-playtime__promo-description,
      .page-poppy-toy-poppy-playtime__info-description,
      .page-poppy-toy-poppy-playtime__blog-excerpt,
      .page-poppy-toy-poppy-playtime__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-poppy-toy-poppy-playtime__hero-title {
        font-size: 2em;
      }
      .page-poppy-toy-poppy-playtime__hero-subtitle {
        font-size: 1em;
      }
      .page-poppy-toy-poppy-playtime__hero-button {
        font-size: 1em;
        padding: 12px 20px;
      }
      .page-poppy-toy-poppy-playtime__section-title {
        font-size: 1.5em;
      }
      .page-poppy-toy-poppy-playtime__feature-title,
      .page-poppy-toy-poppy-playtime__game-title,
      .page-poppy-toy-poppy-playtime__promo-title,
      .page-poppy-toy-poppy-playtime__info-title,
      .page-poppy-toy-poppy-playtime__blog-title {
        font-size: 1.2em;
      }
      .page-poppy-toy-poppy-playtime__text-content {
        font-size: 0.9em;
      }
      .page-poppy-toy-poppy-playtime__contact-button {
        font-size: 1em;
        padding: 12px 25px;
      }
    }