
    :root {
      --page-bj88live__color-primary: #1A237E; /* Dark Blue */
      --page-bj88live__color-secondary: #FFC107; /* Gold/Yellow */
      --page-bj88live__color-text-light: #FFFFFF;
      --page-bj88live__color-text-dark: #333333;
      --page-bj88live__color-background-dark: #212121;
      --page-bj88live__color-background-light: #F5F5F5;
      --page-bj88live__color-accent-red: #D32F2F; /* For promotions */
    }

    .page-bj88live {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-bj88live__color-text-dark);
      background-color: var(--page-bj88live__color-background-light);
    }

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

    .page-bj88live__section--dark {
      background-color: var(--page-bj88live__color-background-dark);
      color: var(--page-bj88live__color-text-light);
    }

    .page-bj88live__section-title {
      text-align: center;
      font-size: 2.5em;
      margin-bottom: 30px;
      color: var(--page-bj88live__color-primary);
      font-weight: bold;
    }

    .page-bj88live__section--dark .page-bj88live__section-title {
      color: var(--page-bj88live__color-secondary);
    }

    .page-bj88live__hero-section {
      background-color: var(--page-bj88live__color-background-dark);
      color: var(--page-bj88live__color-text-light);
      text-align: center;
      padding: 10px 15px 60px; /* Added padding-top for fixed header */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .page-bj88live__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      margin-bottom: 20px;
    }

    .page-bj88live__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .page-bj88live__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-bj88live__color-secondary);
      line-height: 1.2;
    }

    .page-bj88live__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--page-bj88live__color-text-light);
    }

    .page-bj88live__button {
      display: inline-block;
      background-color: var(--page-bj88live__color-secondary);
      color: var(--page-bj88live__color-primary);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-bj88live__button:hover {
      background-color: #FFD700;
      transform: translateY(-3px);
    }

    .page-bj88live__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-bj88live__color-accent-red);
      color: var(--page-bj88live__color-text-light);
      padding: 12px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      animation: page-bj88live__pulse 1.5s infinite;
      font-size: 1em;
      text-align: center;
      text-decoration: none;
      font-weight: bold;
    }

    .page-bj88live__floating-button:hover {
      background-color: #C62828;
      animation: none;
    }

    @keyframes page-bj88live__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    .page-bj88live__text-block {
      margin-bottom: 20px;
      text-align: left;
    }

    .page-bj88live__text-block h2 {
      color: var(--page-bj88live__color-primary);
      font-size: 2em;
      margin-bottom: 15px;
    }

    .page-bj88live__text-block--dark h2 {
      color: var(--page-bj88live__color-secondary);
    }

    .page-bj88live__text-block p {
      margin-bottom: 10px;
      font-size: 1.1em;
    }

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

    .page-bj88live__game-card {
      background-color: var(--page-bj88live__color-text-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-bj88live__game-card--dark {
      background-color: #333333;
      color: var(--page-bj88live__color-text-light);
    }

    .page-bj88live__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-bj88live__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 15px;
    }

    .page-bj88live__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Ensure image covers the area without distortion */
      display: block;
    }

    .page-bj88live__game-card-title {
      font-size: 1.5em;
      color: var(--page-bj88live__color-primary);
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-bj88live__game-card--dark .page-bj88live__game-card-title {
      color: var(--page-bj88live__color-secondary);
    }

    .page-bj88live__game-card-description {
      font-size: 0.95em;
      color: var(--page-bj88live__color-text-dark);
      padding: 0 15px;
      margin-bottom: 15px;
      flex-grow: 1; /* Allows description to take available space */
    }

    .page-bj88live__game-card--dark .page-bj88live__game-card-description {
      color: var(--page-bj88live__color-text-light);
    }

    .page-bj88live__cta-section {
      text-align: center;
      padding: 60px 15px;
      background-color: var(--page-bj88live__color-primary);
      color: var(--page-bj88live__color-text-light);
    }

    .page-bj88live__cta-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      color: var(--page-bj88live__color-secondary);
    }

    .page-bj88live__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-bj88live__faq-container {
      margin-top: 30px;
      background-color: var(--page-bj88live__color-text-light);
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-bj88live__faq-item {
      border-bottom: 1px solid #eee;
    }

    .page-bj88live__faq-item:last-child {
      border-bottom: none;
    }

    .page-bj88live__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-bj88live__color-background-light);
      transition: background-color 0.3s ease;
    }

    .page-bj88live__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-bj88live__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-bj88live__color-primary);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-bj88live__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-bj88live__color-primary);
      margin-left: 10px;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      transition: transform 0.3s ease;
    }

    .page-bj88live__faq-item.active .page-bj88live__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar, or just rotate */
    }

    .page-bj88live__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #f9f9f9;
      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(--page-bj88live__color-text-dark);
      font-size: 1em;
    }

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

    .page-bj88live__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }
    
    .page-bj88live__image-wrapper img {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-bj88live__hero-section {
        padding-top: 10px; /* Adjust for mobile fixed header */
        padding-bottom: 40px;
      }

      .page-bj88live__hero-title {
        font-size: 2em;
      }

      .page-bj88live__hero-subtitle {
        font-size: 1em;
      }

      .page-bj88live__section-title {
        font-size: 2em;
      }

      .page-bj88live__text-block h2 {
        font-size: 1.8em;
      }

      .page-bj88live__button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

      .page-bj88live__cta-title {
        font-size: 1.8em;
      }

      .page-bj88live__cta-description {
        font-size: 1em;
      }

      .page-bj88live__faq-question h3 {
        font-size: 1.1em;
      }

      .page-bj88live__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 0.9em;
      }

      .page-bj88live__image-wrapper img {
        max-width: 100% !important;
        height: auto !important;
      }
    }
  