
    .page-88-qq {
      font-family: 'Arial', sans-serif;
      color: #E0E0E0; /* Light grey text for dark background */
      background-color: #1A1A1A; /* Dark background */
      line-height: 1.6;
      padding-top: 10px; /* Decorative top padding, assuming body has header offset */
    }

    /* Floating Register/Login Buttons */
    .page-88-qq__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: calc(100% - 40px); /* Adjust width for padding */
      max-width: 400px;
      box-sizing: border-box;
    }

    .page-88-qq__button-register,
    .page-88-qq__button-login {
      flex: 1;
      padding: 15px 10px;
      border-radius: 30px;
      font-weight: bold;
      text-align: center;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-88-qq__button-register {
      background-color: #FFD700; /* Gold */
      color: #1A1A1A;
    }

    .page-88-qq__button-login {
      background-color: #007BFF; /* Blue */
      color: #FFFFFF;
    }

    .page-88-qq__button-register:hover {
      background-color: #E5C100;
      transform: translateY(-2px);
    }

    .page-88-qq__button-login:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-88-qq__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Responsive height */
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      margin-bottom: 40px;
    }

    .page-88-qq__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      max-width: 100%; /* Responsive image */
    }

    .page-88-qq__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
      z-index: 2;
    }

    .page-88-qq__hero-content {
      position: relative;
      z-index: 3;
      color: #FFFFFF;
      padding: 20px;
      max-width: 900px;
      box-sizing: border-box;
    }

    .page-88-qq__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #FFD700; /* Gold for emphasis */
      line-height: 1.2;
    }

    .page-88-qq__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-88-qq__hero-button {
      padding: 15px 30px;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-88-qq__hero-button--primary {
      background-color: #FFD700; /* Gold */
      color: #1A1A1A;
    }

    .page-88-qq__hero-button--secondary {
      background-color: #007BFF; /* Blue */
      color: #FFFFFF;
      border: 2px solid #007BFF;
    }

    .page-88-qq__hero-button--primary:hover {
      background-color: #E5C100;
      transform: translateY(-2px);
    }

    .page-88-qq__hero-button--secondary:hover {
      background-color: #0056b3;
      border-color: #0056b3;
      transform: translateY(-2px);
    }

    /* General Section Styling */
    .page-88-qq__section-title {
      font-size: 2.2em;
      color: #FFD700;
      text-align: center;
      margin-bottom: 40px;
      padding: 0 20px;
      line-height: 1.3;
    }

    .page-88-qq__about-section,
    .page-88-qq__products-section,
    .page-88-qq__promotions-section,
    .page-88-qq__payment-section,
    .page-88-qq__providers-section,
    .page-88-qq__faq-section,
    .page-88-qq__cta-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    /* About Section */
    .page-88-qq__about-text {
      text-align: center;
      font-size: 1.1em;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #B0B0B0;
    }

    .page-88-qq__about-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      text-align: center;
    }

    .page-88-qq__feature-item {
      background-color: #2A2A2A;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-88-qq__feature-icon {
      width: 200px; /* Minimum size */
      height: auto;
      max-width: 100%;
      margin-bottom: 20px;
      object-fit: contain;
    }

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

    .page-88-qq__feature-description {
      font-size: 1em;
      color: #B0B0B0;
    }

    /* Product Display Section */
    .page-88-qq__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-88-qq__product-item {
      background-color: #2A2A2A;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-88-qq__product-image {
      width: 100%;
      height: 250px; /* Fixed height for consistency */
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%; /* Responsive image */
    }

    .page-88-qq__product-title {
      font-size: 1.6em;
      color: #FFD700;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-88-qq__product-description {
      font-size: 0.95em;
      color: #B0B0B0;
      margin-bottom: 20px;
      padding: 0 15px;
      flex-grow: 1; /* Pushes button to bottom */
    }

    .page-88-qq__product-button {
      background-color: #007BFF;
      color: #FFFFFF;
      padding: 12px 25px;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin: 0 15px; /* Keep button within item padding */
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-88-qq__product-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

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

    .page-88-qq__promotion-item {
      background-color: #2A2A2A;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-88-qq__promotion-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%; /* Responsive image */
    }

    .page-88-qq__promotion-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

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

    .page-88-qq__promotion-description {
      font-size: 0.9em;
      color: #B0B0B0;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-88-qq__promotion-button {
      background-color: #FFD700;
      color: #1A1A1A;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      text-align: center;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      align-self: flex-start; /* Align button to start */
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-88-qq__promotion-button:hover {
      background-color: #E5C100;
      transform: translateY(-2px);
    }

    /* Payment Methods & Game Providers Section */
    .page-88-qq__payment-intro,
    .page-88-qq__providers-intro {
      text-align: center;
      font-size: 1.1em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #B0B0B0;
    }

    .page-88-qq__payment-grid,
    .page-88-qq__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusted min-width for logos */
      gap: 20px;
      justify-items: center;
    }

    .page-88-qq__payment-item,
    .page-88-qq__provider-item {
      background-color: #2A2A2A;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      text-align: center;
      box-sizing: border-box;
      width: 100%; /* Ensure items take full grid column width */
    }

    .page-88-qq__payment-logo,
    .page-88-qq__provider-logo {
      width: 200px; /* Min width 200px */
      height: auto;
      max-width: 100%;
      margin-bottom: 10px;
      object-fit: contain;
    }

    .page-88-qq__payment-name,
    .page-88-qq__provider-name {
      font-size: 1em;
      color: #FFD700;
      font-weight: bold;
    }

    /* FAQ Section */
    .page-88-qq__faq-container {
      max-width: 800px;
      margin: 0 auto;
      background-color: #2A2A2A;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      overflow: hidden;
    }

    .page-88-qq__faq-item {
      border-bottom: 1px solid #3A3A3A;
    }

    .page-88-qq__faq-item:last-child {
      border-bottom: none;
    }

    .page-88-qq__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #2A2A2A;
      transition: background-color 0.3s ease;
    }

    .page-88-qq__faq-question:hover {
      background-color: #3A3A3A;
    }

    .page-88-qq__faq-title {
      font-size: 1.2em;
      color: #FFD700;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-88-qq__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #007BFF;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event */
    }

    .page-88-qq__faq-item.active .page-88-qq__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or use '-' directly */
      color: #FFD700;
    }

    .page-88-qq__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #1E1E1E;
      color: #B0B0B0;
    }

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

    .page-88-qq__faq-answer p {
      margin: 0;
      font-size: 1em;
    }

    /* Call to Action Section */
    .page-88-qq__cta-section {
      text-align: center;
      background-color: #2A2A2A;
      padding: 80px 20px;
      border-radius: 10px;
      margin-top: 60px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

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

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

    .page-88-qq__cta-button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 30px;
    }

    .page-88-qq__cta-button {
      padding: 18px 40px;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-88-qq__cta-button--primary {
      background-color: #FFD700;
      color: #1A1A1A;
    }

    .page-88-qq__cta-button--secondary {
      background-color: #007BFF;
      color: #FFFFFF;
      border: 2px solid #007BFF;
    }

    .page-88-qq__cta-button--primary:hover {
      background-color: #E5C100;
      transform: translateY(-2px);
    }

    .page-88-qq__cta-button--secondary:hover {
      background-color: #0056b3;
      border-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-88-qq__cta-link {
      color: #007BFF;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: color 0.3s ease;
    }

    .page-88-qq__cta-link:hover {
      color: #FFD700;
      text-decoration: underline;
    }

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

      .page-88-qq__hero-description {
        font-size: 1em;
      }

      .page-88-qq__hero-cta-group {
        flex-direction: column;
        gap: 15px;
      }

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

      .page-88-qq__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-88-qq__about-section,
      .page-88-qq__products-section,
      .page-88-qq__promotions-section,
      .page-88-qq__payment-section,
      .page-88-qq__providers-section,
      .page-88-qq__faq-section,
      .page-88-qq__cta-section {
        padding: 40px 15px;
      }

      .page-88-qq__feature-item {
        padding: 20px;
      }

      .page-88-qq__product-grid,
      .page-88-qq__promotion-grid,
      .page-88-qq__payment-grid,
      .page-88-qq__providers-grid {
        grid-template-columns: 1fr; /* Stack items on mobile */
        gap: 20px;
      }

      /* List item responsive requirements */
      .page-88-qq__about-features .page-88-qq__feature-item,
      .page-88-qq__product-grid .page-88-qq__product-item,
      .page-88-qq__promotion-grid .page-88-qq__promotion-item,
      .page-88-qq__payment-grid .page-88-qq__payment-item,
      .page-88-qq__providers-grid .page-88-qq__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-88-qq__payment-logo,
      .page-88-qq__provider-logo {
        width: 100% !important;
        max-width: 250px !important; /* Allow logos to be a bit smaller than 200px but not tiny */
        height: auto !important;
      }
      
      .page-88-qq__faq-question {
        padding: 15px 20px;
      }

      .page-88-qq__faq-title {
        font-size: 1.1em;
      }

      .page-88-qq__faq-toggle {
        font-size: 1.5em;
      }

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

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

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

      .page-88-qq__cta-description {
        font-size: 1em;
      }

      .page-88-qq__cta-button-group {
        flex-direction: column;
        gap: 15px;
      }

      .page-88-qq__cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 15px 30px;
      }
    }

    @media (max-width: 480px) {
      .page-88-qq__hero-section {
        height: 50vh;
        min-height: 300px;
      }
      .page-88-qq__hero-title {
        font-size: 1.6em;
      }
      .page-88-qq__floating-buttons {
        width: calc(100% - 30px);
        gap: 10px;
      }
      .page-88-qq__button-register,
      .page-88-qq__button-login {
        padding: 12px 8px;
        font-size: 0.9em;
      }
    }
  