
    /* Tổng thể */
    .page-f88bet {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Nền đen */
      color: #FFFFFF; /* Chữ trắng mặc định */
      line-height: 1.6;
      overflow-x: hidden;
      padding-bottom: 80px; /* Khoảng cách cho nút đăng nhập nổi */
    }

    /* Thiết lập padding-top cho nội dung chính để tránh bị che bởi header cố định */
    .page-f88bet__hero-section {
      padding-top: 160px; /* Mặc định cho desktop */
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    @media (max-width: 768px) {
      .page-f88bet__hero-section {
        padding-top: 120px; /* Điều chỉnh cho mobile */
      }
    }

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

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

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

    .page-f88bet__title {
      color: #FFD700; /* Tiêu đề vàng */
      font-size: 2.5em;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .page-f88bet__subtitle {
      color: #FFFFFF;
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-f88bet__text {
      color: #E0E0E0;
      margin-bottom: 15px;
      font-size: 1.1em;
    }

    .page-f88bet__button {
      display: inline-block;
      background-color: #FFD700; /* Nút vàng */
      color: #000000;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1.1em;
      border: none;
      cursor: pointer;
    }

    .page-f88bet__button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-f88bet__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à văn bản */
    }

    .page-f88bet__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto; /* Đảm bảo hình ảnh được căn giữa */
    }

    .page-f88bet__hero-content {
      padding: 20px 15px;
    }

    .page-f88bet__hero-title {
      font-size: 3em;
      color: #FFD700;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .page-f88bet__hero-description {
      font-size: 1.3em;
      color: #FFFFFF;
      margin-bottom: 30px;
    }

    /* Nút đăng nhập nổi */
    .page-f88bet__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #FF4500; /* Màu cam nổi bật cho khuyến mãi */
      color: #FFFFFF;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap; /* Ngăn nút bị ngắt dòng */
    }

    .page-f88bet__floating-button:hover {
      background-color: #e03e00;
      transform: translateX(-50%) translateY(-3px);
    }

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

    .page-f88bet__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .page-f88bet__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      flex-shrink: 0; /* Ngăn ảnh co lại */
    }

    .page-f88bet__game-card-image {
      width: 100%;
      height: 200px; /* Kích thước cố định cho ảnh game */
      object-fit: cover; /* Đảm bảo ảnh hiển thị đẹp */
      display: block;
    }

    .page-f88bet__game-card-content {
      padding: 20px;
      flex-grow: 1; /* Cho phép nội dung giãn nở */
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-f88bet__game-card-title {
      font-size: 1.4em;
      color: #FFD700;
      margin-bottom: 10px;
      text-decoration: none; /* Đảm bảo link tiêu đề không có gạch chân */
      display: block; /* Để link chiếm toàn bộ không gian */
    }

    .page-f88bet__game-card-title a {
      color: #FFD700;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-f88bet__game-card-title a:hover {
      color: #FFFFFF;
    }

    .page-f88bet__game-card-description {
      color: #E0E0E0;
      font-size: 0.95em;
      margin-bottom: 15px;
    }

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

    .page-f88bet__promo-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-f88bet__promo-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-f88bet__promo-card-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

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

    .page-f88bet__promo-card-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-f88bet__promo-card-description {
      color: #E0E0E0;
      font-size: 1em;
      margin-bottom: 15px;
    }

    /* Game Providers */
    .page-f88bet__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      margin-top: 30px;
      align-items: center;
      justify-items: center;
    }

    .page-f88bet__provider-logo-wrapper {
      width: 100%;
      max-width: 100px; /* Giới hạn chiều rộng logo */
      height: 80px; /* Giới hạn chiều cao logo */
      overflow: hidden;
      box-sizing: border-box;
      display: flex; /* Để căn giữa hình ảnh */
      justify-content: center;
      align-items: center;
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 5px;
      transition: transform 0.3s ease;
    }

    .page-f88bet__provider-logo-wrapper:hover {
      transform: scale(1.05);
    }

    .page-f88bet__provider-logo {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain; /* Đảm bảo logo không bị biến dạng */
      display: block;
    }

    /* FAQ Section */
    .page-f88bet__faq-list {
      margin-top: 30px;
      text-align: left;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-f88bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #2a2a2a;
      color: #FFD700;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-f88bet__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-f88bet__faq-question h3 {
      margin: 0;
      color: #FFD700;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      font-size: 1em; /* Giữ kích thước h3 nhỏ hơn */
      flex-grow: 1; /* Cho phép h3 giãn nở */
    }

    .page-f88bet__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #FFD700;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn toggle chặn sự kiện click */
    }

    .page-f88bet__faq-item.active .page-f88bet__faq-toggle {
      transform: rotate(45deg); /* Xoay dấu '+' thành 'x' hoặc '-' */
    }

    .page-f88bet__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-f88bet__faq-item.active .page-f88bet__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px !important;
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-f88bet__title {
        font-size: 2em;
      }
      .page-f88bet__subtitle {
        font-size: 1.5em;
      }
      .page-f88bet__hero-title {
        font-size: 2.2em;
      }
      .page-f88bet__hero-description {
        font-size: 1.1em;
      }
      .page-f88bet__game-grid, .page-f88bet__promo-grid {
        grid-template-columns: 1fr;
      }
      .page-f88bet__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      }
      .page-f88bet__provider-logo-wrapper {
        max-width: 80px;
        height: 60px;
      }
      .page-f88bet__floating-button {
        padding: 12px 20px;
        font-size: 1.1em;
      }
      .page-f88bet__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }
      .page-f88bet__faq-answer {
        padding: 0 15px;
      }
      .page-f88bet__faq-item.active .page-f88bet__faq-answer {
        padding: 15px !important;
      }
    }

    /* Đảm bảo hình ảnh đáp ứng trên di động */
    .page-f88bet img {
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box;
    }
    .page-f88bet__game-card-image,
    .page-f88bet__promo-card-image,
    .page-f88bet__hero-image,
    .page-f88bet__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box;
    }
    .page-f88bet__game-card-image-wrapper,
    .page-f88bet__promo-card-image-wrapper,
    .page-f88bet__hero-image-wrapper,
    .page-f88bet__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    @media (max-width: 768px) {
      .page-f88bet img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-f88bet__game-card-image,
      .page-f88bet__promo-card-image,
      .page-f88bet__hero-image,
      .page-f88bet__provider-logo {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-f88bet__game-card-image-wrapper,
      .page-f88bet__promo-card-image-wrapper,
      .page-f88bet__hero-image-wrapper,
      .page-f88bet__provider-logo-wrapper {
          width: 100% !important;
          max-width: 100% !important;
      }
    }

  