
    /* Page specific CSS styles */
    .page-88-xx {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
    }

    .page-88-xx__section-title {
      font-size: 2.5em;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

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

    /* Floating Buttons */
    .page-88-xx__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-88-xx__button-register,
    .page-88-xx__button-login {
      background-color: #ffcc00; /* Gold */
      color: #1a1a2e; /* Dark text */
      padding: 12px 20px;
      border-radius: 25px;
      font-weight: bold;
      text-align: center;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      min-width: 120px; /* Ensure sufficient size */
      white-space: nowrap;
    }

    .page-88-xx__button-register:hover,
    .page-88-xx__button-login:hover {
      background-color: #e0b300; /* Darker gold */
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-88-xx__hero-section {
      position: relative;
      width: 100%;
      height: 70vh;
      min-height: 450px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Adhere to offset rule */
      box-sizing: border-box;
    }

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

    .page-88-xx__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 2;
    }

    .page-88-xx__hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      padding: 20px;
    }

    .page-88-xx__hero-title {
      font-size: 3.5em;
      color: #ffffff;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-88-xx__hero-title strong {
      color: #ffcc00;
    }

    .page-88-xx__hero-subtitle {
      font-size: 1.5em;
      color: #f0f0f0;
      margin-bottom: 30px;
    }

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

    .page-88-xx__hero-cta-button,
    .page-88-xx__hero-promo-link {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
      outline: none;
    }

    .page-88-xx__hero-cta-button {
      background-color: #e74c3c; /* Red accent */
      color: #ffffff;
    }

    .page-88-xx__hero-cta-button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    .page-88-xx__hero-promo-link {
      background-color: #ffcc00; /* Gold accent */
      color: #1a1a2e;
    }

    .page-88-xx__hero-promo-link:hover {
      background-color: #e0b300;
      transform: translateY(-2px);
    }

    /* About Section */
    .page-88-xx__about-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-88-xx__about-content p {
      font-size: 1.1em;
      margin-bottom: 15px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .keyword-highlight {
      font-weight: bold;
      color: #ffdd66; /* Slightly lighter gold for emphasis */
    }

    /* Game Categories Section */
    .page-88-xx__game-categories-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-88-xx__game-categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      justify-content: center;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .page-88-xx__category-item {
      background-color: #2a2a4a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      width: 100%;
    }

    .page-88-xx__category-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-88-xx__category-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-88-xx__category-name {
      font-size: 1.8em;
      color: #ffcc00;
      margin: 20px 0 10px;
    }

    .page-88-xx__category-item p {
      padding: 0 20px 20px;
      color: #c0c0c0;
    }

    /* Promotions Section */
    .page-88-xx__promotions-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      background-color: #1a1a2e;
    }

    .page-88-xx__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      justify-content: center;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .page-88-xx__promotion-card {
      background-color: #2a2a4a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      width: 100%;
    }

    .page-88-xx__promotion-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-88-xx__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-88-xx__promotion-content {
      padding: 25px;
      text-align: left;
    }

    .page-88-xx__promotion-content h3 {
      font-size: 1.6em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-88-xx__promotion-content p {
      color: #c0c0c0;
      margin-bottom: 20px;
    }

    .page-88-xx__promotion-button {
      background-color: #e74c3c;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: bold;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .page-88-xx__promotion-button:hover {
      background-color: #c0392b;
    }

    /* Why Choose Section */
    .page-88-xx__why-choose-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-88-xx__why-choose-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .page-88-xx__feature-item {
      background-color: #2a2a4a;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      width: 100%;
    }

    .page-88-xx__feature-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-88-xx__feature-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 20px;
    }

    .page-88-xx__feature-item h3 {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-88-xx__feature-item p {
      color: #c0c0c0;
    }

    /* Payment Methods & Providers Section */
    .page-88-xx__payment-methods-section,
    .page-88-xx__providers-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-88-xx__payment-methods-grid,
    .page-88-xx__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-content: center;
      align-items: center;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .page-88-xx__payment-item,
    .page-88-xx__provider-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: #e0e0e0;
      box-sizing: border-box;
      width: 100%;
    }

    .page-88-xx__payment-item:hover,
    .page-88-xx__provider-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

    .page-88-xx__payment-logo,
    .page-88-xx__provider-logo {
      width: 100%;
      height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .page-88-xx__payment-item p,
    .page-88-xx__provider-item p {
      font-weight: bold;
      font-size: 1.1em;
      color: #ffcc00;
    }

    /* FAQ Section */
    .page-88-xx__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .page-88-xx__faq-container {
      text-align: left;
    }

    .page-88-xx__faq-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      box-sizing: border-box;
      width: 100%;
    }

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

    .page-88-xx__faq-question:hover {
      background-color: #4a4a6a;
    }

    .page-88-xx__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: #ffcc00;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

    .page-88-xx__faq-item.active .page-88-xx__faq-toggle {
      transform: rotate(45deg);
      color: #ffcc00;
    }

    .page-88-xx__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #c0c0c0;
      background-color: #2a2a4a;
    }

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

    .page-88-xx__faq-answer p {
      margin: 0;
    }

    /* Call to Action Section */
    .page-88-xx__cta-section {
      padding: 60px 20px;
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
      background-color: #1a1a2e;
    }

    .page-88-xx__cta-section p {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #c0c0c0;
    }

    .page-88-xx__cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-88-xx__cta-button {
      display: inline-block;
      padding: 15px 35px;
      border-radius: 30px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
      outline: none;
    }

    .page-88-xx__cta-button--primary {
      background-color: #e74c3c;
      color: #ffffff;
    }

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

    .page-88-xx__cta-button--secondary {
      background-color: #ffcc00;
      color: #1a1a2e;
    }

    .page-88-xx__cta-button--secondary:hover {
      background-color: #e0b300;
      transform: translateY(-2px);
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-88-xx__hero-title {
        font-size: 3em;
      }
      .page-88-xx__hero-subtitle {
        font-size: 1.3em;
      }
      .page-88-xx__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-88-xx__floating-buttons {
        flex-direction: row; /* Side-by-side on smaller screens */
        width: calc(100% - 40px);
        bottom: 15px;
        right: 20px;
        left: 20px;
        justify-content: space-around;
      }

      .page-88-xx__button-register,
      .page-88-xx__button-login {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
        min-width: unset;
      }

      .page-88-xx__hero-section {
        height: 60vh;
        min-height: 400px;
      }
      .page-88-xx__hero-title {
        font-size: 2.2em;
      }
      .page-88-xx__hero-subtitle {
        font-size: 1.1em;
      }
      .page-88-xx__hero-cta-button,
      .page-88-xx__hero-promo-link {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-88-xx__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-88-xx__about-content p,
      .page-88-xx__promotion-content p,
      .page-88-xx__feature-item p,
      .page-88-xx__cta-section p {
        font-size: 1em;
      }
      .page-88-xx__game-categories-grid,
      .page-88-xx__promotions-grid,
      .page-88-xx__why-choose-grid,
      .page-88-xx__payment-methods-grid,
      .page-88-xx__providers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-88-xx__category-item,
      .page-88-xx__promotion-card,
      .page-88-xx__feature-item,
      .page-88-xx__payment-item,
      .page-88-xx__provider-item,
      .page-88-xx__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-88-xx__game-categories-grid,
      .page-88-xx__promotions-grid,
      .page-88-xx__why-choose-grid,
      .page-88-xx__payment-methods-grid,
      .page-88-xx__providers-grid,
      .page-88-xx__faq-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-88-xx__faq-question h3 {
        font-size: 1.1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-88-xx__faq-answer {
        padding: 0 15px;
      }
      .page-88-xx__faq-item.active .page-88-xx__faq-answer {
        padding: 15px 15px !important;
      }
      .page-88-xx__cta-button {
        font-size: 1.1em;
        padding: 12px 30px;
      }
    }

    @media (max-width: 480px) {
      .page-88-xx__hero-title {
        font-size: 1.8em;
      }
      .page-88-xx__hero-subtitle {
        font-size: 0.9em;
      }
      .page-88-xx__hero-cta-group {
        flex-direction: column;
        gap: 15px;
      }
      .page-88-xx__hero-cta-button,
      .page-88-xx__hero-promo-link {
        width: 80%;
        margin: 0 auto;
      }
      .page-88-xx__section-title {
        font-size: 1.5em;
      }
    }
  