
    .page-88-b {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f0f2f5;
      line-height: 1.6;
      padding-top: 10px; /* Decorative padding, assuming body has header offset */
    }

    .page-88-b__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-88-b__header-section {
      text-align: center;
      padding: 40px 20px;
      background: linear-gradient(135deg, #0f1c2c, #2a415b);
      color: #fff;
      border-radius: 10px;
      margin-bottom: 30px;
    }

    .page-88-b__header-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #f7d354;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-88-b__header-subtitle {
      font-size: 1.2em;
      max-width: 800px;
      margin: 0 auto;
      opacity: 0.9;
    }

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

    .page-88-b__btn {
      display: block;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      cursor: pointer;
      border: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      color: #fff;
      text-decoration: none;
    }

    .page-88-b__btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    .page-88-b__register-btn {
      background-color: #e74c3c;
    }

    .page-88-b__login-btn {
      background-color: #3498db;
    }

    .page-88-b__section {
      background-color: #fff;
      padding: 30px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .page-88-b__section-title {
      font-size: 2em;
      color: #0f1c2c;
      margin-bottom: 25px;
      text-align: center;
      position: relative;
    }

    .page-88-b__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #e74c3c;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-88-b__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center;
    }

    .page-88-b__grid-item {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-sizing: border-box;
    }

    .page-88-b__grid-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

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

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

    .page-88-b__grid-item-title {
      font-size: 1.4em;
      color: #0f1c2c;
      margin-bottom: 10px;
    }

    .page-88-b__grid-item-description {
      font-size: 0.95em;
      color: #555;
    }

    .page-88-b__cta-section {
      text-align: center;
      padding: 40px 20px;
      background-color: #0f1c2c;
      color: #fff;
      border-radius: 10px;
      margin-top: 30px;
    }

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

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

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

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

    .page-88-b__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .page-88-b__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box;
    }

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

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

    .page-88-b__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Prevent h3 from blocking click */
      color: #0f1c2c;
    }

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

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

    .page-88-b__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;
      background-color: #f0f0f0;
    }

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

    .page-88-b__game-provider-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        list-style: none;
        padding: 0;
    }

    .page-88-b__game-provider-item {
        background-color: #f0f0f0;
        padding: 15px 25px;
        border-radius: 25px;
        font-weight: bold;
        color: #0f1c2c;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        transition: background-color 0.2s ease;
        box-sizing: border-box;
        text-align: center;
        flex-grow: 1;
        max-width: 200px;
    }

    .page-88-b__game-provider-item:hover {
        background-color: #e0e0e0;
    }

    .page-88-b__payment-method-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        list-style: none;
        padding: 0;
    }

    .page-88-b__payment-method-item {
        background-color: #f0f0f0;
        padding: 15px 25px;
        border-radius: 25px;
        font-weight: bold;
        color: #0f1c2c;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        transition: background-color 0.2s ease;
        box-sizing: border-box;
        text-align: center;
        flex-grow: 1;
        max-width: 180px;
    }

    .page-88-b__payment-method-item:hover {
        background-color: #e0e0e0;
    }

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

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

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

      .page-88-b__grid {
        grid-template-columns: 1fr;
      }

      .page-88-b__grid-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-88-b__faq-question,
      .page-88-b__faq-answer {
        padding: 15px !important;
      }

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

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

      .page-88-b__faq-toggle {
        font-size: 1.2em;
      }

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

      .page-88-b__cta-description {
        font-size: 0.95em;
      }

      .page-88-b__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }

      .page-88-b__floating-buttons {
        right: 10px;
        bottom: 10px;
        gap: 8px;
      }

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

      .page-88-b__game-provider-item,
      .page-88-b__payment-method-item {
          width: 100% !important;
          max-width: 100% !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          box-sizing: border-box !important;
          padding: 10px 15px;
      }
    }

    @media (max-width: 480px) {
      .page-88-b__container {
        padding: 15px;
      }
      .page-88-b__header-section {
        padding: 30px 15px;
      }
      .page-88-b__section {
        padding: 20px;
      }
    }
  