
    /* Tổng quan */
    .page-ae888casino {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f0f2f5;
    }

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

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

    .page-ae888casino__heading {
      color: #0a0a0a;
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: 700;
    }

    .page-ae888casino__subheading {
      color: #1a1a1a;
      margin-bottom: 20px;
      font-size: 1.8em;
      font-weight: 600;
      text-align: center;
    }

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

    .page-ae888casino__button {
      display: inline-block;
      background-color: #e44d26; /* Màu cam đỏ */
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
      text-align: center;
    }

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

    /* Hero Section */
    .page-ae888casino__hero-section {
      padding-top: 10px; /* Cho desktop */
      text-align: center;
      margin-bottom: 25px;
      position: relative;
      overflow: hidden;
    }

    .page-ae888casino__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      display: block;
      margin: 0 auto;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-ae888casino__hero-content {
      position: relative; /* Đảm bảo nội dung không bị ảnh hưởng bởi ảnh nền */
      padding: 20px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,1));
      border-radius: 0 0 10px 10px;
      margin-top: -10px; /* Kéo lên một chút để liên kết với ảnh */
    }

    .page-ae888casino__hero-title {
      color: #e44d26;
      font-size: 3em;
      margin-top: 20px;
      margin-bottom: 15px;
      font-weight: 800;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    }

    .page-ae888casino__hero-description {
      font-size: 1.3em;
      color: #555;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating Login/Register Button */
    .page-ae888casino__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-ae888casino__floating-button {
      background-color: #007bff; /* Màu xanh dương */
      color: #fff;
      padding: 12px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      font-size: 1.1em;
      white-space: nowrap; /* Ngăn nút bị ngắt dòng */
    }

    .page-ae888casino__floating-button--register {
      background-color: #28a745; /* Màu xanh lá */
    }

    .page-ae888casino__floating-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }
    .page-ae888casino__floating-button--register:hover {
        background-color: #218838;
    }
    .page-ae888casino__floating-button--login:hover {
        background-color: #0056b3;
    }

    /* Games Section */
    .page-ae888casino__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-ae888casino__game-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-ae888casino__game-image-container {
      width: 100%;
      height: 200px; /* Fixed height for images */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #eee;
    }

    .page-ae888casino__game-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* Đảm bảo ảnh không bị méo */
      min-width: 200px; /* Tối thiểu 200px */
      min-height: 200px; /* Tối thiểu 200px */
    }

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

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

    .page-ae888casino__game-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1; /* Để mô tả chiếm không gian còn lại */
    }

    /* Promotions Section */
    .page-ae888casino__promo-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      padding: 20px;
      background-color: #fefefe;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .page-ae888casino__promo-image-container {
      flex-shrink: 0;
      width: 150px;
      height: 100px;
      margin-right: 20px;
      overflow: hidden;
      border-radius: 5px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #eee;
    }

    .page-ae888casino__promo-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      min-width: 200px; /* Tối thiểu 200px */
      min-height: 200px; /* Tối thiểu 200px */
    }

    .page-ae888casino__promo-content {
      flex-grow: 1;
    }

    .page-ae888casino__promo-title {
      font-size: 1.4em;
      color: #e44d26;
      margin-bottom: 8px;
    }

    .page-ae888casino__promo-description {
      font-size: 1em;
      color: #555;
    }

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

    .page-ae888casino__provider-logo-container {
      width: 100%;
      max-width: 120px; /* Kích thước tối đa cho logo */
      height: 80px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #f0f0f0;
      border-radius: 5px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-ae888casino__provider-logo {
      max-width: 90%;
      max-height: 90%;
      height: auto;
      object-fit: contain;
      min-width: 200px; /* Tối thiểu 200px */
      min-height: 200px; /* Tối thiểu 200px */
    }

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

    .page-ae888casino__advantage-item {
      background-color: #fefefe;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-ae888casino__advantage-title {
      font-size: 1.3em;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-ae888casino__advantage-description {
      color: #666;
      font-size: 1em;
    }

    .page-ae888casino__advantage-icon {
        width: 60px; /* Kích thước lớn hơn cho biểu tượng */
        height: 60px;
        margin-bottom: 15px;
        object-fit: contain;
        min-width: 200px; /* Tối thiểu 200px */
        min-height: 200px; /* Tối thiểu 200px */
    }

    /* FAQ Section */
    .page-ae888casino__faq-list {
      list-style: none;
      padding: 0;
    }

    .page-ae888casino__faq-item {
      background-color: #fefefe;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      overflow: hidden;
    }

    .page-ae888casino__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #e44d26;
      color: #fff;
      font-weight: bold;
      font-size: 1.1em;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      transition: background-color 0.3s ease;
    }

    .page-ae888casino__faq-question:hover {
      background-color: #f76c4a;
    }

    .page-ae888casino__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      color: #fff; /* Đảm bảo màu chữ trắng */
    }

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

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

    .page-ae888casino__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fcfcfc;
      color: #333;
    }

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

    /* Keyword Anchor Section */
    .page-ae888casino__keyword-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-top: 30px;
    }

    .page-ae888casino__keyword-link {
      background-color: #007bff;
      color: #fff;
      padding: 8px 15px;
      border-radius: 20px;
      text-decoration: none;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .page-ae888casino__keyword-link:hover {
      background-color: #0056b3;
    }


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

      .page-ae888casino__hero-section {
        padding-top: 10px; /* Cho mobile */
      }

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

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

      .page-ae888casino__heading {
        font-size: 2em;
        margin-bottom: 20px;
      }

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

      .page-ae888casino__section {
        padding: 20px;
      }

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

      .page-ae888casino__promo-item {
        flex-direction: column;
        text-align: center;
      }

      .page-ae888casino__promo-image-container {
        width: 100%;
        height: 150px;
        margin-right: 0;
        margin-bottom: 15px;
      }

      .page-ae888casino__promo-image {
        max-width: 100% !important;
        height: auto !important;
        min-width: unset !important;
        min-height: unset !important;
      }

      .page-ae888casino__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      }

      .page-ae888casino__provider-logo-container {
        max-width: 100px;
        height: 60px;
      }

      .page-ae888casino__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        min-width: unset !important;
        min-height: unset !important;
      }

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

      .page-ae888casino__advantage-icon {
        max-width: 100% !important;
        height: auto !important;
        min-width: unset !important;
        min-height: unset !important;
      }

      .page-ae888casino__game-image {
        max-width: 100% !important;
        height: auto !important;
        min-width: unset !important;
        min-height: unset !important;
      }

      /* Ensure all images are responsive on mobile */
      .page-ae888casino img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
      .page-ae888casino__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        bottom: 10px;
        right: 10px;
        left: 10px;
        justify-content: space-around;
        gap: 5px;
      }
      .page-ae888casino__floating-button {
        flex: 1;
        font-size: 1em;
        padding: 10px 15px;
      }
    }
  