
    :root {
      --page-8k8-com-11-primary-color: #e5a000; /* Gold/Orange */
      --page-8k8-com-11-secondary-color: #333; /* Dark Grey */
      --page-8k8-com-11-accent-color: #007bff; /* Blue */
      --page-8k8-com-11-text-color: #f0f0f0; /* Light Grey for dark backgrounds */
      --page-8k8-com-11-background-color: #1a1a1a; /* Dark Background */
      --page-8k8-com-11-light-text-color: #333; /* Dark text for light backgrounds */
      --page-8k8-com-11-light-background-color: #ffffff; /* White background */
      --page-8k8-com-11-border-color: #444;
      --page-8k8-com-11-padding-section: 40px 20px;
      --page-8k8-com-11-max-width: 1200px;
    }

    .page-8k8-com-11 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-com-11-text-color);
      background-color: var(--page-8k8-com-11-background-color);
    }

    .page-8k8-com-11__hero-section {
      text-align: center;
      padding: 10px 20px 40px; /* Minimal top padding, assuming body has header offset */
      background-color: #000;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-com-11__hero-title {
      font-size: 2.8em;
      color: var(--page-8k8-com-11-primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-8k8-com-11__hero-description {
      font-size: 1.2em;
      color: #ccc;
      max-width: 800px;
      margin: 0 auto 30px;
    }

    .page-8k8-com-11__hero-cta {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .page-8k8-com-11__cta-button {
      background-color: var(--page-8k8-com-11-primary-color);
      color: var(--page-8k8-com-11-background-color);
      padding: 15px 30px;
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-com-11__cta-button:hover {
      background-color: #ffc107;
      transform: translateY(-2px);
    }

    .page-8k8-com-11__cta-button--secondary {
      background-color: var(--page-8k8-com-11-secondary-color);
      color: var(--page-8k8-com-11-primary-color);
      border: 2px solid var(--page-8k8-com-11-primary-color);
    }

    .page-8k8-com-11__cta-button--secondary:hover {
      background-color: #444;
      color: #fff;
    }

    .page-8k8-com-11__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 0 auto;
    }

    .page-8k8-com-11__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-11__section-title {
      font-size: 2.2em;
      color: var(--page-8k8-com-11-primary-color);
      text-align: center;
      margin-bottom: 30px;
      padding-top: 40px;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .page-8k8-com-11__section-intro {
      font-size: 1.1em;
      color: #bbb;
      text-align: center;
      max-width: 900px;
      margin: 0 auto 50px;
    }

    .page-8k8-com-11__features-section,
    .page-8k8-com-11__games-section,
    .page-8k8-com-11__payments-section,
    .page-8k8-com-11__faq-section,
    .page-8k8-com-11__promo-section {
      padding: var(--page-8k8-com-11-padding-section);
      max-width: var(--page-8k8-com-11-max-width);
      margin: 0 auto;
      background-color: var(--page-8k8-com-11-background-color);
      border-radius: 10px;
      margin-bottom: 20px;
    }
    
    .page-8k8-com-11__features-section {
      background-color: #222;
      border-radius: 10px;
    }

    .page-8k8-com-11__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-8k8-com-11__feature-item {
      background-color: #2a2a2a;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box; /* Crucial for list item responsive */
    }

    .page-8k8-com-11__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-8k8-com-11__feature-image {
      width: 100%;
      max-width: 400px; /* Adjust based on desired size */
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      object-fit: cover;
      box-sizing: border-box;
    }

    .page-8k8-com-11__feature-title {
      font-size: 1.5em;
      color: var(--page-8k8-com-11-primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-com-11__feature-description {
      color: #bbb;
      font-size: 1em;
    }

    .page-8k8-com-11__game-providers-grid,
    .page-8k8-com-11__payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 25px;
      justify-content: center;
      margin-top: 40px;
    }

    .page-8k8-com-11__provider-item,
    .page-8k8-com-11__payment-item {
      background-color: #2a2a2a;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-sizing: border-box; /* Crucial for list item responsive */
    }

    .page-8k8-com-11__provider-logo,
    .page-8k8-com-11__payment-logo {
      max-width: 100%;
      height: auto;
      max-height: 100px; /* Limit height for logos */
      object-fit: contain;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .page-8k8-com-11__provider-name,
    .page-8k8-com-11__payment-name {
      font-size: 1.1em;
      color: #eee;
      font-weight: bold;
    }

    .page-8k8-com-11__cta-section {
      text-align: center;
      margin-top: 50px;
    }

    /* FAQ Section */
    .page-8k8-com-11__faq-section {
      background-color: #222;
      border-radius: 10px;
    }

    .page-8k8-com-11__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-com-11__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      box-sizing: border-box; /* Crucial for list item responsive */
    }

    .page-8k8-com-11__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #333;
      color: var(--page-8k8-com-11-primary-color);
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      border-bottom: 1px solid #444;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-11__faq-question:hover {
      background-color: #444;
    }

    .page-8k8-com-11__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-8k8-com-11-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-8k8-com-11__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent div */
    }

    .page-8k8-com-11__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #2a2a2a;
      color: #ccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-8k8-com-11__faq-answer p {
      margin: 0;
      padding-bottom: 20px;
    }

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

    .page-8k8-com-11__faq-item.active .page-8k8-com-11__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar, visually indicates open */
    }
    .page-8k8-com-11__faq-item.active .page-8k8-com-11__faq-toggle::before {
        content: "−"; /* Change to minus sign */
        transform: rotate(-45deg);
    }
    .page-8k8-com-11__faq-toggle::before {
        content: "+";
    }

    /* Promo Section */
    .page-8k8-com-11__promo-section {
      background-color: #222;
      border-radius: 10px;
    }

    .page-8k8-com-11__promo-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-8k8-com-11__promo-card {
      background-color: #2a2a2a;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box; /* Crucial for list item responsive */
    }

    .page-8k8-com-11__promo-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      object-fit: cover;
      box-sizing: border-box;
    }

    .page-8k8-com-11__promo-title {
      font-size: 1.6em;
      color: var(--page-8k8-com-11-primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-com-11__promo-description {
      color: #bbb;
      font-size: 1em;
      margin-bottom: 25px;
      flex-grow: 1; /* Allows button to align at bottom */
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8-com-11__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-com-11__section-title {
        font-size: 1.8em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-11__hero-title {
        font-size: 1.8em;
        padding-top: 20px;
      }
      .page-8k8-com-11__hero-description {
        font-size: 1em;
      }
      .page-8k8-com-11__hero-cta {
        flex-direction: column;
        gap: 15px;
      }
      .page-8k8-com-11__cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-8k8-com-11__section-title {
        font-size: 1.6em;
      }
      .page-8k8-com-11__section-intro {
        font-size: 0.95em;
      }

      /* List item responsive requirements */
      .page-8k8-com-11__features-grid,
      .page-8k8-com-11__game-providers-grid,
      .page-8k8-com-11__payments-grid,
      .page-8k8-com-11__promo-cards {
        grid-template-columns: 1fr;
        padding: 0 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-11__feature-item,
      .page-8k8-com-11__provider-item,
      .page-8k8-com-11__payment-item,
      .page-8k8-com-11__faq-item,
      .page-8k8-com-11__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px !important; /* Adjust padding to fit */
      }

      .page-8k8-com-11__feature-description,
      .page-8k8-com-11__promo-description,
      .page-8k8-com-11__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-com-11__hero-image,
      .page-8k8-com-11__feature-image,
      .page-8k8-com-11__provider-logo,
      .page-8k8-com-11__payment-logo,
      .page-8k8-com-11__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-11__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-8k8-com-11__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-com-11__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-com-11__faq-item.active .page-8k8-com-11__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-11__hero-title {
        font-size: 1.5em;
      }
      .page-8k8-com-11__section-title {
        font-size: 1.4em;
      }
      .page-8k8-com-11__cta-button {
        font-size: 1em;
        padding: 12px 25px;
      }
    }
  