
    /* CSS cho trang 8kbet */
    .page-8kbet {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a2e; /* Nền tối */
      color: #e0e0e0; /* Chữ sáng */
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng trống cho nút nổi */
    }

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

    .page-8kbet__section {
      padding: 40px 0;
      text-align: center;
      margin-bottom: 20px;
      background-color: #16213e; /* Nền section hơi nhạt hơn */
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8kbet__section:nth-child(even) {
      background-color: #0f3460; /* Xen kẽ màu nền */
    }

    .page-8kbet__title {
      color: #e94560; /* Màu tiêu đề nổi bật */
      font-size: 2.5em;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-8kbet__subtitle {
      color: #ffffff; /* Màu phụ tiêu đề - Đã điều chỉnh để tăng độ tương phản */
      font-size: 1.8em;
      margin-bottom: 25px;
    }

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

    .page-8kbet__button {
      display: inline-block;
      background-color: #e94560; /* Màu nút chính */
      color: #ffffff;
      padding: 14px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

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

    /* Banner Section */
    .page-8kbet__hero {
      background-size: cover;
      background-position: center;
      color: #ffffff;
      padding: 60px 15px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 300px;
      position: relative;
      overflow: hidden;
      border-radius: 0 0 15px 15px;
      margin-bottom: 20px;
    }

    .page-8kbet__hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)); /* Overlay để chữ nổi bật */
      z-index: 1;
    }

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

    .page-8kbet__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: #ffffff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8kbet__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

    /* Floating Login Button */
    .page-8kbet__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      background-color: #e94560; /* Màu nổi bật cho nút đăng nhập */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 50px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      white-space: nowrap;
      animation: pulse 2s infinite;
      border: none;
      cursor: pointer;
    }

    .page-8kbet__floating-button:hover {
      background-color: #ff6b8a;
      animation: none;
    }

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

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

    .page-8kbet__game-card {
      background-color: #1a1a2e;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #533483;
    }

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

    .page-8kbet__game-card img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      border: 2px solid #e94560; /* Viền ảnh game */
    }

    .page-8kbet__game-card-title {
      font-size: 1.2em;
      color: #e94560;
      margin-bottom: 10px;
    }

    .page-8kbet__game-card-link {
        color: #e94560;
        text-decoration: none;
        font-weight: bold;
    }

    .page-8kbet__game-card-link:hover {
        text-decoration: underline;
    }

    /* Download App Section */
    .page-8kbet__download-grid {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 30px;
      align-items: center;
    }

    .page-8kbet__download-item {
      background-color: #1a1a2e;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      max-width: 350px;
      width: 100%;
      border: 1px solid #533483;
    }

    .page-8kbet__download-item img {
      width: 150px;
      height: 150px;
      object-fit: contain;
      margin-bottom: 15px;
    }

    .page-8kbet__download-item h3 {
      color: #e94560;
      margin-bottom: 15px;
    }

    /* Promotions */
    .page-8kbet__promo-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-8kbet__promo-item {
      background-color: #0f3460;
      padding: 20px;
      border-radius: 8px;
      text-align: left;
      border-left: 5px solid #e94560;
    }

    .page-8kbet__promo-item h3 {
      color: #e94560;
      margin-bottom: 10px;
    }

    /* FAQ */
    .page-8kbet__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      text-align: left;
    }

    .page-8kbet__faq-item {
      background-color: #1a1a2e;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-8kbet__faq-question {
      background-color: #533483;
      color: #ffffff; /* Đã điều chỉnh để tăng độ tương phản */
      padding: 15px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-8kbet__faq-question:hover {
      background-color: #6a4f9f;
    }

    .page-8kbet__faq-answer {
      padding: 15px 20px;
      background-color: #16213e;
      color: #c0c0c0;
      display: none; /* Ẩn theo mặc định */
    }

    .page-8kbet__faq-item.active .page-8kbet__faq-answer {
      display: block;
    }

    .page-8kbet__faq-question .page-8kbet__arrow {
      transition: transform 0.3s ease;
    }

    .page-8kbet__faq-item.active .page-8kbet__faq-question .page-8kbet__arrow {
      transform: rotate(180deg);
    }


    /* Responsive */
    @media (min-width: 768px) {
      .page-8kbet__title {
        font-size: 3.5em;
      }
      .page-8kbet__subtitle {
        font-size: 2.2em;
      }
      .page-8kbet__hero-title {
        font-size: 3.5em;
      }
      .page-8kbet__game-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .page-8kbet__download-grid {
        flex-direction: row;
        justify-content: center;
      }
    }

    @media (min-width: 1024px) {
      .page-8kbet__game-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }
  