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

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

    .page-kubetlink .page-kubetlink__section {
      background-color: #21213b; /* Nền phần */
      border-radius: 10px;
      margin-bottom: 25px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-kubetlink .page-kubetlink__hero {
      text-align: center;
      padding: 0;
      background-color: transparent;
      margin-bottom: 25px;
    }

    .page-kubetlink .page-kubetlink__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      border-radius: 10px;
      margin-bottom: 20px;
      display: block; /* Ensure it behaves as a block element */
      margin-left: auto;
      margin-right: auto;
    }

    .page-kubetlink .page-kubetlink__hero h1 {
      color: #ffd700; /* Vàng nổi bật */
      font-size: 2.5em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    @media (max-width: 768px) {
      .page-kubetlink .page-kubetlink__hero h1 {
        font-size: 1.8em;
      }
    }

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

    .page-kubetlink .page-kubetlink__cta-button {
      display: inline-block;
      background-color: #007bff; /* Màu xanh dương */
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      margin-top: 10px;
    }

    .page-kubetlink .page-kubetlink__cta-button:hover {
      background-color: #0056b3;
    }

    .page-kubetlink h2 {
      color: #ffd700;
      font-size: 2em;
      margin-bottom: 20px;
      border-bottom: 2px solid #3a3a5e;
      padding-bottom: 10px;
    }
    @media (max-width: 768px) {
      .page-kubetlink h2 {
        font-size: 1.5em;
      }
    }

    .page-kubetlink h3 {
      color: #a0e0ff; /* Xanh nhạt */
      font-size: 1.5em;
      margin-top: 20px;
      margin-bottom: 15px;
    }
    @media (max-width: 768px) {
      .page-kubetlink h3 {
        font-size: 1.2em;
      }
    }

    .page-kubetlink p {
      margin-bottom: 15px;
    }

    .page-kubetlink ul {
      list-style: disc inside;
      margin-bottom: 15px;
      padding-left: 20px;
    }

    .page-kubetlink ul li {
      margin-bottom: 8px;
      color: #e0e0e0;
    }

    .page-kubetlink .page-kubetlink__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .page-kubetlink .page-kubetlink__game-card {
      background-color: #2a2a4a;
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
    }

    .page-kubetlink .page-kubetlink__game-card:hover {
      transform: translateY(-5px);
    }

    .page-kubetlink .page-kubetlink__game-card img {
      max-width: 100px;
      height: auto;
      margin-bottom: 10px;
      border-radius: 5px;
    }

    .page-kubetlink .page-kubetlink__game-card h4 {
      color: #ffd700;
      font-size: 1.1em;
      margin: 0;
    }
    
    .page-kubetlink .page-kubetlink__game-card h4 a {
      color: #ffd700; /* Đảm bảo màu vàng cho link trong card */
      text-decoration: none;
    }

    .page-kubetlink .page-kubetlink__game-card h4 a:hover {
      text-decoration: underline;
    }

    .page-kubetlink .page-kubetlink__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      margin-top: 20px;
    }

    .page-kubetlink .page-kubetlink__provider-logo {
      background-color: #2a2a4a;
      border-radius: 8px;
      padding: 10px;
      text-align: center;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    }

    .page-kubetlink .page-kubetlink__provider-logo img {
      max-width: 80px;
      height: auto;
      filter: grayscale(20%); /* Slightly desaturate */
      transition: filter 0.3s ease;
    }

    .page-kubetlink .page-kubetlink__provider-logo:hover img {
      filter: grayscale(0%); /* Full color on hover */
    }

    .page-kubetlink .page-kubetlink__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #dc3545; /* Đỏ rực */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      animation: page-kubetlink__pulse 1.5s infinite;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .page-kubetlink .page-kubetlink__floating-button:hover {
      background-color: #c82333;
    }

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

    .page-kubetlink__faq-question {
      color: #a0e0ff;
      text-decoration: none;
      font-weight: bold;
      display: block;
      padding: 10px 0;
      border-bottom: 1px solid #3a3a5e;
      transition: color 0.3s ease;
    }

    .page-kubetlink__faq-question:hover {
      color: #ffd700;
    }

    .page-kubetlink__faq-answer {
      display: none;
      padding: 10px 0 15px 0;
      color: #e0e0e0;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-kubetlink .page-kubetlink__container {
        padding: 10px;
      }
      .page-kubetlink .page-kubetlink__section {
        padding: 15px;
      }
      .page-kubetlink .page-kubetlink__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-kubetlink .page-kubetlink__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      }
      .page-kubetlink .page-kubetlink__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
    }
  