
    :root {
      --page-8k8-com-primary-color: #FFD700; /* Gold */
      --page-8k8-com-secondary-color: #000000; /* Black */
      --page-8k8-com-text-light: #FFFFFF; /* White */
      --page-8k8-com-text-dark: #333333; /* Dark Grey */
      --page-8k8-com-accent-color: #FF4500; /* OrangeRed */
      --page-8k8-com-bg-dark: #1a1a1a;
      --page-8k8-com-bg-light: #f5f5f5;
      --page-8k8-com-border-color: #444444;
    }

    .page-8k8-com {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-com-text-dark);
      background-color: var(--page-8k8-com-bg-light);
      overflow-x: hidden;
      padding-top: 10px; /* Small padding top to avoid double header offset if body already has it */
    }

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

    .page-8k8-com__section {
      padding: 40px 0;
      margin-bottom: 20px;
      background-color: var(--page-8k8-com-bg-light);
      border-radius: 8px;
      overflow: hidden;
    }

    .page-8k8-com__section--dark {
      background-color: var(--page-8k8-com-bg-dark);
      color: var(--page-8k8-com-text-light);
    }

    .page-8k8-com__section--dark h2,
    .page-8k8-com__section--dark h3 {
      color: var(--page-8k8-com-primary-color);
    }

    .page-8k8-com__hero-section {
      position: relative;
      background: var(--page-8k8-com-bg-dark);
      color: var(--page-8k8-com-text-light);
      text-align: center;
      padding: 80px 20px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 400px;
    }

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

    .page-8k8-com__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }

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

    .page-8k8-com__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--page-8k8-com-text-light);
    }

    .page-8k8-com__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-8k8-com-accent-color);
      color: var(--page-8k8-com-text-light);
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-8k8-com__button:hover {
      background-color: darken(var(--page-8k8-com-accent-color), 10%);
      transform: translateY(-2px);
    }

    .page-8k8-com__about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 30px;
      text-align: left;
    }

    .page-8k8-com__about-text {
      flex: 1;
      min-width: 300px;
    }

    .page-8k8-com__about-image-wrapper {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-com__about-image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-com__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 0;
      list-style: none;
    }

    .page-8k8-com__feature-item {
      background-color: var(--page-8k8-com-text-light);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-com__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-com__feature-icon {
      width: 100px;
      height: auto;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      max-width: 100%;
      box-sizing: border-box;
    }

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

    .page-8k8-com__game-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      padding: 0;
      list-style: none;
    }

    .page-8k8-com__provider-item {
      background-color: var(--page-8k8-com-text-light);
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-com__provider-logo {
      width: 100%;
      height: auto;
      max-width: 200px; /* Max width for logos */
      margin: 0 auto 10px auto;
      display: block;
      max-height: 80px; /* Ensure logos are not too tall */
      object-fit: contain;
      box-sizing: border-box;
    }

    .page-8k8-com__provider-name {
      font-weight: bold;
      color: var(--page-8k8-com-secondary-color);
    }

    .page-8k8-com__promo-banner {
      background-color: var(--page-8k8-com-accent-color);
      color: var(--page-8k8-com-text-light);
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      margin-top: 40px;
    }

    .page-8k8-com__promo-title {
      font-size: 2em;
      margin-bottom: 10px;
      color: var(--page-8k8-com-text-light);
    }

    .page-8k8-com__promo-description {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-8k8-com__faq-section {
      background-color: var(--page-8k8-com-bg-dark);
      color: var(--page-8k8-com-text-light);
      padding: 40px 0;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-8k8-com__faq-section h2 {
      color: var(--page-8k8-com-primary-color);
      text-align: center;
      margin-bottom: 30px;
    }

    .page-8k8-com__faq-item {
      background-color: #2a2a2a;
      border: 1px solid var(--page-8k8-com-border-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com__faq-item:hover {
      background-color: #3a3a3a;
    }

    .page-8k8-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      font-size: 1.1em;
      color: var(--page-8k8-com-primary-color);
    }

    .page-8k8-com__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-8k8-com-primary-color);
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

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

    .page-8k8-com__faq-item.active .page-8k8-com__faq-toggle {
      transform: rotate(45deg); /* Changes + to X or a rotated + */
    }

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

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

    .page-8k8-com__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      padding: 0;
      list-style: none;
      margin-top: 30px;
    }

    .page-8k8-com__payment-item {
      background-color: var(--page-8k8-com-text-light);
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-com__payment-logo {
      width: 100%;
      height: auto;
      max-width: 100px;
      margin: 0 auto;
      display: block;
      max-height: 60px;
      object-fit: contain;
      box-sizing: border-box;
    }

    .page-8k8-com__cta-section {
      text-align: center;
      padding: 60px 20px;
      background-color: var(--page-8k8-com-primary-color);
      color: var(--page-8k8-com-secondary-color);
      border-radius: 8px;
    }

    .page-8k8-com__cta-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: var(--page-8k8-com-secondary-color);
    }

    .page-8k8-com__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com__cta-button {
      background-color: var(--page-8k8-com-accent-color);
      color: var(--page-8k8-com-text-light);
    }

    .page-8k8-com__cta-button:hover {
      background-color: darken(var(--page-8k8-com-accent-color), 10%);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-com__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-com__hero-subtitle {
        font-size: 1.2em;
      }

      .page-8k8-com__about-content {
        flex-direction: column;
        text-align: center;
      }

      .page-8k8-com__about-image-wrapper {
        max-width: 100%;
      }

      .page-8k8-com__features-grid,
      .page-8k8-com__game-providers-grid,
      .page-8k8-com__payment-methods-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-com__feature-item,
      .page-8k8-com__provider-item,
      .page-8k8-com__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
      }

      .page-8k8-com__features-grid,
      .page-8k8-com__game-providers-grid,
      .page-8k8-com__payment-methods-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-com__feature-item p,
      .page-8k8-com__provider-name,
      .page-8k8-com__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-com__promo-title {
        font-size: 1.5em;
      }

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

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

      .page-8k8-com__faq-question h3 {
        font-size: 1em;
      }

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

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

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

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

      .page-8k8-com__button {
        padding: 12px 25px;
        font-size: 0.9em;
      }

      .page-8k8-com__container {
        padding: 15px;
      }

      .page-8k8-com__about-image,
      .page-8k8-com__feature-icon,
      .page-8k8-com__provider-logo,
      .page-8k8-com__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  