
    /* CSS Styles for hb 88 page */
    :root {
      --page-hb88-primary-color: #e44d26; /* A vibrant orange-red, good for action */
      --page-hb88-secondary-color: #333; /* Dark grey for text */
      --page-hb88-background-light: #f5f5f5; /* Light background */
      --page-hb88-background-dark: #222; /* Dark background for sections */
      --page-hb88-text-light: #fff; /* White text on dark background */
      --page-hb88-text-dark: #333; /* Dark text on light background */
      --page-hb88-accent-color: #007bff; /* Blue for links/highlights */
    }

    .page-hb88 {
      font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.6;
      color: var(--page-hb88-text-dark);
      background-color: var(--page-hb88-background-light);
      padding: 0;
      margin: 0;
    }

    .page-hb88-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px;
    }

    /* Floating Login Button */
    .page-hb88-floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-hb88-primary-color);
      color: var(--page-hb88-text-light);
      padding: 15px 25px;
      border-radius: 50px;
      text-align: center;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: transform 0.3s ease, background-color 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .page-hb88-floating-button:hover {
      background-color: #cf411f; /* Slightly darker on hover */
      transform: translateY(-3px);
    }

    .page-hb88-floating-button span {
      margin-left: 8px;
    }

    /* Banner Section */
    .page-hb88-hero {
      position: relative;
      text-align: center;
      color: var(--page-hb88-text-light);
      background-color: var(--page-hb88-background-dark);
      padding-bottom: 20px; /* Space for text below banner */
    }

    .page-hb88-hero-banner {
      width: 100%;
      max-width: 100%; /* Ensure it doesn't overflow */
      height: auto;
      display: block; /* Remove extra space below image */
      margin: 0 auto; /* Center image */
    }

    .page-hb88-hero-content {
      padding: 20px 15px;
      background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.6) 100%);
      margin-top: -5px; /* Slightly overlap with banner for smooth transition */
      position: relative;
      z-index: 1;
    }

    .page-hb88-hero h1 {
      font-size: 2.2em;
      margin-bottom: 10px;
      color: var(--page-hb88-primary-color);
      text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    }
    .page-hb88-hero p {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-hb88-text-light);
      text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }
    .page-hb88-hero .page-hb88-btn-primary {
      display: inline-block;
      background-color: var(--page-hb88-primary-color);
      color: var(--page-hb88-text-light);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }
    .page-hb88-hero .page-hb88-btn-primary:hover {
      background-color: #cf411f;
    }

    /* Game Categories Section */
    .page-hb88-game-categories {
      background-color: var(--page-hb88-background-dark);
      padding: 40px 0;
      text-align: center;
      color: var(--page-hb88-text-light);
    }

    .page-hb88-game-categories h2 {
      font-size: 2em;
      margin-bottom: 30px;
      color: var(--page-hb88-primary-color);
    }

    .page-hb88-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      padding: 0 15px;
    }

    .page-hb88-game-card {
      background-color: #3a3a3a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: var(--page-hb88-text-light);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 15px;
    }

    .page-hb88-game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .page-hb88-game-card img {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .page-hb88-game-card h3 {
      font-size: 1.1em;
      margin: 0;
      text-align: center;
    }

    /* Why Choose Us Section */
    .page-hb88-why-choose-us {
      padding: 40px 15px;
      text-align: center;
      background-color: var(--page-hb88-background-light);
    }

    .page-hb88-why-choose-us h2 {
      font-size: 2em;
      margin-bottom: 30px;
      color: var(--page-hb88-secondary-color);
    }

    .page-hb88-feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 20px;
    }

    .page-hb88-feature-item {
      background-color: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: left;
    }

    .page-hb88-feature-item h3 {
      font-size: 1.4em;
      color: var(--page-hb88-primary-color);
      margin-bottom: 10px;
    }

    .page-hb88-feature-item p {
      color: var(--page-hb88-secondary-color);
      font-size: 0.95em;
    }

    /* Promotions Section */
    .page-hb88-promotions {
      background-color: var(--page-hb88-primary-color);
      color: var(--page-hb88-text-light);
      padding: 40px 15px;
      text-align: center;
    }

    .page-hb88-promotions h2 {
      font-size: 2em;
      margin-bottom: 20px;
      color: var(--page-hb88-text-light);
    }

    .page-hb88-promotions p {
      font-size: 1.1em;
      margin-bottom: 30px;
    }

    .page-hb88-promo-link {
      display: inline-block;
      background-color: var(--page-hb88-text-light);
      color: var(--page-hb88-primary-color);
      padding: 12px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .page-hb88-promo-link:hover {
      background-color: #eee;
      color: #c23b1c;
    }

    /* App Download Section */
    .page-hb88-app-download {
      padding: 40px 15px;
      text-align: center;
      background-color: var(--page-hb88-background-light);
    }

    .page-hb88-app-download h2 {
      font-size: 2em;
      margin-bottom: 20px;
      color: var(--page-hb88-secondary-color);
    }

    .page-hb88-app-qr {
      width: 150px;
      height: 150px;
      margin: 20px auto;
      display: block;
    }

    .page-hb88-app-buttons a {
      display: inline-block;
      background-color: var(--page-hb88-secondary-color);
      color: var(--page-hb88-text-light);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      margin: 10px;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-hb88-app-buttons a:hover {
      background-color: #555;
    }

    /* Latest News Section */
    .page-hb88-news {
      background-color: var(--page-hb88-background-dark);
      color: var(--page-hb88-text-light);
      padding: 40px 0;
      text-align: center;
    }

    .page-hb88-news h2 {
      font-size: 2em;
      margin-bottom: 30px;
      color: var(--page-hb88-primary-color);
    }

    .page-hb88-news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 0 15px;
    }

    .page-hb88-news-card {
      background-color: #3a3a3a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: var(--page-hb88-text-light);
      text-align: left;
    }

    .page-hb88-news-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .page-hb88-news-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .page-hb88-news-card-content {
      padding: 15px;
    }

    .page-hb88-news-card h3 {
      font-size: 1.2em;
      margin-top: 0;
      margin-bottom: 10px;
      color: var(--page-hb88-primary-color);
    }

    .page-hb88-news-card p {
      font-size: 0.9em;
      color: #ccc;
      margin-bottom: 15px;
    }

    .page-hb88-news-card .page-hb88-read-more {
      color: var(--page-hb88-accent-color);
      font-weight: bold;
      text-decoration: none;
    }

    .page-hb88-news-card .page-hb88-read-more:hover {
      text-decoration: underline;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-hb88-hero h1 {
        font-size: 1.8em;
      }
      .page-hb88-hero p {
        font-size: 1em;
      }
      .page-hb88-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-hb88-game-card img {
        width: 60px;
        height: 60px;
      }
      .page-hb88-game-card h3 {
        font-size: 1em;
      }
      .page-hb88-feature-grid, .page-hb88-news-grid {
        grid-template-columns: 1fr;
      }
      .page-hb88-floating-button {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }
    }

    @media (max-width: 480px) {
      .page-hb88-floating-button {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 10px;
        border-radius: 8px;
        font-size: 0.95em;
        padding: 10px 15px;
      }
      .page-hb88-hero h1 {
        font-size: 1.5em;
      }
      .page-hb88-hero p {
        font-size: 0.9em;
      }
      .page-hb88-game-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
  