
    :root {
      --page-primary-color: #e53935; /* A vibrant red for action */
      --page-secondary-color: #fdd835; /* A bright yellow for highlights */
      --page-dark-background: #1a1a1a; /* Dark background for sections */
      --page-light-background: #f5f5f5; /* Light background for contrast */
      --page-text-color: #ffffff; /* White text on dark backgrounds */
      --page-dark-text-color: #333333; /* Dark text on light backgrounds */
      --page-border-radius: 8px;
      --page-padding-section: 60px 20px;
      --page-padding-mobile: 40px 15px;
    }

    /* Base styles for the page content */
    .page-www-8k8 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-dark-text-color);
      background-color: var(--page-light-background);
    }

    /* Ensure good contrast */
    .page-www-8k8__hero-section,
    .page-www-8k8__cta-section {
      color: var(--page-text-color);
      background-color: var(--page-dark-background);
    }

    .page-www-8k8__section-title {
      font-size: 2.5em;
      color: var(--page-primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-www-8k8__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-secondary-color);
      border-radius: 2px;
    }

    /* Hero Section */
    .page-www-8k8__hero-section {
      position: relative;
      padding: 10px 20px var(--page-padding-section); /* 10px top padding as per requirement */
      text-align: center;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 600px;
      background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)); /* Overlay for text readability */
    }

    .page-www-8k8__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .page-www-8k8__hero-content {
      max-width: 900px;
      z-index: 1;
    }

    .page-www-8k8__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--page-secondary-color);
      line-height: 1.2;
    }

    .page-www-8k8__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--page-text-color);
    }

    .page-www-8k8__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-www-8k8__button {
      background-color: var(--page-primary-color);
      color: var(--page-text-color);
      padding: 15px 30px;
      border: none;
      border-radius: var(--page-border-radius);
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* For button-like divs */
      display: inline-block;
      text-align: center;
    }

    .page-www-8k8__button:hover {
      background-color: #c62828;
      transform: translateY(-2px);
    }

    .page-www-8k8__button--secondary {
      background-color: var(--page-secondary-color);
      color: var(--page-dark-text-color);
    }

    .page-www-8k8__button--secondary:hover {
      background-color: #fbc02d;
    }

    /* About Section */
    .page-www-8k8__about-section {
      padding: var(--page-padding-section);
      background-color: var(--page-light-background);
      color: var(--page-dark-text-color);
      text-align: center;
    }

    .page-www-8k8__about-content {
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.1em;
    }

    .page-www-8k8__about-content p {
      margin-bottom: 20px;
    }

    /* Promotions Section */
    .page-www-8k8__promotions-section {
      padding: var(--page-padding-section);
      background-color: var(--page-dark-background);
      color: var(--page-text-color);
      text-align: center;
    }

    .page-www-8k8__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-www-8k8__promo-card {
      background-color: #2a2a2a;
      border-radius: var(--page-border-radius);
      overflow: hidden;
      text-align: left;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
    }

    .page-www-8k8__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-www-8k8__promo-details {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-www-8k8__promo-title {
      font-size: 1.5em;
      color: var(--page-secondary-color);
      margin-bottom: 10px;
    }

    .page-www-8k8__promo-description {
      font-size: 0.95em;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-www-8k8__promo-link {
      background-color: var(--page-primary-color);
      color: var(--page-text-color);
      padding: 10px 20px;
      border-radius: var(--page-border-radius);
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      display: inline-block;
      align-self: flex-start; /* Align to start in flex column */
    }

    .page-www-8k8__promo-link:hover {
      background-color: #c62828;
    }

    /* Game Providers Section */
    .page-www-8k8__providers-section {
      padding: var(--page-padding-section);
      background-color: var(--page-light-background);
      color: var(--page-dark-text-color);
      text-align: center;
    }

    .page-www-8k8__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 25px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-www-8k8__provider-card {
      background-color: #ffffff;
      border-radius: var(--page-border-radius);
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 180px;
    }

    .page-www-8k8__provider-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-www-8k8__provider-image {
      max-width: 100%;
      height: auto;
      max-height: 100px;
      object-fit: contain;
      margin-bottom: 15px;
    }

    .page-www-8k8__provider-name {
      font-weight: bold;
      color: var(--page-dark-text-color);
      font-size: 1.1em;
    }

    /* Payment Methods Section */
    .page-www-8k8__payments-section {
      padding: var(--page-padding-section);
      background-color: var(--page-dark-background);
      color: var(--page-text-color);
      text-align: center;
    }

    .page-www-8k8__payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 25px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-www-8k8__payment-card {
      background-color: #2a2a2a;
      border-radius: var(--page-border-radius);
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 150px;
    }

    .page-www-8k8__payment-image {
      max-width: 100%;
      height: auto;
      max-height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .page-www-8k8__payment-name {
      font-weight: bold;
      color: var(--page-text-color);
      font-size: 1em;
    }

    /* Why Choose Section */
    .page-www-8k8__why-choose-section {
      padding: var(--page-padding-section);
      background-color: var(--page-light-background);
      color: var(--page-dark-text-color);
      text-align: center;
    }

    .page-www-8k8__why-choose-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-www-8k8__feature-card {
      background-color: #ffffff;
      border-radius: var(--page-border-radius);
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

    .page-www-8k8__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-www-8k8__feature-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      object-fit: contain;
    }

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

    .page-www-8k8__feature-description {
      font-size: 0.95em;
      color: var(--page-dark-text-color);
    }

    /* FAQ Section */
    .page-www-8k8__faq-section {
      padding: var(--page-padding-section);
      background-color: var(--page-dark-background);
      color: var(--page-text-color);
    }

    .page-www-8k8__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-www-8k8__faq-item {
      background-color: #2a2a2a;
      border-radius: var(--page-border-radius);
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

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

    .page-www-8k8__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Adjust h3 size within question */
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-www-8k8__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-www-8k8__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-www-8k8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--page-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-www-8k8__faq-item.active .page-www-8k8__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'X' or '−' */
    }

    /* CTA Section */
    .page-www-8k8__cta-section {
      padding: var(--page-padding-section);
      background-color: var(--page-primary-color);
      color: var(--page-text-color);
      text-align: center;
    }

    .page-www-8k8__cta-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      color: var(--page-text-color);
    }

    .page-www-8k8__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-www-8k8__hero-title {
        font-size: 3em;
      }
      .page-www-8k8__section-title {
        font-size: 2em;
      }
      .page-www-8k8__promo-title {
        font-size: 1.3em;
      }
      .page-www-8k8__providers-grid,
      .page-www-8k8__payments-grid,
      .page-www-8k8__promotions-grid,
      .page-www-8k8__why-choose-grid {
        gap: 20px;
      }
    }

    @media (max-width: 768px) {
      .page-www-8k8__hero-section {
        padding: 10px 15px var(--page-padding-mobile);
        min-height: 500px;
      }
      .page-www-8k8__hero-title {
        font-size: 2.5em;
      }
      .page-www-8k8__hero-subtitle {
        font-size: 1.2em;
      }
      .page-www-8k8__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-www-8k8__button {
        width: 100%;
        max-width: 300px;
        padding: 12px 25px;
      }
      .page-www-8k8__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-www-8k8__about-section,
      .page-www-8k8__promotions-section,
      .page-www-8k8__providers-section,
      .page-www-8k8__payments-section,
      .page-www-8k8__why-choose-section,
      .page-www-8k8__faq-section,
      .page-www-8k8__cta-section {
        padding: var(--page-padding-mobile);
      }

      /* List item responsive requirements */
      .page-www-8k8__promotions-grid,
      .page-www-8k8__providers-grid,
      .page-www-8k8__payments-grid,
      .page-www-8k8__why-choose-grid {
        grid-template-columns: 1fr; /* Stack items */
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-www-8k8__promo-card,
      .page-www-8k8__provider-card,
      .page-www-8k8__payment-card,
      .page-www-8k8__feature-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-www-8k8__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-www-8k8__faq-answer {
        padding: 0 20px;
      }
      .page-www-8k8__faq-item.active .page-www-8k8__faq-answer {
        padding: 15px 20px !important;
      }

      .page-www-8k8__cta-title {
        font-size: 1.8em;
      }
      .page-www-8k8__cta-description {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-www-8k8__hero-title {
        font-size: 2em;
      }
      .page-www-8k8__hero-subtitle {
        font-size: 1em;
      }
      .page-www-8k8__section-title {
        font-size: 1.5em;
      }
    }
  