
    :root {
      --page-8k8-6-primary-color: #e6b800; /* Gold/Yellow, often associated with luxury/casino */
      --page-8k8-6-secondary-color: #333; /* Dark grey */
      --page-8k8-6-background-dark: #1a1a1a; /* Very dark background */
      --page-8k8-6-text-light: #f0f0f0;
      --page-8k8-6-text-dark: #000;
      --page-8k8-6-accent-color: #ff4d4d; /* Red accent */
      --page-8k8-6-border-color: #444;
      --page-8k8-6-border-radius: 8px;
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-6-text-light);
      background-color: var(--page-8k8-6-background-dark);
    }

    .page-8k8-6 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-8k8-6__hero-section {
      position: relative;
      padding: 10px 0 60px 0; /* 10px for header offset, then main padding */
      text-align: center;
      background-color: var(--page-8k8-6-secondary-color);
      overflow: hidden;
      border-radius: var(--page-8k8-6-border-radius);
      margin-bottom: 40px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-6__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-8k8-6__hero-content {
      position: relative;
      z-index: 1;
      padding: 40px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 400px;
    }

    .page-8k8-6__hero-title {
      font-size: 2.8em;
      color: var(--page-8k8-6-primary-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-8k8-6__hero-description {
      font-size: 1.2em;
      color: var(--page-8k8-6-text-light);
      max-width: 800px;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-6__cta-button {
      display: inline-block;
      background-color: var(--page-8k8-6-primary-color);
      color: var(--page-8k8-6-background-dark);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-6__cta-button:hover {
      background-color: #ffd700; /* Brighter gold */
      transform: translateY(-3px);
    }

    .page-8k8-6__section {
      padding: 60px 0;
      margin-bottom: 40px;
      background-color: var(--page-8k8-6-secondary-color);
      border-radius: var(--page-8k8-6-border-radius);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-8k8-6__section-title {
      font-size: 2.2em;
      color: var(--page-8k8-6-primary-color);
      margin-bottom: 30px;
      text-align: center;
    }

    .page-8k8-6__section-content {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
      color: var(--page-8k8-6-text-light);
    }

    .page-8k8-6__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      padding: 0 20px;
    }

    .page-8k8-6__feature-card {
      background-color: var(--page-8k8-6-background-dark);
      padding: 30px;
      border-radius: var(--page-8k8-6-border-radius);
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      border: 1px solid var(--page-8k8-6-border-color);
    }

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

    .page-8k8-6__feature-icon {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-6__feature-title {
      font-size: 1.4em;
      color: var(--page-8k8-6-primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-6__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .page-8k8-6__step-item {
      background-color: var(--page-8k8-6-background-dark);
      padding: 25px;
      border-radius: var(--page-8k8-6-border-radius);
      text-align: left;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
      border-left: 5px solid var(--page-8k8-6-primary-color);
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    .page-8k8-6__step-number {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-8k8-6-primary-color);
      min-width: 40px;
      text-align: center;
    }

    .page-8k8-6__step-content h3 {
      font-size: 1.3em;
      color: var(--page-8k8-6-primary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-6__step-content p {
      margin-bottom: 0;
      color: var(--page-8k8-6-text-light);
    }

    .page-8k8-6__promo-banner {
      background: linear-gradient(45deg, var(--page-8k8-6-primary-color), var(--page-8k8-6-accent-color));
      color: var(--page-8k8-6-text-dark);
      padding: 50px 20px;
      border-radius: var(--page-8k8-6-border-radius);
      text-align: center;
      margin-bottom: 40px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-6__promo-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-8k8-6__promo-text {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-6__game-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 40px;
      padding: 0 20px;
    }

    .page-8k8-6__provider-logo {
      width: 150px;
      height: 80px;
      object-fit: contain;
      background-color: var(--page-8k8-6-background-dark);
      padding: 10px;
      border-radius: var(--page-8k8-6-border-radius);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      border: 1px solid var(--page-8k8-6-border-color);
    }

    .page-8k8-6__provider-logo:hover {
      transform: scale(1.05);
    }

    .page-8k8-6__faq-section {
      padding: 60px 0;
      margin-bottom: 40px;
      background-color: var(--page-8k8-6-secondary-color);
      border-radius: var(--page-8k8-6-border-radius);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-6__faq-list {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-8k8-6__faq-item {
      background-color: var(--page-8k8-6-background-dark);
      margin-bottom: 15px;
      border-radius: var(--page-8k8-6-border-radius);
      overflow: hidden;
      border: 1px solid var(--page-8k8-6-border-color);
    }

    .page-8k8-6__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-8k8-6-secondary-color);
      color: var(--page-8k8-6-primary-color);
      font-size: 1.15em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-8k8-6__faq-question:hover {
      background-color: #444; /* Slightly lighter dark grey */
    }

    .page-8k8-6__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
      color: inherit; /* Ensure h3 color matches parent */
    }

    .page-8k8-6__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 20px;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

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

    .page-8k8-6__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-8k8-6-text-light);
    }

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

    /* General image styles */
    .page-8k8-6 img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: var(--page-8k8-6-border-radius);
      object-fit: cover; /* Default for general images */
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-8k8-6 {
        padding: 0 10px;
      }

      .page-8k8-6__hero-title {
        font-size: 2em;
      }

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

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

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

      .page-8k8-6__features-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
      }

      .page-8k8-6__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
      }

      .page-8k8-6__step-number {
        margin-bottom: 10px;
      }

      .page-8k8-6__step-content {
        width: 100%;
      }

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

      .page-8k8-6__promo-text {
        font-size: 1.1em;
      }

      .page-8k8-6__game-providers {
        gap: 15px;
        padding: 0 10px;
      }

      .page-8k8-6__provider-logo {
        width: auto; /* Allow auto width to scale with max-width */
        max-width: 100%;
        height: auto;
      }

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

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

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

      /* List item responsiveness for all lists */
      .page-8k8-6__features-grid > * { /* Targets children of grid for mobile list item styling */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-6__steps-list > * { /* Targets children of list for mobile list item styling */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-6__faq-list > * { /* Targets children of faq list for mobile list item styling */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      /* Image responsiveness forced for mobile */
      .page-8k8-6 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-6__hero-background {
        max-width: 100% !important;
        height: 100% !important; /* Maintain height for background */
        box-sizing: border-box !important;
      }
      .page-8k8-6__feature-icon {
        width: auto !important; /* Allow auto width to scale with max-width */
        max-width: 100% !important;
        height: auto !important;
      }
    }
  