
    /* Tổng thể */
    .page-8xbet {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Nền đen */
      color: #ffffff; /* Chữ trắng mặc định */
      line-height: 1.6;
      padding: 0;
      margin: 0;
      overflow-x: hidden;
    }

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

    .page-8xbet__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-8xbet__section--dark {
      background-color: #1a1a1a;
    }

    .page-8xbet__heading {
      color: #ffcc00; /* Chữ vàng */
      margin-bottom: 20px;
      font-size: 2.5em;
    }

    .page-8xbet__sub-heading {
      color: #ffffff; /* Chữ trắng */
      margin-bottom: 15px;
      font-size: 1.8em;
    }

    .page-8xbet__text {
      color: #e0e0e0; /* Chữ trắng nhạt */
      margin-bottom: 20px;
    }

    /* Hero Section */
    .page-8xbet__hero-section {
      position: relative;
      padding-top: 160px; /* An toàn cho header cố định (140px-180px) */
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
    }

    .page-8xbet__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px; /* Khoảng cách giữa ảnh và text */
    }

    .page-8xbet__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* Đảm bảo ảnh không bị biến dạng */
      min-height: 250px; /* Đảm bảo kích thước tối thiểu */
    }

    .page-8xbet__brand-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-top: 20px; /* Khoảng cách giữa ảnh và text */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-8xbet__brand-logo {
        max-width: 250px; /* Kích thước logo */
        height: auto;
        display: block;
        object-fit: contain;
        min-width: 200px; /* Đảm bảo kích thước tối thiểu */
        min-height: 200px; /* Đảm bảo kích thước tối thiểu */
    }

    .page-8xbet__hero-content {
      position: relative;
      z-index: 1;
      padding: 0 20px;
    }

    .page-8xbet__hero-title {
      font-size: 3em;
      color: #ffcc00;
      margin-bottom: 15px;
    }

    .page-8xbet__hero-description {
      font-size: 1.2em;
      color: #ffffff;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Game Categories */
    .page-8xbet__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-8xbet__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .page-8xbet__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-8xbet__game-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Cố định chiều cao cho ảnh game */
    }

    .page-8xbet__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-8xbet__game-title {
      font-size: 1.5em;
      color: #ffcc00;
      padding: 15px;
      margin: 0;
    }

    /* Promotions */
    .page-8xbet__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-8xbet__promotion-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8xbet__promotion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-8xbet__promotion-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 220px; /* Cố định chiều cao cho ảnh khuyến mãi */
    }

    .page-8xbet__promotion-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-8xbet__promotion-content {
      padding: 20px;
    }

    .page-8xbet__promotion-title {
      font-size: 1.6em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-8xbet__promotion-description {
      color: #e0e0e0;
      font-size: 0.95em;
      margin-bottom: 15px;
    }

    /* Game Providers */
    .page-8xbet__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Nhỏ hơn cho logo */
      gap: 20px;
      margin-top: 30px;
    }

    .page-8xbet__provider-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Cố định chiều cao cho logo */
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
    }

    .page-8xbet__provider-item:hover {
      transform: scale(1.05);
    }

    .page-8xbet__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 100%; /* Chiều cao bằng với item */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-8xbet__provider-logo {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      min-width: 150px; /* Đảm bảo kích thước tối thiểu cho logo */
      min-height: 100px; /* Đảm bảo kích thước tối thiểu cho logo */
    }

    /* FAQ Section */
    .page-8xbet__faq-list {
      margin-top: 30px;
      text-align: left;
    }

    .page-8xbet__faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8xbet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      color: #ffcc00;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-8xbet__faq-question:hover {
      background-color: #2a2a2a;
    }

    .page-8xbet__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #ffcc00;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      flex-grow: 1;
    }

    .page-8xbet__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ffcc00;
      margin-left: 15px;
      pointer-events: none; /* Ngăn chặn toggle chặn sự kiện click */
      width: 20px;
      text-align: center;
    }

    .page-8xbet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #e0e0e0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-8xbet__faq-item.active .page-8xbet__faq-answer {
      max-height: 2000px !important; /* Đảm bảo đủ cao cho nội dung */
      padding: 20px 20px !important;
      opacity: 1;
    }

    .page-8xbet__faq-item.active .page-8xbet__faq-toggle {
      content: '−'; /* Dấu trừ khi mở */
    }

    /* Nút đăng nhập nổi (Thông tin mô tả) */
    .page-8xbet__floating-login-info {
        text-align: center;
        margin-top: 40px;
        padding: 20px;
        background-color: #1a1a1a;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8xbet__floating-login-info p {
        color: #e0e0e0;
        margin-bottom: 10px;
    }

    .page-8xbet__floating-login-info strong {
        color: #ffcc00;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .page-8xbet__container {
        padding: 15px;
      }

      .page-8xbet__section {
        padding: 30px 0;
      }

      .page-8xbet__hero-section {
        padding-top: 140px; /* Điều chỉnh cho mobile */
        min-height: 300px;
      }

      .page-8xbet__hero-title {
        font-size: 2.2em;
      }

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

      .page-8xbet__heading {
        font-size: 2em;
      }

      .page-8xbet__sub-heading {
        font-size: 1.5em;
      }

      .page-8xbet__game-categories,
      .page-8xbet__promotion-grid,
      .page-8xbet__providers-grid {
        grid-template-columns: 1fr;
      }

      .page-8xbet__game-image-wrapper,
      .page-8xbet__promotion-image-wrapper {
        height: 180px;
      }

      .page-8xbet__game-card,
      .page-8xbet__promotion-card {
        margin-bottom: 15px;
      }

      .page-8xbet__provider-item {
        height: 80px;
      }

      .page-8xbet__provider-logo {
        min-width: 120px;
        min-height: 80px;
      }

      /* Mobile image responsive optimization */
      .page-8xbet__hero-image,
      .page-8xbet__brand-logo,
      .page-8xbet__game-image,
      .page-8xbet__promotion-image,
      .page-8xbet__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-8xbet__hero-image-wrapper,
      .page-8xbet__brand-logo-wrapper,
      .page-8xbet__game-image-wrapper,
      .page-8xbet__promotion-image-wrapper,
      .page-8xbet__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8xbet__hero-title {
        font-size: 1.8em;
      }
      .page-8xbet__heading {
        font-size: 1.8em;
      }
      .page-8xbet__sub-heading {
        font-size: 1.3em;
      }
      .page-8xbet__game-image-wrapper,
      .page-8xbet__promotion-image-wrapper {
        height: 150px;
      }
    }
  