
    /* Tổng thể */
    .page-hi88vip {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding: 0;
      margin: 0;
    }

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

    .page-hi88vip__section {
      background-color: #fff;
      margin-bottom: 20px;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-hi88vip__section-title {
      font-size: 2.2em;
      color: #0056b3; /* Màu xanh đậm cho tiêu đề */
      margin-bottom: 25px;
      text-align: center;
      font-weight: 700;
      position: relative;
      padding-bottom: 10px;
    }

    .page-hi88vip__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #007bff; /* Gạch chân màu xanh sáng */
      border-radius: 2px;
    }

    .page-hi88vip__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #555;
    }

    /* Hình ảnh */
    .page-hi88vip__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 20px 0;
      text-align: center; /* Căn giữa hình ảnh trong trình bao bọc */
    }

    .page-hi88vip__image {
      max-width: 100%;
      height: auto;
      display: block; /* Loại bỏ khoảng trống thừa bên dưới hình ảnh */
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      margin: 0 auto; /* Căn giữa hình ảnh */
    }

    /* Nút CTA */
    .page-hi88vip__button {
      display: inline-block;
      background-color: #007bff; /* Màu xanh lam chính */
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-hi88vip__button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* Phần Hero */
    .page-hi88vip__hero-section {
      background: linear-gradient(135deg, #007bff, #00c6ff); /* Nền gradient */
      color: #fff;
      text-align: center;
      padding: 60px 20px 40px;
      padding-top: 10px; /* Yêu cầu nghiêm ngặt */
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
      position: relative;
      overflow: hidden;
    }

    .page-hi88vip__hero-banner {
      max-width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-hi88vip__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: 900;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-hi88vip__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      font-weight: 300;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }

    /* Nút đăng nhập nổi */
    .page-hi88vip__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ffc107; /* Màu hổ phách nổi bật */
      color: #333;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      animation: page-hi88vip__pulse 2s infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 3px solid #ff9800;
    }

    .page-hi88vip__floating-login-button:hover {
      background-color: #e0a800;
      transform: scale(1.05);
    }

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

    /* Phần giới thiệu */
    .page-hi88vip__intro-content {
      text-align: center;
      margin-bottom: 30px;
    }

    /* Lưới trò chơi */
    .page-hi88vip__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-hi88vip__game-card {
      background-color: #fefefe;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #eee;
    }

    .page-hi88vip__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-hi88vip__game-card-image {
      width: 100%;
      height: 200px; /* Chiều cao cố định để nhất quán */
      object-fit: cover;
      display: block;
      border-bottom: 1px solid #eee;
    }

    .page-hi88vip__game-card-content {
      padding: 20px;
    }

    .page-hi88vip__game-card-title {
      font-size: 1.5em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .page-hi88vip__game-card-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    /* Phần khuyến mãi */
    .page-hi88vip__promotion-card {
      background-color: #fff3cd; /* Nền vàng nhạt */
      border: 1px solid #ffeeba;
      border-radius: 10px;
      padding: 25px;
      margin-top: 20px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .page-hi88vip__promotion-title {
      font-size: 1.8em;
      color: #856404; /* Văn bản màu vàng đậm */
      margin-bottom: 15px;
      font-weight: 700;
    }

    .page-hi88vip__promotion-text {
      font-size: 1.1em;
      color: #664d03;
      margin-bottom: 20px;
    }

    /* Hướng dẫn */
    .page-hi88vip__steps-list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: grid;
      gap: 15px;
    }

    .page-hi88vip__step-item {
      background-color: #fefefe;
      border-left: 5px solid #007bff;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      font-size: 1.05em;
      color: #333;
    }

    .page-hi88vip__step-item strong {
      color: #0056b3;
    }

    /* Tải ứng dụng */
    .page-hi88vip__app-download-section {
      text-align: center;
    }

    .page-hi88vip__app-image {
      width: 100%;
      max-width: 400px;
      height: auto;
      margin: 20px auto;
      display: block;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* FAQ */
    .page-hi88vip__faq-container {
      margin-top: 30px;
    }

    .page-hi88vip__faq-item {
      background-color: #fefefe;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .page-hi88vip__faq-item.active {
      border-color: #007bff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .page-hi88vip__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      background-color: #f5f5f5;
      border-bottom: 1px solid #e0e0e0;
      font-size: 1.15em;
      color: #333;
      font-weight: 600;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-hi88vip__faq-question:hover {
      background-color: #e9e9e9;
    }

    .page-hi88vip__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Điều chỉnh để phù hợp với kích thước phông chữ cha */
      pointer-events: none; /* Ngăn h3 chặn sự kiện nhấp */
      color: #0056b3;
    }

    .page-hi88vip__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      pointer-events: none; /* Ngăn biểu tượng chuyển đổi chặn sự kiện nhấp */
      transition: transform 0.3s ease;
    }

    .page-hi88vip__faq-item.active .page-hi88vip__faq-toggle {
      transform: rotate(45deg); /* Dấu cộng xoay để tạo thành dấu X hoặc dấu trừ */
      color: #dc3545; /* Màu đỏ khi hoạt động */
    }

    .page-hi88vip__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Đệm ban đầu khớp với câu hỏi, nhưng trên/dưới là 0 */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      color: #555;
      font-size: 1em;
      background-color: #ffffff;
    }

    .page-hi88vip__faq-item.active .page-hi88vip__faq-answer {
      max-height: 2000px !important; /* Đủ lớn */
      padding: 20px 20px !important; /* Đệm cụ thể khi hoạt động */
      opacity: 1;
    }

    /* Responsive cho thiết bị di động */
    @media (max-width: 768px) {
      .page-hi88vip__container {
        padding: 15px;
      }

      .page-hi88vip__section {
        padding: 20px;
      }

      .page-hi88vip__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }

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

      .page-hi88vip__hero-section {
        padding: 40px 15px 30px;
        padding-top: 10px !important; /* Yêu cầu nghiêm ngặt, áp dụng lại cho di động */
      }

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

      .page-hi88vip__hero-subtitle {
        font-size: 1.1em;
      }

      .page-hi88vip__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-hi88vip__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-hi88vip__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

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

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

      .page-hi88vip__promotion-text {
        font-size: 1em;
      }

      .page-hi88vip__faq-question {
        padding: 15px;
        font-size: 1.05em;
      }

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

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

      /* Tối ưu hóa hình ảnh responsive cho di động */
      .page-hi88vip__image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-hi88vip__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  