
    /* Tổng thể */
    .page-ee88 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #e0e0e0;
      background-color: #0f0f1a;
      line-height: 1.6;
      padding: 0;
      margin: 0;
    }

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

    .page-ee88__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #1a1a2e;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-ee88__section--dark {
      background-color: #0f0f1a;
    }

    .page-ee88__heading {
      text-align: center;
      color: #ffffff;
      font-size: 2.5em;
      margin-bottom: 30px;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }

    .page-ee88__subheading {
      text-align: center;
      color: #ffcc00;
      font-size: 1.8em;
      margin-bottom: 25px;
    }

    .page-ee88__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-ee88__button {
      display: inline-block;
      background-color: #e94560;
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      text-align: center;
    }

    .page-ee88__button:hover {
      background-color: #d13a52;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-ee88__hero-section {
      position: relative;
      text-align: center;
      padding-top: 10px; /* Required padding-top for fixed header */
      margin-bottom: 30px;
      overflow: hidden;
      border-radius: 0 0 15px 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .page-ee88__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #0f0f1a; /* Placeholder background */
    }

    .page-ee88__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    }

    .page-ee88__hero-content {
      padding: 30px 20px;
      background: linear-gradient(to top, #1a1a2e 0%, rgba(26, 26, 46, 0.8) 70%, rgba(26, 26, 46, 0.5) 100%);
      position: relative;
      z-index: 1;
      margin-top: -10px; /* Overlap slightly for visual flow */
    }

    .page-ee88__hero-title {
      color: #ffffff;
      font-size: 2.8em;
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7);
    }

    .page-ee88__hero-description {
      font-size: 1.3em;
      color: #ffcc00;
      margin-bottom: 30px;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }

    /* Floating Login Button */
    .page-ee88__floating-button-wrapper {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      animation: bounce 2s infinite;
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(-10px);
      }
      60% {
        transform: translateY(-5px);
      }
    }

    .page-ee88__floating-button {
      background-color: #ffcc00;
      color: #1a1a2e;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      border: 2px solid #e94560;
      transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    }

    .page-ee88__floating-button:hover {
      background-color: #e6b800;
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    /* Game Categories */
    .page-ee88__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 25px;
      padding: 0 20px;
    }

    .page-ee88__game-card {
      background-color: #0f0f1a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      border: 1px solid #2e2e4a;
    }

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

    .page-ee88__game-card-link {
      text-decoration: none;
      color: inherit;
      display: block;
      padding-bottom: 15px;
    }

    .page-ee88__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 150px; /* Fixed height for uniformity */
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #2e2e4a;
      border-bottom: 1px solid #3a3a5a;
    }

    .page-ee88__game-card-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-ee88__game-card-title {
      color: #ffcc00;
      font-size: 1.2em;
      margin-top: 15px;
      padding: 0 10px;
    }

    /* Promotions Section */
    .page-ee88__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 0 20px;
    }

    .page-ee88__promo-card {
      background-color: #0f0f1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #2e2e4a;
    }

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

    .page-ee88__promo-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px;
      background-color: #2e2e4a;
    }

    .page-ee88__promo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

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

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

    .page-ee88__promo-description {
      color: #e0e0e0;
      font-size: 1em;
      margin-bottom: 20px;
    }

    .page-ee88__promo-button {
      width: 100%;
    }

    /* Why Choose Section */
    .page-ee88__benefits-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .page-ee88__benefit-item {
      background-color: #0f0f1a;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      border: 1px solid #2e2e4a;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-ee88__benefit-item:hover {
      background-color: #2e2e4a;
      transform: translateY(-3px);
    }

    .page-ee88__benefit-title {
      color: #ffcc00;
      font-size: 1.3em;
      margin-top: 15px;
      margin-bottom: 10px;
    }

    .page-ee88__benefit-description {
      color: #e0e0e0;
      font-size: 0.95em;
    }

    /* Game Providers Section */
    .page-ee88__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      padding: 0 20px;
      justify-items: center;
      align-items: center;
    }

    .page-ee88__provider-logo-wrapper {
      width: 100%;
      max-width: 150px; /* Max width for logos */
      height: 80px; /* Fixed height for uniformity */
      overflow: hidden;
      box-sizing: border-box;
      background-color: #2e2e4a;
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease;
    }

    .page-ee88__provider-logo-wrapper:hover {
      transform: scale(1.05);
    }

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

    /* FAQ Section */
    .page-ee88__faq-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
    }

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

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

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

    .page-ee88__faq-question h3 {
      margin: 0;
      color: inherit;
      font-size: 1em; /* Inherit from parent */
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-ee88__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ffcc00;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-ee88__faq-item.active .page-ee88__faq-toggle {
      transform: rotate(45deg);
    }

    .page-ee88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #1a1a2e;
      color: #e0e0e0;
      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; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }

    /* News/Review Section */
    .page-ee88__article-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 0 20px;
    }

    .page-ee88__article-card {
      background-color: #0f0f1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #2e2e4a;
    }

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

    .page-ee88__article-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px;
      background-color: #2e2e4a;
    }

    .page-ee88__article-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

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

    .page-ee88__article-title {
      color: #ffffff;
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-ee88__article-link {
      text-decoration: none;
      color: #ffcc00;
      font-weight: bold;
      display: block;
      margin-top: 15px;
      transition: color 0.3s ease;
    }

    .page-ee88__article-link:hover {
      color: #e6b800;
      text-decoration: underline;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-ee88__container {
        padding: 15px;
      }

      .page-ee88__section {
        padding: 30px 15px;
      }

      .page-ee88__heading {
        font-size: 2em;
      }

      .page-ee88__subheading {
        font-size: 1.5em;
      }

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

      .page-ee88__hero-description {
        font-size: 1.1em;
      }

      .page-ee88__floating-button-wrapper {
        bottom: 15px;
        right: 15px;
      }

      .page-ee88__floating-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-ee88__game-grid,
      .page-ee88__promo-grid,
      .page-ee88__article-grid {
        grid-template-columns: 1fr;
        padding: 0;
      }

      .page-ee88__game-card-image-wrapper {
        height: 120px;
      }

      .page-ee88__promo-image-wrapper,
      .page-ee88__article-image-wrapper {
        height: 180px;
      }

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

      .page-ee88__provider-logo-wrapper {
        max-width: 120px;
        height: 70px;
      }

      .page-ee88__faq-list {
        padding: 0;
      }

      .page-ee88__faq-question {
        font-size: 1.1em;
        padding: 15px;
      }

      .page-ee88__faq-answer {
        padding: 15px !important; /* Override desktop padding */
      }

      /* Image responsive optimization for mobile */
      .page-ee88 img {
        max-width: 100% !important;
        height: auto !important;
      }

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