
    /* Tổng thể */
    .page-ku3933net {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Nền đen */
      color: #ffffff; /* Chữ trắng */
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng trống cho nút nổi */
    }

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

    .page-ku3933net__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-ku3933net__heading {
      color: #FFD700; /* Chữ vàng */
      margin-bottom: 20px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-ku3933net__subheading {
      color: #ffffff;
      margin-bottom: 30px;
      font-size: 1.2em;
    }

    /* Hero Section */
    .page-ku3933net__hero-section {
      padding-top: 10px; /* Khoảng cách an toàn cho header cố định */
      background-color: #1a1a1a;
      overflow: hidden;
    }

    .page-ku3933net__hero-image {
      width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      max-width: 100%;
      object-fit: contain; /* Đảm bảo hình ảnh không bị kéo giãn */
      border-radius: 8px;
    }

    .page-ku3933net__hero-content {
      padding: 20px 15px;
      text-align: center;
    }

    .page-ku3933net__hero-title {
      color: #FFD700;
      font-size: 2.8em;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .page-ku3933net__hero-description {
      color: #ffffff;
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    /* Nút Đăng Nhập Nổi */
    .page-ku3933net__floating-button-wrapper {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      width: auto; /* Đảm bảo nút có kích thước tự động */
      max-width: calc(100% - 40px); /* Giới hạn chiều rộng cho di động */
      box-sizing: border-box;
    }

    .page-ku3933net__floating-button {
      background-color: #FFD700; /* Nút vàng */
      color: #000000; /* Chữ đen trên nút vàng */
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: inline-block; /* Để padding và width hoạt động */
      white-space: nowrap; /* Ngăn chặn ngắt dòng */
      overflow: hidden; /* Ẩn phần bị tràn */
      text-overflow: ellipsis; /* Hiển thị dấu ba chấm nếu tràn */
    }

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

    /* Game Categories */
    .page-ku3933net__game-categories {
      background-color: #0d0d0d;
      padding: 50px 0;
    }

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

    .page-ku3933net__game-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      text-align: center;
      box-sizing: border-box; /* Đảm bảo padding không làm tràn item */
    }

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

    .page-ku3933net__game-item-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100px; /* Đảm bảo không quá nhỏ */
    }

    .page-ku3933net__game-item-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      object-fit: contain;
      min-width: 200px; /* Đảm bảo kích thước tối thiểu */
      min-height: 200px; /* Đảm bảo kích thước tối thiểu */
    }

    .page-ku3933net__game-item-title {
      color: #FFD700;
      font-size: 1.1em;
      margin-top: 10px;
      font-weight: bold;
      word-wrap: break-word; /* Đảm bảo tiêu đề dài không tràn */
    }

    /* Khuyến Mãi */
    .page-ku3933net__promotions-section {
      background-color: #000000;
      padding: 50px 0;
    }

    .page-ku3933net__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

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

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

    .page-ku3933net__promo-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        min-height: 200px; /* Đảm bảo không quá nhỏ */
    }

    .page-ku3933net__promo-image {
      width: 100%;
      height: 200px; /* Chiều cao cố định cho hình ảnh khuyến mãi */
      object-fit: cover;
      display: block;
      min-width: 200px;
      min-height: 200px;
    }

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

    .page-ku3933net__promo-title {
      color: #FFD700;
      font-size: 1.4em;
      margin-bottom: 10px;
      font-weight: bold;
      word-wrap: break-word;
    }

    .page-ku3933net__promo-description {
      color: #cccccc;
      font-size: 0.95em;
      margin-bottom: 15px;
      word-wrap: break-word;
    }

    /* FAQ Section */
    .page-ku3933net__faq-section {
      background-color: #0d0d0d;
      padding: 50px 0;
    }

    .page-ku3933net__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-ku3933net__faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      text-align: left;
    }

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

    .page-ku3933net__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-ku3933net__faq-question h3 {
      margin: 0;
      color: #FFD700;
      font-size: 1.1em;
      flex-grow: 1;
      pointer-events: none; /* Ngăn chặn chặn sự kiện click */
    }

    .page-ku3933net__faq-toggle {
      font-size: 1.5em;
      color: #FFD700;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn chặn sự kiện click */
    }

    .page-ku3933net__faq-item.active .page-ku3933net__faq-toggle {
      transform: rotate(45deg); /* Xoay dấu '+' thành 'x' hoặc '-' */
    }

    .page-ku3933net__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      color: #ffffff;
    }

    .page-ku3933net__faq-item.active .page-ku3933net__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 20px !important;
      opacity: 1;
    }
    
    .page-ku3933net__faq-answer p {
        margin: 0;
        padding: 0;
        word-wrap: break-word; /* Đảm bảo văn bản không tràn */
    }

    /* Về ku3933•net */
    .page-ku3933net__about-section {
        padding: 50px 0;
        background-color: #000000;
    }

    .page-ku3933net__about-content {
        text-align: left;
        color: #ffffff;
    }

    .page-ku3933net__about-content h2 {
        color: #FFD700;
        font-size: 2em;
        margin-bottom: 20px;
        text-align: center;
    }

    .page-ku3933net__about-content p {
        margin-bottom: 15px;
        font-size: 1em;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-ku3933net__section {
        padding: 30px 0;
      }

      .page-ku3933net__hero-section {
        padding-top: 10px; /* Giữ khoảng cách an toàn cho di động */
      }

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

      .page-ku3933net__hero-description {
        font-size: 1em;
      }

      .page-ku3933net__heading {
        font-size: 2em;
      }

      .page-ku3933net__subheading {
        font-size: 1em;
      }

      .page-ku3933net__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Nhỏ hơn cho di động */
        gap: 15px;
      }

      .page-ku3933net__game-item {
        padding: 10px;
      }

      .page-ku3933net__game-item-title {
        font-size: 0.9em;
      }

      .page-ku3933net__promo-grid {
        grid-template-columns: 1fr; /* Một cột trên di động */
        gap: 20px;
      }

      .page-ku3933net__promo-title {
        font-size: 1.2em;
      }

      .page-ku3933net__promo-description {
        font-size: 0.9em;
      }

      .page-ku3933net__floating-button {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
        max-width: calc(100% - 30px); /* Đảm bảo không tràn màn hình */
      }
      
      .page-ku3933net__faq-question {
        padding: 12px 15px;
      }

      .page-ku3933net__faq-question h3 {
        font-size: 1em;
      }

      .page-ku3933net__faq-toggle {
        font-size: 1.2em;
      }

      .page-ku3933net__faq-answer {
        padding: 0 15px;
      }

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

      /* List Item Responsive - General rule for ul/ol li within content */
      .page-ku3933net ul,
      .page-ku3933net ol {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-ku3933net ul li,
      .page-ku3933net ol li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 10px 0 !important; /* Điều chỉnh padding cho di động */
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Image responsive optimization */
      .page-ku3933net img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-ku3933net__game-item-image-wrapper,
      .page-ku3933net__promo-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  