
    .page-88b {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-88b__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

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

    .page-88b__section--dark {
      background-color: #2a2a2a;
      color: #fff;
    }

    .page-88b__title {
      font-size: 2.5em;
      color: #333;
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-88b__section--dark .page-88b__title {
      color: #fff;
    }

    .page-88b__subtitle {
      font-size: 1.8em;
      color: #555;
      margin-bottom: 15px;
    }

    .page-88b__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating Buttons */
    .page-88b__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      padding: 10px 20px;
      background: linear-gradient(90deg, #ff6b6b, #ee4c4c);
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-88b__button {
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      color: #fff;
      text-transform: uppercase;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-88b__button--register {
      background-color: #4CAF50;
    }

    .page-88b__button--register:hover {
      background-color: #45a049;
      transform: translateY(-2px);
    }

    .page-88b__button--login {
      background-color: #007BFF;
    }

    .page-88b__button--login:hover {
      background-color: #0069d9;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-88b__hero-section {
      background-color: #1a1a1a;
      color: #fff;
      padding: 10px 0 60px 0;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

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

    .page-88b__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px 15px;
    }

    .page-88b__hero-title {
      font-size: 3.5em;
      margin-bottom: 10px;
      color: #ffd700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      line-height: 1.1;
    }

    .page-88b__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #eee;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-88b__promo-link {
      display: inline-block;
      background-color: #e74c3c;
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-88b__promo-link:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    /* Game Categories */
    .page-88b__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

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

    .page-88b__category-card:hover {
      transform: translateY(-5px);
    }

    .page-88b__category-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }

    .page-88b__category-title {
      font-size: 1.4em;
      color: #333;
      margin: 15px 0 10px;
      padding: 0 15px;
    }

    .page-88b__category-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px;
    }

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

    .page-88b__promotion-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: left;
      padding: 20px;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-88b__promotion-card:hover {
      transform: translateY(-5px);
    }

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

    .page-88b__promotion-description {
      font-size: 1em;
      color: #555;
      margin-bottom: 15px;
    }

    .page-88b__promotion-date {
      font-size: 0.9em;
      color: #999;
      text-align: right;
    }

    /* Why Choose Us Section */
    .page-88b__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-88b__feature-item {
      background-color: #fff;
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: left;
      display: flex;
      align-items: flex-start;
      gap: 15px;
      box-sizing: border-box;
    }

    .page-88b__feature-icon {
      font-size: 2em;
      color: #e74c3c;
      flex-shrink: 0;
    }

    .page-88b__feature-content h3 {
      font-size: 1.3em;
      color: #333;
      margin-top: 0;
      margin-bottom: 8px;
    }

    .page-88b__feature-content p {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 0;
    }

    /* Payment & Providers */
    .page-88b__partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      align-items: center;
      justify-content: center;
    }

    .page-88b__partner-logo {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      object-fit: contain;
      max-height: 80px;
    }

    .page-88b__partner-logo:hover {
      transform: scale(1.05);
    }

    /* FAQ Section */
    .page-88b__faq-list {
      margin-top: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    .page-88b__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 10px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-88b__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f0f0f0;
      font-weight: bold;
      color: #333;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-88b__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-88b__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-88b__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
    }

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

    .page-88b__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: #555;
      font-size: 1em;
    }

    .page-88b__faq-item.active .page-88b__faq-answer {
      max-height: 2000px !important;
      padding: 20px !important;
      opacity: 1;
    }

    /* Call to Action */
    .page-88b__cta-section {
      background: linear-gradient(135deg, #ff6b6b, #e74c3c);
      color: #fff;
      padding: 60px 20px;
    }

    .page-88b__cta-title {
      font-size: 2.2em;
      margin-bottom: 15px;
      color: #fff;
    }

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

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

      .page-88b__hero-subtitle {
        font-size: 1.2em;
      }

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

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

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

      .page-88b__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-88b__floating-buttons {
        width: calc(100% - 40px);
        bottom: 10px;
        gap: 10px;
        padding: 8px 15px;
      }

      .page-88b__game-categories,
      .page-88b__promotions-grid,
      .page-88b__feature-list,
      .page-88b__partners-grid {
        grid-template-columns: 1fr;
      }

      .page-88b__feature-item,
      .page-88b__category-card,
      .page-88b__promotion-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-88b__feature-list,
      .page-88b__game-categories,
      .page-88b__promotions-grid {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-88b__feature-content h3 {
        font-size: 1.2em;
      }

      .page-88b__feature-content p {
        font-size: 0.9em;
      }

      .page-88b__partner-logo {
        max-height: 60px;
      }

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

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

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

      .page-88b__cta-title {
        font-size: 1.8em;
      }

      .page-88b__cta-text {
        font-size: 1em;
      }

      /* Image responsiveness */
      .page-88b__hero-image,
      .page-88b__category-image,
      .page-88b__partner-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-88b__hero-title {
        font-size: 2em;
      }

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

      .page-88b__title {
        font-size: 1.8em;
      }

      .page-88b__button {
        font-size: 0.9em;
        padding: 8px 15px;
      }

      .page-88b__floating-buttons {
        bottom: 5px;
        gap: 8px;
        padding: 6px 10px;
      }
    }
  