
    :root {
      --page-ae888-primary-color: #e44d26;
      --page-ae888-secondary-color: #f39c12;
      --page-ae888-text-color: #333;
      --page-ae888-light-text-color: #666;
      --page-ae888-background-color: #f9f9f9;
      --page-ae888-card-background: #ffffff;
      --page-ae888-border-color: #eee;
      --page-ae888-header-height-desktop: 120px;
      --page-ae888-header-height-mobile: 100px;
    }

    .page-ae888 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-ae888-text-color);
      background-color: var(--page-ae888-background-color);
      padding-bottom: 80px; /* Space for floating button */
    }

    .page-ae888__hero-section {
      text-align: center;
      padding: var(--page-ae888-header-height-desktop) 0 40px; /* Adjust for fixed header */
      background-color: #2c3e50;
      color: #fff;
      position: relative;
    }
    @media (max-width: 768px) {
      .page-ae888__hero-section {
        padding-top: var(--page-ae888-header-height-mobile); /* Adjust for fixed header on mobile */
      }
    }

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

    .page-ae888__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
    }
    @media (max-width: 768px) {
      .page-ae888__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    .page-ae888__hero-content {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-ae888__main-heading {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    @media (max-width: 768px) {
      .page-ae888__main-heading {
        font-size: 2em;
      }
    }

    .page-ae888__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }
    @media (max-width: 768px) {
      .page-ae888__hero-description {
        font-size: 1em;
      }
    }

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

    .page-ae888__button:hover {
      background-color: #c0392b;
    }

    .page-ae888__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }
    @media (max-width: 768px) {
      .page-ae888__section {
        padding: 40px 15px;
      }
    }

    .page-ae888__section--dark {
      background-color: #34495e;
      color: #fff;
    }

    .page-ae888__section-title {
      font-size: 2.2em;
      margin-bottom: 30px;
      color: var(--page-ae888-text-color);
      position: relative;
      padding-bottom: 10px;
    }
    .page-ae888__section-title--light {
      color: #fff;
    }
    .page-ae888__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-ae888-primary-color);
      border-radius: 2px;
    }
    @media (max-width: 768px) {
      .page-ae888__section-title {
        font-size: 1.8em;
      }
    }

    .page-ae888__text-block {
      font-size: 1.1em;
      margin-bottom: 25px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
      color: var(--page-ae888-light-text-color);
    }
    .page-ae888__text-block--light {
      color: #e0e0e0;
    }
    @media (max-width: 768px) {
      .page-ae888__text-block {
        font-size: 1em;
      }
    }

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

    .page-ae888__card {
      background-color: var(--page-ae888-card-background);
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      padding: 30px;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-ae888__card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    .page-ae888__card-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-ae888__card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      border-radius: 8px;
    }
    @media (max-width: 768px) {
      .page-ae888__card-image {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    .page-ae888__card-title {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: var(--page-ae888-primary-color);
      text-align: center;
    }
    .page-ae888__card-title a {
      color: var(--page-ae888-primary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .page-ae888__card-title a:hover {
      color: #c0392b;
    }

    .page-ae888__card-text {
      font-size: 0.95em;
      color: var(--page-ae888-light-text-color);
      text-align: center;
      flex-grow: 1;
    }

    .page-ae888__game-provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
    }
    @media (max-width: 768px) {
      .page-ae888__game-provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
      }
    }

    .page-ae888__provider-item {
      background-color: var(--page-ae888-card-background);
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
      width: 100%;
      max-width: 150px; /* Constrain provider logo size */
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
    }

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

    .page-ae888__provider-logo {
      width: 100%;
      height: auto;
      max-width: 100px; /* Ensure logos fit */
      max-height: 80px;
      object-fit: contain;
    }
    @media (max-width: 768px) {
      .page-ae888__provider-logo {
        max-width: 80px !important;
        height: auto !important;
      }
    }

    .page-ae888__list {
      list-style: none;
      padding: 0;
      text-align: left;
      max-width: 800px;
      margin: 30px auto;
    }

    .page-ae888__list-item {
      background-color: var(--page-ae888-card-background);
      margin-bottom: 15px;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .page-ae888__list-item-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      background-color: var(--page-ae888-primary-color);
      color: #fff;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5em;
      font-weight: bold;
    }

    .page-ae888__list-item-content {
      flex-grow: 1;
    }

    .page-ae888__list-item-title {
      font-size: 1.2em;
      color: var(--page-ae888-primary-color);
      margin-top: 0;
      margin-bottom: 5px;
    }

    .page-ae888__list-item-text {
      font-size: 0.95em;
      color: var(--page-ae888-light-text-color);
    }

    .page-ae888__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-ae888-secondary-color);
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }

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

    .page-ae888__floating-button-icon {
      font-size: 1.3em;
    }

    /* FAQ Section Styles */
    .page-ae888__faq-section {
      text-align: center;
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
    }
    @media (max-width: 768px) {
      .page-ae888__faq-section {
        padding: 40px 15px;
      }
    }

    .page-ae888__faq-item {
      background-color: var(--page-ae888-card-background);
      border: 1px solid var(--page-ae888-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }

    .page-ae888__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #fcfcfc;
      border-bottom: 1px solid var(--page-ae888-border-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }
    .page-ae888__faq-question:hover {
      background-color: #f0f0f0;
    }
    .page-ae888__faq-item.active .page-ae888__faq-question {
      background-color: #f0f0f0;
      border-bottom-color: transparent;
    }

    .page-ae888__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: var(--page-ae888-text-color);
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
      text-align: left;
    }
    @media (max-width: 768px) {
      .page-ae888__faq-question h3 {
        font-size: 1em;
      }
    }

    .page-ae888__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-ae888-primary-color);
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }
    .page-ae888__faq-item.active .page-ae888__faq-toggle {
      transform: rotate(45deg);
    }

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

    .page-ae888__faq-item.active .page-ae888__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important;
      opacity: 1;
    }
    @media (max-width: 768px) {
      .page-ae888__faq-answer {
        padding: 0 15px;
      }
      .page-ae888__faq-item.active .page-ae888__faq-answer {
        padding: 20px 15px !important;
      }
    }

    .page-ae888__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
    }

    /* General responsive image rule */
    .page-ae888 img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    @media (max-width: 768px) {
      .page-ae888 img {
        max-width: 100% !important;
        height: auto !important;
      }
    }
    .page-ae888__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }
  