:root {
      --primary-color: #e02b2b;
      --secondary-color: #ffc107;
      --dark-background: #1a1a1a;
      --light-text: #f0f0f0;
      --dark-text: #333;
      --border-color: #444;
      --gradient-start: #330000;
      --gradient-end: #000000;
      --header-offset: 122px; /* Default for body padding, if not set by shared.css */
    }

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

    .page-happy-playtime-horror {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px 15px;
      box-sizing: border-box;
    }

    .page-happy-playtime-horror__section {
      background-color: #222;
      border-radius: 12px;
      margin-bottom: 30px;
      padding: 30px 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      border: 1px solid var(--border-color);
    }

    .page-happy-playtime-horror__section--hero {
      background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
      text-align: center;
      padding: 60px 20px;
      border-radius: 0;
      margin-bottom: 0;
      box-shadow: none;
      border: none;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small top padding as body handles main offset */
    }

    .page-happy-playtime-horror__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-happy-playtime-horror__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-happy-playtime-horror__hero-title {
      font-size: 2.8em;
      color: var(--light-text);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      font-weight: bold;
      line-height: 1.2;
    }

    .page-happy-playtime-horror__hero-subtitle {
      font-size: 1.3em;
      color: var(--secondary-color);
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-happy-playtime-horror__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--light-text);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      text-align: center;
      min-width: 180px;
    }

    .page-happy-playtime-horror__button:hover {
      background-color: #ff4d4d;
      transform: translateY(-2px);
    }

    .page-happy-playtime-horror__button--secondary {
      background-color: var(--secondary-color);
      color: var(--dark-text);
    }

    .page-happy-playtime-horror__button--secondary:hover {
      background-color: #ffd740;
      transform: translateY(-2px);
    }

    .page-happy-playtime-horror__title {
      font-size: 2.2em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 25px;
      font-weight: bold;
    }

    .page-happy-playtime-horror__subtitle {
      font-size: 1.5em;
      color: var(--light-text);
      text-align: center;
      margin-bottom: 20px;
    }

    .page-happy-playtime-horror__text {
      font-size: 1em;
      color: var(--light-text);
      margin-bottom: 15px;
    }

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

    .page-happy-playtime-horror__card {
      background-color: #2c2c2c;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      border: 1px solid var(--border-color);
    }

    .page-happy-playtime-horror__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

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

    .page-happy-playtime-horror__card-title {
      font-size: 1.4em;
      color: var(--secondary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-happy-playtime-horror__card-description {
      font-size: 0.95em;
      color: var(--light-text);
      margin-bottom: 20px;
    }

    .page-happy-playtime-horror__list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-happy-playtime-horror__list-item {
      background-color: #2c2c2c;
      border-radius: 8px;
      margin-bottom: 15px;
      padding: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      border: 1px solid var(--border-color);
      box-sizing: border-box;
    }

    .page-happy-playtime-horror__list-item-icon {
      width: 60px;
      height: 60px;
      margin-right: 15px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-happy-playtime-horror__list-item-content {
      flex-grow: 1;
    }

    .page-happy-playtime-horror__list-item-title {
      font-size: 1.2em;
      color: var(--primary-color);
      margin-bottom: 5px;
      font-weight: bold;
    }

    .page-happy-playtime-horror__list-item-description {
      font-size: 0.9em;
      color: var(--light-text);
    }

    .page-happy-playtime-horror__cta-container {
      text-align: center;
      margin-top: 20px;
    }

    .page-happy-playtime-horror__faq-item {
      background-color: #2c2c2c;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      border: 1px solid var(--border-color);
    }

    .page-happy-playtime-horror__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a3a;
      transition: background-color 0.3s ease;
      color: var(--light-text);
    }

    .page-happy-playtime-horror__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-happy-playtime-horror__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-happy-playtime-horror__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click event */
      min-width: 20px;
      text-align: center;
    }

    .page-happy-playtime-horror__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      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: #2c2c2c;
      color: var(--light-text);
    }

    .page-happy-playtime-horror__faq-answer p {
      margin: 0 0 15px 0;
      padding-top: 10px;
    }

    .page-happy-playtime-horror__faq-item.active .page-happy-playtime-horror__faq-answer {
      max-height: 2000px !important;
      padding: 20px !important;
      opacity: 1;
    }

    .page-happy-playtime-horror__faq-item.active .page-happy-playtime-horror__faq-toggle {
      content: '\2212'; /* Minus sign */
    }

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

    .page-happy-playtime-horror__blog-card {
      background-color: #2c2c2c;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      border: 1px solid var(--border-color);
    }

    .page-happy-playtime-horror__blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-happy-playtime-horror__blog-card-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      max-width: 100%;
      height: auto;
    }

    .page-happy-playtime-horror__blog-card-content {
      padding: 20px;
    }

    .page-happy-playtime-horror__blog-card-title {
      font-size: 1.3em;
      color: var(--secondary-color);
      margin-bottom: 10px;
      font-weight: bold;
      line-height: 1.3;
    }

    .page-happy-playtime-horror__blog-card-title a {
      color: var(--secondary-color);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .page-happy-playtime-horror__blog-card-title a:hover {
      color: var(--primary-color);
    }

    .page-happy-playtime-horror__blog-card-summary {
      font-size: 0.9em;
      color: var(--light-text);
      margin-bottom: 15px;
    }

    .page-happy-playtime-horror__blog-card-date {
      font-size: 0.8em;
      color: #aaa;
    }

    .page-happy-playtime-horror__img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      .page-happy-playtime-horror__section {
        padding: 20px 15px;
        margin-bottom: 20px;
      }

      .page-happy-playtime-horror__section--hero {
        padding: 40px 15px;
      }

      .page-happy-playtime-horror__hero-title {
        font-size: 2em;
      }

      .page-happy-playtime-horror__hero-subtitle {
        font-size: 1em;
      }

      .page-happy-playtime-horror__button {
        padding: 12px 25px;
        font-size: 1em;
        min-width: unset;
        width: 100%;
      }

      .page-happy-playtime-horror__title {
        font-size: 1.8em;
      }

      .page-happy-playtime-horror__subtitle {
        font-size: 1.2em;
      }

      .page-happy-playtime-horror__grid,
      .page-happy-playtime-horror__blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-happy-playtime-horror__card-image {
        height: 160px;
      }

      .page-happy-playtime-horror__list-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-happy-playtime-horror__list-item-icon {
        margin-right: 0;
        margin-bottom: 10px;
        width: 50px;
        height: 50px;
      }

      .page-happy-playtime-horror__list-item-title {
        font-size: 1.1em;
      }

      .page-happy-playtime-horror__faq-question {
        padding: 15px;
      }

      .page-happy-playtime-horror__faq-question h3 {
        font-size: 1em;
        word-break: break-word !important;
      }

      .page-happy-playtime-horror__faq-answer {
        padding: 0 15px;
      }

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

      .page-happy-playtime-horror__blog-card-image {
        height: 150px;
      }

      .page-happy-playtime-horror__blog-card-content {
        padding: 15px;
      }

      .page-happy-playtime-horror__blog-card-title {
        font-size: 1.1em;
      }

      .page-happy-playtime-horror__img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-happy-playtime-horror__cta-container .page-happy-playtime-horror__button {
        margin-bottom: 15px;
      }
    }

    @media (max-width: 480px) {
      .page-happy-playtime-horror__hero-title {
        font-size: 1.8em;
      }

      .page-happy-playtime-horror__hero-subtitle {
        font-size: 0.9em;
      }
    }