
    .page-88aa {
      font-family: Arial, sans-serif;
      background-color: #000000;
      color: #FFFFFF;
      line-height: 1.6;
      padding-bottom: 50px; /* Đảm bảo có khoảng trống cho footer */
      overflow-x: hidden;
    }

    .page-88aa__section {
      padding: 40px 15px;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-88aa__section--dark {
      background-color: #1a1a1a;
    }

    .page-88aa__section-title {
      color: #FFD700;
      font-size: 2.2em;
      margin-bottom: 25px;
      font-weight: bold;
      text-transform: uppercase;
    }

    .page-88aa__section-subtitle {
      color: #FFFFFF;
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    /* Hero Section */
    .page-88aa__hero-section {
      position: relative;
      background-color: #000000;
      padding-top: 140px; /* Safe zone cho header cố định */
      padding-bottom: 40px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 400px;
    }

    .page-88aa__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    }

    .page-88aa__hero-title {
      color: #FFD700;
      font-size: 2.8em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    }

    .page-88aa__hero-description {
      color: #FFFFFF;
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 15px;
    }

    .page-88aa__cta-button {
      display: inline-block;
      background: linear-gradient(90deg, #FFD700, #FFA500);
      color: #000000;
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
      border: none;
      cursor: pointer;
    }

    .page-88aa__cta-button:hover {
      background: linear-gradient(90deg, #FFA500, #FFD700);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
    }

    /* Giới Thiệu Section */
    .page-88aa__intro-text {
      font-size: 1.1em;
      max-width: 900px;
      margin: 0 auto 30px auto;
      padding: 0 15px;
      color: #E0E0E0;
    }

    /* Game List Section */
    .page-88aa__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-88aa__game-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-88aa__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    }

    .page-88aa__game-image {
      width: 100%;
      height: 150px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      border-bottom: 2px solid #FFD700;
    }

    .page-88aa__game-title {
      font-size: 1.1em;
      color: #FFD700;
      padding: 15px 10px;
      text-decoration: none;
      display: block;
      font-weight: bold;
    }

    .page-88aa__game-title:hover {
      color: #FFA500;
    }

    /* Providers Section */
    .page-88aa__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-88aa__provider-logo {
      width: 100%;
      height: auto;
      max-width: 150px;
      display: block;
      margin: 0 auto;
      padding: 10px;
      background-color: #2a2a2a;
      border-radius: 8px;
      transition: transform 0.3s ease;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-88aa__provider-logo:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
    }

    /* Benefits Section */
    .page-88aa__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-88aa__benefit-item {
      background-color: #1a1a1a;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease;
      border-left: 5px solid #FFD700;
    }

    .page-88aa__benefit-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    }

    .page-88aa__benefit-title {
      color: #FFD700;
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-88aa__benefit-description {
      color: #E0E0E0;
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-88aa__faq-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 15px;
      text-align: left;
    }

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

    .page-88aa__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #2a2a2a;
      color: #FFD700;
      cursor: pointer;
      font-size: 1.1em;
      font-weight: bold;
      border-bottom: 1px solid #333;
      transition: background-color 0.3s ease;
    }

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

    .page-88aa__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
    }

    .page-88aa__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      color: #FFD700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

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

    .page-88aa__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #E0E0E0;
      background-color: #1a1a1a;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-88aa__hero-title {
        font-size: 2.5em;
      }
      .page-88aa__section-title {
        font-size: 2em;
      }
      .page-88aa__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      }
      .page-88aa__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-88aa__hero-section {
        padding-top: 100px; /* Mobile safe zone */
        min-height: 350px;
      }
      .page-88aa__hero-title {
        font-size: 2em;
      }
      .page-88aa__hero-description {
        font-size: 1em;
      }
      .page-88aa__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }
      .page-88aa__section-title {
        font-size: 1.8em;
      }
      .page-88aa__section-subtitle {
        font-size: 1em;
      }
      .page-88aa__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
      }
      .page-88aa__game-image {
        height: 120px;
      }
      .page-88aa__game-title {
        font-size: 1em;
        padding: 10px 5px;
      }
      .page-88aa__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 15px;
      }
      .page-88aa__benefit-item {
        padding: 20px;
      }
      .page-88aa__benefit-title {
        font-size: 1.2em;
      }
      .page-88aa__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }
      .page-88aa__faq-answer {
        padding: 0 20px;
      }
      .page-88aa__faq-item.active .page-88aa__faq-answer {
        padding: 15px 20px !important;
      }
      .page-88aa__faq-toggle {
        font-size: 1.2em;
      }
      /* Responsive images for mobile */
      .page-88aa img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-88aa__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-88aa__game-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-88aa__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-88aa__hero-title {
        font-size: 1.8em;
      }
      .page-88aa__section-title {
        font-size: 1.6em;
      }
      .page-88aa__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-88aa__cta-button {
        font-size: 1em;
        padding: 10px 25px;
      }
    }
  