
    /* Tổng quan */
    .page-ae888daga {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 80px; /* Cho nút nổi */
    }

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

    .page-ae888daga__section {
      background-color: #ffffff;
      margin-bottom: 25px;
      padding: 30px 20px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .page-ae888daga__section-title {
      color: #c0392b; /* Đỏ sẫm */
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.2em;
      font-weight: bold;
      position: relative;
      padding-bottom: 15px;
    }

    .page-ae888daga__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #e74c3c; /* Đỏ tươi */
      border-radius: 2px;
    }

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

    /* Hình ảnh */
    .page-ae888daga img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-ae888daga img:hover {
      transform: scale(1.02);
    }

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

    /* Hero Section */
    .page-ae888daga__hero-section {
      background: linear-gradient(135deg, #e74c3c, #c0392b); /* Gradient đỏ */
      color: #fff;
      padding: 10px 0 50px; /* padding-top để tránh header cố định */
      text-align: center;
      margin-bottom: 25px;
      border-radius: 0 0 15px 15px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-ae888daga__hero-image {
      width: 100%;
      max-height: 450px; /* Chiều cao tối đa cho banner */
      object-fit: cover;
      margin-bottom: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-ae888daga__hero-content {
      padding: 0 20px;
    }

    .page-ae888daga__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      font-weight: 900;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-ae888daga__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    /* Nút CTA nổi */
    .page-ae888daga__floating-cta {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #27ae60; /* Xanh lá */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.3em;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
      z-index: 1000;
      transition: all 0.3s ease;
      animation: pulse 2s infinite;
      display: flex;
      align-items: center;
      white-space: nowrap; /* Ngăn chặn xuống dòng */
    }

    .page-ae888daga__floating-cta:hover {
      background-color: #2ecc71; /* Xanh lá nhạt hơn */
      transform: translateX(-50%) scale(1.05);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    }

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

    /* Nút chung */
    .page-ae888daga__button {
      display: inline-block;
      background-color: #e74c3c;
      color: #fff;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      font-size: 1.1em;
    }

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

    /* Danh sách tính năng/trò chơi */
    .page-ae888daga__feature-list,
    .page-ae888daga__game-grid,
    .page-ae888daga__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 20px;
    }

    .page-ae888daga__feature-item,
    .page-ae888daga__game-card,
    .page-ae888daga__provider-card {
      background-color: #fcfcfc;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-ae888daga__feature-item:hover,
    .page-ae888daga__game-card:hover,
    .page-ae888daga__provider-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .page-ae888daga__feature-item img,
    .page-ae888daga__game-card img,
    .page-ae888daga__provider-card img {
      width: 100%;
      height: 200px; /* Kích thước tối thiểu cho hình ảnh */
      object-fit: contain; /* Để logo không bị biến dạng */
      margin-bottom: 15px;
      border-radius: 5px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .page-ae888daga__provider-card img {
      height: 120px; /* Logo nhà cung cấp có thể nhỏ hơn một chút */
      object-fit: contain;
    }

    .page-ae888daga__feature-item h3,
    .page-ae888daga__game-card h3 {
      font-size: 1.4em;
      color: #34495e;
      margin-bottom: 10px;
    }

    .page-ae888daga__feature-item p,
    .page-ae888daga__game-card p {
      font-size: 0.95em;
      color: #555;
    }

    /* Hướng dẫn */
    .page-ae888daga__guide-steps {
      counter-reset: step-counter;
      list-style: none;
      padding: 0;
    }

    .page-ae888daga__guide-steps li {
      background-color: #fefefe;
      margin-bottom: 15px;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: flex-start;
      position: relative;
    }

    .page-ae888daga__guide-steps li::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      background-color: #e74c3c;
      color: #fff;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
      margin-right: 15px;
      flex-shrink: 0;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-ae888daga__guide-steps h3 {
      color: #2c3e50;
      margin-top: 0;
      margin-bottom: 8px;
      font-size: 1.3em;
    }

    .page-ae888daga__guide-steps p {
      color: #666;
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-ae888daga__faq-section {
      padding: 30px 20px;
      background-color: #ffffff;
      margin-bottom: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .page-ae888daga__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
    }

    .page-ae888daga__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-ae888daga__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      color: #34495e;
      font-weight: bold;
      font-size: 1.1em;
      transition: color 0.3s ease;
    }

    .page-ae888daga__faq-question:hover {
      color: #e74c3c;
    }

    .page-ae888daga__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      flex-grow: 1;
    }

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

    .page-ae888daga__faq-item.active .page-ae888daga__faq-toggle {
      transform: rotate(45deg); /* Để dấu + thành x hoặc - */
    }

    .page-ae888daga__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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;
      font-size: 0.95em;
    }

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

    /* Responsive */
    @media (max-width: 768px) {
      .page-ae888daga__hero-title {
        font-size: 2.2em;
      }

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

      .page-ae888daga__section-title {
        font-size: 1.8em;
      }

      .page-ae888daga__feature-list,
      .page-ae888daga__game-grid,
      .page-ae888daga__provider-grid {
        grid-template-columns: 1fr;
      }

      .page-ae888daga__floating-cta {
        width: calc(100% - 40px);
        font-size: 1.1em;
        padding: 12px 20px;
        bottom: 15px;
      }

      .page-ae888daga__section {
        padding: 20px 15px;
      }

      .page-ae888daga__faq-question {
        font-size: 1em;
      }

      .page-ae888daga__faq-question h3 {
        font-size: 1em;
      }

      .page-ae888daga__faq-answer {
        padding: 0 10px;
      }

      .page-ae888daga__faq-item.active .page-ae888daga__faq-answer {
        padding: 15px 10px !important;
      }

      /* Đảm bảo hình ảnh responsive trên mobile */
      .page-ae888daga__image-wrapper img,
      .page-ae888daga__hero-image,
      .page-ae888daga__feature-item img,
      .page-ae888daga__game-card img,
      .page-ae888daga__provider-card img {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-ae888daga__image-wrapper,
      .page-ae888daga__feature-item,
      .page-ae888daga__game-card,
      .page-ae888daga__provider-card {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }
  