
    /* Reset và các cài đặt cơ bản cho trang halo88 */
    .page-halo88 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f4f7f6;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-halo88-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      width: 100%;
      box-sizing: border-box;
    }

    /* Phần hero (đầu trang) */
    .page-halo88-hero {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Gradient màu sắc sống động */
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .page-halo88-hero h1 {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* Thêm hiệu ứng đổ bóng cho chữ */
      color: #fff; /* Đảm bảo màu chữ rõ ràng trên nền gradient */
    }

    .page-halo88-hero p {
      font-size: 1.2em;
      max-width: 800px;
      margin: 0 auto 30px;
      line-height: 1.8;
      color: #eee; /* Màu chữ nhạt hơn để dễ đọc */
    }

    .page-halo88-cta-button {
      display: inline-block;
      background-color: #ffcc00; /* Màu vàng nổi bật */
      color: #333; /* Màu chữ đen để tương phản tốt */
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      border: none;
      cursor: pointer;
    }

    .page-halo88-cta-button:hover {
      background-color: #e6b800; /* Vàng đậm hơn khi hover */
      transform: translateY(-2px);
    }

    /* Các phần nội dung chính */
    .page-halo88-section {
      background-color: #ffffff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .page-halo88-section h2 {
      font-size: 2em;
      color: #1a2a6c; /* Màu xanh đậm */
      margin-bottom: 25px;
      text-align: center;
      position: relative;
    }

    .page-halo88-section h2::after {
      content: '';
      width: 60px;
      height: 4px;
      background-color: #fdbb2d; /* Màu vàng */
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -10px;
      border-radius: 2px;
    }

    .page-halo88-section h3 {
      font-size: 1.5em;
      color: #b21f1f; /* Màu đỏ */
      margin-top: 30px;
      margin-bottom: 15px;
      border-left: 5px solid #fdbb2d; /* Thanh vàng nổi bật bên trái */
      padding-left: 10px;
    }

    .page-halo88-section p {
      margin-bottom: 15px;
      color: #555;
    }

    .page-halo88-section ul,
    .page-halo88-section ol {
      list-style-position: inside; /* Đảm bảo dấu đầu dòng nằm trong padding */
      margin-left: 0;
      padding-left: 20px;
      margin-bottom: 15px;
      color: #555;
    }

    .page-halo88-section li {
      margin-bottom: 8px;
    }

    .page-halo88-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 20px auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

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

    .page-halo88-game-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid #eee;
    }

    .page-halo88-game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-halo88-game-card img {
      max-width: 100%;
      height: 150px; /* Chiều cao cố định cho ảnh */
      object-fit: contain; /* Giữ tỷ lệ và căn giữa */
      margin-bottom: 15px;
      border-radius: 5px;
    }

    .page-halo88-game-card h4 {
      font-size: 1.3em;
      color: #1a2a6c;
      margin-bottom: 10px;
    }
    
    .page-halo88-game-card h4 a {
        color: #1a2a6c; /* Đảm bảo màu link rõ ràng */
        text-decoration: none;
    }

    .page-halo88-game-card h4 a:hover {
        text-decoration: underline;
    }

    .page-halo88-game-card p {
      font-size: 0.95em;
      color: #666;
      flex-grow: 1; /* Cho phép đoạn văn bản chiếm không gian còn lại */
    }

    /* Bảng */
    .page-halo88-table-responsive {
      overflow-x: auto;
      margin-top: 20px;
    }

    .page-halo88-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 20px;
    }

    .page-halo88-table th,
    .page-halo88-table td {
      border: 1px solid #ddd;
      padding: 12px;
      text-align: left;
    }

    .page-halo88-table th {
      background-color: #1a2a6c; /* Nền xanh đậm */
      color: #fff; /* Chữ trắng */
      font-weight: bold;
      white-space: nowrap;
    }

    .page-halo88-table tr:nth-child(even) {
      background-color: #f2f2f2;
    }

    .page-halo88-table tr:hover {
      background-color: #e9e9e9;
    }

    /* FAQ */
    .page-halo88-faq-item {
      margin-bottom: 15px;
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-halo88-faq-question {
      background-color: #f9f9f9;
      padding: 15px 20px;
      cursor: pointer;
      font-weight: bold;
      color: #1a2a6c; /* Màu xanh đậm */
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.3s ease;
    }

    .page-halo88-faq-question:hover {
      background-color: #eef;
    }

    .page-halo88-faq-question::after {
      content: '+';
      font-size: 1.2em;
      transition: transform 0.3s ease;
    }

    .page-halo88-faq-question.active::after {
      content: '-';
      transform: rotate(180deg);
    }

    .page-halo88-faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out;
      background-color: #fff;
      color: #555;
    }

    .page-halo88-faq-answer p {
      padding-top: 10px;
      padding-bottom: 10px;
      margin: 0;
    }

    /* Nút CTA nổi bật */
    .page-halo88-floating-cta {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #b21f1f; /* Màu đỏ nổi bật */
      color: #fff; /* Chữ trắng */
      padding: 12px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.05em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-halo88-floating-cta:hover {
      background-color: #8c1a1a; /* Đỏ đậm hơn khi hover */
      transform: translateY(-3px);
    }

    .page-halo88-floating-cta span {
      animation: pulse 1.5s infinite; /* Hiệu ứng nhấp nháy cho icon */
    }

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

    /* Căn giữa chữ cho các đoạn văn bản */
    .page-halo88-text-center {
      text-align: center;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-halo88-hero h1 {
        font-size: 2em;
      }
      .page-halo88-hero p {
        font-size: 1em;
      }
      .page-halo88-section {
        padding: 25px 15px;
      }
      .page-halo88-section h2 {
        font-size: 1.7em;
      }
      .page-halo88-section h3 {
        font-size: 1.3em;
      }
      .page-halo88-game-grid {
        grid-template-columns: 1fr; /* Một cột trên màn hình nhỏ */
      }
      .page-halo88-floating-cta {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 0.95em;
      }
    }

    @media (max-width: 480px) {
      .page-halo88-hero {
        padding: 40px 15px;
      }
      .page-halo88-hero h1 {
        font-size: 1.8em;
      }
      .page-halo88-cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  