
    /* Global styles for this page only */
    .page-88ae {
      font-family: 'Arial', sans-serif;
      background-color: #000; /* Black background */
      color: #FFF; /* White text */
      line-height: 1.6;
      overflow-x: hidden;
      padding-bottom: 120px; /* Space for floating buttons */
    }

    /* Header safety padding */
    .page-88ae__main-content-wrapper {
        padding-top: 160px; /* Desktop default for fixed header */
    }

    @media (max-width: 768px) {
        .page-88ae__main-content-wrapper {
            padding-top: 120px; /* Mobile default for fixed header */
        }
    }

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

    .page-88ae__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-88ae__section-title {
      color: #FFD700; /* Yellow title */
      font-size: 2.5em;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-88ae__text--highlight {
      color: #FFD700;
    }

    .page-88ae__button {
      display: inline-block;
      background-color: #FFD700; /* Yellow button */
      color: #000; /* Black text on button */
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-88ae__button:hover {
      background-color: #E0B400; /* Darker yellow on hover */
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-88ae__hero-section {
      background-color: #000;
      padding: 0; /* Hero image will provide visual padding */
      text-align: center;
    }

    .page-88ae__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    .page-88ae__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: contain; /* Ensure original ratio */
    }

    .page-88ae__hero-content {
        padding: 0 15px 40px;
        max-width: 800px;
        margin: 0 auto;
    }

    .page-88ae__hero-title {
      font-size: 3em;
      color: #FFD700;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-88ae__hero-subtitle {
      font-size: 1.3em;
      color: #FFF;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating Buttons */
    .page-88ae__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 90%;
      max-width: 400px;
      justify-content: center;
    }

    .page-88ae__floating-button {
      flex: 1;
      padding: 15px 10px;
      font-size: 1.1em;
      text-align: center;
      white-space: nowrap;
      border-radius: 8px;
    }

    .page-88ae__floating-button--register {
      background-color: #FFD700;
      color: #000;
    }

    .page-88ae__floating-button--login {
      background-color: #FFF;
      color: #000;
    }

    .page-88ae__floating-button--register:hover {
      background-color: #E0B400;
    }

    .page-88ae__floating-button--login:hover {
      background-color: #E0E0E0;
    }

    /* Game Categories / Product Display */
    .page-88ae__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-88ae__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

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

    .page-88ae__game-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 200px; /* Fixed height for image area */
    }

    .page-88ae__game-card-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* Cover the area, may crop */
      min-height: 200px; /* Ensure minimum size */
      min-width: 280px; /* Ensure minimum size */
    }

    .page-88ae__game-card-content {
      padding: 20px;
    }

    .page-88ae__game-card-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-88ae__game-card-description {
      color: #DDD;
      font-size: 0.95em;
    }

    /* Promotions Section */
    .page-88ae__promotions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .page-88ae__promotion-card {
        background-color: #1a1a1a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        text-align: left;
        padding: 25px;
        transition: transform 0.3s ease;
    }

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

    .page-88ae__promotion-title {
        color: #FFD700;
        font-size: 1.8em;
        margin-bottom: 10px;
    }

    .page-88ae__promotion-description {
        color: #FFF;
        margin-bottom: 15px;
    }

    /* Game Providers Section */
    .page-88ae__providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
        margin-top: 40px;
        justify-items: center;
        align-items: center;
    }

    .page-88ae__provider-logo-wrapper {
        width: 100%;
        max-width: 150px; /* Max width for logos */
        height: 80px; /* Fixed height for consistent display */
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #0d0d0d;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .page-88ae__provider-logo-wrapper:hover {
        transform: scale(1.05);
    }

    .page-88ae__provider-logo {
        max-width: 90%;
        max-height: 90%;
        height: auto;
        width: auto;
        object-fit: contain;
        filter: brightness(0.8) grayscale(0.2); /* Slightly dim for dark theme, no color change */
        transition: filter 0.3s ease;
        min-width: 120px; /* Ensure minimum size */
        min-height: 80px; /* Ensure minimum size */
    }

    .page-88ae__provider-logo:hover {
        filter: brightness(1) grayscale(0); /* Full brightness on hover */
    }

    /* Payment Methods Section */
    .page-88ae__payment-methods-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
        margin-top: 40px;
        justify-items: center;
        align-items: center;
    }

    .page-88ae__payment-logo-wrapper {
        width: 100%;
        max-width: 120px; /* Max width for logos */
        height: 60px; /* Fixed height */
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #0d0d0d;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-88ae__payment-logo {
        max-width: 80%;
        max-height: 80%;
        height: auto;
        width: auto;
        object-fit: contain;
        filter: brightness(0.8) grayscale(0.2); /* Slightly dim for dark theme, no color change */
        min-width: 100px; /* Ensure minimum size */
        min-height: 60px; /* Ensure minimum size */
    }

    /* Why Choose Us Section */
    .page-88ae__why-choose-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-88ae__why-choose-item {
        background-color: #1a1a1a;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        text-align: left;
    }

    .page-88ae__why-choose-item-title {
        color: #FFD700;
        font-size: 1.6em;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

    .page-88ae__why-choose-item-title::before {
        content: '✨'; /* Using emoji as bullet point, not a small image */
        margin-right: 10px;
        font-size: 1.2em;
    }

    .page-88ae__why-choose-item-description {
        color: #DDD;
        font-size: 1em;
    }

    /* FAQ Section */
    .page-88ae__faq-container {
      margin-top: 40px;
      text-align: left;
    }

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

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

    .page-88ae__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-88ae__faq-question h3 {
        margin: 0;
        color: inherit;
        font-size: 1em; /* Adjust to fit parent font size */
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-88ae__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #FFF;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      transition: transform 0.3s ease;
    }

    .page-88ae__faq-item.active .page-88ae__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
    }

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

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-88ae__section-title {
        font-size: 2em;
      }

      .page-88ae__hero-title {
        font-size: 2.2em;
      }

      .page-88ae__hero-subtitle {
        font-size: 1.1em;
      }

      .page-88ae__game-categories,
      .page-88ae__promotions-grid,
      .page-88ae__providers-grid,
      .page-88ae__payment-methods-grid,
      .page-88ae__why-choose-grid {
        grid-template-columns: 1fr;
      }

      .page-88ae__game-card-image-wrapper,
      .page-88ae__game-card-image {
        min-width: 100%;
      }

      .page-88ae__floating-buttons {
        width: 95%;
        gap: 10px;
      }

      .page-88ae__floating-button {
        padding: 12px 8px;
        font-size: 1em;
      }

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

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

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

      .page-88ae__provider-logo-wrapper,
      .page-88ae__payment-logo-wrapper {
        max-width: 100px;
        height: 50px;
      }

      .page-88ae__provider-logo,
      .page-88ae__payment-logo {
        min-width: 80px;
        min-height: 40px;
      }

      /* Ensure images are responsive on mobile */
      .page-88ae img {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
      .page-88ae__hero-image {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
      .page-88ae__game-card-image {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
      .page-88ae__provider-logo {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
      .page-88ae__payment-logo {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
    }
  