
    /* Tổng thể */
    .page-kunbet {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Màu chữ sáng */
      background-color: #1a1a1a; /* Nền tối */
      line-height: 1.6;
      padding-bottom: 80px; /* Để chừa chỗ cho nút nổi */
    }

    .page-kunbet a {
      color: #4CAF50; /* Màu xanh lá cây cho liên kết */
      text-decoration: none;
    }

    .page-kunbet a:hover {
      text-decoration: underline;
    }

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

    /* Banner chính */
    .page-kunbet .hero-banner {
      position: relative;
      text-align: center;
      padding: 20px 0 40px;
      background-color: #222;
      overflow: hidden;
    }

    .page-kunbet .hero-banner img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto; /* Căn giữa ảnh */
      border-radius: 8px;
    }

    .page-kunbet .hero-content {
      position: relative;
      z-index: 10;
      margin-top: 20px;
    }

    .page-kunbet .hero-content h1 {
      font-size: 2.2em;
      color: #e44d26; /* Màu cam nổi bật cho tiêu đề chính */
      margin-bottom: 10px;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .page-kunbet .hero-content p {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    /* Nút đăng ký/đăng nhập nổi */
    .page-kunbet .floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(26, 26, 26, 0.95); /* Nền mờ */
      padding: 10px 15px;
      display: flex;
      justify-content: space-around;
      gap: 10px;
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
      border-top: 1px solid #333;
    }

    .page-kunbet .floating-buttons .btn {
      flex: 1;
      padding: 12px 15px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      text-align: center;
      text-transform: uppercase;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-kunbet .floating-buttons .btn-register {
      background-color: #e44d26; /* Màu cam */
      color: #fff;
    }

    .page-kunbet .floating-buttons .btn-login {
      background-color: #4CAF50; /* Màu xanh lá */
      color: #fff;
    }

    .page-kunbet .floating-buttons .btn:hover {
      transform: translateY(-2px);
    }

    .page-kunbet .floating-buttons .btn-register:hover {
      background-color: #ff6a00;
    }

    .page-kunbet .floating-buttons .btn-login:hover {
      background-color: #66BB6A;
    }

    /* Phần nội dung chung */
    .page-kunbet section {
      padding: 40px 0;
      text-align: center;
    }

    .page-kunbet section:nth-of-type(even) {
      background-color: #222;
    }

    .page-kunbet h2 {
      font-size: 2em;
      color: #e44d26;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
      padding-bottom: 10px;
    }

    .page-kunbet h2::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 60px;
      height: 3px;
      background-color: #4CAF50;
      border-radius: 2px;
    }

    .page-kunbet h3 {
      font-size: 1.5em;
      color: #f0f0f0;
      margin-top: 30px;
      margin-bottom: 15px;
    }

    .page-kunbet p {
      margin-bottom: 15px;
      color: #ccc;
    }

    /* Sản phẩm game */
    .page-kunbet .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center; /* Căn giữa các item */
    }

    .page-kunbet .product-card {
      background-color: #2a2a2a;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      transition: transform 0.3s ease;
      text-align: center;
      width: 100%; /* Đảm bảo thẻ chiếm đủ không gian */
      max-width: 200px; /* Giới hạn kích thước thẻ */
    }

    .page-kunbet .product-card:hover {
      transform: translateY(-5px);
    }

    .page-kunbet .product-card img {
      width: 100%;
      height: 120px; /* Chiều cao cố định cho ảnh sản phẩm */
      object-fit: cover;
      display: block;
    }

    .page-kunbet .product-card-content {
      padding: 15px;
    }

    .page-kunbet .product-card h4 {
      font-size: 1.1em;
      margin-bottom: 10px;
      color: #f0f0f0;
    }

    .page-kunbet .product-card .btn-play {
      display: inline-block;
      background-color: #e44d26;
      color: #fff;
      padding: 8px 15px;
      border-radius: 5px;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .page-kunbet .product-card .btn-play:hover {
      background-color: #ff6a00;
    }

    /* Các nhà cung cấp */
    .page-kunbet .providers-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }

    .page-kunbet .provider-item {
      background-color: #333;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      font-size: 0.9em;
      color: #f0f0f0;
      box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .page-kunbet .hero-content h1 {
        font-size: 1.8em;
      }
      .page-kunbet h2 {
        font-size: 1.8em;
      }
      .page-kunbet .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-kunbet .product-card {
        max-width: 150px;
      }
      .page-kunbet .product-card img {
        height: 100px;
      }
      .page-kunbet .floating-buttons {
        padding: 8px 10px;
        gap: 8px;
      }
      .page-kunbet .floating-buttons .btn {
        font-size: 1em;
        padding: 10px 10px;
      }
    }

    @media (max-width: 480px) {
      .page-kunbet .hero-content h1 {
        font-size: 1.5em;
      }
      .page-kunbet h2 {
        font-size: 1.5em;
      }
      .page-kunbet .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-kunbet .product-card {
        max-width: 120px;
      }
      .page-kunbet .product-card img {
        height: 80px;
      }
      .page-kunbet .floating-buttons {
        flex-direction: row; /* Giữ hàng ngang cho điện thoại nhỏ */
        padding: 5px;
        gap: 5px;
      }
      .page-kunbet .floating-buttons .btn {
        font-size: 0.9em;
        padding: 8px 5px;
      }
    }
  