
    /* Base styles for the page-8k8-6 container */
    .page-8k8-6 {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    /* Section styling */
    .page-8k8-6__hero-section,
    .page-8k8-6__benefits-section,
    .page-8k8-6__games-section,
    .page-8k8-6__promo-section,
    .page-8k8-6__payments-section,
    .page-8k8-6__faq-section,
    .page-8k8-6__cta-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      box-sizing: border-box;
    }

    .page-8k8-6__hero-section {
      padding-top: 10px; /* Small decorative padding, body handles main offset */
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 600px;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-6__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.5); /* Allowed for background images to improve text readability */
      max-width: 100%; /* Mobile responsive */
      height: auto; /* Mobile responsive */
    }

    .page-8k8-6__hero-overlay {
      position: relative;
      z-index: 2;
      background-color: rgba(0, 0, 0, 0.4);
      padding: 30px;
      border-radius: 10px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8k8-6__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      color: #e0b000; /* Gold accent */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      word-wrap: break-word; /* Ensure long titles wrap */
      overflow-wrap: break-word;
    }

    .page-8k8-6__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #ffffff;
    }

    .page-8k8-6__hero-actions {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap; /* For mobile responsiveness */
    }

    .page-8k8-6__button {
      display: inline-block;
      padding: 15px 30px;
      font-size: 1.1em;
      font-weight: bold;
      border-radius: 8px;
      text-decoration: none;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      color: #ffffff; /* Ensure good contrast */
      box-sizing: border-box;
      min-width: 180px; /* Ensure buttons are not too small */
    }

    .page-8k8-6__button--primary {
      background-color: #e0b000; /* Gold */
      color: #1a1a2e; /* Dark text for gold background */
    }

    .page-8k8-6__button--primary:hover {
      background-color: #ffcc00;
      transform: translateY(-3px);
    }

    .page-8k8-6__button--secondary {
      background-color: #334466; /* Dark blue */
      border: 2px solid #e0b000; /* Gold border */
    }

    .page-8k8-6__button--secondary:hover {
      background-color: #445577;
      transform: translateY(-3px);
    }

    .page-8k8-6__button--small {
      padding: 10px 20px;
      font-size: 0.9em;
    }

    .page-8k8-6__section-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #e0b000;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
      word-wrap: break-word; /* Ensure long titles wrap */
      overflow-wrap: break-word;
    }

    .page-8k8-6__section-description {
      font-size: 1.1em;
      margin-bottom: 40px;
      color: #ccc;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Benefits Section */
    .page-8k8-6__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-6__benefit-item {
      background-color: #2a2a4a;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
    }

    .page-8k8-6__benefit-item:hover {
      transform: translateY(-5px);
    }

    .page-8k8-6__benefit-icon {
      width: 150px; /* Placeholder styling for image aspect ratio */
      height: 150px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%; /* Mobile responsive */
      height: auto; /* Mobile responsive */
    }

    .page-8k8-6__benefit-title {
      font-size: 1.6em;
      color: #e0b000;
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-6__benefit-text {
      font-size: 1em;
      color: #f0f0f0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Games Section */
    .page-8k8-6__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-6__game-card {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
      text-align: left;
    }

    .page-8k8-6__game-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-6__game-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      max-width: 100%; /* Mobile responsive */
      height: auto; /* Mobile responsive */
    }

    .page-8k8-6__game-title {
      font-size: 1.5em;
      color: #e0b000;
      padding: 15px 20px 5px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-6__game-text {
      font-size: 0.95em;
      color: #f0f0f0;
      padding: 0 20px 20px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Promotions Section */
    .page-8k8-6__promo-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-6__promo-card {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
      text-align: left;
      display: flex;
      flex-direction: column;
    }

    .page-8k8-6__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-6__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%; /* Mobile responsive */
      height: auto; /* Mobile responsive */
    }

    .page-8k8-6__promo-title {
      font-size: 1.5em;
      color: #e0b000;
      padding: 15px 20px 5px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-6__promo-text {
      font-size: 0.95em;
      color: #f0f0f0;
      padding: 0 20px 15px;
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-6__promo-card .page-8k8-6__button {
      margin: 0 20px 20px;
      align-self: flex-start;
    }

    .page-8k8-6__promo-note {
      margin-top: 40px;
      font-size: 1em;
      color: #ccc;
    }

    /* Payments Section */
    .page-8k8-6__payment-methods {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-6__payment-item {
      background-color: #2a2a4a;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-8k8-6__payment-logo {
      width: 120px; /* Placeholder for image, actual image will be >= 200x200 */
      height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
      max-width: 100%; /* Mobile responsive */
      height: auto; /* Mobile responsive */
    }

    .page-8k8-6__payment-name {
      font-size: 1.1em;
      color: #e0b000;
      font-weight: bold;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-8k8-6__faq-container {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    .page-8k8-6__faq-item {
      background-color: #2a2a4a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-8k8-6__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #334466;
      color: #ffffff;
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-6__faq-question:hover {
      background-color: #445577;
    }

    .page-8k8-6__faq-title {
      margin: 0;
      color: #ffffff;
      pointer-events: none; /* Prevent text selection interfering with click */
      word-wrap: break-word;
      overflow-wrap: break-word;
      flex-grow: 1; /* Allow title to take space */
      padding-right: 15px; /* Space for toggle icon */
    }

    .page-8k8-6__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon interfering with click */
    }

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

    .page-8k8-6__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      opacity: 0;
      background-color: #2a2a4a;
      color: #f0f0f0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-6__faq-answer p {
      margin: 0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* CTA Section */
    .page-8k8-6__cta-section {
      background-color: #334466;
      padding: 80px 20px;
      border-radius: 10px;
      margin-top: 60px;
      margin-bottom: 60px;
    }

    .page-8k8-6__cta-actions {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    /* Floating Buttons */
    .page-8k8-6__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-8k8-6__floating-button {
      display: block;
      padding: 12px 20px;
      font-size: 1em;
      font-weight: bold;
      color: #1a1a2e;
      border-radius: 50px;
      text-decoration: none;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.2s ease;
      min-width: 100px; /* Ensure button width */
      box-sizing: border-box;
    }

    .page-8k8-6__floating-button--login {
      background-color: #e0b000; /* Gold */
    }

    .page-8k8-6__floating-button--login:hover {
      background-color: #ffcc00;
      transform: translateY(-2px);
    }

    .page-8k8-6__floating-button--register {
      background-color: #5cb85c; /* Green for register */
    }

    .page-8k8-6__floating-button--register:hover {
      background-color: #6cd96c;
      transform: translateY(-2px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-8k8-6__hero-title {
        font-size: 2.2em;
      }

      .page-8k8-6__hero-subtitle {
        font-size: 1.1em;
      }

      .page-8k8-6__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto; /* Center buttons */
      }

      .page-8k8-6__hero-actions {
        flex-direction: column;
        gap: 15px;
      }

      .page-8k8-6__section-title {
        font-size: 1.8em;
      }

      .page-8k8-6__section-description {
        font-size: 0.95em;
      }

      /* General list item responsiveness for grids */
      .page-8k8-6__benefits-grid,
      .page-8k8-6__game-categories,
      .page-8k8-6__promo-cards,
      .page-8k8-6__payment-methods {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
      }

      .page-8k8-6__benefit-item,
      .page-8k8-6__game-card,
      .page-8k8-6__promo-card,
      .page-8k8-6__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px; /* Adjust padding for smaller screens */
      }

      .page-8k8-6__benefit-icon,
      .page-8k8-6__game-image,
      .page-8k8-6__promo-image,
      .page-8k8-6__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-6__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-8k8-6__faq-answer {
        padding: 0 20px;
      }

      .page-8k8-6__faq-item.active .page-8k8-6__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-6__cta-actions {
        flex-direction: column;
        gap: 15px;
      }

      .page-8k8-6__floating-buttons {
        flex-direction: row;
        bottom: 15px;
        right: 15px;
        left: 15px;
        width: auto;
        justify-content: space-around;
      }

      .page-8k8-6__floating-button {
        flex-grow: 1;
        min-width: unset;
        padding: 10px 15px;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-6__hero-title {
        font-size: 1.8em;
      }

      .page-8k8-6__hero-subtitle {
        font-size: 1em;
      }

      .page-8k8-6__section-title {
        font-size: 1.6em;
      }
    }
  