
    /* CSS Styles for page-qh88 */
    :root {
      --page-qh88-primary-color: #FFD700; /* Gold */
      --page-qh88-secondary-color: #1A237E; /* Dark Blue */
      --page-qh88-text-color: #333333;
      --page-qh88-light-text-color: #FFFFFF;
      --page-qh88-background-light: #F8F8F8;
      --page-qh88-background-dark: #0F172A; /* Darker blue/grey */
      --page-qh88-border-radius: 8px;
      --page-qh88-spacing-sm: 10px;
      --page-qh88-spacing-md: 20px;
      --page-qh88-spacing-lg: 30px;
    }

    .page-qh88 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-qh88-text-color);
      background-color: var(--page-qh88-background-light);
      padding-bottom: 80px; /* Space for the sticky button */
    }

    .page-qh88-section {
      padding: var(--page-qh88-spacing-lg) var(--page-qh88-spacing-md);
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-qh88-section:nth-of-type(even) {
      background-color: #EFEFEF;
    }

    .page-qh88-hero {
      position: relative;
      text-align: center;
      color: var(--page-qh88-light-text-color);
      padding: var(--page-qh88-spacing-lg) var(--page-qh88-spacing-md);
      background-color: var(--page-qh88-background-dark); /* Fallback background */
      overflow: hidden; /* Ensure banner image doesn't overflow */
    }

    .page-qh88-hero-banner {
      width: 100%;
      height: 250px; /* Fixed height for banner image */
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
    }

    .page-qh88-hero-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 250px; /* Ensure content has space above banner */
      background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3)); /* Overlay for text readability */
      padding: var(--page-qh88-spacing-md);
      border-radius: var(--page-qh88-border-radius);
    }

    .page-qh88-hero h1 {
      font-size: 2.2em;
      margin-bottom: var(--page-qh88-spacing-sm);
      color: var(--page-qh88-primary-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }
    .page-qh88-hero p {
      font-size: 1.1em;
      margin-bottom: var(--page-qh88-spacing-md);
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .page-qh88-button {
      display: inline-block;
      background-color: var(--page-qh88-primary-color);
      color: var(--page-qh88-secondary-color);
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .page-qh88-button:hover {
      background-color: #FFC107; /* Lighter gold */
      transform: translateY(-2px);
    }

    .page-qh88-sticky-button-wrapper {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: var(--page-qh88-background-dark);
      padding: 10px 0;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
      z-index: 1000;
      text-align: center;
      display: flex;
      justify-content: space-around;
      align-items: center;
    }

    .page-qh88-sticky-button {
      flex: 1;
      margin: 0 5px;
      padding: 12px 10px;
      font-size: 0.95em;
      white-space: nowrap; /* Prevent text wrapping */
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .page-qh88-sticky-button.page-qh88-register {
      background-color: var(--page-qh88-primary-color);
      color: var(--page-qh88-secondary-color);
    }

    .page-qh88-sticky-button.page-qh88-login {
      background-color: var(--page-qh88-secondary-color);
      color: var(--page-qh88-light-text-color);
    }

    .page-qh88-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: var(--page-qh88-spacing-md);
      margin-top: var(--page-qh88-spacing-md);
    }

    .page-qh88-game-card {
      background-color: var(--page-qh88-light-text-color);
      border-radius: var(--page-qh88-border-radius);
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      min-height: 180px; /* Ensure cards have a minimum height */
    }

    .page-qh88-game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .page-qh88-game-card img {
      width: 100%;
      height: 100px; /* Fixed height for game images */
      object-fit: cover;
      display: block;
      border-bottom: 1px solid #eee;
    }

    .page-qh88-game-card h3 {
      font-size: 1.1em;
      margin: var(--page-qh88-spacing-sm) 0;
      color: var(--page-qh88-secondary-color);
      padding: 0 10px;
    }

    .page-qh88-game-card a {
      text-decoration: none;
      color: inherit;
      display: block;
      width: 100%;
    }

    .page-qh88-features-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--page-qh88-spacing-md);
    }

    .page-qh88-feature-item {
      background-color: var(--page-qh88-light-text-color);
      padding: var(--page-qh88-spacing-md);
      border-radius: var(--page-qh88-border-radius);
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      display: flex;
      align-items: flex-start;
      gap: var(--page-qh88-spacing-sm);
    }

    .page-qh88-feature-item img {
      width: 40px;
      height: 40px;
      object-fit: contain;
      margin-right: var(--page-qh88-spacing-sm);
    }
    .page-qh88-feature-item h3 {
      color: var(--page-qh88-secondary-color);
      margin-top: 0;
      font-size: 1.2em;
    }

    .page-qh88-how-to {
      background-color: var(--page-qh88-secondary-color);
      color: var(--page-qh88-light-text-color);
    }

    .page-qh88-how-to h2 {
      color: var(--page-qh88-primary-color);
      text-align: center;
      margin-bottom: var(--page-qh88-spacing-lg);
    }

    .page-qh88-steps {
      display: flex;
      flex-direction: column;
      gap: var(--page-qh88-spacing-md);
    }

    .page-qh88-step {
      background-color: rgba(255,255,255,0.1);
      padding: var(--page-qh88-spacing-md);
      border-radius: var(--page-qh88-border-radius);
      display: flex;
      align-items: center;
      gap: var(--page-qh88-spacing-md);
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .page-qh88-step-icon {
      font-size: 2em;
      color: var(--page-qh88-primary-color);
      flex-shrink: 0;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--page-qh88-primary-color);
      border-radius: 50%;
    }

    .page-qh88-step-content h3 {
      margin-top: 0;
      color: var(--page-qh88-primary-color);
      font-size: 1.3em;
    }

    .page-qh88-payment-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: var(--page-qh88-spacing-md);
      margin-top: var(--page-qh88-spacing-md);
    }

    .page-qh88-payment-provider-logo {
      width: 80px;
      height: 50px;
      object-fit: contain;
      background-color: var(--page-qh88-light-text-color);
      border-radius: var(--page-qh88-border-radius);
      padding: var(--page-qh88-spacing-sm);
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .page-qh88-testimonials {
      background-color: var(--page-qh88-background-dark);
      color: var(--page-qh88-light-text-color);
    }

    .page-qh88-testimonials h2 {
      color: var(--page-qh88-primary-color);
      text-align: center;
      margin-bottom: var(--page-qh88-spacing-lg);
    }

    .page-qh88-testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--page-qh88-spacing-md);
    }

    .page-qh88-testimonial-card {
      background-color: rgba(255,255,255,0.1);
      padding: var(--page-qh88-spacing-md);
      border-radius: var(--page-qh88-border-radius);
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      text-align: center;
    }

    .page-qh88-testimonial-card p {
      font-style: italic;
      margin-bottom: var(--page-qh88-spacing-sm);
    }

    .page-qh88-testimonial-card .page-qh88-author {
      font-weight: bold;
      color: var(--page-qh88-primary-color);
    }

    .page-qh88-seo-text {
      font-size: 0.9em;
      color: #666;
      background-color: #f0f0f0;
      padding: var(--page-qh88-spacing-md);
      border-radius: var(--page-qh88-border-radius);
      margin-top: var(--page-qh88-spacing-lg);
    }
    .page-qh88-seo-text h3 {
      color: var(--page-qh88-secondary-color);
      margin-top: 0;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-qh88-hero h1 {
        font-size: 1.8em;
      }
      .page-qh88-hero p {
        font-size: 1em;
      }
      .page-qh88-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-qh88-game-card h3 {
        font-size: 0.9em;
      }
      .page-qh88-features-list {
        grid-template-columns: 1fr;
      }
      .page-qh88-step {
        flex-direction: column;
        text-align: center;
      }
      .page-qh88-step-icon {
        margin-bottom: var(--page-qh88-spacing-sm);
      }
      .page-qh88-sticky-button-wrapper {
        padding: 8px 0;
      }
      .page-qh88-sticky-button {
        padding: 10px 8px;
        font-size: 0.85em;
      }
    }

    @media (max-width: 480px) {
      .page-qh88-hero-content {
        min-height: 200px;
      }
      .page-qh88-hero h1 {
        font-size: 1.5em;
      }
      .page-qh88-hero p {
        font-size: 0.9em;
      }
      .page-qh88-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: var(--page-qh88-spacing-sm);
      }
      .page-qh88-game-card img {
        height: 80px;
      }
      .page-qh88-game-card h3 {
        font-size: 0.8em;
      }
      .page-qh88-sticky-button-wrapper {
        flex-direction: row;
      }
      .page-qh88-sticky-button {
        flex: 1;
        margin: 0 3px;
        padding: 8px 5px;
        font-size: 0.8em;
      }
    }
  