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

    /* General section styling */
    .page-88ac__section {
      padding: 40px 15px;
      margin-bottom: 20px;
      text-align: center;
      background-color: #000;
    }
    .page-88ac__section--dark {
        background-color: #1a1a1a;
    }

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

    .page-88ac__heading {
      font-size: 2.5em;
      color: #FFD700; /* Yellow for headings */
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-88ac__subheading {
      font-size: 1.8em;
      color: #FFF;
      margin-bottom: 15px;
    }

    .page-88ac__paragraph {
      font-size: 1em;
      color: #FFF;
      margin-bottom: 15px;
    }

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

    .page-88ac__button:hover {
      background-color: #e6c200;
      color: #333;
    }

    /* Image specific styles */
    .page-88ac img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-88ac__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

    /* Hero Section */
    .page-88ac__hero-section {
      position: relative;
      background-color: #000;
      padding-top: 120px; /* Desktop safe zone for fixed header */
      text-align: center;
      padding-bottom: 40px;
    }

    .page-88ac__hero-content {
      position: relative;
      z-index: 10;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

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

    .page-88ac__hero-description {
      font-size: 1.2em;
      color: #FFF;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-88ac__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      margin-top: 20px;
      border-radius: 0; /* Hero image usually full width, no rounded corners */
    }

    /* Floating Buttons */
    .page-88ac__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 15px 0;
      background-color: rgba(0, 0, 0, 0.9);
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      gap: 10px; /* Space between buttons */
    }

    .page-88ac__floating-button {
      flex: 1;
      text-align: center;
      padding: 15px 10px;
      border-radius: 0; /* Full width button in mobile */
      font-size: 1.1em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

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

    .page-88ac__floating-button--register:hover {
      background-color: #e6c200;
    }

    .page-88ac__floating-button--login {
      background-color: #333;
      color: #FFD700;
      border: 1px solid #FFD700;
    }

    .page-88ac__floating-button--login:hover {
      background-color: #444;
      color: #FFF;
    }

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

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

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

    .page-88ac__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistent card images */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #222;
    }

    .page-88ac__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Ensures image covers the area without distortion */
    }

    .page-88ac__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-88ac__game-card-title {
      font-size: 1.3em;
      color: #FFD700;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-88ac__game-card-title a {
      color: #FFD700;
      text-decoration: none;
    }

    .page-88ac__game-card-title a:hover {
      text-decoration: underline;
    }

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

    .page-88ac__promotion-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: left;
    }

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

    .page-88ac__promotion-card-image-wrapper {
      width: 100%;
      height: 220px;
      overflow: hidden;
    }

    .page-88ac__promotion-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

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

    .page-88ac__promotion-card-title {
      font-size: 1.4em;
      color: #FFD700;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-88ac__promotion-card-description {
      font-size: 0.95em;
      color: #CCC;
      margin-bottom: 15px;
    }

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

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

    .page-88ac__feature-icon-wrapper {
        margin-bottom: 20px;
        height: 120px; /* Ensure icon wrapper is large enough */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-88ac__feature-icon {
      width: 100px; /* Example size, ensure >200px requirement is met, this needs adjustment if it's meant to be an actual icon */
      height: 100px;
      object-fit: contain;
    }

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

    .page-88ac__feature-description {
      font-size: 1em;
      color: #CCC;
    }

    /* Game Providers */
    .page-88ac__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Smaller minmax for logos */
      gap: 20px;
      margin-top: 30px;
    }

    .page-88ac__provider-logo-wrapper {
      background-color: #1a1a1a;
      padding: 15px;
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px; /* Fixed height for consistent logo display */
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

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

    .page-88ac__provider-logo {
      width: 100%;
      height: 100%;
      object-fit: contain; /* Ensure logos fit without cropping */
      max-width: 150px;
      max-height: 50px; /* Adjust max height for logos */
    }

    /* Payment Methods */
    .page-88ac__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-88ac__payment-logo-wrapper {
      background-color: #1a1a1a;
      padding: 15px;
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 70px; /* Fixed height for payment logos */
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

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

    .page-88ac__payment-logo {
      width: 100%;
      height: 100%;
      object-fit: contain;
      max-width: 100px;
      max-height: 40px; /* Adjust max height for payment logos */
    }

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

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

    .page-88ac__faq-question:hover {
      background-color: #333;
    }

    .page-88ac__faq-question h3 {
      margin: 0;
      color: #FFD700;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from interfering with click event */
    }

    .page-88ac__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from interfering with click event */
    }

    .page-88ac__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      color: #CCC;
      font-size: 0.95em;
      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-88ac__faq-item.active .page-88ac__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important; /* Final padding */
      opacity: 1;
    }

    /* Call to Action Bottom */
    .page-88ac__cta-bottom {
      background-color: #1a1a1a;
      padding: 50px 15px;
      text-align: center;
      border-radius: 10px;
      margin-top: 40px;
    }

    .page-88ac__cta-bottom-title {
      font-size: 2em;
      color: #FFD700;
      margin-bottom: 20px;
    }

    .page-88ac__cta-bottom-description {
      font-size: 1.1em;
      color: #FFF;
      margin-bottom: 30px;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-88ac__hero-title {
        font-size: 2.5em;
      }
      .page-88ac__heading {
        font-size: 2em;
      }
      .page-88ac__subheading {
        font-size: 1.5em;
      }
    }

    @media (max-width: 768px) {
      .page-88ac__hero-section {
        padding-top: 100px; /* Mobile safe zone for fixed header */
      }
      .page-88ac__hero-title {
        font-size: 2em;
      }
      .page-88ac__hero-description {
        font-size: 1em;
      }
      .page-88ac__heading {
        font-size: 1.8em;
      }
      .page-88ac__subheading {
        font-size: 1.3em;
      }
      .page-88ac__section {
        padding: 30px 10px;
      }
      .page-88ac__container {
        padding: 0 10px;
      }
      .page-88ac__game-grid,
      .page-88ac__promotion-grid,
      .page-88ac__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-88ac__provider-grid,
      .page-88ac__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-88ac__faq-question {
        font-size: 1em;
        padding: 15px;
      }
      .page-88ac__faq-question h3 {
        font-size: 1em;
      }
      .page-88ac__faq-answer {
        padding: 0 15px;
      }
      .page-88ac__faq-item.active .page-88ac__faq-answer {
        padding: 15px !important;
      }
      .page-88ac__floating-buttons {
        padding: 10px 0;
      }
      .page-88ac__floating-button {
        padding: 12px 5px;
        font-size: 1em;
      }
      /* Image responsiveness for mobile */
      .page-88ac img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-88ac__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-88ac__hero-title {
        font-size: 1.8em;
      }
      .page-88ac__heading {
        font-size: 1.5em;
      }
      .page-88ac__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-88ac__floating-button {
        font-size: 0.9em;
      }
    }
  