
    :root {
      --page-8k-be-primary: #FFD700; /* Gold */
      --page-8k-be-secondary: #000000; /* Black */
      --page-8k-be-accent: #FF4500; /* OrangeRed */
      --page-8k-be-text-light: #FFFFFF;
      --page-8k-be-text-dark: #333333;
      --page-8k-be-bg-dark: #1a1a1a;
      --page-8k-be-bg-light: #f0f0f0;
      --page-8k-be-border-radius: 8px;
    }

    .page-8k-be {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k-be-text-light);
      background-color: var(--page-8k-be-bg-dark);
      line-height: 1.6;
      padding-bottom: 100px; /* Space for floating buttons */
    }

    /* Fixed Nav Offset Handling */
    .page-8k-be__hero-section,
    .page-8k-be__main-content {
      padding-top: 10px; /* Small decorative padding, assuming body handles main offset */
    }

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

    .page-8k-be__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: rgba(34, 34, 34, 0.9);
      border-radius: var(--page-8k-be-border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-8k-be__section-title {
      font-size: 2.5em;
      color: var(--page-8k-be-primary);
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-8k-be__section-subtitle {
      font-size: 1.2em;
      color: var(--page-8k-be-text-light);
      margin-bottom: 30px;
    }

    /* Hero Section */
    .page-8k-be__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:betting,casino,mobile_gaming,8kbe]') no-repeat center center/cover;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 20px;
      border-radius: var(--page-8k-be-border-radius);
      margin-bottom: 20px;
    }

    .page-8k-be__hero-content {
      max-width: 800px;
    }

    .page-8k-be__hero-title {
      font-size: 3.5em;
      color: var(--page-8k-be-primary);
      margin-bottom: 15px;
      text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
      font-weight: bold;
    }

    .page-8k-be__hero-description {
      font-size: 1.3em;
      color: var(--page-8k-be-text-light);
      margin-bottom: 30px;
    }

    /* Floating Buttons */
    .page-8k-be__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: calc(100% - 40px);
      max-width: 380px;
    }

    .page-8k-be__floating-button {
      flex: 1;
      padding: 15px 25px;
      background-color: var(--page-8k-be-accent);
      color: var(--page-8k-be-text-light);
      border: none;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      text-align: center;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .page-8k-be__floating-button:hover {
      background-color: #e03c00;
      transform: translateY(-3px);
    }

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

    .page-8k-be__game-card {
      background-color: var(--page-8k-be-bg-dark);
      border-radius: var(--page-8k-be-border-radius);
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      border: 1px solid rgba(255, 215, 0, 0.2);
    }

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

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

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

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

    .page-8k-be__game-card-content {
      padding: 20px;
    }

    .page-8k-be__game-card-title {
      font-size: 1.5em;
      color: var(--page-8k-be-primary);
      margin-bottom: 10px;
    }

    .page-8k-be__game-card-description {
      font-size: 0.95em;
      color: var(--page-8k-be-text-light);
      margin-bottom: 15px;
    }

    /* Promotions */
    .page-8k-be__promotion-item {
      background-color: rgba(51, 51, 51, 0.8);
      border-left: 5px solid var(--page-8k-be-primary);
      padding: 20px;
      margin-bottom: 15px;
      border-radius: var(--page-8k-be-border-radius);
      text-align: left;
      transition: background-color 0.3s ease;
    }

    .page-8k-be__promotion-item:hover {
      background-color: rgba(68, 68, 68, 0.8);
    }

    .page-8k-be__promotion-title {
      color: var(--page-8k-be-primary);
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-8k-be__promotion-description {
      color: var(--page-8k-be-text-light);
      font-size: 1em;
    }

    /* Payment Methods & Game Providers */
    .page-8k-be__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k-be__logo-item {
      background-color: rgba(51, 51, 51, 0.8);
      padding: 15px;
      border-radius: var(--page-8k-be-border-radius);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 80px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid rgba(255, 215, 0, 0.1);
    }

    .page-8k-be__logo-item:hover {
      transform: scale(1.05);
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    }

    .page-8k-be__logo-image {
      max-width: 100%;
      max-height: 60px;
      object-fit: contain;
    }

    /* Benefits / Why Choose Us */
    .page-8k-be__benefit-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-8k-be__benefit-item {
      background-color: rgba(51, 51, 51, 0.8);
      padding: 25px;
      border-radius: var(--page-8k-be-border-radius);
      text-align: left;
      border: 1px solid rgba(255, 215, 0, 0.2);
    }

    .page-8k-be__benefit-title {
      color: var(--page-8k-be-primary);
      font-size: 1.3em;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .page-8k-be__benefit-icon {
      font-size: 1.5em;
      color: var(--page-8k-be-accent);
    }

    .page-8k-be__benefit-description {
      color: var(--page-8k-be-text-light);
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-8k-be__faq-list {
      margin-top: 30px;
      text-align: left;
    }

    .page-8k-be__faq-item {
      background-color: rgba(51, 51, 51, 0.8);
      margin-bottom: 15px;
      border-radius: var(--page-8k-be-border-radius);
      overflow: hidden;
      border: 1px solid rgba(255, 215, 0, 0.2);
    }

    .page-8k-be__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: rgba(68, 68, 68, 0.9);
      color: var(--page-8k-be-primary);
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k-be__faq-question:hover {
      background-color: rgba(85, 85, 85, 0.9);
    }

    .page-8k-be__faq-question h3 {
      margin: 0;
      color: var(--page-8k-be-primary);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k-be__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-8k-be__faq-item.active .page-8k-be__faq-toggle {
      transform: rotate(45deg); /* Plus to X (or rotate to minus) */
    }

    .page-8k-be__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      color: var(--page-8k-be-text-light);
      font-size: 0.95em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-8k-be__faq-item.active .page-8k-be__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Call to Action */
    .page-8k-be__cta-button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-8k-be-accent);
      color: var(--page-8k-be-text-light);
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin-top: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .page-8k-be__cta-button:hover {
      background-color: #e03c00;
      transform: translateY(-3px);
    }

    /* Social Media */
    .page-8k-be__social-list {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-8k-be__social-item {
      background-color: rgba(51, 51, 51, 0.8);
      border-radius: var(--page-8k-be-border-radius);
      padding: 10px 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k-be__social-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    }

    .page-8k-be__social-link {
      color: var(--page-8k-be-primary);
      text-decoration: none;
      font-size: 1.1em;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-8k-be__social-icon {
      width: 30px;
      height: 30px;
      object-fit: contain;
    }


    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k-be__hero-title {
        font-size: 2.5em;
      }

      .page-8k-be__hero-description {
        font-size: 1.1em;
      }

      .page-8k-be__section-title {
        font-size: 2em;
      }

      .page-8k-be__floating-buttons {
        bottom: 15px;
        gap: 10px;
        width: calc(100% - 30px);
      }

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

      .page-8k-be__game-categories,
      .page-8k-be__logo-grid,
      .page-8k-be__benefit-list {
        grid-template-columns: 1fr;
        gap: 15px;
      }

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

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

      .page-8k-be__faq-answer {
        padding: 15px 15px !important; /* Adjust padding for mobile */
      }

      .page-8k-be__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-8k-be__logo-item {
        min-height: 70px;
      }

      .page-8k-be__social-list {
        gap: 15px;
      }
    }

    @media (max-width: 480px) {
      .page-8k-be__hero-title {
        font-size: 2em;
      }

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

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

      .page-8k-be__floating-buttons {
        max-width: 90%;
      }

      .page-8k-be__floating-button {
        font-size: 0.9em;
        padding: 10px 12px;
      }

      .page-8k-be__faq-question h3 {
        font-size: 0.95em;
      }

      .page-8k-be__faq-toggle {
        font-size: 1.2em;
      }
    }

    /* List item specific responsive styles */
    .page-8k-be__game-categories .page-8k-be__game-card,
    .page-8k-be__logo-grid .page-8k-be__logo-item,
    .page-8k-be__benefit-list .page-8k-be__benefit-item,
    .page-8k-be__faq-list .page-8k-be__faq-item,
    .page-8k-be__social-list .page-8k-be__social-item {
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    @media (max-width: 768px) {
      .page-8k-be__game-categories,
      .page-8k-be__logo-grid,
      .page-8k-be__benefit-list,
      .page-8k-be__faq-list,
      .page-8k-be__social-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8k-be__game-categories .page-8k-be__game-card,
      .page-8k-be__logo-grid .page-8k-be__logo-item,
      .page-8k-be__benefit-list .page-8k-be__benefit-item,
      .page-8k-be__faq-list .page-8k-be__faq-item,
      .page-8k-be__social-list .page-8k-be__social-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k-be__social-item {
        padding: 8px 15px !important;
      }
    }
  