
    :root {
      --page-hb88bets-bg-dark: #1a1a2e; /* Dark blue/purple */
      --page-hb88bets-bg-medium: #2b2b4d; /* Slightly lighter dark blue */
      --page-hb88bets-text-light: #e0e0e0; /* Light grey */
      --page-hb88bets-accent-gold: #ffcc00; /* Gold/yellow for highlights/buttons */
      --page-hb88bets-accent-red: #e74c3c; /* Red for important actions */
      --page-hb88bets-border-color: #4a4a6e;
      --page-hb88bets-card-bg: #22223a; /* Card background */
      --page-hb88bets-card-hover: #3a3a5a; /* Card hover background */
    }

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

    .page-hb88bets a {
      color: var(--page-hb88bets-accent-gold);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-hb88bets a:hover {
      color: #ffd700; /* Slightly brighter gold on hover */
      text-decoration: underline;
    }

    .page-hb88bets .page-hb88bets__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-hb88bets .page-hb88bets__section--hero {
      background-color: var(--page-hb88bets-bg-medium);
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
    }
    
    .page-hb88bets .page-hb88bets__section--hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('[GALLERY:background:hb88,hero,pattern]');
        background-size: cover;
        opacity: 0.1;
        z-index: 0;
    }

    .page-hb88bets .page-hb88bets__section-content {
      position: relative;
      z-index: 1;
    }

    .page-hb88bets .page-hb88bets__h1 {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: var(--page-hb88bets-accent-gold);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-hb88bets .page-hb88bets__h2 {
      font-size: 2.2em;
      margin-top: 40px;
      margin-bottom: 30px;
      color: var(--page-hb88bets-text-light);
      border-bottom: 2px solid var(--page-hb88bets-accent-gold);
      padding-bottom: 10px;
      display: inline-block;
    }

    .page-hb88bets .page-hb88bets__h3 {
      font-size: 1.8em;
      margin-top: 30px;
      margin-bottom: 15px;
      color: var(--page-hb88bets-accent-gold);
    }

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

    .page-hb88bets .page-hb88bets__button {
      display: inline-block;
      background-color: var(--page-hb88bets-accent-gold);
      color: var(--page-hb88bets-bg-dark);
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-transform: uppercase;
      margin-top: 20px;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-hb88bets .page-hb88bets__button:hover {
      background-color: #ffd700;
      transform: translateY(-3px);
    }

    .page-hb88bets .page-hb88bets__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-hb88bets .page-hb88bets__game-card {
      background-color: var(--page-hb88bets-card-bg);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      border: 1px solid var(--page-hb88bets-border-color);
    }

    .page-hb88bets .page-hb88bets__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-hb88bets .page-hb88bets__game-card-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .page-hb88bets .page-hb88bets__game-card-content {
      padding: 20px;
    }

    .page-hb88bets .page-hb88bets__game-card-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: var(--page-hb88bets-accent-gold);
    }

    .page-hb88bets .page-hb88bets__game-card-description {
      font-size: 0.95em;
      color: var(--page-hb88bets-text-light);
      margin-bottom: 15px;
    }

    .page-hb88bets .page-hb88bets__game-card-link {
      display: inline-block;
      background-color: var(--page-hb88bets-accent-gold);
      color: var(--page-hb88bets-bg-dark);
      padding: 10px 20px;
      border-radius: 6px;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .page-hb88bets .page-hb88bets__game-card-link:hover {
      background-color: #ffd700;
      text-decoration: none;
    }

    .page-hb88bets .page-hb88bets__list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 15px;
      text-align: left;
    }

    .page-hb88bets .page-hb88bets__list-item {
      background-color: var(--page-hb88bets-card-bg);
      padding: 15px 20px;
      border-radius: 8px;
      border-left: 5px solid var(--page-hb88bets-accent-gold);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      font-size: 1.05em;
    }

    .page-hb88bets .page-hb88bets__provider-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-hb88bets .page-hb88bets__provider-item {
      background-color: var(--page-hb88bets-card-bg);
      padding: 10px 20px;
      border-radius: 8px;
      font-weight: bold;
      color: var(--page-hb88bets-text-light);
      border: 1px solid var(--page-hb88bets-border-color);
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .page-hb88bets .page-hb88bets__fixed-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      background-color: rgba(26, 26, 46, 0.95); /* Semi-transparent dark background */
      padding: 10px 0;
      box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      border-top: 1px solid var(--page-hb88bets-border-color);
    }

    .page-hb88bets .page-hb88bets__fixed-button {
      flex: 1;
      text-align: center;
      padding: 10px 0;
      font-size: 1em;
      font-weight: bold;
      color: var(--page-hb88bets-text-light);
      background-color: var(--page-hb88bets-bg-medium);
      border-radius: 5px;
      margin: 0 5px;
      transition: background-color 0.3s ease, color 0.3s ease;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    .page-hb88bets .page-hb88bets__fixed-button.register {
      background-color: var(--page-hb88bets-accent-gold);
      color: var(--page-hb88bets-bg-dark);
    }
    .page-hb88bets .page-hb88bets__fixed-button.register:hover {
        background-color: #ffd700;
    }

    .page-hb88bets .page-hb88bets__fixed-button.login {
      background-color: var(--page-hb88bets-accent-red);
      color: var(--page-hb88bets-text-light);
    }
    .page-hb88bets .page-hb88bets__fixed-button.login:hover {
        background-color: #cc3333;
    }

    .page-hb88bets .page-hb88bets__fixed-button:hover {
      background-color: var(--page-hb88bets-card-hover);
      color: var(--page-hb88bets-accent-gold);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-hb88bets .page-hb88bets__h1 {
        font-size: 2em;
      }

      .page-hb88bets .page-hb88bets__h2 {
        font-size: 1.8em;
      }

      .page-hb88bets .page-hb88bets__h3 {
        font-size: 1.5em;
      }

      .page-hb88bets .page-hb88bets__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-hb88bets .page-hb88bets__section {
        padding: 30px 15px;
      }

      .page-hb88bets .page-hb88bets__game-grid {
        grid-template-columns: 1fr;
      }

      .page-hb88bets .page-hb88bets__list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
        .page-hb88bets .page-hb88bets__fixed-button {
            font-size: 0.9em;
            padding: 8px 0;
            margin: 0 3px;
        }
    }
  