
    /* CSS Styles for 22 Hello88 Page */
    :root {
      --page-22hello88__primary-color: #e44d26; /* A vibrant red/orange */
      --page-22hello88__secondary-color: #f7b731; /* A bright yellow/orange */
      --page-22hello88__text-color: #333;
      --page-22hello88__light-text-color: #f8f8f8;
      --page-22hello88__background-dark: #2c3e50; /* Dark blue-gray */
      --page-22hello88__background-light: #ecf0f1; /* Light gray */
      --page-22hello88__card-background: #ffffff;
      --page-22hello88__border-color: #ddd;
      --page-22hello88__button-hover: #ff6a00;
      --page-22hello88__gradient-start: #ff7e5f;
      --page-22hello88__gradient-end: #feb47b;
    }

    .page-22hello88 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-22hello88__text-color);
      background-color: var(--page-22hello88__background-light);
    }

    .page-22hello88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-22hello88__hero-section {
      position: relative;
      width: 100%;
      height: 450px; /* Adjust height as needed */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: var(--page-22hello88__light-text-color);
      overflow: hidden;
      padding-top: 10px; /* For fixed header */
      box-sizing: border-box;
    }

    .page-22hello88__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .page-22hello88__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
      z-index: -1;
    }

    .page-22hello88__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      color: var(--page-22hello88__light-text-color);
    }

    .page-22hello88__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
      color: var(--page-22hello88__light-text-color);
    }

    .page-22hello88__promotion-button-fixed {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: linear-gradient(45deg, var(--page-22hello88__gradient-start), var(--page-22hello88__gradient-end));
      color: var(--page-22hello88__light-text-color);
      border: none;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      z-index: 1000;
      animation: page-22hello88__pulse 2s infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      text-decoration: none; /* Ensure it looks like a button even if JS fails */
      max-width: 90%; /* For mobile */
      box-sizing: border-box;
    }

    .page-22hello88__promotion-button-fixed:hover {
      background: linear-gradient(45deg, var(--page-22hello88__button-hover), var(--page-22hello88__secondary-color));
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    @keyframes page-22hello88__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    .page-22hello88__section {
      padding: 60px 20px;
      text-align: center;
      background-color: var(--page-22hello88__card-background);
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .page-22hello88__section--dark {
      background-color: var(--page-22hello88__background-dark);
      color: var(--page-22hello88__light-text-color);
    }

    .page-22hello88__section-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--page-22hello88__primary-color);
      position: relative;
      padding-bottom: 10px;
    }

    .page-22hello88__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-22hello88__secondary-color);
      border-radius: 2px;
    }

    .page-22hello88__section--dark .page-22hello88__section-title {
      color: var(--page-22hello88__secondary-color);
    }

    .page-22hello88__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-22hello88__feature-card,
    .page-22hello88__game-card {
      background-color: var(--page-22hello88__card-background);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      height: 100%;
      box-sizing: border-box;
    }

    .page-22hello88__feature-card:hover,
    .page-22hello88__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .page-22hello88__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      color: var(--page-22hello88__primary-color);
      font-size: 3em; /* For icon-like text */
      line-height: 1;
    }
    .page-22hello88__game-image {
        width: 100%;
        max-width: 300px; /* Limit image size within card */
        height: auto;
        border-radius: 8px;
        margin-bottom: 20px;
        object-fit: cover;
        min-height: 200px; /* Enforce min image size */
        min-width: 200px;
        box-sizing: border-box;
    }

    .page-22hello88__card-title {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: var(--page-22hello88__primary-color);
    }

    .page-22hello88__card-description {
      font-size: 1em;
      color: var(--page-22hello88__text-color);
      flex-grow: 1;
    }

    .page-22hello88__call-to-action {
      background-color: var(--page-22hello88__primary-color);
      color: var(--page-22hello88__light-text-color);
      padding: 15px 30px;
      border-radius: 5px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      display: inline-block;
      margin-top: 20px;
    }

    .page-22hello88__call-to-action:hover {
      background-color: var(--page-22hello88__button-hover);
    }

    .page-22hello88__process-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-22hello88__step-card {
      background-color: var(--page-22hello88__card-background);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: center;
      flex: 1 1 calc(33% - 40px); /* 3 items per row, with gap */
      max-width: calc(33% - 40px);
      box-sizing: border-box;
      position: relative;
    }

    .page-22hello88__step-number {
      background-color: var(--page-22hello88__primary-color);
      color: var(--page-22hello88__light-text-color);
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8em;
      font-weight: bold;
      margin: 0 auto 20px auto;
    }

    .page-22hello88__step-title {
      font-size: 1.3em;
      color: var(--page-22hello88__primary-color);
      margin-bottom: 10px;
    }

    .page-22hello88__step-description {
      font-size: 1em;
      color: var(--page-22hello88__text-color);
    }

    /* FAQ Section Styles */
    .page-22hello88__faq-section {
      padding: 60px 20px;
      background-color: var(--page-22hello88__background-light);
      text-align: center;
    }

    .page-22hello88__faq-container {
      max-width: 900px;
      margin: 40px auto 0 auto;
      text-align: left;
    }

    .page-22hello88__faq-item {
      background-color: var(--page-22hello88__card-background);
      border: 1px solid var(--page-22hello88__border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-22hello88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f9f9f9;
      border-bottom: 1px solid var(--page-22hello88__border-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-22hello88__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-22hello88__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-22hello88__primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-22hello88__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-22hello88__primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      margin-left: 15px;
    }

    .page-22hello88__faq-item.active .page-22hello88__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-22hello88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-22hello88__text-color);
      background-color: var(--page-22hello88__card-background);
    }

    .page-22hello88__faq-item.active .page-22hello88__faq-answer {
      max-height: 2000px !important; /* Use !important for priority */
      padding: 20px 25px !important; /* Use !important for priority */
      opacity: 1;
    }

    .page-22hello88__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }
    .page-22hello88__faq-answer p:last-child {
      padding-bottom: 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-22hello88__container {
        padding: 10px;
      }

      .page-22hello88__hero-section {
        height: 350px;
        padding-top: 10px; /* For fixed header on mobile */
      }

      .page-22hello88__hero-title {
        font-size: 2em;
      }

      .page-22hello88__hero-subtitle {
        font-size: 1.2em;
      }

      .page-22hello88__promotion-button-fixed {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 0.9em;
      }

      .page-22hello88__section {
        padding: 40px 15px;
      }

      .page-22hello88__section-title {
        font-size: 2em;
      }

      .page-22hello88__text {
        font-size: 1em;
      }

      .page-22hello88__features-grid,
      .page-22hello88__games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-22hello88__feature-card,
      .page-22hello88__game-card {
        padding: 20px;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-22hello88__game-image {
        max-width: 100% !important;
        height: auto !important;
        min-height: 180px !important; /* Adjust min height for mobile */
        min-width: unset !important; /* Remove min-width for mobile */
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-22hello88__step-card {
        flex: 1 1 100%;
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-22hello88__process-steps {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-22hello88__faq-container {
        margin: 20px auto 0 auto;
      }

      .page-22hello88__faq-question {
        padding: 15px 20px;
      }

      .page-22hello88__faq-question h3 {
        font-size: 1.1em;
      }

      .page-22hello88__faq-answer {
        padding: 0 20px;
      }

      .page-22hello88__faq-item.active .page-22hello88__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-22hello88__hero-section {
        height: 300px;
      }
      .page-22hello88__hero-title {
        font-size: 1.8em;
      }
      .page-22hello88__hero-subtitle {
        font-size: 1em;
      }
      .page-22hello88__promotion-button-fixed {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        width: 90%;
      }
    }
  