
    .page-ace88 {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed buttons */
    }

    .page-ace88__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-ace88__section:nth-of-type(even) {
      background-color: #222;
    }

    .page-ace88__section-title {
      font-size: 2.5em;
      color: #ffcc00;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-ace88__section-subtitle {
      font-size: 1.2em;
      color: #ccc;
      margin-bottom: 40px;
    }

    .page-ace88__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:betting,casino,mobile]') no-repeat center center/cover;
      padding: 100px 20px;
      padding-top: calc(100px + 10px); /* Small top padding, assuming body handles header offset */
      min-height: 60vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .page-ace88__hero-title {
      font-size: 3.5em;
      color: #ffcc00;
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-ace88__hero-description {
      font-size: 1.5em;
      color: #fff;
      margin-bottom: 30px;
      max-width: 800px;
    }

    .page-ace88__cta-group {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-ace88__button {
      background-color: #e44d26;
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-ace88__button:hover {
      background-color: #f16529;
    }

    .page-ace88__fixed-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-ace88__fixed-buttons .page-ace88__button {
      width: 120px; /* Fixed width for floating buttons */
      text-align: center;
      padding: 12px 0;
      font-size: 1em;
      border-radius: 50px;
    }

    .page-ace88__register-button {
      background-color: #007bff;
    }

    .page-ace88__register-button:hover {
      background-color: #0056b3;
    }

    .page-ace88__login-button {
      background-color: #28a745;
    }

    .page-ace88__login-button:hover {
      background-color: #1e7e34;
    }

    .page-ace88__about-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }

    .page-ace88__about-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-ace88__about-text {
      text-align: left;
      font-size: 1.1em;
      max-width: 800px;
    }

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

    .page-ace88__product-item,
    .page-ace88__payment-item,
    .page-ace88__provider-item {
      background-color: #333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-ace88__product-item:hover,
    .page-ace88__payment-item:hover,
    .page-ace88__provider-item:hover {
      transform: translateY(-5px);
    }

    .page-ace88__product-image,
    .page-ace88__payment-logo,
    .page-ace88__provider-logo {
      width: 100%;
      max-width: 100%;
      height: 200px; /* Fixed height for consistent display */
      object-fit: cover;
      border-bottom: 1px solid #444;
      box-sizing: border-box;
    }
    
    .page-ace88__payment-logo,
    .page-ace88__provider-logo {
        height: 150px; /* Slightly smaller for logos */
        object-fit: contain;
        background-color: #444;
    }

    .page-ace88__product-content,
    .page-ace88__payment-content,
    .page-ace88__provider-content {
      padding: 20px;
    }

    .page-ace88__product-title,
    .page-ace88__payment-title,
    .page-ace88__provider-title {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
      word-wrap: break-word;
    }

    .page-ace88__product-description {
      font-size: 0.95em;
      color: #ccc;
    }

    .page-ace88__promotions-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-ace88__promotion-item {
      background-color: #333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-align: left;
      box-sizing: border-box;
    }

    .page-ace88__promotion-image {
      width: 100%;
      max-width: 100%;
      height: 250px;
      object-fit: cover;
      border-bottom: 1px solid #444;
      box-sizing: border-box;
    }

    .page-ace88__promotion-content {
      padding: 20px;
    }

    .page-ace88__promotion-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
      word-wrap: break-word;
    }

    .page-ace88__promotion-description {
      font-size: 1em;
      color: #ccc;
      margin-bottom: 15px;
    }

    .page-ace88__faq-section {
      text-align: left;
    }

    .page-ace88__faq-item {
      background-color: #333;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

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

    .page-ace88__faq-question:hover {
      background-color: #555;
    }

    .page-ace88__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click */
      word-wrap: break-word;
    }

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

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

    .page-ace88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #ccc;
    }

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

    .page-ace88__benefits-list {
      list-style: none;
      padding: 0;
      margin: 40px auto 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      text-align: left;
    }

    .page-ace88__benefit-item {
      background-color: #333;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      word-wrap: break-word;
      box-sizing: border-box;
    }

    .page-ace88__benefit-item h3 {
      color: #ffcc00;
      margin-top: 0;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-ace88__news-article {
      background-color: #333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      margin-top: 40px;
      text-align: left;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-ace88__news-image {
      width: 100%;
      max-width: 100%;
      height: 300px;
      object-fit: cover;
      box-sizing: border-box;
    }

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

    .page-ace88__news-title {
      font-size: 1.8em;
      color: #ffcc00;
      margin-bottom: 10px;
      word-wrap: break-word;
    }

    .page-ace88__news-date {
      font-size: 0.9em;
      color: #aaa;
      margin-bottom: 15px;
      display: block;
    }

    .page-ace88__news-description {
      color: #ccc;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-ace88__hero-section {
        padding: 80px 15px;
        padding-top: calc(80px + 10px);
      }

      .page-ace88__hero-title {
        font-size: 2.5em;
      }

      .page-ace88__hero-description {
        font-size: 1.2em;
      }

      .page-ace88__cta-group {
        flex-direction: column;
        gap: 15px;
      }

      .page-ace88__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-ace88__fixed-buttons {
        right: 10px;
        bottom: 10px;
        gap: 10px;
      }

      .page-ace88__fixed-buttons .page-ace88__button {
        width: 100px;
        padding: 10px 0;
        font-size: 0.9em;
      }

      .page-ace88__section {
        padding: 30px 15px;
      }

      .page-ace88__section-title {
        font-size: 2em;
      }

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

      .page-ace88__about-content {
        flex-direction: column;
      }

      .page-ace88__products-grid,
      .page-ace88__payment-grid,
      .page-ace88__providers-grid,
      .page-ace88__promotions-list,
      .page-ace88__benefits-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* List item specific mobile responsiveness */
      .page-ace88__products-grid > *,
      .page-ace88__payment-grid > *,
      .page-ace88__providers-grid > *,
      .page-ace88__promotions-list > *,
      .page-ace88__benefits-list > * {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          padding: 15px !important; /* Adjust padding for mobile */
          word-wrap: break-word !important; /* Ensure text wraps */
          overflow-wrap: break-word !important;
      }

      .page-ace88__products-grid,
      .page-ace88__payment-grid,
      .page-ace88__providers-grid,
      .page-ace88__promotions-list,
      .page-ace88__benefits-list {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding: 0 !important; /* Remove container padding */
          margin-left: 0 !important;
          margin-right: 0 !important;
      }

      .page-ace88__product-image,
      .page-ace88__payment-logo,
      .page-ace88__provider-logo,
      .page-ace88__promotion-image,
      .page-ace88__news-image {
        height: 180px;
      }

      .page-ace88__product-title,
      .page-ace88__payment-title,
      .page-ace88__provider-title,
      .page-ace88__promotion-title,
      .page-ace88__news-title {
        font-size: 1.2em;
      }

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

      .page-ace88__faq-answer {
        padding: 0 15px;
      }

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

      .page-ace88__benefit-item h3 {
        font-size: 1.1em;
      }

      .page-ace88__news-content {
        padding: 15px;
      }
    }
  