
    .page-888b-com {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #e0e0e0; /* Light gray text for dark background */
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-888b-com__section-title {
      color: #e94560; /* Accent color */
      font-size: 2.5em;
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
    }

    .page-888b-com__section-description {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px auto;
      font-size: 1.1em;
      color: #b0b0b0;
    }

    .page-888b-com__hero-section {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10px 20px 60px 20px; /* Added 10px top padding for header offset consideration */
      min-height: 80vh;
      background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1d 100%);
      overflow: hidden;
      color: #ffffff;
    }

    .page-888b-com__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 0;
    }

    .page-888b-com__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.2; /* Subtle background image */
      max-width: 100%; /* Responsive image */
    }

    .page-888b-com__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-888b-com__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: #e94560; /* Accent color for title */
      line-height: 1.2;
    }

    .page-888b-com__hero-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      color: #f0f0f0;
    }

    .page-888b-com__hero-cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-888b-com__button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      font-size: 1.1em;
      white-space: nowrap;
      cursor: pointer;
    }

    .page-888b-com__button--primary {
      background-color: #e94560; /* Accent color */
      color: #ffffff;
      border: 2px solid #e94560;
    }

    .page-888b-com__button--primary:hover {
      background-color: #c73a50;
      transform: translateY(-3px);
    }

    .page-888b-com__button--secondary {
      background-color: transparent;
      color: #e94560; /* Accent color */
      border: 2px solid #e94560;
    }

    .page-888b-com__button--secondary:hover {
      background-color: #e94560;
      color: #ffffff;
      transform: translateY(-3px);
    }

    .page-888b-com__button--large {
      padding: 18px 40px;
      font-size: 1.3em;
    }

    .page-888b-com__products-section,
    .page-888b-com__promotions-section,
    .page-888b-com__features-section,
    .page-888b-com__payments-section,
    .page-888b-com__providers-section,
    .page-888b-com__news-section,
    .page-888b-com__faq-section,
    .page-888b-com__cta-final-section {
      padding: 60px 20px;
      background-color: #24243e;
      margin-bottom: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-888b-com__products-grid,
    .page-888b-com__features-grid,
    .page-888b-com__payment-methods-grid,
    .page-888b-com__providers-grid,
    .page-888b-com__news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-888b-com__product-item,
    .page-888b-com__feature-item,
    .page-888b-com__payment-item,
    .page-888b-com__provider-item,
    .page-888b-com__news-item {
      background-color: #1a1a2e;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-888b-com__product-item:hover,
    .page-888b-com__feature-item:hover,
    .page-888b-com__payment-item:hover,
    .page-888b-com__provider-item:hover,
    .page-888b-com__news-item:hover {
      transform: translateY(-5px);
    }

    .page-888b-com__product-image,
    .page-888b-com__feature-image,
    .page-888b-com__payment-image,
    .page-888b-com__provider-image,
    .page-888b-com__news-image,
    .page-888b-com__promotion-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      border-bottom: 1px solid #333;
      margin-bottom: 15px;
      max-width: 100%; /* Responsive image */
    }

    .page-888b-com__product-title,
    .page-888b-com__feature-title,
    .page-888b-com__promotion-title,
    .page-888b-com__news-title {
      font-size: 1.5em;
      color: #e94560;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-888b-com__product-text,
    .page-888b-com__feature-text,
    .page-888b-com__promotion-text {
      font-size: 0.95em;
      color: #b0b0b0;
      padding: 0 15px;
      flex-grow: 1; /* Make text content take available space */
    }

    .page-888b-com__payment-name,
    .page-888b-com__provider-name {
      font-size: 1.1em;
      color: #e0e0e0;
      font-weight: bold;
      padding: 0 15px;
    }

    .page-888b-com__promotion-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto 40px auto;
    }

    .page-888b-com__promotion-card {
      background-color: #1a1a2e;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      padding-bottom: 20px;
      box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-888b-com__promotion-card:hover {
      transform: translateY(-5px);
    }

    .page-888b-com__cta-container {
      text-align: center;
      margin-top: 30px;
    }

    .page-888b-com__news-date {
      font-size: 0.85em;
      color: #888;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-888b-com__news-excerpt {
      font-size: 0.9em;
      color: #b0b0b0;
      padding: 0 15px;
      flex-grow: 1;
    }

    /* FAQ Section */
    .page-888b-com__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-888b-com__faq-item {
      background-color: #1a1a2e;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      box-sizing: border-box; /* Ensure padding and border are included in width */
    }

    .page-888b-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #2e2e4a;
      border-bottom: 1px solid #3a3a5a;
      transition: background-color 0.3s ease;
    }

    .page-888b-com__faq-question:hover {
      background-color: #3a3a5a;
    }

    .page-888b-com__faq-question-text {
      margin: 0;
      font-size: 1.2em;
      color: #e94560;
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
    }

    .page-888b-com__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e94560;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event */
    }

    .page-888b-com__faq-item.active .page-888b-com__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar */
      content: '−'; /* Visually change + to - */
    }

    .page-888b-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    .page-888b-com__faq-answer p {
      margin: 0;
      color: #b0b0b0;
      font-size: 1em;
    }

    /* Floating Register/Login Buttons */
    .page-888b-com__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: #1a1a2e;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
    }

    .page-888b-com__floating-button {
      flex: 1;
      text-align: center;
      padding: 12px 0;
      margin: 0 5px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      box-sizing: border-box;
    }

    .page-888b-com__floating-button--register {
      background-color: #e94560;
      color: #ffffff;
    }

    .page-888b-com__floating-button--register:hover {
      background-color: #c73a50;
      transform: translateY(-2px);
    }

    .page-888b-com__floating-button--login {
      background-color: #3a3a5a;
      color: #e0e0e0;
    }

    .page-888b-com__floating-button--login:hover {
      background-color: #4a4a6a;
      transform: translateY(-2px);
    }


    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-888b-com__hero-title {
        font-size: 2.8em;
      }
      .page-888b-com__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-888b-com__hero-title {
        font-size: 2.2em;
      }
      .page-888b-com__hero-description {
        font-size: 1em;
      }
      .page-888b-com__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-888b-com__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      /* List items responsiveness */
      .page-888b-com__products-grid,
      .page-888b-com__features-grid,
      .page-888b-com__payment-methods-grid,
      .page-888b-com__providers-grid,
      .page-888b-com__news-grid,
      .page-888b-com__promotion-cards {
        grid-template-columns: 1fr !important; /* Force single column */
        padding: 0 10px !important; /* Adjust padding for container */
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-888b-com__product-item,
      .page-888b-com__feature-item,
      .page-888b-com__payment-item,
      .page-888b-com__provider-item,
      .page-888b-com__news-item,
      .page-888b-com__promotion-card,
      .page-888b-com__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important; /* Reset padding for list items, content will have internal padding */
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      
      .page-888b-com__product-title,
      .page-888b-com__feature-title,
      .page-888b-com__promotion-title,
      .page-888b-com__news-title,
      .page-888b-com__product-text,
      .page-888b-com__feature-text,
      .page-888b-com__promotion-text,
      .page-888b-com__payment-name,
      .page-888b-com__provider-name,
      .page-888b-com__news-date,
      .page-888b-com__news-excerpt {
        padding: 0 10px !important; /* Adjust internal padding for text elements */
      }

      .page-888b-com__section-title {
        font-size: 1.8em;
      }
      .page-888b-com__section-description {
        font-size: 0.95em;
      }

      .page-888b-com__faq-question {
        padding: 15px;
      }
      .page-888b-com__faq-question-text {
        font-size: 1.1em;
      }
      .page-888b-com__faq-answer {
        padding: 0 15px;
      }
      .page-888b-com__faq-item.active .page-888b-com__faq-answer {
        padding: 15px !important;
      }

      .page-888b-com__floating-button {
        font-size: 1em;
        padding: 10px 0;
        margin: 0 2px;
      }
    }

    @media (max-width: 480px) {
      .page-888b-com__hero-title {
        font-size: 1.8em;
      }
      .page-888b-com__hero-description {
        font-size: 0.9em;
      }
      .page-888b-com__section-title {
        font-size: 1.6em;
      }
      .page-888b-com__button {
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-888b-com__faq-question-text {
        font-size: 1em;
      }
    }
  