
    /* CSS toàn cục cho trang Kubet79 */
    .page-kubet79 {
      font-family: 'Arial', sans-serif;
      color: #fff; /* Màu chữ trắng */
      background-color: #000; /* Nền đen */
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-kubet79__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      text-align: center;
    }

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

    .page-kubet79__section-title {
      font-size: 2.5em;
      color: #ffd700; /* Màu vàng */
      margin-bottom: 30px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-kubet79__section-subtitle {
      font-size: 1.5em;
      color: #fff;
      margin-bottom: 20px;
    }

    .page-kubet79__text {
      font-size: 1.1em;
      color: #e0e0e0;
      margin-bottom: 20px;
    }

    /* Hero Section */
    .page-kubet79__hero-section {
      position: relative;
      width: 100%;
      padding-top: 10px; /* An toàn cho header cố định */
      background-color: #000;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-kubet79__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      object-fit: cover;
      margin-bottom: 20px; /* Khoảng cách giữa ảnh và văn bản/nút */
    }

    .page-kubet79__hero-content {
      padding: 0 20px 40px;
      max-width: 800px;
      position: relative;
      z-index: 10;
    }

    .page-kubet79__hero-title {
      font-size: 3em;
      color: #ffd700;
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-kubet79__hero-description {
      font-size: 1.3em;
      color: #fff;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kubet79__promo-button {
      display: inline-block;
      background-color: #ffd700;
      color: #000;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-kubet79__promo-button:hover {
      background-color: #ffe066;
      transform: translateY(-3px);
    }

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

    .page-kubet79__game-item {
      background-color: #1a1a1a;
      border-radius: 15px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-kubet79__game-item:hover {
      transform: translateY(-5px);
    }

    .page-kubet79__game-image {
      width: 100%;
      height: 200px; /* Kích thước cố định cho hình ảnh */
      object-fit: cover;
      display: block;
    }

    .page-kubet79__game-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-kubet79__game-title {
      font-size: 1.5em;
      color: #ffd700;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-kubet79__game-description {
      font-size: 0.95em;
      color: #e0e0e0;
      margin-bottom: 15px;
    }

    .page-kubet79__game-button {
      display: inline-block;
      background-color: #ffd700;
      color: #000;
      padding: 10px 20px;
      border-radius: 25px;
      font-size: 1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      margin-top: auto; /* Đẩy nút xuống dưới cùng */
    }

    .page-kubet79__game-button:hover {
      background-color: #ffe066;
    }

    /* Why Choose Us Section */
    .page-kubet79__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-kubet79__feature-item {
      background-color: #1a1a1a;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
    }

    .page-kubet79__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-kubet79__feature-title {
      font-size: 1.8em;
      color: #ffd700;
      margin-bottom: 10px;
      font-weight: bold;
      text-align: center;
    }

    .page-kubet79__feature-description {
      font-size: 1em;
      color: #e0e0e0;
      text-align: center;
    }

    /* Provider Logos Section */
    .page-kubet79__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
      align-items: center;
    }

    .page-kubet79__provider-logo {
      width: 150px;
      height: 100px;
      object-fit: contain;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
      display: block; /* Ensure no extra space below image */
      max-width: 100%;
    }

    .page-kubet79__provider-logo:hover {
      filter: grayscale(0%);
    }

    /* SEO Content Section */
    .page-kubet79__seo-content {
      text-align: left;
      margin-top: 40px;
      padding: 0 20px;
    }

    .page-kubet79__seo-content h2 {
      font-size: 2em;
      color: #ffd700;
      margin-top: 30px;
      margin-bottom: 15px;
    }

    .page-kubet79__seo-content h3 {
      font-size: 1.5em;
      color: #fff;
      margin-top: 25px;
      margin-bottom: 10px;
    }

    .page-kubet79__seo-content p {
      color: #e0e0e0;
      margin-bottom: 15px;
      line-height: 1.8;
    }

    .page-kubet79__seo-content ul {
      list-style: disc;
      margin-left: 25px;
      color: #e0e0e0;
      margin-bottom: 20px;
    }

    .page-kubet79__seo-content li {
      margin-bottom: 8px;
      font-size: 1em;
    }

    /* FAQ Section */
    .page-kubet79__faq-section {
      text-align: left;
    }

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

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

    .page-kubet79__faq-question:hover {
      background-color: #444;
    }

    .page-kubet79__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      flex-grow: 1;
    }

    .page-kubet79__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Ngăn chặn toggle chặn sự kiện click */
    }

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

    .page-kubet79__faq-item.active .page-kubet79__faq-question {
      background-color: #444;
      color: #fff;
    }
    .page-kubet79__faq-item.active .page-kubet79__faq-toggle {
      color: #ffd700;
    }


    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-kubet79__hero-section {
        padding-top: 10px; /* An toàn cho header cố định trên mobile */
      }

      .page-kubet79__section {
        padding: 30px 15px;
      }

      .page-kubet79__section-title {
        font-size: 2em;
      }

      .page-kubet79__section-subtitle {
        font-size: 1.2em;
      }

      .page-kubet79__hero-title {
        font-size: 2.2em;
      }

      .page-kubet79__hero-description {
        font-size: 1.1em;
      }

      .page-kubet79__promo-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-kubet79__game-grid,
      .page-kubet79__features-grid,
      .page-kubet79__provider-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-kubet79__game-item,
      .page-kubet79__feature-item {
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box !important;
      }

      .page-kubet79__game-image {
        height: 180px;
      }

      .page-kubet79__game-title {
        font-size: 1.3em;
      }

      .page-kubet79__feature-title {
        font-size: 1.5em;
      }

      .page-kubet79__provider-logo {
        width: 120px;
        height: 80px;
      }

      .page-kubet79__seo-content h2 {
        font-size: 1.8em;
      }

      .page-kubet79__seo-content h3 {
        font-size: 1.3em;
      }

      .page-kubet79__seo-content p,
      .page-kubet79__seo-content li {
        font-size: 0.95em;
      }

      .page-kubet79__seo-content ul {
        margin-left: 15px;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-kubet79__seo-content li {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-kubet79__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-kubet79__faq-answer {
        padding: 0 15px;
      }
      .page-kubet79__faq-item.active .page-kubet79__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-kubet79__hero-title {
        font-size: 1.8em;
      }
      .page-kubet79__hero-description {
        font-size: 1em;
      }
      .page-kubet79__promo-button {
        font-size: 1em;
        padding: 10px 20px;
      }
      .page-kubet79__game-image {
        height: 150px;
      }
    }
  