
    .page-88x-com {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f5f5f5;
      padding-bottom: 80px; /* Space for floating buttons */
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-88x-com__hero-section {
      position: relative;
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #fff;
      padding: 10px 20px 40px; /* Decorative padding-top after body offset */
      text-align: center;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-88x-com__hero-content {
      max-width: 900px;
      z-index: 1;
      position: relative;
    }

    .page-88x-com__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      font-weight: bold;
    }

    .page-88x-com__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-88x-com__hero-cta-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

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

    .page-88x-com__hero-image-wrapper {
      margin-top: 30px;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
    }

    .page-88x-com__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      display: block;
    }

    .page-88x-com__section-title {
      font-size: 2.2em;
      color: #0056b3;
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
      font-weight: bold;
    }

    .page-88x-com__section-description {
      font-size: 1.1em;
      color: #555;
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 15px;
    }

    .page-88x-com__categories-section,
    .page-88x-com__promotions-section,
    .page-88x-com__mobile-app-section,
    .page-88x-com__faq-section,
    .page-88x-com__cta-section {
      padding: 20px 0;
      margin-bottom: 30px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-left: 15px;
      margin-right: 15px;
    }

    .page-88x-com__categories-grid,
    .page-88x-com__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 0 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-88x-com__category-card,
    .page-88x-com__promotion-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-88x-com__category-card:hover,
    .page-88x-com__promotion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-88x-com__category-image,
    .page-88x-com__promotion-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      margin-bottom: 15px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-88x-com__category-title,
    .page-88x-com__promotion-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 10px;
      padding: 0 15px;
      font-weight: bold;
    }

    .page-88x-com__category-text,
    .page-88x-com__promotion-text {
      font-size: 1em;
      color: #666;
      padding: 0 20px;
    }

    .page-88x-com__view-all-promos-button {
      display: block;
      width: fit-content;
      margin: 40px auto 20px;
      background-color: #28a745;
      color: #fff;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-88x-com__view-all-promos-button:hover {
      background-color: #218838;
      transform: translateY(-2px);
    }

    .page-88x-com__mobile-app-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 40px 15px;
    }

    .page-88x-com__app-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      max-width: 1000px;
      margin-top: 30px;
      gap: 30px;
    }

    .page-88x-com__app-text {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      text-align: left;
    }

    .page-88x-com__app-text p {
      margin-bottom: 15px;
      color: #444;
    }

    .page-88x-com__app-features ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-88x-com__app-features li {
      background-color: #e9f7ff;
      border-left: 5px solid #007bff;
      padding: 10px 15px;
      margin-bottom: 10px;
      border-radius: 5px;
      color: #333;
      font-weight: 500;
      box-sizing: border-box; /* Crucial for list items */
      width: 100%; /* Crucial for list items */
      word-wrap: break-word; /* Crucial for list items */
      overflow-wrap: break-word; /* Crucial for list items */
      word-break: break-word; /* Crucial for list items */
    }

    .page-88x-com__app-image-wrapper {
      flex: 1;
      min-width: 300px;
      max-width: 400px;
      display: flex;
      justify-content: center;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-88x-com__app-image {
      max-width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      display: block;
    }

    .page-88x-com__app-download-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin-top: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-88x-com__app-download-button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-88x-com__faq-section {
      padding: 40px 15px;
    }

    .page-88x-com__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-88x-com__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

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

    .page-88x-com__faq-question:hover {
      background-color: #c0e7ed;
    }

    .page-88x-com__faq-question-title {
      margin: 0;
      font-size: 1.2em;
      color: #007bff;
      pointer-events: none; /* Prevent h3 from blocking click event */
      font-weight: bold;
    }

    .page-88x-com__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-88x-com__faq-item.active .page-88x-com__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

    .page-88x-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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: #ffffff;
    }

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

    .page-88x-com__faq-answer p {
      margin: 0;
      color: #444;
    }

    .page-88x-com__cta-section {
      text-align: center;
      background-color: #007bff;
      color: #fff;
      padding: 60px 20px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      margin: 30px 15px;
    }

    .page-88x-com__cta-section .page-88x-com__section-title {
      color: #fff;
    }

    .page-88x-com__cta-section .page-88x-com__section-description {
      color: #e0e0e0;
      margin-bottom: 30px;
    }

    .page-88x-com__cta-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-88x-com__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-88x-com__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: #0056b3;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
    }

    .page-88x-com__floating-button {
      flex: 1;
      text-align: center;
      padding: 12px 10px;
      margin: 0 5px;
      background-color: #ffc107;
      color: #333;
      text-decoration: none;
      font-weight: bold;
      border-radius: 8px;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-88x-com__floating-button--register {
      background-color: #28a745;
      color: #fff;
    }

    .page-88x-com__floating-button--register:hover {
      background-color: #218838;
      transform: translateY(-2px);
    }

    .page-88x-com__floating-button--login {
      background-color: #ffc107;
      color: #333;
    }

    .page-88x-com__floating-button--login:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-88x-com__hero-title {
        font-size: 2.5em;
      }
      .page-88x-com__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-88x-com__hero-section {
        padding-top: 10px; /* Keep decorative padding small */
      }
      .page-88x-com__hero-title {
        font-size: 2em;
      }
      .page-88x-com__hero-description {
        font-size: 1em;
      }
      .page-88x-com__hero-cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-88x-com__section-title {
        font-size: 1.8em;
        padding-top: 30px;
      }
      .page-88x-com__section-description {
        font-size: 0.95em;
      }

      .page-88x-com__categories-grid,
      .page-88x-com__promotions-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
      }

      .page-88x-com__category-image,
      .page-88x-com__promotion-image {
        height: 180px;
      }

      .page-88x-com__category-title,
      .page-88x-com__promotion-title {
        font-size: 1.3em;
      }

      .page-88x-com__app-content {
        flex-direction: column;
        text-align: center;
      }
      .page-88x-com__app-text {
        max-width: 100%;
      }
      .page-88x-com__app-features ul {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-88x-com__app-features li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 10px 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-88x-com__app-image-wrapper {
        max-width: 100%;
        margin-top: 20px;
      }
      .page-88x-com__app-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-88x-com__faq-question {
        padding: 12px 15px;
      }
      .page-88x-com__faq-question-title {
        font-size: 1.1em;
      }
      .page-88x-com__faq-toggle {
        font-size: 1.5em;
      }
      .page-88x-com__faq-answer {
        padding: 0 10px;
      }
      .page-88x-com__faq-item.active .page-88x-com__faq-answer {
        padding: 15px 10px !important;
      }

      .page-88x-com__cta-section {
        padding: 40px 15px;
      }
      .page-88x-com__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-88x-com__floating-button {
        font-size: 1em;
        padding: 10px 8px;
      }
    }
  