
    .page-ae888 {
      font-family: 'Arial', sans-serif;
      background-color: #000000;
      color: #FFFFFF;
      padding-bottom: 80px; /* Space for floating button */
    }

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

    .page-ae888__hero-section {
      position: relative;
      text-align: center;
      padding-top: 150px; /* Safe area for fixed header */
      padding-bottom: 40px;
      overflow: hidden;
    }

    .page-ae888__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-sizing: border-box;
    }

    .page-ae888__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      margin-top: -20px; /* Adjust if needed to overlap image slightly */
    }

    .page-ae888__main-heading {
      font-size: 2.8em;
      color: #FFD700;
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-ae888__sub-heading {
      font-size: 1.5em;
      color: #FFFFFF;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-ae888__promo-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 50px;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }

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

    .page-ae888__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-ae888__section-title {
      font-size: 2.2em;
      color: #FFD700;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-ae888__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #FFD700;
      border-radius: 2px;
    }

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

    .page-ae888__card {
      background-color: #1a1a1a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-ae888__card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    }

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

    .page-ae888__card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-ae888__card:hover .page-ae888__card-image {
      transform: scale(1.05);
    }

    .page-ae888__card-content {
      padding: 25px;
    }

    .page-ae888__card-title {
      font-size: 1.4em;
      color: #FFD700;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .page-ae888__card-description {
      font-size: 0.95em;
      color: #CCCCCC;
      line-height: 1.6;
    }

    .page-ae888__game-provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-ae888__provider-logo-wrapper {
      background-color: #1a1a1a;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      width: 100%;
      max-width: 160px; /* Limit max width for logos */
      box-sizing: border-box;
      height: 100px; /* Fixed height for consistency */
      display: flex;
      align-items: center;
      justify-content: center;
    }

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

    .page-ae888__provider-logo {
      width: 100%;
      height: auto;
      max-height: 70px; /* Max height for logos within wrapper */
      object-fit: contain;
    }

    .page-ae888__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 5px 20px rgba(255, 215, 0, 0.6);
      z-index: 1000;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      text-decoration: none;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }

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

    .page-ae888__floating-button-icon {
      margin-right: 8px;
      font-size: 1.3em;
    }

    .page-ae888__faq-section {
      padding: 60px 0;
      text-align: center;
    }

    .page-ae888__faq-list {
      max-width: 800px;
      margin: 40px auto 0 auto;
      text-align: left;
    }

    .page-ae888__faq-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    }

    .page-ae888__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #222222;
      color: #FFD700;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

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

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

    .page-ae888__faq-item.active .page-ae888__faq-toggle {
      transform: rotate(45deg);
    }

    .page-ae888__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #CCCCCC;
      font-size: 1em;
      line-height: 1.6;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-ae888__social-section {
      padding: 60px 0;
      text-align: center;
    }

    .page-ae888__social-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-ae888__social-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 15px 25px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #FFFFFF;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }

    .page-ae888__social-item:hover {
      background-color: #FFD700;
      color: #000000;
      transform: translateY(-5px);
    }

    .page-ae888__social-icon {
      font-size: 1.5em;
      color: #FFD700; /* Default icon color */
    }

    .page-ae888__social-item:hover .page-ae888__social-icon {
      color: #000000; /* Icon color on hover */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-ae888__hero-section {
        padding-top: 150px; /* Safe area for fixed header on mobile */
      }

      .page-ae888__main-heading {
        font-size: 2em;
      }

      .page-ae888__sub-heading {
        font-size: 1.2em;
      }

      .page-ae888__promo-button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

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

      .page-ae888__card-image-wrapper img,
      .page-ae888__provider-logo-wrapper img {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important;
      }
      .page-ae888__card-image-wrapper,
      .page-ae888__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

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

      .page-ae888__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

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

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

      .page-ae888__social-item {
        font-size: 1em;
        padding: 12px 20px;
      }
    }
  