
    .page-8f-bet {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      overflow-x: hidden;
    }

    .page-8f-bet__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-8f-bet__hero-section {
      position: relative;
      background-color: #0d1a26;
      color: #fff;
      text-align: center;
      padding: 10px 0 60px 0;
      overflow: hidden;
    }

    .page-8f-bet__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-8f-bet__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
    }

    .page-8f-bet__hero-title {
      font-size: 2.8em;
      margin-bottom: 10px;
      color: #ffd700; /* Gold color for brand */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

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

    .page-8f-bet__cta-button {
      display: inline-block;
      background-color: #ffd700;
      color: #0d1a26;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8f-bet__cta-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

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

    .page-8f-bet__section--dark {
      background-color: #0d1a26;
      color: #fff;
    }

    .page-8f-bet__section-title {
      font-size: 2em;
      color: #0d1a26;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-8f-bet__section--dark .page-8f-bet__section-title {
      color: #ffd700;
    }

    .page-8f-bet__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #ffd700;
      margin: 10px auto 0;
    }

    .page-8f-bet__text-content {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 30px;
    }

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

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

    .page-8f-bet__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

    .page-8f-bet__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-8f-bet__game-card-title {
      font-size: 1.4em;
      margin: 15px 0 10px;
      color: #0d1a26;
      padding: 0 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-8f-bet__game-card-description {
      font-size: 0.95em;
      color: #555;
      padding: 0 15px;
    }

    .page-8f-bet__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      justify-content: center;
    }

    .page-8f-bet__promo-card {
      background-color: #1a2e40;
      color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-8f-bet__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    }

    .page-8f-bet__promo-card-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-8f-bet__promo-card-title {
      font-size: 1.5em;
      margin: 15px 0 10px;
      color: #ffd700;
      padding: 0 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-8f-bet__promo-card-description {
      font-size: 1em;
      color: #ccc;
      padding: 0 15px;
    }

    .page-8f-bet__payment-grid,
    .page-8f-bet__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-content: center;
      padding: 20px 0;
    }

    .page-8f-bet__payment-item,
    .page-8f-bet__provider-item {
      text-align: center;
      background-color: #f0f0f0;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 120px;
      box-sizing: border-box;
    }

    .page-8f-bet__payment-image,
    .page-8f-bet__provider-image {
      max-width: 100%;
      height: auto;
      max-height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .page-8f-bet__payment-name,
    .page-8f-bet__provider-name {
      font-weight: bold;
      color: #0d1a26;
      font-size: 0.9em;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-8f-bet__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8f-bet__faq-item {
      background-color: #f0f0f0;
      border-radius: 8px;
      margin-bottom: 10px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

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

    .page-8f-bet__faq-question:hover {
      background-color: #d0d0d0;
    }

    .page-8f-bet__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
      flex-grow: 1;
      text-align: left;
    }

    .page-8f-bet__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none;
    }

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

    .page-8f-bet__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;
      background-color: #f8f8f8;
      border-top: 1px solid #e0e0e0;
    }

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

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

    .page-8f-bet__floating-button {
      background-color: #ffd700;
      color: #0d1a26;
      padding: 12px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
    }

    .page-8f-bet__floating-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

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

      .page-8f-bet__hero-subtitle {
        font-size: 1em;
      }

      .page-8f-bet__section-title {
        font-size: 1.7em;
      }

      .page-8f-bet__game-grid,
      .page-8f-bet__promo-grid,
      .page-8f-bet__payment-grid,
      .page-8f-bet__provider-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-8f-bet__game-card,
      .page-8f-bet__promo-card,
      .page-8f-bet__payment-item,
      .page-8f-bet__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px;
      }

      .page-8f-bet__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-8f-bet__faq-question h3 {
        font-size: 1em;
      }

      .page-8f-bet__faq-answer {
        padding: 15px 15px !important;
      }

      .page-8f-bet__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row;
        left: 15px;
        justify-content: space-around;
      }

      .page-8f-bet__floating-button {
        flex: 1;
        margin: 0 5px;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-8f-bet__container {
        padding: 10px;
      }
    }
  