
    .page-88blc {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      background-color: #f0f2f5;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-88blc__header-banner {
      text-align: center;
      background: linear-gradient(135deg, #FFD700, #FF8C00);
      color: #fff;
      padding: 10px 0;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      padding-top: 10px; /* Minimal padding-top, assuming body handles header offset */
    }

    .page-88blc__brand-keyword {
      font-size: 2.5em;
      font-weight: bold;
      margin: 0;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      color: #fff;
    }

    .page-88blc__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding-top: 10px; /* Minimal padding-top, assuming body handles header offset */
    }

    .page-88blc__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-height: 500px;
    }

    .page-88blc__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #fff;
      width: 90%;
      max-width: 800px;
      background-color: rgba(0, 0, 0, 0.5);
      padding: 20px;
      border-radius: 10px;
    }

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

    .page-88blc__hero-description {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-88blc__promotion-link {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-88blc__promotion-link:hover {
      background-color: #0056b3;
    }

    .page-88blc__section {
      padding: 30px 20px;
      margin: 20px auto;
      max-width: 1200px;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-88blc__section-title {
      font-size: 2em;
      color: #333;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-88blc__game-grid,
    .page-88blc__promo-grid,
    .page-88blc__provider-list,
    .page-88blc__payment-list,
    .page-88blc__social-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      justify-items: center;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-88blc__game-item,
    .page-88blc__promo-card,
    .page-88blc__provider-item,
    .page-88blc__payment-item,
    .page-88blc__social-item {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      width: 100%; /* Ensure full width within grid cell */
      max-width: 350px;
    }

    .page-88blc__game-item:hover,
    .page-88blc__promo-card:hover,
    .page-88blc__provider-item:hover,
    .page-88blc__payment-item:hover,
    .page-88blc__social-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-88blc__game-image,
    .page-88blc__promo-image,
    .page-88blc__provider-logo,
    .page-88blc__payment-logo,
    .page-88blc__social-icon {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid #eee;
    }

    .page-88blc__game-content,
    .page-88blc__promo-content,
    .page-88blc__provider-content,
    .page-88blc__payment-content,
    .page-88blc__social-content {
      padding: 15px;
    }

    .page-88blc__game-title,
    .page-88blc__promo-title,
    .page-88blc__provider-name,
    .page-88blc__payment-name,
    .page-88blc__social-name {
      font-size: 1.3em;
      font-weight: bold;
      color: #333;
      margin-bottom: 10px;
      word-wrap: break-word;
    }

    .page-88blc__game-description,
    .page-88blc__promo-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-88blc__game-button,
    .page-88blc__promo-button,
    .page-88blc__link-button {
      display: inline-block;
      background-color: #FFD700;
      color: #333;
      padding: 8px 18px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-88blc__game-button:hover,
    .page-88blc__promo-button:hover,
    .page-88blc__link-button:hover {
      background-color: #e6c200;
    }

    .page-88blc__news-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-88blc__news-item {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      box-sizing: border-box;
      width: 100%;
    }

    .page-88blc__news-item:hover {
      transform: translateY(-5px);
    }

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

    .page-88blc__news-content {
      padding: 15px;
    }

    .page-88blc__news-title {
      font-size: 1.2em;
      font-weight: bold;
      color: #333;
      margin-bottom: 10px;
      word-wrap: break-word;
    }

    .page-88blc__news-date {
      font-size: 0.85em;
      color: #888;
      margin-bottom: 10px;
    }

    .page-88blc__news-summary {
      font-size: 0.95em;
      color: #666;
    }

    .page-88blc__about-content p {
      margin-bottom: 15px;
      color: #555;
    }

    .page-88blc__contact-info p {
      margin-bottom: 10px;
      color: #555;
    }

    .page-88blc__contact-info strong {
      color: #333;
    }

    .page-88blc__faq-section {
      padding: 30px 20px;
      margin: 20px auto;
      max-width: 900px;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-88blc__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      box-sizing: border-box;
    }

    .page-88blc__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-88blc__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      background-color: #f5f5f5;
      cursor: pointer;
      user-select: none;
      border-radius: 5px;
      transition: background-color 0.3s ease;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-88blc__faq-question:hover {
      background-color: #eee;
    }

    .page-88blc__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #333;
      pointer-events: none;
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-88blc__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #FFD700;
      margin-left: 15px;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

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

    .page-88blc__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;
      color: #555;
      font-size: 0.95em;
      background-color: #fff;
      border-radius: 0 0 5px 5px;
    }

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

    .page-88blc__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.8);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
      z-index: 999;
      box-sizing: border-box;
    }

    .page-88blc__floating-button {
      flex: 1;
      text-align: center;
      padding: 12px 0;
      margin: 0 5px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      color: #fff;
      cursor: pointer;
      transition: background-color 0.3s ease;
      border: none;
      box-sizing: border-box;
      max-width: 48%;
    }

    .page-88blc__floating-button--register {
      background-color: #FFD700; /* Gold */
      color: #333;
    }

    .page-88blc__floating-button--register:hover {
      background-color: #e6c200;
    }

    .page-88blc__floating-button--login {
      background-color: #007bff; /* Blue */
    }

    .page-88blc__floating-button--login:hover {
      background-color: #0056b3;
    }

    @media (max-width: 768px) {
      .page-88blc__brand-keyword {
        font-size: 2em;
      }

      .page-88blc__hero-content {
        padding: 15px;
      }

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

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

      .page-88blc__promotion-link {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-88blc__section {
        padding: 20px 15px;
        margin: 15px auto;
      }

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

      .page-88blc__game-grid,
      .page-88blc__promo-grid,
      .page-88blc__provider-list,
      .page-88blc__payment-list,
      .page-88blc__social-list,
      .page-88blc__news-list {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-88blc__game-item,
      .page-88blc__promo-card,
      .page-88blc__provider-item,
      .page-88blc__payment-item,
      .page-88blc__social-item,
      .page-88blc__news-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        padding: 0 !important; /* Ensure no extra padding from list items */
      }

      .page-88blc__game-image,
      .page-88blc__promo-image,
      .page-88blc__provider-logo,
      .page-88blc__payment-logo,
      .page-88blc__social-icon,
      .page-88blc__news-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-88blc__faq-section {
        padding: 20px 15px;
      }

      .page-88blc__faq-question {
        padding: 12px;
      }

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

      .page-88blc__faq-toggle {
        font-size: 1.2em;
        margin-left: 10px;
      }

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

      .page-88blc__floating-buttons {
        padding: 8px 0;
      }

      .page-88blc__floating-button {
        font-size: 1em;
        padding: 10px 0;
        margin: 0 3px;
      }
    }
  