
    :root {
      --page-8kbetbuzz__primary-bg: #1a1a1a;
      --page-8kbetbuzz__secondary-bg: #2a2a2a;
      --page-8kbetbuzz__text-color: #f0f0f0;
      --page-8kbetbuzz__accent-color: #FFD700; /* Gold */
      --page-8kbetbuzz__button-bg: #4CAF50; /* Green */
      --page-8kbetbuzz__button-text: #ffffff;
      --page-8kbetbuzz__border-color: #444;
      --page-8kbetbuzz__shadow-color: rgba(0, 0, 0, 0.5);
    }

    .page-8kbetbuzz {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-8kbetbuzz__primary-bg);
      color: var(--page-8kbetbuzz__text-color);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed button */
    }

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

    .page-8kbetbuzz__hero-section {
      text-align: center;
      padding: 10px 0 40px; /* Adjusted padding-top for fixed header */
      background-color: var(--page-8kbetbuzz__secondary-bg);
      margin-bottom: 30px;
      position: relative;
    }

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

    .page-8kbetbuzz__hero-content {
      padding: 0 20px;
    }

    .page-8kbetbuzz__hero-title {
      color: var(--page-8kbetbuzz__accent-color);
      font-size: 2.5em;
      margin-bottom: 15px;
      line-height: 1.2;
    }

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

    .page-8kbetbuzz__cta-button {
      display: inline-block;
      background-color: var(--page-8kbetbuzz__button-bg);
      color: var(--page-8kbetbuzz__button-text);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px var(--page-8kbetbuzz__shadow-color);
    }

    .page-8kbetbuzz__cta-button:hover {
      background-color: #5cb85c;
      transform: translateY(-2px);
    }

    .page-8kbetbuzz__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #FF0000; /* Red for urgency */
      color: white;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      z-index: 1000;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
      animation: page-8kbetbuzz__pulse 1.5s infinite;
      text-align: center;
      white-space: nowrap;
    }

    .page-8kbetbuzz__floating-button:hover {
      background-color: #cc0000;
      animation: none;
    }

    @keyframes page-8kbetbuzz__pulse {
      0% { transform: translateX(-50%) scale(1); }
      50% { transform: translateX(-50%) scale(1.05); }
      100% { transform: translateX(-50%) scale(1); }
    }

    .page-8kbetbuzz__section-title {
      color: var(--page-8kbetbuzz__accent-color);
      text-align: center;
      font-size: 2em;
      margin-bottom: 30px;
      border-bottom: 2px solid var(--page-8kbetbuzz__border-color);
      padding-bottom: 10px;
    }

    .page-8kbetbuzz__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-bottom: 40px;
    }

    .page-8kbetbuzz__game-card {
      background-color: var(--page-8kbetbuzz__secondary-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px var(--page-8kbetbuzz__shadow-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      border: 1px solid var(--page-8kbetbuzz__border-color);
    }

    .page-8kbetbuzz__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px var(--page-8kbetbuzz__shadow-color);
    }

    .page-8kbetbuzz__game-card-link {
      text-decoration: none;
      color: var(--page-8kbetbuzz__text-color);
      display: block;
      padding-bottom: 20px;
    }

    .page-8kbetbuzz__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000;
    }

    .page-8kbetbuzz__game-card-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-8kbetbuzz__game-card-link:hover .page-8kbetbuzz__game-card-image {
      transform: scale(1.05);
    }

    .page-8kbetbuzz__game-card-title {
      font-size: 1.4em;
      margin-top: 15px;
      color: var(--page-8kbetbuzz__accent-color);
    }

    .page-8kbetbuzz__content-section {
      background-color: var(--page-8kbetbuzz__secondary-bg);
      padding: 30px;
      border-radius: 10px;
      margin-bottom: 30px;
      box-shadow: 0 4px 10px var(--page-8kbetbuzz__shadow-color);
    }

    .page-8kbetbuzz__content-section h2 {
      color: var(--page-8kbetbuzz__accent-color);
      font-size: 1.8em;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-8kbetbuzz__content-section h3 {
      color: var(--page-8kbetbuzz__text-color);
      font-size: 1.4em;
      margin-top: 25px;
      margin-bottom: 15px;
    }

    .page-8kbetbuzz__content-section p {
      margin-bottom: 15px;
      color: var(--page-8kbetbuzz__text-color);
    }

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

    .page-8kbetbuzz__content-list li {
      margin-bottom: 10px;
      color: var(--page-8kbetbuzz__text-color);
    }

    .page-8kbetbuzz__image-centered {
      display: block;
      margin: 20px auto;
      width: 100%;
      max-width: 600px;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px var(--page-8kbetbuzz__shadow-color);
    }

    .page-8kbetbuzz__faq-section {
      margin-top: 40px;
    }

    .page-8kbetbuzz__faq-item {
      background-color: var(--page-8kbetbuzz__secondary-bg);
      border: 1px solid var(--page-8kbetbuzz__border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px var(--page-8kbetbuzz__shadow-color);
    }

    .page-8kbetbuzz__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #333;
      color: var(--page-8kbetbuzz__text-color);
      font-size: 1.1em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-8kbetbuzz__faq-question:hover {
      background-color: #444;
    }

    .page-8kbetbuzz__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      text-align: left;
      color: var(--page-8kbetbuzz__text-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8kbetbuzz__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      color: var(--page-8kbetbuzz__accent-color);
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
    }

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

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

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

    .page-8kbetbuzz__faq-answer p {
      margin: 0 0 10px 0;
    }

    .page-8kbetbuzz__final-cta {
      text-align: center;
      margin-top: 50px;
      padding: 40px 20px;
      background-color: var(--page-8kbetbuzz__secondary-bg);
      border-radius: 10px;
      box-shadow: 0 4px 15px var(--page-8kbetbuzz__shadow-color);
    }

    .page-8kbetbuzz__final-cta h2 {
      color: var(--page-8kbetbuzz__accent-color);
      font-size: 2.2em;
      margin-bottom: 20px;
    }

    .page-8kbetbuzz__final-cta p {
      font-size: 1.1em;
      margin-bottom: 30px;
    }

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

    .page-8kbetbuzz__provider-logo-wrapper {
        width: 100%;
        max-width: 180px;
        height: 100px; /* Fixed height for logos */
        background-color: #000;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        box-shadow: 0 2px 5px var(--page-8kbetbuzz__shadow-color);
        transition: transform 0.3s ease;
    }
    .page-8kbetbuzz__provider-logo-wrapper:hover {
        transform: scale(1.05);
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8kbetbuzz__container {
        padding: 15px;
      }

      .page-8kbetbuzz__hero-section {
        padding-top: 10px; /* Mobile padding-top for fixed header */
      }

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

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

      .page-8kbetbuzz__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8kbetbuzz__section-title {
        font-size: 1.6em;
      }

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

      .page-8kbetbuzz__game-card-image-wrapper {
        height: 180px;
      }

      .page-8kbetbuzz__content-section {
        padding: 20px;
      }

      .page-8kbetbuzz__content-section h2 {
        font-size: 1.5em;
      }

      .page-8kbetbuzz__content-section h3 {
        font-size: 1.2em;
      }

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

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

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

      .page-8kbetbuzz__final-cta h2 {
        font-size: 1.8em;
      }

      .page-8kbetbuzz__final-cta p {
        font-size: 1em;
      }

      .page-8kbetbuzz__floating-button {
        width: calc(100% - 40px);
        bottom: 15px;
        font-size: 0.95em;
        padding: 10px 15px;
      }

      /* Image responsiveness for all images */
      .page-8kbetbuzz img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8kbetbuzz__game-card-image,
      .page-8kbetbuzz__hero-image,
      .page-8kbetbuzz__image-centered,
      .page-8kbetbuzz__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8kbetbuzz__game-card-image-wrapper,
      .page-8kbetbuzz__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  