
    /* Tổng thể */
    .page-top88 {
      font-family: 'Arial', sans-serif;
      background-color: #000; /* Nền đen */
      color: #FFF; /* Chữ trắng mặc định */
      line-height: 1.6;
      overflow-x: hidden;
      position: relative; /* Để nút nổi bật có thể position */
    }

    /* Tiêu đề chung */
    .page-top88__section-title {
      color: #FFD700; /* Chữ vàng */
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.2em;
      font-weight: bold;
      padding: 10px 15px;
    }

    /* Container */
    .page-top88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* Hero Section */
    .page-top88__hero-section {
      position: relative;
      text-align: center;
      padding-top: 10px; /* An toàn cho banner, tránh bị header cố định che */
      margin-bottom: 40px;
    }

    .page-top88__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto; /* Căn giữa hình ảnh */
    }

    .page-top88__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #FFF;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      width: 90%;
      max-width: 800px;
    }

    .page-top88__hero-title {
      font-size: 3em;
      color: #FFD700; /* Chữ vàng */
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .page-top88__hero-description {
      font-size: 1.2em;
      margin-bottom: 20px;
    }

    /* Nút đăng nhập nổi bật */
    .page-top88__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FFD700; /* Nền vàng */
      color: #000; /* Chữ đen */
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
      z-index: 1000;
      cursor: pointer;
      animation: page-top88__pulse 2s infinite;
      text-decoration: none; /* đảm bảo không có gạch chân nếu dùng <a> */
      display: inline-block; /* để padding và border-radius hoạt động */
      border: none; /* loại bỏ border mặc định của button */
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

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

    @keyframes page-top88__pulse {
      0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
      70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(255, 215, 0, 0); }
      100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
    }

    /* Phần giới thiệu trò chơi */
    .page-top88__game-categories {
      padding: 40px 0;
    }

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

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

    .page-top88__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
    }

    .page-top88__game-card-image {
      width: 100%;
      height: 200px; /* Đảm bảo hình ảnh có kích thước đủ lớn */
      object-fit: cover;
      display: block;
    }

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

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

    .page-top88__game-card-description {
      color: #AAA;
      font-size: 0.95em;
    }

    /* Phần nhà cung cấp trò chơi */
    .page-top88__providers-section {
      padding: 40px 0;
      background-color: #0d0d0d;
    }

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

    .page-top88__provider-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-top88__provider-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 12px rgba(255, 215, 0, 0.1);
    }

    .page-top88__provider-logo {
      max-width: 100%; /* Đảm bảo logo không bị tràn */
      height: auto;
      max-height: 100px; /* Giới hạn chiều cao cho logo */
      display: block;
      margin: 0 auto 10px auto;
    }

    .page-top88__provider-name {
      color: #FFF;
      font-weight: bold;
      font-size: 1.1em;
    }

    /* FAQ Section */
    .page-top88__faq-section {
      padding: 40px 0;
      background-color: #000;
      color: #FFF;
    }

    .page-top88__faq-list {
      margin-top: 30px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-top88__faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-top88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      background-color: #2a2a2a;
      color: #FFD700;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

    .page-top88__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      flex-grow: 1;
      pointer-events: none; /* Quan trọng: ngăn chặn chặn click */
      color: #FFD700; /* Đảm bảo màu vàng */
    }

    .page-top88__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Quan trọng: ngăn chặn chặn click */
      color: #FFD700; /* Đảm bảo màu vàng */
    }

    .page-top88__faq-item.active .page-top88__faq-toggle {
      transform: rotate(45deg); /* Chuyển '+' thành 'x' hoặc '-' */
    }

    .page-top88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Padding ngang ban đầu */
      background-color: #1a1a1a;
      color: #FFF;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Media Queries cho thiết bị di động */
    @media (max-width: 768px) {
      .page-top88__hero-section {
        padding-top: 10px; /* Giữ nguyên cho mobile */
      }

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

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

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

      .page-top88__section-title {
        font-size: 1.8em;
      }

      .page-top88__game-grid {
        grid-template-columns: 1fr;
      }

      .page-top88__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      }

      .page-top88__faq-question {
        padding: 15px;
      }

      .page-top88__faq-question h3 {
        font-size: 1.1em;
      }

      .page-top88__faq-toggle {
        font-size: 1.3em;
      }

      .page-top88__faq-answer {
        padding: 0 15px; /* Padding ngang ban đầu cho mobile */
      }

      .page-top88__faq-item.active .page-top88__faq-answer {
        padding: 15px !important; /* Padding đầy đủ khi mở cho mobile */
      }

      /* Responsive image optimization */
      .page-top88__hero-image,
      .page-top88__game-card-image,
      .page-top88__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-top88__game-card,
      .page-top88__provider-item,
      .page-top88__hero-section { /* Thêm hero-section để đảm bảo container của hero image cũng responsive */
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  