
    .page-ae888ong {
      background-color: #000;
      color: #fff;
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
    }

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

    .page-ae888ong__hero-section {
      text-align: center;
      padding-top: 100px; /* For mobile fixed header */
      padding-bottom: 40px;
      position: relative;
      overflow: hidden;
      background-color: #1a1a1a;
    }

    @media (min-width: 768px) {
      .page-ae888ong__hero-section {
        padding-top: 120px; /* For desktop fixed header */
      }
    }

    .page-ae888ong__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      object-fit: cover;
    }

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

    .page-ae888ong__main-heading {
      color: #ffcc00;
      font-size: 2.5em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    @media (max-width: 768px) {
      .page-ae888ong__main-heading {
        font-size: 1.8em;
      }
    }

    .page-ae888ong__hero-description {
      color: #e0e0e0;
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-ae888ong__promotion-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #000;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
      animation: page-ae888ong__pulse 2s infinite;
    }

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

    @keyframes page-ae888ong__pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
      100% {
        transform: scale(1);
      }
    }

    .page-ae888ong__floating-button-wrapper {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        width: 90%;
        max-width: 400px;
        text-align: center;
    }

    .page-ae888ong__floating-button {
        display: block;
        width: 100%;
        background-color: #007bff; /* Blue for login */
        color: #fff;
        padding: 15px 20px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 1.1em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        background: linear-gradient(90deg, #ffcc00 0%, #ff9900 100%); /* Yellow/Orange gradient for promotion */
        color: #000;
        animation: page-ae888ong__shake 0.8s infinite alternate;
    }

    .page-ae888ong__floating-button:hover {
        background: linear-gradient(90deg, #ffe066 0%, #ffb366 100%);
        transform: translateY(-2px);
    }

    @keyframes page-ae888ong__shake {
        0% { transform: translateX(-50%) rotate(0deg); }
        25% { transform: translateX(-52%) rotate(-1deg); }
        50% { transform: translateX(-48%) rotate(1deg); }
        75% { transform: translateX(-52%) rotate(-1deg); }
        100% { transform: translateX(-50%) rotate(0deg); }
    }

    .page-ae888ong__section {
      padding: 60px 0;
      text-align: center;
      background-color: #111;
      border-top: 1px solid #333;
    }

    .page-ae888ong__section:nth-of-type(odd) {
      background-color: #0a0a0a;
    }

    .page-ae888ong__section-title {
      color: #ffcc00;
      font-size: 2em;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
    }

    .page-ae888ong__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #ffcc00;
      border-radius: 2px;
    }

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

    .page-ae888ong__card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      border: 1px solid #333;
    }

    .page-ae888ong__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 204, 0, 0.2);
    }

    .page-ae888ong__card-image {
      width: 100%;
      max-width: 300px;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      object-fit: cover;
      border: 2px solid #333;
    }

    .page-ae888ong__card-title {
      color: #ffcc00;
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-ae888ong__card-text {
      color: #ccc;
      font-size: 0.95em;
    }

    .page-ae888ong__game-providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }

    .page-ae888ong__provider-logo-wrapper {
        background-color: #1a1a1a;
        padding: 15px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #333;
    }

    .page-ae888ong__provider-logo-wrapper:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(255, 204, 0, 0.2);
    }

    .page-ae888ong__provider-logo {
        max-width: 100px;
        max-height: 60px;
        height: auto;
        width: auto;
        object-fit: contain;
        filter: grayscale(20%);
        transition: filter 0.3s ease;
    }

    .page-ae888ong__provider-logo:hover {
        filter: grayscale(0%);
    }

    .page-ae888ong__game-rankings-list {
        list-style: none;
        padding: 0;
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-ae888ong__ranking-item {
        background-color: #1a1a1a;
        padding: 15px 20px;
        border-radius: 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        border: 1px solid #333;
    }

    .page-ae888ong__ranking-item-number {
        background-color: #ffcc00;
        color: #000;
        font-weight: bold;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .page-ae888ong__ranking-item-name {
        color: #fff;
        font-size: 1.1em;
        flex-grow: 1;
        text-align: left;
    }

    .page-ae888ong__ranking-item-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-ae888ong__ranking-item-link:hover {
        background-color: #0056b3;
    }

    .page-ae888ong__faq-section {
      background-color: #111;
      padding: 60px 0;
      border-top: 1px solid #333;
    }

    .page-ae888ong__faq-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-ae888ong__faq-title {
      color: #ffcc00;
      font-size: 2em;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
      width: 100%;
    }

    .page-ae888ong__faq-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #ffcc00;
      border-radius: 2px;
    }

    .page-ae888ong__faq-item {
      background-color: #1a1a1a;
      border: 1px solid #333;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

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

    .page-ae888ong__faq-question:hover {
      background-color: #2a2a2a;
    }

    .page-ae888ong__faq-question h3 {
        margin: 0;
        color: #ffcc00;
        pointer-events: none; /* Prevent h3 from blocking click event */
        flex-grow: 1;
        text-align: left;
    }

    .page-ae888ong__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      color: #fff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-ae888ong__faq-item.active .page-ae888ong__faq-toggle {
      transform: rotate(45deg); /* Visually change + to x or - */
    }

    .page-ae888ong__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #ccc;
      background-color: #1a1a1a;
      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-ae888ong__faq-item.active .page-ae888ong__faq-answer {
      max-height: 2000px !important; /* Sufficiently large for content */
      padding: 20px !important;
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-ae888ong__container {
        padding: 15px;
      }
      .page-ae888ong__main-heading {
        font-size: 2em;
      }
      .page-ae888ong__hero-description {
        font-size: 1em;
      }
      .page-ae888ong__promotion-button,
      .page-ae888ong__floating-button {
        font-size: 1em;
        padding: 12px 25px;
      }
      .page-ae888ong__section {
        padding: 40px 0;
      }
      .page-ae888ong__section-title,
      .page-ae888ong__faq-title {
        font-size: 1.8em;
      }
      .page-ae888ong__grid {
        grid-template-columns: 1fr;
      }
      .page-ae888ong__card {
        padding: 20px;
      }
      .page-ae888ong__card-title {
        font-size: 1.2em;
      }
      .page-ae888ong__faq-question {
        padding: 15px;
        font-size: 1em;
      }
      .page-ae888ong__faq-answer {
        padding: 0 15px;
      }
      .page-ae888ong__faq-item.active .page-ae888ong__faq-answer {
        padding: 15px !important;
      }
      .page-ae888ong__game-providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
      }
      .page-ae888ong__provider-logo {
        max-width: 80px;
        max-height: 50px;
      }
      .page-ae888ong__ranking-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 15px;
      }
      .page-ae888ong__ranking-item-number {
        margin-bottom: 10px;
      }
      .page-ae888ong__ranking-item-link {
        margin-top: 10px;
        align-self: flex-end;
      }
    }

    /* Image responsive optimization */
    .page-ae888ong img {
      max-width: 100%;
      height: auto;
    }
    .page-ae888ong__card-image,
    .page-ae888ong__hero-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        overflow: hidden;
        box-sizing: border-box;
    }

    @media (max-width: 768px) {
        .page-ae888ong img {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-ae888ong__card-image,
        .page-ae888ong__hero-image {
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }
  