
    :root {
      --page-f8bet__primary-color: #007bff; /* Blue */
      --page-f8bet__secondary-color: #6c757d; /* Grey */
      --page-f8bet__accent-color: #ffc107; /* Yellow */
      --page-f8bet__text-color: #333;
      --page-f8bet__background-color: #f8f9fa;
      --page-f8bet__card-background: #fff;
      --page-f8bet__border-color: #e9ecef;
      --page-f8bet__hover-color: #0056b3;
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-f8bet__text-color);
      background-color: var(--page-f8bet__background-color);
      margin: 0;
      padding: 0;
    }

    .page-f8bet {
      max-width: 100%;
      margin: 0 auto;
      overflow-x: hidden;
      box-sizing: border-box;
    }

    .page-f8bet__hero-section {
      position: relative;
      width: 100%;
      background-color: #1a2a3a;
      color: #fff;
      text-align: center;
      padding: 10px 0 40px 0; /* Add padding-top for fixed header */
      box-sizing: border-box;
      overflow: hidden;
    }

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

    .page-f8bet__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: cover;
      border-radius: 8px;
    }

    .page-f8bet__hero-content {
      padding: 0 15px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-f8bet__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: var(--page-f8bet__accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

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

    .page-f8bet__button {
      display: inline-block;
      background-color: var(--page-f8bet__primary-color);
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-f8bet__button:hover {
      background-color: var(--page-f8bet__hover-color);
    }

    .page-f8bet__floating-button-wrapper {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      width: 90%;
      max-width: 400px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      border-radius: 10px;
      overflow: hidden;
      animation: page-f8bet__float-up 0.8s ease-out forwards;
      opacity: 0;
      visibility: hidden;
    }

    .page-f8bet__floating-button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 15px 20px;
      background: linear-gradient(90deg, #ff6b6b, #ffda79); /* Attractive gradient */
      color: #fff;
      font-size: 1.2em;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      border-radius: 10px;
      transition: transform 0.2s ease-in-out;
      border: none;
      cursor: pointer;
    }

    .page-f8bet__floating-button:hover {
      transform: translateY(-3px);
    }

    .page-f8bet__floating-button-icon {
      margin-right: 10px;
      font-size: 1.5em;
    }

    @keyframes page-f8bet__float-up {
      from {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
        visibility: hidden;
      }
      to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        visibility: visible;
      }
    }

    .page-f8bet__section {
      padding: 40px 15px;
      margin-bottom: 20px;
      background-color: var(--page-f8bet__card-background);
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-f8bet__section-title {
      font-size: 2em;
      color: var(--page-f8bet__primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-f8bet__section-title::after {
      content: '';
      width: 60px;
      height: 4px;
      background-color: var(--page-f8bet__accent-color);
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .page-f8bet__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-content: center;
      margin-top: 30px;
    }

    .page-f8bet__game-card {
      background-color: #f0f2f5;
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 180px;
    }

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

    .page-f8bet__game-image-wrapper {
      width: 100%;
      max-width: 150px; /* Constrain image width for cards */
      height: auto;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 10px;
    }

    .page-f8bet__game-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 5px;
      object-fit: cover;
    }

    .page-f8bet__game-title {
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-f8bet__primary-color);
      margin-top: 10px;
    }

    .page-f8bet__content-text {
      font-size: 1em;
      line-height: 1.8;
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-f8bet__content-list {
      list-style-type: disc;
      padding-left: 25px;
      margin-bottom: 20px;
    }

    .page-f8bet__content-list-item {
      margin-bottom: 10px;
    }

    .page-f8bet__call-to-action {
      text-align: center;
      margin-top: 40px;
      padding: 20px;
      background-color: #e6f2ff;
      border-radius: 8px;
      border: 1px dashed var(--page-f8bet__primary-color);
    }

    .page-f8bet__call-to-action-text {
      font-size: 1.3em;
      margin-bottom: 20px;
      color: #004085;
      font-weight: bold;
    }

    .page-f8bet__faq-section {
      background-color: var(--page-f8bet__card-background);
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      padding: 40px 15px;
      max-width: 1200px;
      margin: 20px auto 40px auto;
      box-sizing: border-box;
    }

    .page-f8bet__faq-item {
      border-bottom: 1px solid var(--page-f8bet__border-color);
      margin-bottom: 10px;
    }

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

    .page-f8bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      cursor: pointer;
      background-color: #f0f2f5;
      border-radius: 5px;
      margin-bottom: 5px;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-f8bet__faq-question:hover {
      background-color: #e2e6ea;
    }

    .page-f8bet__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-f8bet__primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-f8bet__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-f8bet__primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-f8bet__faq-item.active .page-f8bet__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-f8bet__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;
      background-color: #fdfdfd;
      border-radius: 0 0 5px 5px;
      opacity: 0;
    }

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

    .page-f8bet__faq-answer p {
      margin: 0;
      color: var(--page-f8bet__text-color);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-f8bet__hero-section {
        padding-top: 10px; /* Adjust for mobile fixed header */
      }

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

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

      .page-f8bet__section {
        padding: 30px 10px;
      }

      .page-f8bet__section-title {
        font-size: 1.6em;
        margin-bottom: 20px;
      }

      .page-f8bet__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }

      .page-f8bet__game-card {
        padding: 10px;
        min-height: 150px;
      }

      .page-f8bet__game-image-wrapper {
        max-width: 100px;
      }

      .page-f8bet__game-title {
        font-size: 0.95em;
      }

      .page-f8bet__content-text {
        font-size: 0.95em;
      }

      .page-f8bet__call-to-action-text {
        font-size: 1.1em;
      }

      .page-f8bet__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-f8bet__floating-button {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-f8bet__floating-button-icon {
        font-size: 1.2em;
      }

      .page-f8bet__faq-question {
        padding: 12px;
      }

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

      .page-f8bet__faq-toggle {
        font-size: 1.3em;
      }

      .page-f8bet__faq-answer {
        padding: 15px 12px;
      }
    }

    /* Ensure all images are responsive */
    .page-f8bet img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .page-f8bet__hero-image-wrapper,
    .page-f8bet__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    @media (max-width: 768px) {
        .page-f8bet img {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-f8bet__hero-image-wrapper,
        .page-f8bet__game-image-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }
  