
    :root {
      --page-bj88daga__primary-color: #e44d26; /* Cam đậm */
      --page-bj88daga__secondary-color: #333; /* Xám đậm */
      --page-bj88daga__accent-color: #ffcc00; /* Vàng */
      --page-bj88daga__background-light: #f5f5f5; /* Nền sáng */
      --page-bj88daga__text-dark: #222; /* Chữ tối */
      --page-bj88daga__text-light: #fff; /* Chữ sáng */
      --page-bj88daga__border-color: #ddd; /* Màu viền */
      --page-bj88daga__shadow: rgba(0, 0, 0, 0.1); /* Đổ bóng */
    }

    .page-bj88daga {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-bj88daga__text-dark);
      background-color: var(--page-bj88daga__background-light);
      padding: 0;
      margin: 0;
      overflow-x: hidden;
    }

    .page-bj88daga__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-bj88daga__section {
      padding: 60px 20px;
      margin-bottom: 20px;
      background-color: var(--page-bj88daga__text-light);
      border-radius: 8px;
      box-shadow: 0 4px 8px var(--page-bj88daga__shadow);
      text-align: center;
    }
    
    .page-bj88daga__section--dark {
        background-color: var(--page-bj88daga__secondary-color);
        color: var(--page-bj88daga__text-light);
    }

    .page-bj88daga__section-title {
      font-size: 2.5em;
      color: var(--page-bj88daga__primary-color);
      margin-bottom: 40px;
      font-weight: bold;
    }

    .page-bj88daga__section-title--light {
        color: var(--page-bj88daga__accent-color);
    }

    .page-bj88daga__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: left;
    }

    /* Hero Section */
    .page-bj88daga__hero-section {
      position: relative;
      width: 100%;
      min-height: 400px; /* Adjusted min-height for content */
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      color: var(--page-bj88daga__text-light);
      padding-top: 120px; /* Space for fixed header */
      overflow: hidden;
      box-sizing: border-box;
      background-color: #000; /* Fallback background */
    }

    .page-bj88daga__hero-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-bj88daga__hero-image {
        width: 100%;
        height: auto;
        object-fit: cover; /* Ensures image covers the area without distortion */
        min-height: 100%; /* Ensures image covers the height */
    }

    .page-bj88daga__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
      z-index: 2;
    }

    .page-bj88daga__hero-content {
      position: relative;
      z-index: 3;
      max-width: 800px;
      padding: 20px;
    }

    .page-bj88daga__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--page-bj88daga__text-light);
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-bj88daga__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--page-bj88daga__text-light);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    /* Floating Login Button */
    .page-bj88daga__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-bj88daga__primary-color);
      color: var(--page-bj88daga__text-light);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 4px 10px var(--page-bj88daga__shadow);
      transition: background-color 0.3s ease, transform 0.3s ease;
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .page-bj88daga__floating-button:hover {
      background-color: #c43e1d; /* Darker primary color */
      transform: translateY(-3px);
    }
    
    .page-bj88daga__floating-button-icon {
        font-size: 1.5em;
    }

    /* Game Categories / Product Display */
    .page-bj88daga__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-bj88daga__game-card {
      background-color: var(--page-bj88daga__background-light);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px var(--page-bj88daga__shadow);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-bj88daga__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px var(--page-bj88daga__shadow);
    }

    .page-bj88daga__game-card-image-wrapper {
        width: 100%;
        height: 200px; /* Fixed height for image container */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #eee;
    }

    .page-bj88daga__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Ensures image covers the area */
      display: block;
    }

    .page-bj88daga__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-bj88daga__game-card-title {
      font-size: 1.4em;
      color: var(--page-bj88daga__primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-bj88daga__game-card-description {
      font-size: 0.95em;
      color: var(--page-bj88daga__secondary-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-bj88daga__game-card-link {
      display: inline-block;
      background-color: var(--page-bj88daga__accent-color);
      color: var(--page-bj88daga__text-dark);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-bj88daga__game-card-link:hover {
      background-color: #e6b800; /* Darker accent color */
    }

    /* Call to Action Button */
    .page-bj88daga__cta-button {
      display: inline-block;
      background-color: var(--page-bj88daga__primary-color);
      color: var(--page-bj88daga__text-light);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      margin-top: 30px;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-bj88daga__cta-button:hover {
      background-color: #c43e1d;
      transform: translateY(-2px);
    }

    /* Game Providers Section */
    .page-bj88daga__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Smaller minmax for logos */
      gap: 20px;
      margin-top: 40px;
      align-items: center;
      justify-content: center;
    }

    .page-bj88daga__provider-logo-wrapper {
        width: 100%;
        height: 80px; /* Fixed height for logos */
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--page-bj88daga__text-light);
        border-radius: 8px;
        box-shadow: 0 2px 4px var(--page-bj88daga__shadow);
        overflow: hidden;
    }

    .page-bj88daga__provider-logo {
      max-width: 80%;
      max-height: 70%;
      height: auto;
      object-fit: contain;
      display: block;
    }

    /* FAQ Section */
    .page-bj88daga__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-bj88daga__faq-item {
      background-color: var(--page-bj88daga__background-light);
      border: 1px solid var(--page-bj88daga__border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 4px var(--page-bj88daga__shadow);
    }

    .page-bj88daga__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: var(--page-bj88daga__primary-color);
      color: var(--page-bj88daga__text-light);
      font-weight: bold;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-bj88daga__faq-question:hover {
      background-color: #c43e1d;
    }

    .page-bj88daga__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: inherit;
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-bj88daga__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-bj88daga__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-bj88daga__text-dark);
      background-color: var(--page-bj88daga__text-light);
    }

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

    .page-bj88daga__faq-answer p {
        margin: 0;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-bj88daga__hero-section {
        min-height: 300px;
        padding-top: 100px; /* Adjust for mobile fixed header */
      }

      .page-bj88daga__hero-title {
        font-size: 2.5em;
      }

      .page-bj88daga__hero-subtitle {
        font-size: 1.2em;
      }

      .page-bj88daga__section {
        padding: 40px 15px;
      }

      .page-bj88daga__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-bj88daga__text-content {
        font-size: 1em;
      }

      .page-bj88daga__game-grid {
        grid-template-columns: 1fr;
      }
      
      .page-bj88daga__game-card-image-wrapper {
        height: 180px;
      }

      .page-bj88daga__floating-button {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }

      .page-bj88daga__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-bj88daga__faq-question h3 {
        font-size: 1em;
      }

      .page-bj88daga__faq-toggle {
        font-size: 1.2em;
      }

      .page-bj88daga__faq-item.active .page-bj88daga__faq-answer {
        padding: 15px 15px !important;
      }

      /* Image responsiveness for all images */
      .page-bj88daga img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
      }

      .page-bj88daga__game-card-image,
      .page-bj88daga__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      
      .page-bj88daga__hero-image {
        width: auto !important; /* Allow auto width for taller images to fill height */
        height: 100% !important;
        max-width: unset !important; /* Override max-width 100% to allow filling height */
      }
      
      .page-bj88daga__hero-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
    
    @media (min-width: 769px) {
        .page-bj88daga__hero-image {
            width: 100% !important;
            height: auto !important;
            max-width: 100% !important;
        }
    }
  