body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #1a1a2e;
      color: #e0e0e0;
      line-height: 1.6;
    }

    a {
      color: #e94560;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .page-happy-playtime-scary {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px 0;
      box-sizing: border-box;
      color: #e0e0e0;
    }

    .page-happy-playtime-scary__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #16213e;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-happy-playtime-scary__section--dark {
      background-color: #0f3460;
    }

    .page-happy-playtime-scary__title {
      font-size: 2.5em;
      color: #e94560;
      text-align: center;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-happy-playtime-scary__subtitle {
      font-size: 1.8em;
      color: #533483;
      text-align: center;
      margin-bottom: 30px;
    }

    .page-happy-playtime-scary__heading {
      font-size: 2em;
      color: #e94560;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-happy-playtime-scary__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-happy-playtime-scary__text strong {
      color: #e94560;
    }

    .page-happy-playtime-scary__button {
      display: inline-block;
      background-color: #e94560;
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      font-size: 1.1em;
      text-transform: uppercase;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-happy-playtime-scary__button:hover {
      background-color: #d0304a;
      transform: translateY(-2px);
      text-decoration: none;
    }

    /* HERO Section */
    .page-happy-playtime-scary__hero {
      position: relative;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 20px;
      padding: 10px 0;
    }

    .page-happy-playtime-scary__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .page-happy-playtime-scary__hero-content {
      position: relative;
      z-index: 1;
      color: #fff;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
    }

    .page-happy-playtime-scary__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: #f0f0f0;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-happy-playtime-scary__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #ccc;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    /* Partner/Supplier Logo Section */
    .page-happy-playtime-scary__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: #1a1a2e;
      border-radius: 10px;
      margin-bottom: 20px;
    }

    .page-happy-playtime-scary__payment-logo {
      flex: 0 0 auto;
      width: 80px;
      height: 80px;
      max-width: 80px;
      max-height: 80px;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-happy-playtime-scary__payment-logo img {
      display: block;
      width: 80px !important;
      height: 80px !important;
      max-width: 80px !important;
      max-height: 80px !important;
      object-fit: contain;
    }

    /* Quick Access */
    .page-happy-playtime-scary__quick-access-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-happy-playtime-scary__quick-access-item {
      background-color: #0f3460;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .page-happy-playtime-scary__quick-access-item:hover {
      transform: translateY(-5px);
      background-color: #16213e;
    }

    .page-happy-playtime-scary__quick-access-item .page-happy-playtime-scary__button {
      width: 100%;
    }

    /* Games/Services Grid */
    .page-happy-playtime-scary__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-happy-playtime-scary__game-card {
      background-color: #0f3460;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

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

    .page-happy-playtime-scary__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

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

    .page-happy-playtime-scary__game-card-title {
      font-size: 1.5em;
      color: #e94560;
      margin-bottom: 10px;
    }

    .page-happy-playtime-scary__game-card-description {
      font-size: 0.95em;
      color: #c0c0c0;
      margin-bottom: 15px;
      text-align: justify;
    }

    /* Promotions */
    .page-happy-playtime-scary__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-happy-playtime-scary__promo-card {
      background-color: #0f3460;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

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

    .page-happy-playtime-scary__promo-card-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

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

    .page-happy-playtime-scary__promo-card-title {
      font-size: 1.4em;
      color: #e94560;
      margin-bottom: 10px;
    }

    .page-happy-playtime-scary__promo-card-description {
      font-size: 0.95em;
      color: #c0c0c0;
      margin-bottom: 15px;
      text-align: justify;
    }

    /* FAQ Section */
    .page-happy-playtime-scary__faq-list {
      margin-top: 30px;
    }

    .page-happy-playtime-scary__faq-item {
      background-color: #0f3460;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      color: #e0e0e0;
    }

    .page-happy-playtime-scary__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #16213e;
      color: #e94560;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-happy-playtime-scary__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-happy-playtime-scary__faq-question:hover {
      background-color: #1a1a2e;
    }

    .page-happy-playtime-scary__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      transition: transform 0.3s ease;
    }

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

    .page-happy-playtime-scary__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #c0c0c0;
      font-size: 0.95em;
    }

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

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

    .page-happy-playtime-scary__blog-card {
      background-color: #0f3460;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

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

    .page-happy-playtime-scary__blog-card-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

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

    .page-happy-playtime-scary__blog-card-title {
      font-size: 1.3em;
      color: #e94560;
      margin-bottom: 10px;
    }

    .page-happy-playtime-scary__blog-card-summary {
      font-size: 0.9em;
      color: #c0c0c0;
      line-height: 1.5;
      text-align: justify;
    }

    .page-happy-playtime-scary__blog-card-link {
      display: inline-block;
      margin-top: 15px;
      color: #e94560;
      font-weight: bold;
    }

    /* Floating Buttons */
    .page-happy-playtime-scary__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-happy-playtime-scary__floating-button {
      background-color: #e94560;
      color: #fff;
      padding: 10px 20px;
      border-radius: 50px;
      font-size: 1em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-transform: uppercase;
    }

    .page-happy-playtime-scary__floating-button:hover {
      background-color: #d0304a;
      transform: translateY(-3px);
      text-decoration: none;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .page-happy-playtime-scary {
        padding: 0;
      }

      .page-happy-playtime-scary__section {
        padding: 20px 15px;
        margin-bottom: 15px;
        border-radius: 0;
      }

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

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

      .page-happy-playtime-scary__heading {
        font-size: 1.6em;
      }

      .page-happy-playtime-scary__hero {
        height: 350px;
        border-radius: 0;
      }

      .page-happy-playtime-scary__hero-title {
        font-size: 2.2em;
      }

      .page-happy-playtime-scary__hero-subtitle {
        font-size: 1.1em;
      }

      .page-happy-playtime-scary__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-happy-playtime-scary__payment-providers {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        border-radius: 0;
      }

      .page-happy-playtime-scary__payment-logo, .page-happy-playtime-scary__payment-logo img {
        width: 80px !important;
        height: 80px !important;
        max-width: 80px !important;
        max-height: 80px !important;
      }

      .page-happy-playtime-scary__quick-access-grid,
      .page-happy-playtime-scary__games-grid,
      .page-happy-playtime-scary__promo-grid,
      .page-happy-playtime-scary__blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-happy-playtime-scary__game-card-image,
      .page-happy-playtime-scary__promo-card-image,
      .page-happy-playtime-scary__blog-card-image {
        height: 150px;
      }

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

      .page-happy-playtime-scary__faq-question h3 {
        font-size: 1.1em;
      }

      .page-happy-playtime-scary__faq-answer {
        font-size: 0.9em;
        padding: 15px 15px !important;
      }

      .page-happy-playtime-scary__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row;
        gap: 8px;
        width: calc(100% - 30px);
        justify-content: center;
      }

      .page-happy-playtime-scary__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      /* List item specific responsiveness */
      .page-happy-playtime-scary__list-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-happy-playtime-scary__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 10px 0 !important; /* Adjust padding as needed */
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }