
    /* Reset và các kiểu cơ bản cho trang Kubet */
    .page-kubet {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333; /* Màu chữ chính, đảm bảo tương phản tốt */
      background-color: #f9f9f9; /* Nền trang nhẹ nhàng */
      line-height: 1.6;
      margin: 0;
      padding: 0;
    }

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

    /* Tiêu đề */
    .page-kubet h1, .page-kubet h2, .page-kubet h3 {
      color: #0a0a0a; /* Màu tiêu đề đậm */
      margin-bottom: 15px;
      text-align: center;
    }
    .page-kubet h1 {
      font-size: 2.2em;
      padding-top: 20px; /* Thêm padding để tránh bị che bởi header */
    }
    .page-kubet h2 {
      font-size: 1.8em;
      border-bottom: 2px solid #ffcc00; /* Đường kẻ dưới nổi bật */
      display: inline-block;
      padding-bottom: 5px;
      margin-top: 30px;
      margin-bottom: 20px;
    }
    .page-kubet h3 {
      font-size: 1.4em;
      color: #2a2a2a;
      margin-top: 25px;
    }

    /* Đoạn văn */
    .page-kubet p {
      margin-bottom: 1em;
      text-align: justify;
    }

    /* Nút */
    .page-kubet-button {
      display: inline-block;
      background-color: #ffcc00; /* Màu vàng nổi bật */
      color: #0a0a0a; /* Màu chữ đen để tương phản */
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }
    .page-kubet-button:hover {
      background-color: #e6b800;
    }

    /* Phần hero/banner */
    .page-kubet-hero {
      background-color: #222; /* Nền tối cho phần hero */
      padding: 160px 0 20px; /* Vùng an toàn 160px ở trên */
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-kubet-hero-image {
      max-width: 100%;
      height: auto;
      display: block; /* Đảm bảo ảnh không bị giãn */
      margin: 0 auto; /* Căn giữa ảnh */
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    .page-kubet-hero-content {
      position: relative;
      z-index: 2;
      color: #fff; /* Chữ trắng trên nền tối */
      margin-top: 20px;
    }
    .page-kubet-hero-content h1 {
      color: #fff;
      font-size: 2.8em;
      margin-bottom: 10px;
      line-height: 1.2;
      padding-top: 0; /* Đã có padding trên .page-kubet-hero */
    }
    .page-kubet-hero-content p {
      font-size: 1.2em;
      max-width: 800px;
      margin: 0 auto 25px;
      text-align: center;
    }

    /* Phần nổi bật (ví dụ: trò chơi, khuyến mãi) */
    .page-kubet-section {
      padding: 40px 0;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    .page-kubet-section:nth-of-type(even) {
      background-color: #f0f0f0;
    }

    /* Lưới trò chơi/sản phẩm */
    .page-kubet-game-grid, .page-kubet-provider-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 mục trong lưới */
    }
    .page-kubet-game-item, .page-kubet-provider-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      min-height: 180px; /* Đảm bảo chiều cao tối thiểu */
    }
    .page-kubet-game-item:hover, .page-kubet-provider-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }
    .page-kubet-game-item img, .page-kubet-provider-item img {
      max-width: 100%;
      height: auto;
      max-height: 100px; /* Giới hạn chiều cao ảnh */
      object-fit: contain;
      margin-bottom: 10px;
    }
    .page-kubet-game-item h3, .page-kubet-provider-item h3 {
      font-size: 1.1em;
      margin: 0;
      color: #0a0a0a;
      text-align: center;
    }
    .page-kubet-game-item a, .page-kubet-provider-item a {
      text-decoration: none;
      color: inherit;
      display: block;
      width: 100%;
    }

    /* Danh sách */
    .page-kubet ul {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }
    .page-kubet ul li {
      background-color: #e8e8e8;
      margin-bottom: 10px;
      padding: 12px 15px;
      border-left: 5px solid #ffcc00;
      border-radius: 5px;
      color: #333;
    }
    .page-kubet ul li strong {
      color: #0a0a0a;
    }

    /* Thanh toán và mạng xã hội */
    .page-kubet-payment-grid, .page-kubet-social-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }
    .page-kubet-payment-item, .page-kubet-social-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 10px 15px;
      text-align: center;
      font-weight: bold;
      color: #333;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      transition: transform 0.2s;
    }
    .page-kubet-payment-item:hover, .page-kubet-social-item:hover {
      transform: translateY(-3px);
    }
    .page-kubet-payment-item img, .page-kubet-social-item img {
      height: 30px; /* Kích thước icon */
      width: auto;
    }
    .page-kubet-social-item a {
        text-decoration: none;
        color: inherit;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* Nút đăng nhập nổi */
    .page-kubet-floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #e44d26; /* Màu cam nổi bật */
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
      animation: page-kubet-pulse 2s infinite;
    }
    .page-kubet-floating-button:hover {
      background-color: #c93a1d;
      transform: scale(1.05);
    }

    @keyframes page-kubet-pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.03); }
      100% { transform: scale(1); }
    }

    /* FAQ */
    .page-kubet-faq-item {
      background-color: #fff;
      margin-bottom: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      overflow: hidden;
    }
    .page-kubet-faq-question {
      padding: 15px 20px;
      background-color: #f0f0f0;
      cursor: pointer;
      font-weight: bold;
      color: #333;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #e0e0e0;
    }
    .page-kubet-faq-question::after {
      content: '+';
      font-size: 1.2em;
      transition: transform 0.3s ease;
    }
    .page-kubet-faq-question.active::after {
      content: '-';
      transform: rotate(180deg);
    }
    .page-kubet-faq-answer {
      padding: 15px 20px;
      background-color: #fff;
      display: none;
      color: #555;
    }
    .page-kubet-faq-answer p {
      margin: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .page-kubet-hero {
        padding-top: 140px; /* Giảm vùng an toàn cho mobile */
      }
      .page-kubet-hero-content h1 {
        font-size: 2em;
      }
      .page-kubet-hero-content p {
        font-size: 1em;
      }
      .page-kubet h1 {
        font-size: 1.8em;
      }
      .page-kubet h2 {
        font-size: 1.5em;
      }
      .page-kubet h3 {
        font-size: 1.2em;
      }
      .page-kubet-game-grid, .page-kubet-provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }
      .page-kubet-game-item, .page-kubet-provider-item {
        min-height: 150px;
        padding: 10px;
      }
      .page-kubet-game-item img, .page-kubet-provider-item img {
        max-height: 80px;
      }
      .page-kubet-floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-kubet-game-grid, .page-kubet-provider-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cột trên màn hình rất nhỏ */
      }
      .page-kubet-hero-content h1 {
        font-size: 1.6em;
      }
      .page-kubet-floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }
  