
    /* Reset và các cài đặt cơ bản cho trang kuwin02 */
    .page-kuwin02 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #333; /* Màu chữ chính, đảm bảo độ tương phản */
      background-color: #f8f8f8; /* Nền trang nhẹ */
      padding-bottom: 80px; /* Khoảng trống cho các nút nổi ở cuối trang */
    }

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

    /* Phần Hero Section */
    .page-kuwin02__hero-section {
      position: relative;
      background-color: #0056b3; /* Nền xanh đậm cho hero */
      color: #fff;
      text-align: center;
      padding: 10px 0 60px 0; /* 10px top để tránh header, 60px bottom */
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-kuwin02__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3; /* Làm mờ ảnh nền */
      z-index: 0;
    }

    .page-kuwin02__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-kuwin02__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: #ffd700; /* Màu vàng nổi bật cho tiêu đề */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-kuwin02__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-kuwin02__button {
      display: inline-block;
      background-color: #ffd700; /* Nút màu vàng */
      color: #0056b3; /* Chữ xanh đậm */
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-kuwin02__button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Các phần section chung */
    .page-kuwin02__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-kuwin02__section:nth-of-type(even) {
      background-color: #fff; /* Nền trắng cho các section chẵn */
    }

    .page-kuwin02__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: #0056b3;
    }

    .page-kuwin02__section-description {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 50px auto;
      color: #555;
    }

    /* Lưới sản phẩm/trò chơi */
    .page-kuwin02__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      justify-content: center;
    }

    .page-kuwin02__product-card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-kuwin02__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .page-kuwin02__product-image {
      width: 100%;
      height: 200px; /* Chiều cao cố định cho ảnh sản phẩm */
      object-fit: cover;
      display: block;
      max-width: 100%; /* Đảm bảo ảnh responsive */
      height: auto; /* Đảm bảo ảnh responsive */
    }

    .page-kuwin02__product-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-kuwin02__product-title {
      font-size: 1.5em;
      margin-top: 0;
      margin-bottom: 15px;
      color: #0056b3;
      min-height: 2em; /* Đảm bảo chiều cao nhất quán cho tiêu đề */
    }

    .page-kuwin02__product-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    /* Nút Đăng Ký/Đăng Nhập nổi */
    .page-kuwin02__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-kuwin02__floating-button {
      background-color: #ffd700;
      color: #0056b3;
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-kuwin02__floating-button:hover {
      background-color: #e6c200;
      transform: scale(1.05);
    }

    .page-kuwin02__floating-button--login {
      background-color: #007bff; /* Màu xanh khác cho đăng nhập */
      color: #fff;
    }

    .page-kuwin02__floating-button--login:hover {
      background-color: #0056b3;
    }

    /* Phần Tính năng nổi bật */
    .page-kuwin02__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-kuwin02__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Quan trọng cho responsive */
    }

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

    .page-kuwin02__feature-icon {
      width: 200px; /* Đảm bảo kích thước tối thiểu */
      height: 200px; /* Đảm bảo kích thước tối thiểu */
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      object-fit: contain;
      max-width: 100%; /* Đảm bảo ảnh responsive */
      height: auto; /* Đảm bảo ảnh responsive */
    }

    .page-kuwin02__feature-title {
      font-size: 1.3em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-kuwin02__feature-description {
      font-size: 0.95em;
      color: #666;
    }

    /* Phần Kêu gọi hành động */
    .page-kuwin02__cta-section {
      background-color: #0056b3;
      color: #fff;
      padding: 80px 0;
      text-align: center;
    }

    .page-kuwin02__cta-title {
      font-size: 2.8em;
      margin-bottom: 25px;
      color: #ffd700;
    }

    .page-kuwin02__cta-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #eee;
    }

    /* Phần Câu hỏi thường gặp (FAQ) */
    .page-kuwin02__faq-section {
      padding: 60px 0;
      background-color: #f0f2f5;
    }

    .page-kuwin02__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-kuwin02__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #007bff; /* Nền xanh cho câu hỏi */
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border-radius: 10px;
    }

    .page-kuwin02__faq-question:hover {
      background-color: #0056b3;
    }

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

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

    .page-kuwin02__faq-item.active .page-kuwin02__faq-toggle {
      transform: rotate(45deg); /* Xoay dấu + thành - */
    }

    .page-kuwin02__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Padding ban đầu bằng 0 */
      background-color: #e9ecef; /* Nền sáng hơn cho câu trả lời */
      color: #333;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: left;
    }

    .page-kuwin02__faq-item.active .page-kuwin02__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 25px !important; /* Padding khi mở */
      opacity: 1;
    }

    .page-kuwin02__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }
    .page-kuwin02__faq-answer p:last-child {
      padding-bottom: 0;
    }

    /* Thiết kế Responsive */
    @media (max-width: 768px) {
      .page-kuwin02__hero-title {
        font-size: 2.2em;
      }

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

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

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

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

      .page-kuwin02__product-grid,
      .page-kuwin02__features-list {
        grid-template-columns: 1fr; /* Một cột trên di động */
      }

      /* Đảm bảo các mục trong lưới responsive */
      .page-kuwin02__product-card,
      .page-kuwin02__feature-item {
        margin: 0 auto;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      /* Điều chỉnh padding và margin cho các container lưới trên di động */
      .page-kuwin02__features-list,
      .page-kuwin02__product-grid {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding: 0 15px !important; /* Điều chỉnh padding tổng thể của lưới */
          margin-left: 0 !important;
          margin-right: 0 !important;
      }

      .page-kuwin02__product-image,
      .page-kuwin02__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* Điều chỉnh nút nổi trên di động */
      .page-kuwin02__floating-buttons {
        flex-direction: row; /* Xếp ngang */
        width: calc(100% - 40px); /* Chiếm gần hết chiều rộng màn hình */
        left: 20px;
        right: 20px;
        bottom: 15px;
        justify-content: space-around;
      }

      .page-kuwin02__floating-button {
        flex: 1; /* Chia đều không gian */
        text-align: center;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      /* Điều chỉnh FAQ trên di động */
      .page-kuwin02__faq-question, .page-kuwin02__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
      }
      .page-kuwin02__faq-question h3 {
        font-size: 1em;
      }
      .page-kuwin02__faq-answer p {
        font-size: 0.9em;
      }
    }
  