
    /* CSS for page-8kbet */
    :root {
      --page-8kbet-primary-bg: #1a1a1a;
      --page-8kbet-secondary-bg: #2c2c2c;
      --page-8kbet-text-color: #f0f0f0;
      --page-8kbet-accent-color: #FFD700; /* Gold */
      --page-8kbet-button-bg: #007bff; /* Blue for action */
      --page-8kbet-button-hover-bg: #0056b3;
      --page-8kbet-promo-color: #e74c3c; /* Red for promotions */
      --page-8kbet-border-color: #444;
      --page-8kbet-shadow: rgba(0, 0, 0, 0.5);
    }

    .page-8kbet {
      font-family: 'Arial', sans-serif;
      color: var(--page-8kbet-text-color);
      background-color: var(--page-8kbet-primary-bg);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    /* General Typography */
    .page-8kbet h1, .page-8kbet h2, .page-8kbet h3, .page-8kbet h4 {
      color: var(--page-8kbet-accent-color);
      text-align: center;
      margin-bottom: 1em;
      text-shadow: 0 2px 4px var(--page-8kbet-shadow);
    }

    .page-8kbet h1 {
      font-size: 2.2em;
      margin-top: 1em;
    }

    .page-8kbet h2 {
      font-size: 1.8em;
      margin-top: 1.5em;
    }

    .page-8kbet h3 {
      font-size: 1.4em;
      margin-top: 1.2em;
    }

    .page-8kbet p {
      margin-bottom: 1em;
      text-align: justify;
    }

    .page-8kbet strong {
      color: var(--page-8kbet-accent-color);
    }

    .page-8kbet a {
      color: var(--page-8kbet-button-bg);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-8kbet a:hover {
      color: var(--page-8kbet-accent-color);
      text-decoration: underline;
    }

    /* Container for sections */
    .page-8kbet-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px;
    }

    /* Hero Section */
    .page-8kbet-hero {
      position: relative;
      text-align: center;
      padding: 20px 0 40px;
      background-color: var(--page-8kbet-secondary-bg);
      border-bottom: 2px solid var(--page-8kbet-border-color);
    }

    .page-8kbet-hero-banner {
      width: 100%;
      max-height: 300px;
      object-fit: cover;
      display: block;
      margin: 0 auto; /* Centered banner */
      border-radius: 8px;
      box-shadow: 0 4px 15px var(--page-8kbet-shadow);
    }

    .page-8kbet-hero-content {
      padding: 20px 15px;
      position: relative;
      z-index: 1;
    }

    .page-8kbet-hero h1 {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: var(--page-8kbet-accent-color);
      text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    }

    .page-8kbet-hero p {
      font-size: 1.1em;
      margin-bottom: 25px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--page-8kbet-text-color);
    }

    /* Floating Buttons */
    .page-8kbet-floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.9);
      border-top: 1px solid var(--page-8kbet-border-color);
      z-index: 1000;
      box-shadow: 0 -4px 15px var(--page-8kbet-shadow);
    }

    .page-8kbet-floating-buttons .page-8kbet-button {
      flex: 1;
      margin: 0 5px;
      padding: 12px 15px;
      font-size: 1.1em;
      font-weight: bold;
      border-radius: 50px;
      text-align: center;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .page-8kbet-floating-buttons .page-8kbet-button.register {
      background-color: var(--page-8kbet-promo-color); /* Red for urgency */
      color: white;
      border: 2px solid var(--page-8kbet-promo-color);
    }

    .page-8kbet-floating-buttons .page-8kbet-button.register:hover {
      background-color: #c0392b;
      border-color: #c0392b;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(231, 76, 60, 0.4);
    }

    .page-8kbet-floating-buttons .page-8kbet-button.login {
      background-color: var(--page-8kbet-button-bg);
      color: white;
      border: 2px solid var(--page-8kbet-button-bg);
    }

    .page-8kbet-floating-buttons .page-8kbet-button.login:hover {
      background-color: var(--page-8kbet-button-hover-bg);
      border-color: var(--page-8kbet-button-hover-bg);
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 123, 255, 0.4);
    }

    /* Game Categories/Products */
    .page-8kbet-game-categories {
      padding: 40px 0;
      background-color: var(--page-8kbet-primary-bg);
    }

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

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

    .page-8kbet-game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    }

    .page-8kbet-game-card img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid var(--page-8kbet-border-color);
    }

    .page-8kbet-game-card h3 {
      font-size: 1.1em;
      margin: 15px 10px;
      color: var(--page-8kbet-accent-color);
    }
    
    .page-8kbet-game-card h3 a {
      color: var(--page-8kbet-accent-color);
    }
    .page-8kbet-game-card h3 a:hover {
      color: var(--page-8kbet-text-color);
    }

    /* Why Choose Us */
    .page-8kbet-why-choose {
      padding: 40px 0;
      background-color: var(--page-8kbet-secondary-bg);
      border-top: 1px solid var(--page-8kbet-border-color);
      border-bottom: 1px solid var(--page-8kbet-border-color);
    }

    .page-8kbet-feature-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 30px;
    }

    .page-8kbet-feature-item {
      background-color: var(--page-8kbet-primary-bg);
      border: 1px solid var(--page-8kbet-border-color);
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      flex: 1 1 calc(33% - 40px);
      min-width: 280px;
      box-shadow: 0 4px 10px var(--page-8kbet-shadow);
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .page-8kbet-feature-item:hover {
      transform: translateY(-5px);
      background-color: #222;
    }

    .page-8kbet-feature-item img {
      width: 60px;
      height: 60px;
      margin-bottom: 15px;
      filter: drop-shadow(0 0 5px var(--page-8kbet-accent-color));
    }

    .page-8kbet-feature-item h3 {
      color: var(--page-8kbet-accent-color);
      font-size: 1.25em;
      margin-bottom: 10px;
    }

    .page-8kbet-feature-item p {
      font-size: 0.95em;
      color: #ccc;
    }

    /* Promotions */
    .page-8kbet-promotions {
      padding: 40px 0;
      background-color: var(--page-8kbet-primary-bg);
    }

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

    .page-8kbet-promo-card {
      background-color: var(--page-8kbet-secondary-bg);
      border: 1px solid var(--page-8kbet-border-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px var(--page-8kbet-shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8kbet-promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
    }

    .page-8kbet-promo-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid var(--page-8kbet-border-color);
    }

    .page-8kbet-promo-card-content {
      padding: 20px;
    }

    .page-8kbet-promo-card h3 {
      font-size: 1.2em;
      color: var(--page-8kbet-promo-color);
      margin-top: 0;
      margin-bottom: 10px;
      text-align: left;
    }

    .page-8kbet-promo-card p {
      font-size: 0.9em;
      color: #ccc;
      margin-bottom: 15px;
      text-align: left;
    }

    .page-8kbet-promo-card .page-8kbet-button {
      display: inline-block;
      background-color: var(--page-8kbet-promo-color);
      color: white;
      padding: 8px 15px;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-8kbet-promo-card .page-8kbet-button:hover {
      background-color: #c0392b;
    }

    /* FAQ Section */
    .page-8kbet-faq {
      padding: 40px 0 80px; /* Extra padding for floating buttons */
      background-color: var(--page-8kbet-secondary-bg);
      border-top: 1px solid var(--page-8kbet-border-color);
    }

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

    .page-8kbet-faq-question {
      padding: 15px 20px;
      background-color: var(--page-8kbet-secondary-bg);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      color: var(--page-8kbet-accent-color);
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

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

    .page-8kbet-faq-question::after {
      content: '+';
      font-size: 1.2em;
      transition: transform 0.3s ease;
    }

    .page-8kbet-faq-question.active::after {
      content: '-';
      transform: rotate(180deg);
    }

    .page-8kbet-faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out, padding 0.4s ease-out;
      color: #ccc;
      font-size: 0.95em;
    }

    .page-8kbet-faq-answer.active {
      max-height: 200px; /* Adjust based on expected content */
      padding: 15px 20px;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8kbet h1 {
        font-size: 2em;
      }
      .page-8kbet h2 {
        font-size: 1.5em;
      }
      .page-8kbet-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-8kbet-game-card img {
        height: 100px;
      }
      .page-8kbet-feature-item {
        flex: 1 1 100%;
        min-width: auto;
      }
      .page-8kbet-promo-grid {
        grid-template-columns: 1fr;
      }
      .page-8kbet-floating-buttons .page-8kbet-button {
        font-size: 1em;
        padding: 10px 10px;
      }
    }

    @media (max-width: 480px) {
      .page-8kbet-hero h1 {
        font-size: 1.8em;
      }
      .page-8kbet-hero p {
        font-size: 1em;
      }
      .page-8kbet-game-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on very small screens */
      }
      .page-8kbet-game-card h3 {
        font-size: 1em;
        margin: 10px 5px;
      }
    }
  