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

    .page-8fbet__section {
      padding: 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .page-8fbet__section--no-bg {
      background-color: transparent;
      box-shadow: none;
      padding: 0;
    }

    .page-8fbet__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-8fbet__title {
      font-size: 2.2em;
      color: #0056b3; /* Darker blue for contrast */
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
      padding-top: 10px; /* Small decorative top padding */
    }

    .page-8fbet__subtitle {
      font-size: 1.8em;
      color: #007bff;
      text-align: center;
      margin-bottom: 15px;
    }

    .page-8fbet__text {
      font-size: 1em;
      margin-bottom: 10px;
      color: #555;
    }

    .page-8fbet__button {
      display: inline-block;
      background-color: #ff4500; /* Orange-red for action */
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      text-align: center;
    }

    .page-8fbet__button:hover {
      background-color: #e03e00;
    }

    /* Hero Section */
    .page-8fbet__hero-section {
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #fff;
      padding: 40px 20px;
      text-align: center;
      border-radius: 0;
      margin-bottom: 20px;
      box-shadow: none;
    }

    .page-8fbet__hero-title {
      font-size: 2.8em;
      margin-bottom: 10px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      line-height: 1.2;
    }

    .page-8fbet__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Product Grid */
    .page-8fbet__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

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

    .page-8fbet__product-card:hover {
      transform: translateY(-5px);
    }

    .page-8fbet__product-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 15px;
    }

    .page-8fbet__product-image {
      max-width: 100%;
      height: auto;
      border-radius: 4px;
      display: block;
      margin: 0 auto; /* Centering the image */
    }

    .page-8fbet__product-title {
      font-size: 1.3em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8fbet__product-description {
      font-size: 0.95em;
      color: #666;
    }

    /* Promotions */
    .page-8fbet__promo-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
      padding: 0;
      list-style: none;
    }

    .page-8fbet__promo-item {
      background-color: #e9f5ff;
      padding: 15px;
      border-left: 5px solid #007bff;
      border-radius: 5px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
      box-sizing: border-box !important; /* Ensure box-sizing */
      width: 100%;
    }

    .page-8fbet__promo-item strong {
      color: #0056b3;
    }

    /* News */
    .page-8fbet__news-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .page-8fbet__news-item {
      background-color: #f9f9f9;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box !important; /* Ensure box-sizing */
      width: 100%;
    }

    .page-8fbet__news-item-title {
      font-size: 1.2em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8fbet__news-date {
      font-size: 0.85em;
      color: #999;
      margin-bottom: 10px;
      display: block;
    }

    .page-8fbet__news-summary {
      font-size: 0.95em;
      color: #555;
    }

    /* FAQ Section */
    .page-8fbet__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8fbet__faq-item {
      background-color: #f0f8ff;
      border: 1px solid #cceeff;
      margin-bottom: 10px;
      border-radius: 5px;
      overflow: hidden;
      box-sizing: border-box !important; /* Ensure box-sizing */
      width: 100%;
    }

    .page-8fbet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      background-color: #007bff;
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-8fbet__faq-question:hover {
      background-color: #0056b3;
    }

    .page-8fbet__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #fff;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

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

    .page-8fbet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #333;
      background-color: #e9f5ff;
    }

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

    /* Floating Buttons */
    .page-8fbet__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.3);
      z-index: 1000;
      box-sizing: border-box;
    }

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

    .page-8fbet__floating-button:hover {
      background-color: #e03e00;
    }

    .page-8fbet__floating-button--login {
      background-color: #007bff;
    }

    .page-8fbet__floating-button--login:hover {
      background-color: #0056b3;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-8fbet__title {
        font-size: 1.8em;
      }

      .page-8fbet__hero-title {
        font-size: 2.2em;
      }

      .page-8fbet__hero-description {
        font-size: 1em;
      }

      .page-8fbet__subtitle {
        font-size: 1.5em;
      }

      .page-8fbet__product-grid {
        grid-template-columns: 1fr;
      }

      .page-8fbet__promo-list,
      .page-8fbet__news-list,
      .page-8fbet__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8fbet__promo-item,
      .page-8fbet__news-item,
      .page-8fbet__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

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

      .page-8fbet__floating-button {
        font-size: 1em;
        padding: 10px 0;
      }
    }

    @media (max-width: 480px) {
      .page-8fbet__hero-title {
        font-size: 1.8em;
      }

      .page-8fbet__hero-description {
        font-size: 0.9em;
      }

      .page-8fbet__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-8fbet__section {
        padding: 15px;
      }
    }
  