
    :root {
      --page-f8bet-primary-bg: #1a1a2e;
      --page-f8bet-secondary-bg: #222;
      --page-f8bet-accent-color: #e94560;
      --page-f8bet-text-color: #e0e0e0;
      --page-f8bet-light-text: #ffffff;
      --page-f8bet-border-color: #333;
      --page-f8bet-shadow-color: rgba(0, 0, 0, 0.3);
      --page-f8bet-button-hover: #c73750;
    }

    .page-f8bet {
      font-family: 'Arial', sans-serif;
      color: var(--page-f8bet-text-color);
      background-color: var(--page-f8bet-primary-bg);
      line-height: 1.6;
      overflow-x: hidden;
      margin: 0;
      padding: 0;
    }

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

    .page-f8bet__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--page-f8bet-secondary-bg);
      border-radius: 10px;
      box-shadow: 0 5px 15px var(--page-f8bet-shadow-color);
      text-align: center;
    }

    .page-f8bet__section--no-bg {
      background-color: transparent;
      box-shadow: none;
    }

    .page-f8bet__hero-section {
      text-align: center;
      padding-top: 120px; /* Desktop fixed header compensation */
      padding-bottom: 40px;
      background-color: var(--page-f8bet-primary-bg);
      position: relative;
    }

    .page-f8bet__hero-image {
      width: 100%;
      max-width: 1200px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 20px var(--page-f8bet-shadow-color);
      display: block;
      margin: 0 auto 30px auto;
    }

    .page-f8bet__hero-title {
      font-size: 2.8em;
      color: var(--page-f8bet-light-text);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-f8bet__hero-description {
      font-size: 1.2em;
      color: var(--page-f8bet-text-color);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-f8bet__button {
      display: inline-block;
      background-color: var(--page-f8bet-accent-color);
      color: var(--page-f8bet-light-text);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-f8bet__button:hover {
      background-color: var(--page-f8bet-button-hover);
      transform: translateY(-2px);
    }

    .page-f8bet__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      animation: page-f8bet__pulse 2s infinite;
    }

    @keyframes page-f8bet__pulse {
      0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(233, 69, 96, 0.7); }
      70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(233, 69, 96, 0); }
      100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(233, 69, 96, 0); }
    }

    .page-f8bet__heading {
      font-size: 2.2em;
      color: var(--page-f8bet-light-text);
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-f8bet__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-f8bet-accent-color);
      border-radius: 2px;
    }

    .page-f8bet__text-content {
      font-size: 1.05em;
      color: var(--page-f8bet-text-color);
      margin-bottom: 20px;
      text-align: left;
    }

    .page-f8bet__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-f8bet__game-card {
      background-color: var(--page-f8bet-primary-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px var(--page-f8bet-shadow-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
    }

    .page-f8bet__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(233, 69, 96, 0.4);
    }

    .page-f8bet__game-image-wrapper {
      width: 100%;
      height: 180px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--page-f8bet-secondary-bg);
    }

    .page-f8bet__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Ensure image covers the area without distortion */
      display: block;
    }

    .page-f8bet__game-title {
      font-size: 1.3em;
      color: var(--page-f8bet-light-text);
      padding: 15px;
      text-align: center;
      margin: 0;
    }

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

    .page-f8bet__provider-logo-wrapper {
      background-color: var(--page-f8bet-primary-bg);
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 3px 8px var(--page-f8bet-shadow-color);
      transition: transform 0.3s ease;
      height: 100px; /* Fixed height for provider logos */
      box-sizing: border-box;
    }

    .page-f8bet__provider-logo-wrapper:hover {
      transform: scale(1.05);
    }

    .page-f8bet__provider-logo {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
    }

    .page-f8bet__faq-list {
      margin-top: 30px;
      text-align: left;
    }

    .page-f8bet__faq-item {
      background-color: var(--page-f8bet-primary-bg);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px var(--page-f8bet-shadow-color);
    }

    .page-f8bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      background-color: var(--page-f8bet-secondary-bg);
      border-bottom: 1px solid var(--page-f8bet-border-color);
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

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

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

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

    .page-f8bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-f8bet-text-color);
    }

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

    .page-f8bet__promotion-card {
      background-color: var(--page-f8bet-primary-bg);
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 12px var(--page-f8bet-shadow-color);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-f8bet__promotion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(233, 69, 96, 0.5);
    }

    .page-f8bet__promotion-title {
      font-size: 1.8em;
      color: var(--page-f8bet-accent-color);
      margin-bottom: 15px;
    }

    .page-f8bet__promotion-description {
      font-size: 1.1em;
      color: var(--page-f8bet-text-color);
      margin-bottom: 20px;
    }

    .page-f8bet__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      text-align: left;
    }

    .page-f8bet__list-item {
      background-color: var(--page-f8bet-primary-bg);
      border-left: 5px solid var(--page-f8bet-accent-color);
      padding: 12px 15px;
      margin-bottom: 10px;
      border-radius: 5px;
      box-shadow: 0 2px 5px var(--page-f8bet-shadow-color);
      font-size: 1.05em;
    }
    
    .page-f8bet__image-responsive {
      max-width: 100%;
      height: auto;
      display: block;
      box-sizing: border-box;
      border-radius: 8px; /* Added for general image styling */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-f8bet__hero-section {
        padding-top: 100px; /* Mobile fixed header compensation */
      }

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

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

      .page-f8bet__heading {
        font-size: 1.8em;
      }

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

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

      .page-f8bet__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }

      .page-f8bet__game-image-wrapper {
        height: 150px;
      }
      
      .page-f8bet__image-responsive {
        max-width: 100% !important;
        height: auto !important;
      }

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

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

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

      .page-f8bet__faq-item.active .page-f8bet__faq-answer {
        padding: 15px 15px !important;
      }

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