:root {
      --primary-color: #ff4500;
      --secondary-color: #00bfff;
      --text-color-dark: #333;
      --text-color-light: #fff;
      --bg-dark: #1a1a1a;
      --bg-light: #f5f5f5;
      --accent-color: #ffd700;
    }

    .page-poppy-playtime-red-and-blue-hands {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color-dark);
      background-color: var(--bg-light);
      padding-top: 10px; /* Decorative top padding for hero, body handles header offset */
    }

    .page-poppy-playtime-red-and-blue-hands__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--text-color-light);
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-poppy-playtime-red-and-blue-hands__hero-section {
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: var(--text-color-light);
      text-align: center;
      padding: 80px 20px;
      position: relative;
      overflow: hidden;
      border-radius: 0;
      box-shadow: none;
      margin-bottom: 0;
    }

    .page-poppy-playtime-red-and-blue-hands__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-poppy-playtime-red-and-blue-hands__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-poppy-playtime-red-and-blue-hands__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      font-weight: bold;
      line-height: 1.2;
    }

    .page-poppy-playtime-red-and-blue-hands__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    }

    .page-poppy-playtime-red-and-blue-hands__cta-button {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--bg-dark);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .page-poppy-playtime-red-and-blue-hands__cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    .page-poppy-playtime-red-and-blue-hands__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: 20px 0;
      background-color: var(--bg-dark);
      border-radius: 0;
      margin-bottom: 20px;
    }

    .page-poppy-playtime-red-and-blue-hands__payment-logo {
      flex: 0 0 auto;
      width: 80px;
      height: 80px;
      max-width: 80px;
      max-height: 80px;
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-poppy-playtime-red-and-blue-hands__payment-logo img {
      display: block;
      width: 80px !important;
      height: 80px !important;
      max-width: 80px !important;
      max-height: 80px !important;
      object-fit: contain;
    }

    .page-poppy-playtime-red-and-blue-hands__title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-poppy-playtime-red-and-blue-hands__text-content {
      font-size: 1.1em;
      color: var(--text-color-dark);
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-poppy-playtime-red-and-and-blue-hands__list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-poppy-playtime-red-and-and-blue-hands__list-item {
      background-color: var(--bg-light);
      margin-bottom: 10px;
      padding: 15px;
      border-left: 5px solid var(--primary-color);
      border-radius: 4px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-poppy-playtime-red-and-blue-hands__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-poppy-playtime-red-and-blue-hands__card {
      background-color: var(--bg-dark);
      color: var(--text-color-light);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 6px 15px 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-red-and-blue-hands__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-poppy-playtime-red-and-blue-hands__card-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .page-poppy-playtime-red-and-blue-hands__card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-poppy-playtime-red-and-blue-hands__card-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--accent-color);
    }

    .page-poppy-playtime-red-and-blue-hands__card-text {
      font-size: 1em;
      color: #ccc;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-poppy-playtime-red-and-blue-hands__card-link {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--text-color-light);
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.95em;
      align-self: flex-start;
      transition: background-color 0.3s ease;
    }

    .page-poppy-playtime-red-and-blue-hands__card-link:hover {
      background-color: #cc3700;
    }

    .page-poppy-playtime-red-and-blue-hands__link-group {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }

    .page-poppy-playtime-red-and-blue-hands__link-button {
      background-color: var(--secondary-color);
      color: var(--text-color-light);
      padding: 12px 25px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-poppy-playtime-red-and-blue-hands__link-button:hover {
      background-color: #009acd;
    }

    .page-poppy-playtime-red-and-blue-hands__faq-item {
      background-color: var(--bg-light);
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-poppy-playtime-red-and-blue-hands__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      background-color: var(--text-color-light);
      color: var(--text-color-dark);
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-poppy-playtime-red-and-blue-hands__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-poppy-playtime-red-and-blue-hands__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
      color: var(--primary-color);
      font-size: 1.1em;
    }

    .page-poppy-playtime-red-and-blue-hands__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
      color: var(--secondary-color);
    }

    .page-poppy-playtime-red-and-blue-hands__faq-item.active .page-poppy-playtime-red-and-blue-hands__faq-toggle {
      transform: rotate(45deg);
    }

    .page-poppy-playtime-red-and-blue-hands__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fcfcfc;
      color: var(--text-color-dark);
    }

    .page-poppy-playtime-red-and-blue-hands__faq-item.active .page-poppy-playtime-red-and-blue-hands__faq-answer {
      max-height: 2000px !important;
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-poppy-playtime-red-and-blue-hands__blog-post {
      background-color: var(--text-color-light);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .page-poppy-playtime-red-and-blue-hands__blog-post:hover {
      transform: translateY(-5px);
    }

    .page-poppy-playtime-red-and-blue-hands__blog-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .page-poppy-playtime-red-and-blue-hands__blog-content {
      padding: 20px;
    }

    .page-poppy-playtime-red-and-blue-hands__blog-title {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: var(--primary-color);
    }

    .page-poppy-playtime-red-and-blue-hands__blog-link {
      text-decoration: none;
      color: inherit;
    }

    .page-poppy-playtime-red-and-blue-hands__blog-link:hover .page-poppy-playtime-red-and-blue-hands__blog-title {
      text-decoration: underline;
    }

    .page-poppy-playtime-red-and-blue-hands__blog-excerpt {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-poppy-playtime-red-and-blue-hands__blog-date {
      font-size: 0.85em;
      color: #999;
    }

    .page-poppy-playtime-red-and-blue-hands__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-poppy-playtime-red-and-blue-hands__floating-button {
      background-color: var(--primary-color);
      color: var(--text-color-light);
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-poppy-playtime-red-and-blue-hands__floating-button:hover {
      background-color: #cc3700;
      transform: scale(1.05);
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      .page-poppy-playtime-red-and-blue-hands__hero-title {
        font-size: 2.5em;
      }

      .page-poppy-playtime-red-and-blue-hands__hero-subtitle {
        font-size: 1.2em;
      }

      .page-poppy-playtime-red-and-blue-hands__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-poppy-playtime-red-and-blue-hands__title {
        font-size: 2em;
      }

      .page-poppy-playtime-red-and-blue-hands__section {
        padding: 30px 15px;
      }

      .page-poppy-playtime-red-and-blue-hands__grid {
        grid-template-columns: 1fr;
      }

      .page-poppy-playtime-red-and-blue-hands__link-group {
        flex-direction: column;
        align-items: center;
      }

      .page-poppy-playtime-red-and-blue-hands__payment-providers {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
      }

      .page-poppy-playtime-red-and-blue-hands__payment-logo,
      .page-poppy-playtime-red-and-blue-hands__payment-logo img {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
      }

      /* List item responsive rules */
      .page-poppy-playtime-red-and-blue-hands__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 10px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-poppy-playtime-red-and-blue-hands__list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* Image responsive rules for main content */
      .page-poppy-playtime-red-and-blue-hands__card-image,
      .page-poppy-playtime-red-and-blue-hands__blog-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-poppy-playtime-red-and-blue-hands__hero-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      /* Ensure image containers also adapt */
      .page-poppy-playtime-red-and-blue-hands__card,
      .page-poppy-playtime-red-and-blue-hands__blog-post {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-poppy-playtime-red-and-blue-hands__faq-question,
      .page-poppy-playtime-red-and-blue-hands__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
      }
    }