
    /* Reset & Base Styles */
    :root {
      --page-ae888__primary-color: #e44d26; /* Cam đỏ */
      --page-ae888__secondary-color: #333;
      --page-ae888__text-color: #333;
      --page-ae888__light-text-color: #fff;
      --page-ae888__background-color: #f8f8f8;
      --page-ae888__card-background: #fff;
      --page-ae888__border-color: #eee;
      --page-ae888__accent-color: #f7b731; /* Vàng */
    }

    .page-ae888 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-ae888__text-color);
      background-color: var(--page-ae888__background-color);
    }

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

    @media (max-width: 768px) {
      .page-ae888__container {
        padding: 10px;
      }
    }

    /* Hero Section */
    .page-ae888__hero-section {
      position: relative;
      width: 100%;
      min-height: 350px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: var(--page-ae888__light-text-color);
      overflow: hidden;
      padding-top: 10px; /* For fixed header */
      box-sizing: border-box;
    }

    .page-ae888__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* Slightly darken background image for text readability */
    }

    .page-ae888__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      max-width: 900px;
    }

    .page-ae888__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-ae888__light-text-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-ae888__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--page-ae888__light-text-color);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    @media (max-width: 768px) {
      .page-ae888__hero-section {
        min-height: 250px;
        padding-top: 10px; /* For fixed header on mobile */
      }
      .page-ae888__hero-title {
        font-size: 2em;
      }
      .page-ae888__hero-subtitle {
        font-size: 1em;
      }
    }

    /* Floating Login Button */
    .page-ae888__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-ae888__primary-color);
      color: var(--page-ae888__light-text-color);
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: block; /* Always visible */
      cursor: pointer; /* Indicate it's clickable */
      border: none; /* Ensure button has no default border */
    }

    .page-ae888__floating-button:hover {
      background-color: #d43a13;
      transform: translateY(-3px);
    }

    @media (max-width: 768px) {
      .page-ae888__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
    }

    /* Section Styling */
    .page-ae888__section {
      padding: 40px 0;
      background-color: var(--page-ae888__background-color);
    }

    .page-ae888__section--dark {
      background-color: var(--page-ae888__secondary-color);
      color: var(--page-ae888__light-text-color);
    }

    .page-ae888__section-title {
      font-size: 2.2em;
      color: var(--page-ae888__primary-color);
      text-align: center;
      margin-bottom: 30px;
    }

    .page-ae888__section--dark .page-ae888__section-title {
      color: var(--page-ae888__accent-color);
    }

    @media (max-width: 768px) {
      .page-ae888__section {
        padding: 30px 0;
      }
      .page-ae888__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }
    }

    /* Content Area */
    .page-ae888__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-ae888__text-content strong {
      color: var(--page-ae888__primary-color);
    }

    .page-ae888__list {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .page-ae888__list-item {
      background-color: var(--page-ae888__card-background);
      margin-bottom: 10px;
      padding: 15px;
      border-left: 5px solid var(--page-ae888__primary-color);
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      font-size: 1.05em;
    }
    
    .page-ae888__list-item::before {
      content: "✓";
      color: var(--page-ae888__primary-color);
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    @media (max-width: 768px) {
      .page-ae888__text-content {
        font-size: 1em;
      }
      .page-ae888__list-item {
        padding: 10px;
        font-size: 0.95em;
      }
    }

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

    .page-ae888__game-card {
      background-color: var(--page-ae888__card-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-ae888__game-card:hover {
      transform: translateY(-5px);
    }

    .page-ae888__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-ae888__game-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-ae888__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-ae888__game-card-title {
      font-size: 1.5em;
      color: var(--page-ae888__primary-color);
      margin-bottom: 10px;
    }

    .page-ae888__game-card-description {
      font-size: 0.95em;
      color: var(--page-ae888__secondary-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-ae888__game-card-button {
      display: inline-block;
      background-color: var(--page-ae888__accent-color);
      color: var(--page-ae888__text-color);
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none; /* Ensure button has no default border */
      cursor: pointer;
    }

    .page-ae888__game-card-button:hover {
      background-color: #f0a800;
    }

    @media (max-width: 768px) {
      .page-ae888__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-ae888__game-card-image {
        height: 180px;
      }
      .page-ae888__game-card-title {
        font-size: 1.3em;
      }
      .page-ae888__game-card-description {
        font-size: 0.9em;
      }
    }

    /* Promotion Section */
    .page-ae888__promotion-card {
      background: linear-gradient(135deg, var(--page-ae888__primary-color) 0%, #ff6f4d 100%);
      color: var(--page-ae888__light-text-color);
      padding: 40px;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      margin-top: 30px;
    }

    .page-ae888__promotion-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: var(--page-ae888__light-text-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-ae888__promotion-subtitle {
      font-size: 1.4em;
      margin-bottom: 25px;
      color: var(--page-ae888__light-text-color);
    }

    .page-ae888__promotion-button {
      display: inline-block;
      background-color: var(--page-ae888__accent-color);
      color: var(--page-ae888__text-color);
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none; /* Ensure button has no default border */
      cursor: pointer;
    }

    .page-ae888__promotion-button:hover {
      background-color: #f0a800;
      transform: translateY(-3px);
    }

    @media (max-width: 768px) {
      .page-ae888__promotion-card {
        padding: 30px 20px;
      }
      .page-ae888__promotion-title {
        font-size: 2em;
      }
      .page-ae888__promotion-subtitle {
        font-size: 1.2em;
      }
      .page-ae888__promotion-button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }

    /* FAQ Section */
    .page-ae888__faq-section {
      background-color: var(--page-ae888__card-background);
      padding: 40px 0;
    }

    .page-ae888__faq-item {
      margin-bottom: 10px;
      border: 1px solid var(--page-ae888__border-color);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-ae888__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f0f0f0;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-ae888__secondary-color);
      transition: background-color 0.3s ease;
    }

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

    .page-ae888__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-ae888__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      color: var(--page-ae888__primary-color);
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
      transition: transform 0.3s ease;
    }

    .page-ae888__faq-item.active .page-ae888__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-ae888__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: var(--page-ae888__card-background);
      color: var(--page-ae888__text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1em;
      line-height: 1.8;
    }

    .page-ae888__faq-item.active .page-ae888__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    @media (max-width: 768px) {
      .page-ae888__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-ae888__faq-answer {
        font-size: 0.95em;
      }
      .page-ae888__faq-item.active .page-ae888__faq-answer {
        padding: 15px 15px !important;
      }
    }

    /* General Image Responsive Styling */
    .page-ae888 img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }

    .page-ae888__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px; /* Add some space below images */
    }

    @media (max-width: 768px) {
      .page-ae888 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-ae888__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  