
    :root {
      --hz888-primary-color: #007bff;
      --hz888-secondary-color: #6c757d;
      --hz888-accent-color: #ffc107;
      --hz888-dark-bg: #1a1a1a;
      --hz888-light-bg: #f8f9fa;
      --hz888-text-color: #333;
      --hz888-white-text: #fff;
      --hz888-border-color: #dee2e6;
      --hz888-gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
      --hz888-gradient-light: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    /* Base styles for the page */
    .page-hz888-2 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--hz888-text-color);
      background-color: var(--hz888-light-bg);
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
      min-height: 100vh;
      width: 100%;
      max-width: 100%;
      overflow-x: hidden; /* Ensure no horizontal scroll */
    }

    .page-hz888-2 h1, .page-hz888-2 h2, .page-hz888-2 h3, .page-hz888-2 h4 {
      color: var(--hz888-primary-color);
      margin-bottom: 1rem;
      text-align: center;
      width: 100%;
      box-sizing: border-box;
    }

    .page-hz888-2 h1 {
      font-size: 2.5rem;
      margin-top: 1.5rem;
      color: var(--hz888-accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-hz888-2 h2 {
      font-size: 2rem;
      color: var(--hz888-primary-color);
    }

    .page-hz888-2 h3 {
      font-size: 1.5rem;
      color: var(--hz888-secondary-color);
    }

    .page-hz888-2 p {
      margin-bottom: 1rem;
      text-align: justify;
      max-width: 800px;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-hz888-2__section {
      padding: 2rem 0;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-hz888-2__section--dark {
      background: var(--hz888-gradient-dark);
      color: var(--hz888-white-text);
    }
    
    .page-hz888-2__section--dark h1, .page-hz888-2__section--dark h2, .page-hz888-2__section--dark h3 {
      color: var(--hz888-accent-color);
    }

    .page-hz888-2__container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-hz888-2__hero-section {
      background: url('[GALLERY:hero:1920x1080:online_casino,gaming,hz888_banner]') no-repeat center center/cover;
      color: var(--hz888-white-text);
      text-align: center;
      padding: 10px 0 6rem; /* 10px top for offset, 6rem bottom for content */
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      box-sizing: border-box;
      width: 100%;
    }

    .page-hz888-2__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
      box-sizing: border-box;
    }

    .page-hz888-2__hero-content h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      color: var(--hz888-accent-color);
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    }

    .page-hz888-2__hero-content p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
      color: var(--hz888-white-text);
      text-align: center;
    }

    /* Floating Buttons */
    .page-hz888-2__floating-buttons {
      position: fixed;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 10px;
      box-sizing: border-box;
    }

    .page-hz888-2__floating-button {
      background-color: var(--hz888-primary-color);
      color: var(--hz888-white-text);
      border: none;
      padding: 12px 20px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      text-align: center;
      display: block;
      width: 120px; /* Fixed width for consistency */
      box-sizing: border-box;
    }

    .page-hz888-2__floating-button:hover {
      background-color: #0056b3;
      transform: scale(1.05);
    }

    /* Product Grid */
    .page-hz888-2__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      padding: 0 15px;
      box-sizing: border-box;
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
    }

    .page-hz888-2__game-item {
      background-color: var(--hz888-white-text);
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 15px;
      box-sizing: border-box;
    }

    .page-hz888-2__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .page-hz888-2__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .page-hz888-2__game-item h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: var(--hz888-primary-color);
      padding: 0 10px;
      box-sizing: border-box;
    }

    .page-hz888-2__game-item p {
      font-size: 0.95rem;
      color: var(--hz888-text-color);
      padding: 0 15px;
      text-align: center;
    }

    /* Promotions Section */
    .page-hz888-2__promo-list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 900px;
      box-sizing: border-box;
    }

    .page-hz888-2__promo-item {
      background-color: var(--hz888-white-text);
      border: 1px solid var(--hz888-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
      width: 100%;
    }
    
    .page-hz888-2__promo-item--dark {
      background-color: #333;
      color: var(--hz888-white-text);
      border-color: #555;
    }

    .page-hz888-2__promo-item--dark h3 {
      color: var(--hz888-accent-color);
    }

    .page-hz888-2__promo-icon {
      width: 80px;
      height: 80px;
      object-fit: contain;
      flex-shrink: 0;
      border-radius: 5px;
      box-sizing: border-box;
    }

    .page-hz888-2__promo-content h3 {
      margin-top: 0;
      margin-bottom: 5px;
      text-align: left;
    }

    .page-hz888-2__promo-content p {
      margin-bottom: 0;
      font-size: 0.95rem;
      text-align: left;
      padding: 0;
    }

    /* Providers and Payments */
    .page-hz888-2__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
      padding: 0 15px;
      box-sizing: border-box;
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-hz888-2__logo-item {
      background-color: var(--hz888-white-text);
      border: 1px solid var(--hz888-border-color);
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
      box-sizing: border-box;
      width: 100%; /* Ensure item takes full grid cell width */
      max-width: 150px; /* Max width for logo item */
    }
    
    .page-hz888-2__logo-item--dark {
        background-color: #333;
        border-color: #555;
    }

    .page-hz888-2__logo-item:hover {
      transform: translateY(-3px);
    }

    .page-hz888-2__logo-image {
      max-width: 100px;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: contain;
      box-sizing: border-box;
    }

    .page-hz888-2__logo-item p {
      margin-top: 10px;
      font-size: 0.85rem;
      font-weight: bold;
      color: var(--hz888-text-color);
      padding: 0;
    }

    .page-hz888-2__logo-item--dark p {
        color: var(--hz888-white-text);
    }

    /* Call to Action */
    .page-hz888-2__cta-section {
      text-align: center;
      padding: 3rem 15px;
      background: var(--hz888-gradient-dark);
      color: var(--hz888-white-text);
      box-sizing: border-box;
      width: 100%;
    }

    .page-hz888-2__cta-section h2 {
      color: var(--hz888-accent-color);
      margin-bottom: 1.5rem;
    }

    .page-hz888-2__cta-button {
      background-color: var(--hz888-accent-color);
      color: var(--hz888-dark-bg);
      border: none;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.2rem;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: inline-block;
      text-decoration: none;
    }

    .page-hz888-2__cta-button:hover {
      background-color: #e0a800;
      transform: scale(1.05);
    }

    /* FAQ Section */
    .page-hz888-2__faq-section {
      background-color: var(--hz888-light-bg);
      padding: 3rem 0;
      box-sizing: border-box;
      width: 100%;
    }

    .page-hz888-2__faq-section h2 {
      margin-bottom: 2rem;
    }

    .page-hz888-2__faq-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-hz888-2__faq-item {
      background-color: var(--hz888-white-text);
      border: 1px solid var(--hz888-border-color);
      border-radius: 8px;
      margin-bottom: 10px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
      width: 100%;
    }

    .page-hz888-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #f1f1f1;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
      width: 100%;
    }

    .page-hz888-2__faq-question:hover {
      background-color: #e9e9e9;
    }

    .page-hz888-2__faq-question h3 {
      margin: 0;
      font-size: 1.1rem;
      color: var(--hz888-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
      text-align: left;
      flex-grow: 1;
    }

    .page-hz888-2__faq-toggle {
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--hz888-primary-color);
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
      margin-left: 10px;
      flex-shrink: 0;
    }

    .page-hz888-2__faq-item.active .page-hz888-2__faq-toggle {
      transform: rotate(45deg); /* Plus to X/minus for visual effect */
    }

    .page-hz888-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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(--hz888-text-color);
      box-sizing: border-box;
    }

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

    .page-hz888-2__faq-answer p {
      margin-top: 0;
      margin-bottom: 0;
      text-align: left;
      padding: 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-hz888-2__hero-content h1 {
        font-size: 2.2rem;
      }

      .page-hz888-2__hero-content p {
        font-size: 1rem;
      }

      .page-hz888-2__floating-buttons {
        flex-direction: row;
        width: 100%;
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        transform: none;
        justify-content: space-around;
        background-color: rgba(0, 0, 0, 0.8);
        padding: 10px 0;
        box-sizing: border-box;
      }

      .page-hz888-2__floating-button {
        width: 45%; /* Adjust width for smaller screens */
        padding: 10px 15px;
        font-size: 0.9rem;
        box-sizing: border-box;
      }

      .page-hz888-2__game-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
        box-sizing: border-box;
      }

      .page-hz888-2__game-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-hz888-2__promo-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        box-sizing: border-box;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-hz888-2__promo-icon {
        margin-bottom: 10px;
      }
      
      .page-hz888-2__promo-content h3, .page-hz888-2__promo-content p {
        text-align: center;
        padding: 0;
      }

      .page-hz888-2__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        padding: 0 10px;
        box-sizing: border-box;
      }

      .page-hz888-2__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-hz888-2__cta-section h2 {
        font-size: 1.8rem;
      }

      .page-hz888-2__cta-button {
        font-size: 1rem;
        padding: 12px 25px;
      }

      .page-hz888-2__faq-list {
        padding: 0 10px;
        box-sizing: border-box;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-hz888-2__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-hz888-2__faq-question {
        padding: 12px 15px;
      }

      .page-hz888-2__faq-question h3 {
        font-size: 1rem;
      }

      .page-hz888-2__faq-answer {
        padding: 15px 15px !important;
      }
      
      .page-hz888-2 p {
        padding: 0 10px;
      }
    }
    
    @media (max-width: 480px) {
        .page-hz888-2__hero-content h1 {
            font-size: 1.8rem;
        }
        .page-hz888-2__floating-buttons {
            flex-direction: column;
            align-items: center;
            padding: 10px;
        }
        .page-hz888-2__floating-button {
            width: 80%;
        }
    }
  