
    /* Tổng thể */
    .page-ae888 {
      font-family: 'Arial', sans-serif;
      background-color: #000000;
      color: #ffffff;
      line-height: 1.6;
      padding-bottom: 80px; /* Đảm bảo không bị che bởi footer */
    }

    /* Đảm bảo nội dung không bị che bởi header cố định */
    .page-ae888__hero-section {
      padding-top: 120px; /* Desktop */
    }

    @media (max-width: 768px) {
      .page-ae888__hero-section {
        padding-top: 100px; /* Mobile */
      }
    }

    .page-ae888__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-ae888__section-title {
      font-size: 2.5em;
      color: #FFD700; /* Vàng kim */
      text-align: center;
      margin-bottom: 40px;
      padding-top: 20px;
      position: relative;
    }

    .page-ae888__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: #FFD700;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* Nút đăng ký/đăng nhập nổi */
    .page-ae888__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FF4500; /* Cam đỏ nổi bật */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, background-color 0.3s ease;
      z-index: 1000;
      text-align: center;
      animation: page-ae888__pulse 2s infinite;
    }

    .page-ae888__floating-button:hover {
      transform: translateY(-5px) scale(1.05);
      background-color: #e03e00;
    }

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

    /* Hero Section */
    .page-ae888__hero-section {
      position: relative;
      overflow: hidden;
      margin-bottom: 40px;
      text-align: center;
    }

    .page-ae888__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-height: 500px; /* Giới hạn chiều cao để banner không quá lớn */
      border-radius: 8px;
    }

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

    .page-ae888__hero-content h1 {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #FFD700;
      line-height: 1.2;
    }

    .page-ae888__hero-content p {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #cccccc;
    }

    .page-ae888__hero-button {
      background-color: #00BFFF; /* Xanh dương sáng */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease;
      display: inline-block;
    }

    .page-ae888__hero-button:hover {
      background-color: #009ACD;
    }

    /* Game Categories Section */
    .page-ae888__game-categories {
      padding: 40px 0;
    }

    .page-ae888__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-ae888__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-ae888__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    }

    .page-ae888__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-ae888__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-ae888__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-ae888__game-card-content h3 {
      font-size: 1.6em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-ae888__game-card-content p {
      font-size: 0.95em;
      color: #cccccc;
      margin-bottom: 15px;
    }

    .page-ae888__game-card-button {
      background-color: #FF4500;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      display: inline-block;
      margin-top: auto; /* Đẩy nút xuống dưới cùng */
    }

    .page-ae888__game-card-button:hover {
      background-color: #e03e00;
    }

    /* Game Providers Section */
    .page-ae888__game-providers {
      padding: 40px 0;
    }

    .page-ae888__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 25px;
      justify-content: center;
      align-items: center;
    }

    .page-ae888__provider-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Chiều cao cố định cho logo */
    }

    .page-ae888__provider-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
    }

    .page-ae888__provider-logo {
      max-width: 100%;
      max-height: 70px; /* Giới hạn chiều cao của logo */
      object-fit: contain;
      display: block;
    }

    /* Promotions Section */
    .page-ae888__promotions {
      padding: 40px 0;
    }

    .page-ae888__promotion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-ae888__promotion-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-ae888__promotion-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    }

    .page-ae888__promotion-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-ae888__promotion-card-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-ae888__promotion-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-ae888__promotion-card-content h3 {
      font-size: 1.8em;
      color: #00BFFF;
      margin-bottom: 10px;
    }

    .page-ae888__promotion-card-content p {
      font-size: 1em;
      color: #cccccc;
      margin-bottom: 15px;
    }

    .page-ae888__promotion-card-button {
      background-color: #FFD700;
      color: #000000;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      display: inline-block;
      margin-top: auto;
    }

    .page-ae888__promotion-card-button:hover {
      background-color: #e6c200;
    }

    /* About Section */
    .page-ae888__about-section {
      padding: 40px 0;
      text-align: center;
    }

    .page-ae888__about-content {
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.1em;
      color: #e0e0e0;
    }

    .page-ae888__about-content h2 {
      color: #FFD700;
      font-size: 2.2em;
      margin-bottom: 20px;
    }

    .page-ae888__about-content p {
      margin-bottom: 20px;
      text-align: left;
    }

    .page-ae888__about-features {
      list-style: none;
      padding: 0;
      text-align: left;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .page-ae888__about-features li {
      background-color: #1a1a1a;
      padding: 15px 20px;
      border-radius: 8px;
      margin-bottom: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .page-ae888__about-features li::before {
      content: '✔';
      color: #00BFFF;
      font-size: 1.5em;
      font-weight: bold;
      line-height: 1;
    }

    /* FAQ Section */
    .page-ae888__faq-section {
      padding: 40px 0;
    }

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

    .page-ae888__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #2a2a2a;
      color: #FFD700;
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

    .page-ae888__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      flex-grow: 1;
    }

    .page-ae888__faq-toggle {
      font-size: 1.8em;
      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-ae888__faq-item.active .page-ae888__faq-toggle {
      transform: rotate(45deg); /* Biến '+' thành 'x' hoặc '-' */
    }

    .page-ae888__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #cccccc;
      font-size: 1em;
    }

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

    .page-ae888__faq-answer p {
      margin-bottom: 10px;
    }

    /* Call to Action Section */
    .page-ae888__cta-section {
      background-color: #1a1a1a;
      padding: 60px 20px;
      text-align: center;
      margin-top: 40px;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .page-ae888__cta-section h2 {
      font-size: 2.8em;
      color: #00BFFF;
      margin-bottom: 20px;
    }

    .page-ae888__cta-section p {
      font-size: 1.2em;
      color: #cccccc;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-ae888__cta-button {
      background-color: #FF4500;
      color: #ffffff;
      padding: 18px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.4em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: inline-block;
    }

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

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-ae888__hero-content h1 {
        font-size: 3em;
      }
      .page-ae888__hero-content p {
        font-size: 1.1em;
      }
      .page-ae888__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-ae888__hero-content h1 {
        font-size: 2.2em;
      }
      .page-ae888__hero-content p {
        font-size: 1em;
      }
      .page-ae888__hero-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-ae888__section-title {
        font-size: 1.8em;
      }
      .page-ae888__game-grid, .page-ae888__promotion-grid, .page-ae888__providers-grid {
        grid-template-columns: 1fr;
      }
      .page-ae888__cta-section h2 {
        font-size: 2em;
      }
      .page-ae888__cta-section p {
        font-size: 1em;
      }
      .page-ae888__cta-button {
        padding: 15px 30px;
        font-size: 1.2em;
      }
      .page-ae888__floating-button {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }
      .page-ae888__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }
      .page-ae888__faq-answer {
        padding: 15px 15px;
      }
      .page-ae888__faq-item.active .page-ae888__faq-answer {
        padding: 15px 15px !important;
      }

      /* Responsive image optimization for all images */
      .page-ae888 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-ae888__hero-image,
      .page-ae888__game-card-image,
      .page-ae888__provider-logo,
      .page-ae888__promotion-card-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-ae888__game-card-image-wrapper,
      .page-ae888__promotion-card-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-ae888__hero-content h1 {
        font-size: 1.8em;
      }
      .page-ae888__hero-content p {
        font-size: 0.9em;
      }
      .page-ae888__hero-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-ae888__section-title {
        font-size: 1.5em;
      }
    }
  