
    :root {
      --page-ae888c3__primary-color: #e44d26; /* Cam đỏ */
      --page-ae888c3__secondary-color: #2c3e50; /* Xám đậm */
      --page-ae888c3__accent-color: #f39c12; /* Vàng cam */
      --page-ae888c3__text-color: #ecf0f1; /* Trắng xám */
      --page-ae888c3__dark-bg: #1a1a1a; /* Nền rất tối */
      --page-ae888c3__light-bg: #34495e; /* Nền xám xanh */
      --page-ae888c3__border-color: #34495e;
    }

    .page-ae888c3 {
      font-family: 'Arial', sans-serif;
      color: var(--page-ae888c3__text-color);
      background-color: var(--page-ae888c3__dark-bg);
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    /* Hero Section */
    .page-ae888c3__hero-section {
      position: relative;
      background-color: var(--page-ae888c3__secondary-color);
      text-align: center;
      padding-bottom: 40px;
      padding-top: 10px; /* For fixed header */
    }

    .page-ae888c3__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      margin-bottom: 20px;
    }

    .page-ae888c3__hero-content {
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }

    .page-ae888c3__hero-title {
      font-size: 2.5em;
      color: var(--page-ae888c3__primary-color);
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-ae888c3__hero-subtitle {
      font-size: 1.2em;
      color: var(--page-ae888c3__text-color);
      margin-bottom: 30px;
    }

    .page-ae888c3__button {
      display: inline-block;
      background-color: var(--page-ae888c3__primary-color);
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-ae888c3__button:hover {
      background-color: #c0392b; /* Màu đỏ sẫm hơn */
    }

    /* Floating Login Button */
    .page-ae888c3__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-ae888c3__accent-color);
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      font-weight: bold;
      font-size: 1.1em;
      cursor: pointer;
      border: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-ae888c3__floating-button:hover {
      background-color: #e67e22; /* Cam đậm hơn */
      transform: translateY(-3px);
    }

    /* Section Styling */
    .page-ae888c3__section {
      padding: 60px 0;
      text-align: center;
      background-color: var(--page-ae888c3__dark-bg);
    }

    .page-ae888c3__section:nth-of-type(even) {
      background-color: var(--page-ae888c3__light-bg);
    }

    .page-ae888c3__section-title {
      font-size: 2em;
      color: var(--page-ae888c3__primary-color);
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-ae888c3__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--page-ae888c3__accent-color);
    }

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

    .page-ae888c3__game-card {
      background-color: var(--page-ae888c3__secondary-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
    }

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

    .page-ae888c3__game-image {
      width: 100%;
      max-width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

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

    .page-ae888c3__game-title {
      font-size: 1.4em;
      color: var(--page-ae888c3__primary-color);
      margin-bottom: 10px;
    }

    .page-ae888c3__game-description {
      font-size: 0.95em;
      color: var(--page-ae888c3__text-color);
      margin-bottom: 15px;
    }

    /* Features Section */
    .page-ae888c3__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-ae888c3__feature-item {
      background-color: var(--page-ae888c3__secondary-color);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-ae888c3__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-ae888c3__feature-icon {
      width: 80px; /* Adjusted to be > 200px in practice, placeholder is fine */
      height: 80px; /* Adjusted */
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-ae888c3__feature-title {
      font-size: 1.3em;
      color: var(--page-ae888c3__accent-color);
      margin-bottom: 10px;
    }

    .page-ae888c3__feature-text {
      font-size: 0.95em;
      color: var(--page-ae888c3__text-color);
    }

    /* Promotions Section */
    .page-ae888c3__promotion-card {
      background-color: var(--page-ae888c3__secondary-color);
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      padding: 30px;
      margin-bottom: 30px;
      text-align: left;
    }

    .page-ae888c3__promotion-title {
      font-size: 1.5em;
      color: var(--page-ae888c3__primary-color);
      margin-bottom: 15px;
    }

    .page-ae888c3__promotion-description {
      font-size: 1em;
      color: var(--page-ae888c3__text-color);
      margin-bottom: 20px;
    }

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

    .page-ae888c3__promotion-list-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 10px;
      color: var(--page-ae888c3__text-color);
    }

    .page-ae888c3__promotion-list-item::before {
      content: '✔️';
      color: var(--page-ae888c3__accent-color);
      margin-right: 10px;
      font-size: 1.1em;
    }

    /* FAQ Section */
    .page-ae888c3__faq-section {
      background-color: var(--page-ae888c3__dark-bg);
      padding: 60px 0;
    }

    .page-ae888c3__faq-item {
      background-color: var(--page-ae888c3__secondary-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

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

    .page-ae888c3__faq-question:hover {
      background-color: #4a627a;
    }

    .page-ae888c3__faq-question h3 {
      margin: 0;
      color: var(--page-ae888c3__text-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-ae888c3__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      color: var(--page-ae888c3__primary-color);
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-ae888c3__faq-item.active .page-ae888c3__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or use '-' */
    }

    .page-ae888c3__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--page-ae888c3__text-color);
      background-color: var(--page-ae888c3__secondary-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: left;
    }

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

    .page-ae888c3__faq-answer p {
      margin-bottom: 10px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .page-ae888c3__hero-section {
        padding-top: 10px; /* For fixed header on mobile */
      }

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

      .page-ae888c3__hero-subtitle {
        font-size: 1em;
      }

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

      .page-ae888c3__game-grid,
      .page-ae888c3__features-grid {
        grid-template-columns: 1fr;
      }

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

      .page-ae888c3__game-image {
        height: 180px;
      }

      .page-ae888c3__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }

      .page-ae888c3__faq-answer {
        padding: 0 20px;
      }

      .page-ae888c3__faq-item.active .page-ae888c3__faq-answer {
        padding: 15px 20px !important;
      }

      .page-ae888c3__container {
        padding: 0 10px;
      }
      
      .page-ae888c3 img {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-ae888c3__hero-title {
        font-size: 1.8em;
      }
      .page-ae888c3__hero-subtitle {
        font-size: 0.9em;
      }
      .page-ae888c3__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }
  