/* General Styling & Variables */
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #00BFFF; /* Deep Sky Blue */
      --text-color: #E0E0E0; /* Light Gray */
      --background-dark: #1A1A2E; /* Dark Blue-Purple */
      --background-light: #2C2C4A; /* Slightly lighter */
      --accent-color: #FF4500; /* Orange Red */
      --border-color: #4A4A6A;
      --button-hover-color: #FFC107;
      --header-offset: 122px; /* Default from shared, will be overridden by actual shared.css */
    }

    .page-poppy-playtime-orphanage {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--background-dark);
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll from padding */
      padding-top: var(--header-offset, 122px); /* Fallback for body padding, if not set by shared.css */
    }

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

    /* Section Styling */
    .page-poppy-playtime-orphanage__hero-section,
    .page-poppy-playtime-orphanage__intro-section,
    .page-poppy-playtime-orphanage__quick-access-section,
    .page-poppy-playtime-orphanage__games-section,
    .page-poppy-playtime-orphanage__promo-section,
    .page-poppy-playtime-orphanage__security-section,
    .page-poppy-playtime-orphanage__faq-section,
    .page-poppy-playtime-orphanage__blog-section {
      padding: 60px 0;
      text-align: center;
    }

    .page-poppy-playtime-orphanage__hero-section {
      background-color: #000; /* Darker background for hero */
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 70vh;
      color: #FFF;
      padding-top: 10px; /* Decorative top padding */
    }

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

    .page-poppy-playtime-orphanage__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4; /* Slightly dim the image */
    }

    .page-poppy-playtime-orphanage__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
    }

    .page-poppy-playtime-orphanage__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-poppy-playtime-orphanage__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--text-color);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-poppy-playtime-orphanage__hero-cta-button,
    .page-poppy-playtime-orphanage__access-button,
    .page-poppy-playtime-orphanage__game-button,
    .page-poppy-playtime-orphanage__promo-button,
    .page-poppy-playtime-orphanage__security-button,
    .page-poppy-playtime-orphanage__blog-read-more {
      display: inline-block;
      background-color: var(--accent-color);
      color: #FFF;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      box-sizing: border-box;
    }

    .page-poppy-playtime-orphanage__hero-cta-button:hover,
    .page-poppy-playtime-orphanage__access-button:hover,
    .page-poppy-playtime-orphanage__game-button:hover,
    .page-poppy-playtime-orphanage__promo-button:hover,
    .page-poppy-playtime-orphanage__security-button:hover,
    .page-poppy-playtime-orphanage__blog-read-more:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-2px);
    }

    /* Introduction Section */
    .page-poppy-playtime-orphanage__intro-section {
      background-color: var(--background-light);
      padding-bottom: 80px;
    }

    .page-poppy-playtime-orphanage__intro-title,
    .page-poppy-playtime-orphanage__quick-access-title,
    .page-poppy-playtime-orphanage__games-title,
    .page-poppy-playtime-orphanage__promo-title,
    .page-poppy-playtime-orphanage__security-title,
    .page-poppy-playtime-orphanage__faq-title,
    .page-poppy-playtime-orphanage__blog-title {
      color: var(--primary-color);
      font-size: 2.5em;
      margin-bottom: 20px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-poppy-playtime-orphanage__intro-text,
    .page-poppy-playtime-orphanage__quick-access-description,
    .page-poppy-playtime-orphanage__games-description,
    .page-poppy-playtime-orphanage__promo-description,
    .page-poppy-playtime-orphanage__security-description,
    .page-poppy-playtime-orphanage__blog-description {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 40px auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-poppy-playtime-orphanage__intro-features,
    .page-poppy-playtime-orphanage__security-features {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    .page-poppy-playtime-orphanage__feature-item,
    .page-poppy-playtime-orphanage__security-item {
      background-color: var(--background-dark);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 25px;
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-poppy-playtime-orphanage__feature-item:hover,
    .page-poppy-playtime-orphanage__security-item:hover {
      transform: translateY(-5px);
    }

    .page-poppy-playtime-orphanage__feature-icon,
    .page-poppy-playtime-orphanage__security-icon {
      width: 100px;
      height: auto;
      margin-bottom: 15px;
      max-width: 100%;
      height: auto;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-poppy-playtime-orphanage__feature-heading,
    .page-poppy-playtime-orphanage__security-heading {
      color: var(--secondary-color);
      font-size: 1.5em;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-poppy-playtime-orphanage__feature-description,
    .page-poppy-playtime-orphanage__security-text {
      font-size: 1em;
      color: #B0B0B0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Quick Access Section */
    .page-poppy-playtime-orphanage__quick-access-section {
      background-color: var(--background-dark);
    }

    .page-poppy-playtime-orphanage__access-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    /* Games Section */
    .page-poppy-playtime-orphanage__games-section {
      background-color: var(--background-light);
    }

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

    .page-poppy-playtime-orphanage__game-card {
      background-color: var(--background-dark);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

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

    .page-poppy-playtime-orphanage__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
      max-width: 100%;
      height: auto;
    }

    .page-poppy-playtime-orphanage__game-name {
      color: var(--primary-color);
      font-size: 1.6em;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-poppy-playtime-orphanage__game-text {
      font-size: 0.95em;
      color: #B0B0B0;
      margin-bottom: 20px;
      flex-grow: 1; /* Push button to bottom */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-poppy-playtime-orphanage__game-button {
      width: 100%;
      max-width: 200px;
      padding: 12px 20px;
      font-size: 1em;
    }

    /* Promotions Section */
    .page-poppy-playtime-orphanage__promo-section {
      background-color: var(--background-dark);
    }

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

    .page-poppy-playtime-orphanage__promo-card {
      background-color: var(--background-light);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

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

    .page-poppy-playtime-orphanage__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
      max-width: 100%;
      height: auto;
    }

    .page-poppy-playtime-orphanage__promo-name {
      color: var(--secondary-color);
      font-size: 1.6em;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-poppy-playtime-orphanage__promo-text {
      font-size: 0.95em;
      color: #B0B0B0;
      margin-bottom: 20px;
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-poppy-playtime-orphanage__promo-button {
      width: 100%;
      max-width: 200px;
      padding: 12px 20px;
      font-size: 1em;
    }

    /* Security Section */
    .page-poppy-playtime-orphanage__security-section {
      background-color: var(--background-light);
    }

    /* FAQ Section */
    .page-poppy-playtime-orphanage__faq-section {
      background-color: var(--background-dark);
    }

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

    .page-poppy-playtime-orphanage__faq-item {
      background-color: var(--background-light);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-poppy-playtime-orphanage__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: var(--background-light);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-poppy-playtime-orphanage__faq-question:hover {
      background-color: #3a3a5e;
    }

    .page-poppy-playtime-orphanage__faq-q-text {
      color: var(--primary-color);
      font-size: 1.2em;
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Allow click on parent div */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-poppy-playtime-orphanage__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--secondary-color);
      margin-left: 15px;
      pointer-events: none; /* Allow click on parent div */
      transition: transform 0.3s ease;
    }

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

    .page-poppy-playtime-orphanage__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding, will be overridden when active */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box;
    }

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

    .page-poppy-playtime-orphanage__faq-answer p {
      margin: 0;
      color: #B0B0B0;
      font-size: 1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Blog Section */
    .page-poppy-playtime-orphanage__blog-section {
      background-color: var(--background-light);
    }

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

    .page-poppy-playtime-orphanage__blog-card {
      background-color: var(--background-dark);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: left; /* Align text within card */
    }

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

    .page-poppy-playtime-orphanage__blog-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
      max-width: 100%;
      height: auto;
    }

    .page-poppy-playtime-orphanage__blog-card-title {
      color: var(--primary-color);
      font-size: 1.4em;
      margin-bottom: 10px;
      text-align: center; /* Center title */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-poppy-playtime-orphanage__blog-card-title a {
      color: var(--primary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-poppy-playtime-orphanage__blog-card-title a:hover {
      color: var(--secondary-color);
      text-decoration: underline;
    }

    .page-poppy-playtime-orphanage__blog-card-excerpt {
      font-size: 0.95em;
      color: #B0B0B0;
      margin-bottom: 20px;
      flex-grow: 1;
      text-align: center; /* Center excerpt */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-poppy-playtime-orphanage__blog-read-more {
      width: fit-content;
      align-self: center; /* Center button */
      padding: 10px 20px;
      font-size: 0.9em;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-poppy-playtime-orphanage__hero-title {
        font-size: 2.5em;
      }

      .page-poppy-playtime-orphanage__hero-subtitle {
        font-size: 1em;
      }

      .page-poppy-playtime-orphanage__hero-cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-poppy-playtime-orphanage__intro-title,
      .page-poppy-playtime-orphanage__quick-access-title,
      .page-poppy-playtime-orphanage__games-title,
      .page-poppy-playtime-orphanage__promo-title,
      .page-poppy-playtime-orphanage__security-title,
      .page-poppy-playtime-orphanage__faq-title,
      .page-poppy-playtime-orphanage__blog-title {
        font-size: 2em;
      }

      .page-poppy-playtime-orphanage__intro-text,
      .page-poppy-playtime-orphanage__quick-access-description,
      .page-poppy-playtime-orphanage__games-description,
      .page-poppy-playtime-orphanage__promo-description,
      .page-poppy-playtime-orphanage__security-description,
      .page-poppy-playtime-orphanage__blog-description {
        font-size: 0.95em;
        padding: 0 10px;
      }

      .page-poppy-playtime-orphanage__container {
        padding: 15px;
      }

      .page-poppy-playtime-orphanage__intro-features,
      .page-poppy-playtime-orphanage__security-features {
        flex-direction: column;
        gap: 20px;
      }

      .page-poppy-playtime-orphanage__feature-item,
      .page-poppy-playtime-orphanage__security-item {
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px;
      }

      .page-poppy-playtime-orphanage__feature-icon,
      .page-poppy-playtime-orphanage__security-icon,
      .page-poppy-playtime-orphanage__game-image,
      .page-poppy-playtime-orphanage__promo-image,
      .page-poppy-playtime-orphanage__blog-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-poppy-playtime-orphanage__access-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-poppy-playtime-orphanage__access-button {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-poppy-playtime-orphanage__game-categories,
      .page-poppy-playtime-orphanage__promo-grid,
      .page-poppy-playtime-orphanage__blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-poppy-playtime-orphanage__game-card,
      .page-poppy-playtime-orphanage__promo-card,
      .page-poppy-playtime-orphanage__blog-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px;
      }

      .page-poppy-playtime-orphanage__game-name,
      .page-poppy-playtime-orphanage__promo-name,
      .page-poppy-playtime-orphanage__blog-card-title {
        font-size: 1.4em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-poppy-playtime-orphanage__game-text,
      .page-poppy-playtime-orphanage__promo-text,
      .page-poppy-playtime-orphanage__blog-card-excerpt {
        font-size: 0.9em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-poppy-playtime-orphanage__faq-question {
        padding: 12px 15px;
      }

      .page-poppy-playtime-orphanage__faq-q-text {
        font-size: 1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-poppy-playtime-orphanage__faq-answer {
        padding: 0 15px;
      }

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

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