
    /* CSS Styles for acb888 page */
    .page-acb888 {
      font-family: 'Arial', sans-serif;
      background-color: #000; /* Black background */
      color: #FFF; /* White text */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for potential floating button at bottom */
    }

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

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

    .page-acb888__section--dark {
      background-color: #1a1a1a;
    }

    .page-acb888__hero-section {
      position: relative;
      padding-top: 10px; /* Required padding for fixed header */
      text-align: center;
      color: #FFF;
      overflow: hidden; /* Ensure content doesn't bleed */
    }

    .page-acb888__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-height: 500px; /* Limit hero image height for better mobile experience */
      margin-bottom: 20px;
    }

    .page-acb888__logo {
      width: 100%;
      max-width: 250px; /* Adjust logo size */
      height: auto;
      margin: 20px auto;
      display: block;
    }

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

    .page-acb888__hero-title {
      font-size: 2.5em;
      color: #FFD700; /* Yellow for titles */
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-acb888__hero-subtitle {
      font-size: 1.2em;
      color: #FFF;
      margin-bottom: 30px;
    }

    .page-acb888__button {
      display: inline-block;
      background-color: #FFD700; /* Yellow button */
      color: #000;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      margin-top: 20px;
    }

    .page-acb888__button:hover {
      background-color: #e0b800;
      transform: translateY(-2px);
    }

    .page-acb888__title {
      font-size: 2em;
      color: #FFD700;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-acb888__title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #FFD700;
    }

    .page-acb888__text {
      font-size: 1em;
      color: #FFF;
      margin-bottom: 20px;
    }

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

    .page-acb888__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-acb888__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-acb888__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-acb888__game-title {
      font-size: 1.3em;
      color: #FFD700;
      margin: 15px 0 10px;
      padding: 0 15px;
    }

    .page-acb888__game-description {
      font-size: 0.9em;
      color: #AAA;
      padding: 0 15px;
    }

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

    .page-acb888__provider-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 120px;
      transition: transform 0.3s ease;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-acb888__provider-item:hover {
      transform: translateY(-3px);
    }

    .page-acb888__provider-logo {
      max-width: 100px; /* Max width for game provider logos */
      height: auto;
      display: block;
      margin-bottom: 10px;
    }

    .page-acb888__provider-name {
      font-size: 0.9em;
      color: #FFF;
      text-align: center;
    }

    .page-acb888__guide-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      text-align: left;
    }

    .page-acb888__guide-item {
      background-color: #1a1a1a;
      border-left: 5px solid #FFD700;
      padding: 20px;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-acb888__guide-title {
      color: #FFD700;
      font-size: 1.2em;
      margin-bottom: 10px;
    }

    .page-acb888__guide-text {
      color: #FFF;
      font-size: 0.95em;
    }

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

    .page-acb888__advantage-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-acb888__advantage-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-acb888__advantage-icon {
      width: 80px;
      height: auto;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-acb888__advantage-title {
      font-size: 1.3em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-acb888__advantage-description {
      font-size: 0.95em;
      color: #AAA;
    }

    /* FAQ Section Styles */
    .page-acb888__faq-section {
      background-color: #000;
      padding: 60px 0;
      color: #FFF;
    }

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

    .page-acb888__faq-title {
      font-size: 2em;
      color: #FFD700;
      margin-bottom: 40px;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }

    .page-acb888__faq-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #FFD700;
    }

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

    .page-acb888__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: #333;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      color: #FFD700;
      border-bottom: 1px solid #444;
      transition: background-color 0.3s ease;
    }

    .page-acb888__faq-question:hover {
      background-color: #444;
    }

    .page-acb888__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #FFD700;
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-acb888__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #FFD700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event on parent */
    }

    .page-acb888__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #1a1a1a;
      color: #AAA;
      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;
    }

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

    .page-acb888__faq-item.active .page-acb888__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar, or just '-' */
    }

    /* Floating Login Button */
    .page-acb888__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #FFD700;
      color: #000;
      padding: 15px 25px;
      border-radius: 50px;
      text-align: center;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap; /* Prevent text wrapping */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-acb888__floating-button:hover {
      background-color: #e0b800;
      transform: translateX(-50%) translateY(-3px);
    }

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

    /* General image responsiveness and constraints */
    .page-acb888 img {
      max-width: 100%;
      height: auto;
      display: block; /* Ensure images behave as block elements */
      box-sizing: border-box; /* Include padding/border in element's total width/height */
      /* Ensure no filter properties are used */
      filter: none !important; /* Override any potential default filters */
    }

    .page-acb888__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

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

      .page-acb888__hero-subtitle {
        font-size: 1em;
      }

      .page-acb888__title {
        font-size: 1.8em;
      }

      .page-acb888__game-grid,
      .page-acb888__provider-grid,
      .page-acb888__advantages-grid {
        grid-template-columns: 1fr;
      }

      .page-acb888__faq-question {
        padding: 15px;
        font-size: 1em;
      }

      .page-acb888__faq-question h3 {
        font-size: 1em;
      }

      .page-acb888__faq-answer {
        padding: 15px;
        font-size: 0.9em;
      }

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

      .page-acb888__floating-button {
        width: calc(100% - 30px); /* Full width minus padding */
        border-radius: 8px; /* Sharper corners for mobile */
        bottom: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-acb888__hero-section {
        padding-top: 10px; /* Adjust for mobile header */
      }
      
      /* Force image responsiveness on mobile */
      .page-acb888 img {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-acb888__hero-title {
        font-size: 1.8em;
      }

      .page-acb888__hero-subtitle {
        font-size: 0.9em;
      }

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