
    /* Tổng quan */
    .page-ee88 {
      font-family: 'Arial', sans-serif;
      color: #fff; /* Màu chữ mặc định trắng */
      background-color: #000; /* Nền đen */
      line-height: 1.6;
    }

    .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 {
      font-size: 2.5em;
      color: #FFD700; /* Màu vàng */
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-ee88__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #FFD700; /* Màu vàng */
    }

    /* Hero Section */
    .page-ee88__hero-section {
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* An toàn cho thanh điều hướng cố định */
      background-color: #000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-ee88__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* Giữ nguyên tỷ lệ ảnh */
      margin-bottom: 20px; /* Khoảng cách giữa ảnh và nội dung */
    }

    .page-ee88__hero-content {
      padding: 20px;
      text-align: center;
      max-width: 800px;
      margin-bottom: 40px;
    }

    .page-ee88__hero-title {
      font-size: 3em;
      color: #FFD700; /* Màu vàng */
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-ee88__hero-text {
      font-size: 1.2em;
      color: #fff; /* Màu trắng */
      margin-bottom: 30px;
    }

    .page-ee88__hero-cta {
      display: inline-block;
      background-color: #FFD700; /* Màu vàng */
      color: #000;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none; /* Sử dụng button hoặc div, không a */
    }

    .page-ee88__hero-cta:hover {
      background-color: #e6c200;
    }

    /* Floating Login Button */
    .page-ee88__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FFD700; /* Màu vàng */
      color: #000;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: transform 0.3s ease, background-color 0.3s ease;
      text-decoration: none; /* Đảm bảo là một liên kết */
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap; /* Ngăn chặn ngắt dòng */
      min-width: 180px; /* Đảm bảo kích thước tối thiểu */
    }

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

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

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

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

    .page-ee88__game-image {
      width: 100%;
      max-width: 100%;
      height: 200px; /* Kích thước tối thiểu 200px */
      object-fit: cover;
      display: block;
    }

    .page-ee88__game-content {
      padding: 20px;
    }

    .page-ee88__game-title {
      font-size: 1.5em;
      color: #FFD700; /* Màu vàng */
      margin-bottom: 10px;
    }

    .page-ee88__game-description {
      font-size: 0.95em;
      color: #ccc;
    }

    /* Promotions Section */
    .page-ee88__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      max-width: 1000px;
      margin: 0 auto;
    }

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

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

    .page-ee88__promo-image {
      width: 100%;
      max-width: 100%;
      height: 220px; /* Kích thước tối thiểu 200px */
      object-fit: cover;
      display: block;
    }

    .page-ee88__promo-content {
      padding: 20px;
    }

    .page-ee88__promo-title {
      font-size: 1.5em;
      color: #FFD700; /* Màu vàng */
      margin-bottom: 10px;
    }

    .page-ee88__promo-text {
      font-size: 0.95em;
      color: #ccc;
    }

    /* About Section */
    .page-ee88__about-section {
      background-color: #000;
    }

    .page-ee88__about-text {
      max-width: 900px;
      margin: 0 auto;
      font-size: 1.1em;
      color: #fff;
      text-align: left;
    }

    /* Providers Section */
    .page-ee88__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
      align-items: center;
      justify-content: center;
    }

    .page-ee88__provider-logo {
      background-color: #1a1a1a;
      padding: 15px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px; /* Đảm bảo kích thước tối thiểu cho logo */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .page-ee88__provider-logo:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .page-ee88__provider-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      max-width: 150px;
    }

    /* FAQ Section */
    .page-ee88__faq-section {
      text-align: left;
    }

    .page-ee88__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

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

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

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

    .page-ee88__faq-title {
      font-size: 1.2em;
      color: #FFD700; /* Màu vàng */
      margin: 0;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
    }

    .page-ee88__faq-toggle {
      font-size: 1.8em;
      color: #FFD700; /* Màu vàng */
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn span chặn sự kiện click */
    }

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

    .page-ee88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Điều chỉnh padding */
      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-ee88__faq-item.active .page-ee88__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa nội dung */
      padding: 20px 25px !important; /* Điều chỉnh padding */
      opacity: 1;
    }

    /* Call to Action Final */
    .page-ee88__cta-section {
      padding-bottom: 80px;
    }

    .page-ee88__cta-text {
      font-size: 1.5em;
      color: #fff;
      margin-bottom: 30px;
    }

    .page-ee88__cta-button {
      display: inline-block;
      background-color: #FFD700; /* Màu vàng */
      color: #000;
      padding: 18px 40px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

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

    /* Responsive */
    @media (max-width: 768px) {
      .page-ee88__hero-section {
        padding-top: 10px; /* An toàn cho thanh điều hướng cố định */
      }
      .page-ee88__section {
        padding: 30px 0;
      }

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

      .page-ee88__hero-title {
        font-size: 2.2em;
      }

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

      .page-ee88__hero-cta {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-ee88__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
        min-width: 150px;
      }

      .page-ee88__game-grid,
      .page-ee88__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .page-ee88__game-image,
      .page-ee88__promo-image {
        height: 180px; /* Điều chỉnh cho mobile */
      }

      .page-ee88__about-text {
        font-size: 1em;
        padding: 0 15px;
      }

      .page-ee88__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }

      .page-ee88__provider-logo {
        height: 80px;
        padding: 10px;
      }

      .page-ee88__faq-question {
        padding: 15px 20px;
      }

      .page-ee88__faq-title {
        font-size: 1.1em;
      }

      .page-ee88__faq-toggle {
        font-size: 1.5em;
      }

      .page-ee88__faq-answer {
        padding: 0 20px;
      }

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

      .page-ee88__cta-text {
        font-size: 1.2em;
      }

      .page-ee88__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
      }

      /* Responsive image optimization */
      .page-ee88 img {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-ee88__game-card,
      .page-ee88__promo-card,
      .page-ee88__provider-logo {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  