
    /* CSS Styles for page-8kbet */
    .page-8kbet {
      font-family: 'Arial', sans-serif;
      color: #333; /* Tỷ lệ tương phản tốt với nền sáng */
      background-color: #f0f2f5; /* Nền xám nhạt */
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng trống cho các nút nổi */
      text-align: center; /* Căn chỉnh chung cho thiết bị di động */
    }

    .page-8kbet__container {
      max-width: 960px;
      margin: 0 auto;
      padding: 15px;
    }

    .page-8kbet__header {
      background-color: #0a2647; /* Xanh đậm cho phần đầu trang */
      color: #fff;
      padding: 20px 0;
      margin-bottom: 20px;
    }

    .page-8kbet__logo-wrapper {
      text-align: center;
      margin-bottom: 10px;
    }

    .page-8kbet__logo-link {
        display: inline-block;
    }

    .page-8kbet__logo {
      max-width: 150px;
      height: auto;
      display: inline-block; /* Để căn giữa */
    }

    .page-8kbet__title {
      color: #ffd700; /* Vàng cho tiêu đề chính */
      font-size: 2.2em;
      margin-bottom: 10px;
      text-transform: uppercase;
      line-height: 1.2;
    }

    .page-8kbet__subtitle {
      color: #eee;
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-8kbet__button-group {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 30px;
    }

    .page-8kbet__button {
      display: inline-block;
      background-color: #ff4500; /* Đỏ cam cho nút */
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.05em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      white-space: nowrap; /* Ngăn nút xuống dòng */
    }

    .page-8kbet__button:hover {
      background-color: #e03e00;
      transform: translateY(-2px);
    }

    .page-8kbet__section {
      background-color: #ffffff;
      padding: 30px 20px;
      margin-bottom: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: left;
    }

    .page-8kbet__section-title {
      color: #0a2647;
      font-size: 1.8em;
      margin-bottom: 20px;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
      line-height: 1.3;
    }

    .page-8kbet__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 60px;
      height: 3px;
      background-color: #ffd700;
    }

    .page-8kbet__text {
      font-size: 1em;
      margin-bottom: 15px;
      color: #555;
    }

    .page-8kbet__highlight {
      color: #ff4500;
      font-weight: bold;
    }

    .page-8kbet__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 20px;
      margin-top: 25px;
    }

    .page-8kbet__game-card {
      background-color: #f9f9f9;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      text-align: center;
      text-decoration: none;
      color: #333;
    }

    .page-8kbet__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

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

    .page-8kbet__game-name {
      padding: 10px 5px;
      font-weight: bold;
      font-size: 0.95em;
      color: #0a2647;
      display: block; /* Đảm bảo tên game chiếm toàn bộ chiều rộng */
    }

    .page-8kbet__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      background-color: rgba(0, 0, 0, 0.8);
      padding: 10px 0;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
    }

    .page-8kbet__floating-button {
      flex: 1;
      text-align: center;
      background-color: #ff4500;
      color: #fff;
      padding: 12px 0;
      margin: 0 5px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-8kbet__floating-button:hover {
      background-color: #e03e00;
    }

    .page-8kbet__promotion-text {
      color: #ffd700;
      font-size: 0.9em;
      display: block;
      margin-top: 3px;
    }

    .page-8kbet__list {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .page-8kbet__list-item {
      background-color: #f5f5f5;
      margin-bottom: 10px;
      padding: 15px;
      border-left: 5px solid #0a2647;
      border-radius: 5px;
      font-size: 1.05em;
      color: #333;
      text-align: left;
    }

    .page-8kbet__list-item strong {
      color: #ff4500;
    }

    .page-8kbet__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap: 15px;
      margin-top: 20px;
      text-align: center;
    }

    .page-8kbet__provider-item {
      background-color: #f0f0f0;
      padding: 10px;
      border-radius: 5px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      font-weight: bold;
      color: #0a2647;
      font-size: 0.9em;
    }

    .page-8kbet__faq-item {
      margin-bottom: 15px;
      border-bottom: 1px solid #eee;
      padding-bottom: 15px;
    }

    .page-8kbet__faq-question {
      font-weight: bold;
      color: #0a2647;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      font-size: 1.1em;
      text-align: left;
    }

    .page-8kbet__faq-question::after {
      content: '+';
      font-size: 1.2em;
      transition: transform 0.3s ease;
    }

    .page-8kbet__faq-question.active::after {
      content: '-';
      transform: rotate(180deg);
    }

    .page-8kbet__faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease-out;
      color: #555;
      padding-top: 5px;
      font-size: 0.95em;
      text-align: left;
    }

    .page-8kbet__faq-answer.active {
      max-height: 200px; /* Điều chỉnh khi cần */
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-8kbet__title {
        font-size: 3em;
      }

      .page-8kbet__subtitle {
        font-size: 1.3em;
      }

      .page-8kbet__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }

      .page-8kbet__game-image {
        height: 140px;
      }

      .page-8kbet__floating-buttons {
        justify-content: center;
        gap: 20px;
        padding: 15px 0;
      }

      .page-8kbet__floating-button {
        flex: unset;
        width: 200px;
      }

      .page-8kbet__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
    }
  