
    :root {
      --page-primary-color: #e44d26; /* A vibrant color for highlights */
      --page-secondary-color: #f7b731; /* A complementary accent color */
      --page-text-color: #333;
      --page-light-text-color: #fff;
      --page-background-color: #f9f9f9;
      --page-dark-background-color: #2c3e50;
      --page-card-background: #ffffff;
      --page-border-color: #ddd;
      --page-border-radius: 8px;
      --page-transition-speed: 0.3s ease;
    }

    .page-8k8-4-2 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--page-text-color);
      background-color: var(--page-background-color);
    }

    .page-8k8-4-2__hero-section {
      background: linear-gradient(135deg, var(--page-primary-color), var(--page-secondary-color));
      color: var(--page-light-text-color);
      padding: 10px 20px 80px; /* Added 10px top padding for fixed header offset */
      text-align: center;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 400px;
    }

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

    .page-8k8-4-2__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-4-2__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-4-2__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      font-weight: 300;
    }

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

    .page-8k8-4-2__cta-button:hover {
      background-color: #3f5a70;
      transform: translateY(-3px);
    }

    .page-8k8-4-2__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-4-2__section-title {
      font-size: 2.5em;
      color: var(--page-primary-color);
      margin-bottom: 20px;
      font-weight: 600;
    }

    .page-8k8-4-2__section-subtitle {
      font-size: 1.2em;
      color: #666;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-4-2__features-grid,
    .page-8k8-4-2__game-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-4-2__feature-card,
    .page-8k8-4-2__provider-card {
      background-color: var(--page-card-background);
      padding: 30px;
      border-radius: var(--page-border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform var(--page-transition-speed), box-shadow var(--page-transition-speed);
      box-sizing: border-box;
    }

    .page-8k8-4-2__feature-card:hover,
    .page-8k8-4-2__provider-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .page-8k8-4-2__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      object-fit: contain;
    }
    
    .page-8k8-4-2__provider-logo {
        width: 100%;
        height: 120px;
        object-fit: contain;
        margin-bottom: 20px;
    }

    .page-8k8-4-2__feature-title {
      font-size: 1.5em;
      color: var(--page-dark-background-color);
      margin-bottom: 15px;
    }

    .page-8k8-4-2__feature-description {
      font-size: 1em;
      color: #555;
    }

    .page-8k8-4-2__promo-section {
      background-color: var(--page-dark-background-color);
      color: var(--page-light-text-color);
      padding: 80px 20px;
      text-align: center;
    }

    .page-8k8-4-2__promo-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: var(--page-secondary-color);
    }

    .page-8k8-4-2__promo-description {
      font-size: 1.3em;
      max-width: 800px;
      margin: 0 auto 40px;
    }

    .page-8k8-4-2__promo-link {
      display: inline-block;
      background-color: var(--page-primary-color);
      color: var(--page-light-text-color);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color var(--page-transition-speed), transform var(--page-transition-speed);
      border: none;
      cursor: pointer;
    }

    .page-8k8-4-2__promo-link:hover {
      background-color: #f05e36;
      transform: translateY(-3px);
    }

    .page-8k8-4-2__faq-section {
      background-color: var(--page-card-background);
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-4-2__faq-title {
      font-size: 2.5em;
      color: var(--page-primary-color);
      margin-bottom: 40px;
      text-align: center;
    }

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

    .page-8k8-4-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: #f0f0f0;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: 600;
      color: var(--page-dark-background-color);
      transition: background-color var(--page-transition-speed);
    }

    .page-8k8-4-2__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent click event on h3 itself */
      color: var(--page-dark-background-color);
    }

    .page-8k8-4-2__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-8k8-4-2__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      color: var(--page-primary-color);
      transition: transform var(--page-transition-speed);
      pointer-events: none; /* Prevent click event on toggle icon itself */
    }

    .page-8k8-4-2__faq-item.active .page-8k8-4-2__faq-toggle {
      transform: rotate(45deg);
    }

    .page-8k8-4-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      background-color: var(--page-card-background);
      text-align: left;
    }

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

    /* General responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-4-2__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-4-2__hero-description {
        font-size: 1.1em;
      }

      .page-8k8-4-2__section-title,
      .page-8k8-4-2__promo-title,
      .page-8k8-4-2__faq-title {
        font-size: 2em;
      }

      .page-8k8-4-2__section {
        padding: 40px 15px;
      }

      .page-8k8-4-2__features-grid,
      .page-8k8-4-2__game-providers-grid {
        grid-template-columns: 1fr; /* Stack cards on small screens */
      }

      .page-8k8-4-2__feature-card,
      .page-8k8-4-2__provider-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 25px;
      }

      .page-8k8-4-2__promo-section {
        padding: 60px 15px;
      }

      .page-8k8-4-2__promo-description {
        font-size: 1.1em;
      }

      .page-8k8-4-2__faq-section {
        padding: 40px 15px;
      }
      
      .page-8k8-4-2__faq-question {
        font-size: 1em;
        padding: 15px;
      }
      
      .page-8k8-4-2__faq-answer {
        padding: 15px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-4-2__hero-title {
        font-size: 2em;
      }
      .page-8k8-4-2__hero-description {
        font-size: 1em;
      }
      .page-8k8-4-2__cta-button, .page-8k8-4-2__promo-link {
        padding: 12px 25px;
        font-size: 1em;
      }
    }

    /* Ensure all images are responsive */
    .page-8k8-4-2 img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below images */
    }

    /* Image containers responsive */
    .page-8k8-4-2__image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    @media (max-width: 768px) {
        .page-8k8-4-2 img {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-8k8-4-2__image-container {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }
    }
  