
    :root {
      --page-hb88bet-primary-bg: #1a1a2e;
      --page-hb88bet-secondary-bg: #2e2e4a;
      --page-hb88bet-text-color: #e0e0e0;
      --page-hb88bet-heading-color: #ffffff;
      --page-hb88bet-accent-color: #c72c41; /* Primary button background */
      --page-hb88bet-accent-color-light: #e94560; /* Lighter accent for hover */
      --page-hb88bet-link-color: #8be9fd;
      --page-hb88bet-secondary-btn-bg: #537e9d;
    }

    .page-hb88bet {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-hb88bet-text-color);
      background-color: var(--page-hb88bet-primary-bg);
      padding-bottom: 80px; /* Space for floating buttons */
    }

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

    /* Hero Section - Banner */
    .page-hb88bet__hero {
      position: relative;
      overflow: hidden;
      background-color: var(--page-hb88bet-secondary-bg);
      padding-bottom: 20px; /* Space below banner image before text */
    }

    .page-hb88bet__banner-container {
      position: relative;
      width: 100%;
      text-align: center;
      margin-bottom: 20px; /* Space between banner image and text */
    }

    .page-hb88bet__banner-img {
      width: 100%;
      height: auto;
      max-height: 300px; /* Adjust as needed for mobile-first */
      object-fit: cover;
      display: block;
      margin: 0 auto;
    }

    .page-hb88bet__banner-text {
      padding: 15px;
      text-align: center;
      background-color: var(--page-hb88bet-primary-bg);
      color: var(--page-hb88bet-heading-color);
    }
    .page-hb88bet__banner-text h1 {
      font-size: 1.8em;
      margin-bottom: 10px;
      color: var(--page-hb88bet-heading-color);
    }
    .page-hb88bet__banner-text p {
      font-size: 1em;
      margin-bottom: 0;
    }

    /* Headings */
    .page-hb88bet h1, .page-hb88bet h2, .page-hb88bet h3 {
      color: var(--page-hb88bet-heading-color);
      text-align: center;
      margin-top: 30px;
      margin-bottom: 20px;
    }

    .page-hb88bet h1 { font-size: 2.2em; }
    .page-hb88bet h2 { font-size: 1.8em; }
    .page-hb88bet h3 { font-size: 1.4em; }

    /* Paragraphs */
    .page-hb88bet p {
      margin-bottom: 15px;
      text-align: center;
    }

    /* Buttons */
    .page-hb88bet__btn {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin: 10px;
      font-size: 1em;
      text-align: center;
      cursor: pointer;
      color: #ffffff; /* Text color for buttons */
    }

    .page-hb88bet__btn--register,
    .page-hb88bet__btn--register-large {
      background-color: var(--page-hb88bet-accent-color);
      border: 1px solid var(--page-hb88bet-accent-color);
    }
    .page-hb88bet__btn--register:hover,
    .page-hb88bet__btn--register-large:hover {
      background-color: var(--page-hb88bet-accent-color-light);
      border-color: var(--page-hb88bet-accent-color-light);
      transform: translateY(-2px);
    }

    .page-hb88bet__btn--login {
      background-color: var(--page-hb88bet-secondary-btn-bg);
      border: 1px solid var(--page-hb88bet-secondary-btn-bg);
    }
    .page-hb88bet__btn--login:hover {
      background-color: #6a92b3; /* Slightly lighter */
      border-color: #6a92b3;
      transform: translateY(-2px);
    }

    .page-hb88bet__btn--download {
      background-color: var(--page-hb88bet-secondary-bg);
      border: 1px solid var(--page-hb88bet-link-color);
      color: var(--page-hb88bet-link-color);
    }
    .page-hb88bet__btn--download:hover {
      background-color: var(--page-hb88bet-link-color);
      color: var(--page-hb88bet-primary-bg);
      transform: translateY(-2px);
    }

    .page-hb88bet__buttons-wrapper {
      text-align: center;
      margin-top: 20px;
      margin-bottom: 30px;
    }

    /* Links in text */
    .page-hb88bet__text-link {
      color: var(--page-hb88bet-link-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .page-hb88bet__text-link:hover {
      color: #b3f2ff; /* Lighter shade of link color */
      text-decoration: underline;
    }

    /* Game Grid */
    .page-hb88bet__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      text-align: center;
    }

    .page-hb88bet__game-card {
      background-color: var(--page-hb88bet-secondary-bg);
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .page-hb88bet__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .page-hb88bet__game-img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .page-hb88bet__game-card h3 {
      font-size: 1.2em;
      margin-top: 10px;
      margin-bottom: 5px;
    }
    .page-hb88bet__game-card h3 .page-hb88bet__card-link {
      color: var(--page-hb88bet-heading-color);
      text-decoration: none;
    }
    .page-hb88bet__game-card h3 .page-hb88bet__card-link:hover {
      color: var(--page-hb88bet-link-color);
      text-decoration: underline;
    }
    .page-hb88bet__game-card p {
      font-size: 0.9em;
      color: var(--page-hb88bet-text-color);
    }

    /* App Download Section */
    .page-hb88bet__download-options {
      text-align: center;
      margin-top: 20px;
      margin-bottom: 20px;
    }
    .page-hb88bet__qr-code {
      display: block;
      margin: 20px auto;
      width: 150px;
      height: 150px;
      object-fit: contain;
      background-color: #ffffff; /* Ensure QR code is visible */
      padding: 10px;
      border-radius: 5px;
    }

    /* Providers & Payments */
    .page-hb88bet__provider-logos,
    .page-hb88bet__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 25px;
      margin-bottom: 30px;
    }
    .page-hb88bet__provider-logo,
    .page-hb88bet__payment-logo {
      width: 60px; /* Smaller for mobile */
      height: 40px;
      object-fit: contain;
      background-color: #ffffff; /* Ensure logos are visible */
      padding: 5px;
      border-radius: 5px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    /* Rankings List */
    .page-hb88bet__ranking-list {
      list-style: none;
      padding: 0;
      text-align: center;
      margin-top: 20px;
    }
    .page-hb88bet__ranking-list li {
      display: inline-block;
      margin: 5px 10px;
      background-color: var(--page-hb88bet-secondary-bg);
      padding: 8px 15px;
      border-radius: 5px;
      font-weight: bold;
    }
    .page-hb88bet__ranking-list li a {
      color: var(--page-hb88bet-link-color);
      text-decoration: none;
    }
    .page-hb88bet__ranking-list li a:hover {
      text-decoration: underline;
      color: #b3f2ff;
    }

    /* Floating Buttons */
    .page-hb88bet__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(26, 26, 46, 0.95); /* Semi-transparent dark background */
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
    }

    .page-hb88bet__floating-btn {
      flex: 1;
      text-align: center;
      padding: 12px 0;
      margin: 0 5px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      color: #ffffff;
    }

    .page-hb88bet__floating-btn--register {
      background-color: var(--page-hb88bet-accent-color);
    }
    .page-hb88bet__floating-btn--register:hover {
      background-color: var(--page-hb88bet-accent-color-light);
    }

    .page-hb88bet__floating-btn--login {
      background-color: var(--page-hb88bet-secondary-btn-bg);
    }
    .page-hb88bet__floating-btn--login:hover {
      background-color: #6a92b3;
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-hb88bet__banner-img {
        max-height: 400px;
      }
      .page-hb88bet__banner-text h1 {
        font-size: 2.5em;
      }
      .page-hb88bet h1 { font-size: 3em; }
      .page-hb88bet h2 { font-size: 2.2em; }
      .page-hb88bet h3 { font-size: 1.6em; }

      .page-hb88bet__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
      .page-hb88bet__provider-logo,
      .page-hb88bet__payment-logo {
        width: 80px;
        height: 50px;
      }
      .page-hb88bet__floating-buttons {
        max-width: 400px; /* Constrain width on larger screens */
        left: 50%;
        transform: translateX(-50%);
        border-radius: 10px 10px 0 0;
      }
    }
    @media (min-width: 1024px) {
      .page-hb88bet__banner-img {
        max-height: 500px;
      }
      .page-hb88bet__game-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
      }
    }
  