
    :root {
      --page-8kbet8__bg-color: #000000;
      --page-8kbet8__text-color: #FFFFFF;
      --page-8kbet8__accent-color: #FFD700; /* Gold/Yellow */
      --page-8kbet8__dark-accent: #DAA520; /* Darker Gold */
      --page-8kbet8__border-color: #333333;
    }

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

    .page-8kbet8 {
      background-color: var(--page-8kbet8__bg-color);
      color: var(--page-8kbet8__text-color);
      overflow-x: hidden;
    }

    .page-8kbet8__section {
      padding: 40px 15px;
      margin-bottom: 20px;
      border-bottom: 1px solid var(--page-8kbet8__border-color);
    }

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

    .page-8kbet8__title {
      color: var(--page-8kbet8__accent-color);
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.5em;
      line-height: 1.2;
    }

    .page-8kbet8__subtitle {
      color: var(--page-8kbet8__accent-color);
      text-align: center;
      margin-bottom: 20px;
      font-size: 1.8em;
    }

    .page-8kbet8__text {
      font-size: 1.1em;
      line-height: 1.8;
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-8kbet8__text strong {
      color: var(--page-8kbet8__accent-color);
    }

    .page-8kbet8__button {
      display: inline-block;
      background-color: var(--page-8kbet8__accent-color);
      color: var(--page-8kbet8__bg-color);
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      border: none;
      cursor: pointer;
    }

    .page-8kbet8__button:hover {
      background-color: var(--page-8kbet8__dark-accent);
      transform: translateY(-2px);
    }

    .page-8kbet8__button--primary {
      background-color: var(--page-8kbet8__accent-color);
    }

    .page-8kbet8__button--secondary {
      background-color: var(--page-8kbet8__border-color);
      color: var(--page-8kbet8__text-color);
    }

    /* Hero Section */
    .page-8kbet8__hero-section {
      background-color: var(--page-8kbet8__bg-color);
      color: var(--page-8kbet8__text-color);
      text-align: center;
      padding-top: 10px; /* Desktop */
      padding-bottom: 40px;
      position: relative;
      overflow: hidden;
    }

    .page-8kbet8__hero-content {
      position: relative;
      z-index: 10;
      max-width: 900px;
      margin: 0 auto;
    }

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

    .page-8kbet8__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
    }

    .page-8kbet8__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: var(--page-8kbet8__accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

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

    /* Floating Login Button */
    .page-8kbet8__floating-button-wrapper {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    .page-8kbet8__floating-button {
      background-color: #FF0000; /* Red for urgency */
      color: var(--page-8kbet8__text-color);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      animation: page-8kbet8__pulse 2s infinite;
      display: flex;
      align-items: center;
      gap: 10px;
      border: none;
      cursor: pointer;
    }

    .page-8kbet8__floating-button:hover {
      background-color: #CC0000;
      animation: none;
    }

    .page-8kbet8__floating-button-icon {
      font-size: 1.5em;
    }

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

    /* Game Categories */
    .page-8kbet8__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-8kbet8__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-8kbet8__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-8kbet8__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistent card appearance */
    }

    .page-8kbet8__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-8kbet8__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-8kbet8__game-card-title {
      font-size: 1.5em;
      color: var(--page-8kbet8__accent-color);
      margin-bottom: 10px;
      text-align: center;
    }

    .page-8kbet8__game-card-description {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 15px;
      text-align: center;
    }

    .page-8kbet8__game-card-button {
      width: 100%;
      margin-top: auto; /* Push button to bottom */
    }

    /* Game Providers */
    .page-8kbet8__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-8kbet8__provider-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .page-8kbet8__provider-item:hover {
      transform: translateY(-3px);
    }

    .page-8kbet8__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 100px; /* Fixed height for logos */
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 10px;
    }

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

    .page-8kbet8__provider-name {
      font-size: 1em;
      color: var(--page-8kbet8__text-color);
      font-weight: bold;
    }

    /* FAQ Section */
    .page-8kbet8__faq-list {
      margin-top: 30px;
    }

    .page-8kbet8__faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8kbet8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #2a2a2a;
      transition: background-color 0.3s ease;
    }

    .page-8kbet8__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-8kbet8__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-8kbet8__text-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

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

    .page-8kbet8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding, adjust when active */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #ccc;
    }

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

    /* Social Media */
    .page-8kbet8__social-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8kbet8__social-link {
      background-color: #2a2a2a;
      color: var(--page-8kbet8__text-color);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5em;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-8kbet8__social-link:hover {
      background-color: var(--page-8kbet8__accent-color);
      color: var(--page-8kbet8__bg-color);
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8kbet8__hero-section {
        padding-top: 150px; /* Mobile safe area for fixed header */
        padding-bottom: 30px;
      }

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

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

      .page-8kbet8__section {
        padding: 30px 10px;
      }

      .page-8kbet8__title {
        font-size: 2em;
        margin-bottom: 20px;
      }

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

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

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

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

      .page-8kbet8__faq-question {
        padding: 15px;
      }

      .page-8kbet8__faq-question h3 {
        font-size: 1.1em;
      }

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

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

      .page-8kbet8__floating-button {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }

      /* Ensure all images are responsive on mobile */
      .page-8kbet8__hero-image,
      .page-8kbet8__game-card-image,
      .page-8kbet8__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-8kbet8__hero-image-wrapper,
      .page-8kbet8__game-card-image-wrapper,
      .page-8kbet8__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  