
    /* Tổng thể */
    .page-ee88 {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Nền đen */
      color: #FFFFFF; /* Chữ trắng */
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng trống cho nút nổi */
    }

    .page-ee88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-ee88__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-ee88__section-title {
      color: #FFD700; /* Tiêu đề vàng */
      font-size: 2.5em;
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-ee88__section-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #E0E0E0;
    }

    /* Hero Section */
    .page-ee88__hero-section {
      position: relative;
      background-color: #1a1a1a;
      padding-top: 150px; /* Đảm bảo không bị che bởi header cố định */
      padding-bottom: 40px;
      overflow: hidden;
      text-align: center;
    }

    .page-ee88__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 30px;
    }

    .page-ee88__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* Giữ tỷ lệ hình ảnh */
      max-width: 1200px; /* Giới hạn kích thước hình ảnh */
      margin: 0 auto; /* Căn giữa hình ảnh */
    }

    .page-ee88__hero-content {
      position: relative;
      z-index: 2;
      padding: 0 15px;
    }

    .page-ee88__hero-title {
      font-size: 3em;
      color: #FFD700;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-ee88__hero-subtitle {
      font-size: 1.4em;
      color: #FFFFFF;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-ee88__cta-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

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

    /* Floating Login Button */
    .page-ee88__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FFD700;
      color: #000000;
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1.3;
    }

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

    /* Game Categories */
    .page-ee88__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-ee88__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-ee88__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

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

    .page-ee88__game-card-image {
      width: 100%;
      height: 200px; /* Cố định chiều cao cho hình ảnh */
      object-fit: cover; /* Đảm bảo hình ảnh lấp đầy khung */
      display: block;
    }

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

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

    .page-ee88__game-card-description {
      font-size: 0.95em;
      color: #E0E0E0;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* Game Providers */
    .page-ee88__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-ee88__provider-item {
      background-color: #1a1a1a;
      padding: 15px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 80px; /* Chiều cao cố định cho logo nhà cung cấp */
      transition: transform 0.2s ease;
    }

    .page-ee88__provider-item:hover {
      transform: translateY(-3px);
    }

    .page-ee88__provider-logo {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }

    /* Promotions */
    .page-ee88__promo-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 30px;
    }

    .page-ee88__promo-item {
      background-color: #1a1a1a;
      padding: 25px;
      border-radius: 10px;
      text-align: left;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .page-ee88__promo-title {
      color: #FFD700;
      font-size: 1.8em;
      margin-bottom: 10px;
    }

    .page-ee88__promo-description {
      color: #E0E0E0;
      margin-bottom: 15px;
    }

    .page-ee88__promo-button {
      background-color: #FFD700;
      color: #000000;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

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

    /* FAQ Section */
    .page-ee88__faq-list {
      margin-top: 30px;
      text-align: left;
    }

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

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

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

    .page-ee88__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      color: #FFD700;
      font-size: 1em; /* Điều chỉnh kích thước font cho H3 trong FAQ */
      pointer-events: none; /* Ngăn chặn H3 chặn sự kiện click */
    }

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

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

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

    .page-ee88__faq-item.active .page-ee88__faq-toggle {
      content: '−';
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-ee88__hero-title {
        font-size: 2.5em;
      }
      .page-ee88__hero-subtitle {
        font-size: 1.2em;
      }
      .page-ee88__section-title {
        font-size: 2em;
      }
      .page-ee88__game-categories {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-ee88__hero-section {
        padding-top: 100px; /* Khoảng trống cho header cố định trên di động */
      }
      .page-ee88__hero-title {
        font-size: 2em;
      }
      .page-ee88__hero-subtitle {
        font-size: 1em;
      }
      .page-ee88__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-ee88__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 1em;
      }
      .page-ee88__game-categories {
        grid-template-columns: 1fr;
      }
      .page-ee88__game-card-image {
        height: 180px;
      }
      .page-ee88__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      }
      .page-ee88__section-title {
        font-size: 1.8em;
      }
      .page-ee88__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-ee88__faq-answer {
        padding: 0 20px;
      }
      .page-ee88__faq-item.active .page-ee88__faq-answer {
        padding: 15px 20px !important;
      }
      /* Ensure images are responsive */
      .page-ee88__hero-image,
      .page-ee88__game-card-image,
      .page-ee88__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-ee88__hero-image-wrapper,
      .page-ee88__game-card-image-wrapper,
      .page-ee88__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-ee88__hero-title {
        font-size: 1.8em;
      }
      .page-ee88__hero-subtitle {
        font-size: 0.9em;
      }
      .page-ee88__section-title {
        font-size: 1.5em;
      }
      .page-ee88__cta-button {
        font-size: 1em;
        padding: 10px 20px;
      }
      .page-ee88__floating-button {
        font-size: 0.9em;
        padding: 8px 15px;
      }
      .page-ee88__game-card-image {
        height: 150px;
      }
      .page-ee88__game-card-title {
        font-size: 1.3em;
      }
      .page-ee88__game-card-description {
        font-size: 0.85em;
      }
      .page-ee88__promo-title {
        font-size: 1.5em;
      }
      .page-ee88__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }
      .page-ee88__faq-answer {
        padding: 0 15px;
      }
      .page-ee88__faq-item.active .page-ee88__faq-answer {
        padding: 10px 15px !important;
      }
    }
  