
    /* Tổng quan */
    .page-kubetwebsite {
      font-family: 'Arial', sans-serif;
      color: #FFFFFF;
      background-color: #000000;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-kubetwebsite__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-kubetwebsite__section {
      padding: 60px 20px;
      text-align: center;
      box-sizing: border-box;
    }

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

    .page-kubetwebsite__title {
      color: #FFD700;
      font-size: 2.8em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-kubetwebsite__subtitle {
      color: #FFFFFF;
      font-size: 1.8em;
      margin-bottom: 30px;
    }

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

    /* Hero Section */
    .page-kubetwebsite__hero-section {
      position: relative;
      padding-top: 150px; /* An toàn cho header cố định */
      padding-bottom: 50px;
      text-align: center;
      background-color: #000000;
    }

    .page-kubetwebsite__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
      box-sizing: border-box;
    }

    .page-kubetwebsite__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
    }

    .page-kubetwebsite__hero-heading {
      font-size: 3.5em;
      color: #FFD700;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-kubetwebsite__hero-description {
      font-size: 1.3em;
      color: #FFFFFF;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

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

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

    .page-kubetwebsite__game-card {
      background-color: #1a1a1a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      box-sizing: border-box;
    }

    .page-kubetwebsite__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    }

    .page-kubetwebsite__game-image {
      width: 100%;
      height: 200px; /* Đảm bảo kích thước tối thiểu */
      object-fit: cover;
      display: block;
      border-bottom: 3px solid #FFD700;
      box-sizing: border-box;
      max-width: 100%;
    }

    .page-kubetwebsite__game-title {
      font-size: 1.5em;
      color: #FFD700;
      margin: 20px 0 10px;
      padding: 0 15px;
    }

    .page-kubetwebsite__game-description {
      font-size: 0.95em;
      color: #E0E0E0;
      padding: 0 15px;
    }

    /* Benefits Section */
    .page-kubetwebsite__benefits-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-kubetwebsite__benefit-item {
      background-color: #1a1a1a;
      padding: 25px;
      border-radius: 15px;
      text-align: left;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-kubetwebsite__benefit-item:hover {
      transform: translateY(-5px);
      background-color: #2a2a2a;
    }

    .page-kubetwebsite__benefit-title {
      color: #FFD700;
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-kubetwebsite__benefit-text {
      color: #E0E0E0;
      font-size: 1em;
    }

    /* Promotions Section */
    .page-kubetwebsite__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding-top: 40px;
    }

    .page-kubetwebsite__promotion-card {
      background-color: #1a1a1a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      box-sizing: border-box;
    }

    .page-kubetwebsite__promotion-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    }

    .page-kubetwebsite__promotion-image {
      width: 100%;
      height: 250px; /* Đảm bảo kích thước tối thiểu */
      object-fit: cover;
      display: block;
      border-bottom: 3px solid #FFD700;
      box-sizing: border-box;
      max-width: 100%;
    }

    .page-kubetwebsite__promotion-content {
      padding: 20px;
    }

    .page-kubetwebsite__promotion-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-kubetwebsite__promotion-description {
      font-size: 1em;
      color: #E0E0E0;
      margin-bottom: 20px;
    }

    .page-kubetwebsite__promotion-button {
      display: inline-block;
      padding: 10px 25px;
      background-color: #FFD700;
      color: #000000;
      font-size: 1em;
      font-weight: bold;
      border-radius: 30px;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-kubetwebsite__promotion-button:hover {
      background-color: #e6c200;
    }

    /* FAQ Section */
    .page-kubetwebsite__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
      text-align: left;
    }

    .page-kubetwebsite__faq-item {
      background-color: #1a1a1a;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-kubetwebsite__faq-item:hover {
      background-color: #2a2a2a;
    }

    .page-kubetwebsite__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid #333;
      color: #FFD700;
    }

    .page-kubetwebsite__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #FFD700;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-kubetwebsite__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #FFD700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-kubetwebsite__faq-item.active .page-kubetwebsite__faq-toggle {
      transform: rotate(45deg); /* Plus to X for visual effect */
    }

    .page-kubetwebsite__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #E0E0E0;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-kubetwebsite__faq-item.active .page-kubetwebsite__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain any content */
      padding: 20px !important;
      opacity: 1;
    }
    
    .page-kubetwebsite__faq-answer p {
        margin-top: 0;
        margin-bottom: 10px;
    }

    /* Call to Action Section */
    .page-kubetwebsite__cta-section {
      background-color: #1a1a1a;
      padding: 80px 20px;
    }

    .page-kubetwebsite__cta-heading {
      font-size: 2.5em;
      color: #FFD700;
      margin-bottom: 20px;
    }

    .page-kubetwebsite__cta-description {
      font-size: 1.2em;
      color: #E0E0E0;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-kubetwebsite__hero-heading {
        font-size: 3em;
      }
      .page-kubetwebsite__hero-description {
        font-size: 1.2em;
      }
      .page-kubetwebsite__game-grid,
      .page-kubetwebsite__benefits-list,
      .page-kubetwebsite__promotion-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-kubetwebsite__hero-section {
        padding-top: 100px; /* Điều chỉnh cho mobile */
      }
      .page-kubetwebsite__hero-heading {
        font-size: 2.2em;
      }
      .page-kubetwebsite__hero-description {
        font-size: 1em;
      }
      .page-kubetwebsite__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }
      .page-kubetwebsite__title {
        font-size: 2.2em;
      }
      .page-kubetwebsite__subtitle {
        font-size: 1.5em;
      }
      .page-kubetwebsite__game-grid,
      .page-kubetwebsite__benefits-list,
      .page-kubetwebsite__promotion-grid {
        grid-template-columns: 1fr; /* Stack items on mobile */
      }
      .page-kubetwebsite__game-card,
      .page-kubetwebsite__benefit-item,
      .page-kubetwebsite__promotion-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for mobile */
      }
      .page-kubetwebsite__game-image,
      .page-kubetwebsite__promotion-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-kubetwebsite__faq-question {
        padding: 12px 15px;
      }
      .page-kubetwebsite__faq-question h3 {
        font-size: 1.1em;
      }
      .page-kubetwebsite__faq-answer {
        padding: 0 15px;
      }
      .page-kubetwebsite__faq-item.active .page-kubetwebsite__faq-answer {
        padding: 15px !important;
      }
      .page-kubetwebsite__cta-heading {
        font-size: 2em;
      }
      .page-kubetwebsite__cta-description {
        font-size: 1em;
      }
      .page-kubetwebsite__section {
        padding: 40px 15px;
      }
      .page-kubetwebsite__container {
        padding: 15px;
      }
    }

    @media (max-width: 480px) {
      .page-kubetwebsite__hero-heading {
        font-size: 1.8em;
      }
      .page-kubetwebsite__title {
        font-size: 1.8em;
      }
      .page-kubetwebsite__subtitle {
        font-size: 1.3em;
      }
      .page-kubetwebsite__cta-button {
        padding: 10px 25px;
        font-size: 1em;
      }
    }

    /* Ensure text wrapping for all elements */
    .page-kubetwebsite p,
    .page-kubetwebsite h1,
    .page-kubetwebsite h2,
    .page-kubetwebsite h3,
    .page-kubetwebsite li,
    .page-kubetwebsite div {
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }
  