
    /* Reset và cơ bản */
    .page-ee88 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
    }

    /* Đảm bảo nội dung không bị che bởi header cố định */
    .page-ee88__hero-section {
      padding-top: 120px; /* Desktop */
      position: relative;
      text-align: center;
      background-color: #0d1a26;
      color: #fff;
    }

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

    .page-ee88__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-ee88__section-title {
      text-align: center;
      color: #0056b3;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }
    .page-ee88__section-title span {
        color: #e44d26;
    }

    .page-ee88__text-center {
      text-align: center;
    }

    .page-ee88__button {
      display: inline-block;
      background-color: #e44d26;
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-ee88__button:hover {
      background-color: #c0391d;
    }

    /* Hero Section */
    .page-ee88__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
    }
    .page-ee88__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto; /* Centering image */
      border-radius: 8px;
    }

    .page-ee88__hero-content {
      padding: 20px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-ee88__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: #f39c12; /* Bright color for emphasis */
    }

    .page-ee88__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #eee;
    }

    /* Floating Login Button */
    .page-ee88__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #f39c12;
      color: #fff;
      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.2);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-ee88__pulse 2s infinite;
    }

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

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

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

    .page-ee88__game-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-ee88__game-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    .page-ee88__game-card-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    }

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

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

    .page-ee88__game-card-title a {
      text-decoration: none;
      color: inherit;
      transition: color 0.3s ease;
    }

    .page-ee88__game-card-title a:hover {
      color: #e44d26;
    }

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

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

    .page-ee88__provider-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        padding: 10px;
        background-color: #f2f2f2;
        border-radius: 5px;
        transition: transform 0.3s ease;
    }

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

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

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

    .page-ee88__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-ee88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #eee;
      cursor: pointer;
      font-weight: bold;
      color: #333;
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

    .page-ee88__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: #0056b3;
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-ee88__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      color: #e44d26;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-ee88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding, will change on active */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
    }

    .page-ee88__faq-item.active .page-ee88__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px !important;
      opacity: 1;
    }

    .page-ee88__faq-item.active .page-ee88__faq-question {
        background-color: #e0e0e0;
        color: #0056b3;
    }

    .page-ee88__faq-item.active .page-ee88__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar, but for - just change content */
    }

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

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

      .page-ee88__hero-subtitle {
        font-size: 1.2em;
      }

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

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

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

      .page-ee88__faq-question {
          padding: 12px 15px;
      }
      .page-ee88__faq-question h3 {
          font-size: 1.1em;
      }
      .page-ee88__faq-toggle {
          font-size: 1.5em;
      }
      .page-ee88__faq-answer {
          padding: 0 15px;
      }
      .page-ee88__faq-item.active .page-ee88__faq-answer {
          padding: 15px !important;
      }

      /* Force image responsiveness for mobile */
      .page-ee88__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-ee88__hero-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-ee88__game-card-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-ee88__game-card-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-ee88__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-ee88__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  