
    /* Base Styles for the 8k8.com Login Page */
    .page-8k8-6 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      overflow-x: hidden;
    }

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

    .page-8k8-6__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-8k8-6__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-8k8-6__heading {
      font-size: 2.8em;
      color: #333;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-8k8-6__section--dark .page-8k8-6__heading {
      color: #ecf0f1;
    }

    .page-8k8-6__subheading {
      font-size: 1.8em;
      color: #555;
      margin-bottom: 30px;
      font-weight: normal;
    }

    .page-8k8-6__section--dark .page-8k8-6__subheading {
      color: #bdc3c7;
    }

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

    /* Hero Section */
    .page-8k8-6__hero-section {
      position: relative;
      padding-top: 10px; /* Small decorative padding, assuming body handles main offset */
      padding-bottom: 80px;
      color: #fff;
      text-align: center;
      overflow: hidden;
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Gradient background */
    }

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

    .page-8k8-6__hero-content {
      position: relative;
      z-index: 1;
      padding-top: 60px;
      padding-bottom: 60px;
    }

    .page-8k8-6__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-6__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-6__cta-button {
      display: inline-block;
      background-color: #ffcc00; /* Bright yellow for CTA */
      color: #1a2a6c;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

    /* Features Section */
    .page-8k8-6__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-6__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px 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-6__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-6__feature-icon {
      width: 250px; /* Minimum 200x200 */
      height: 250px;
      margin-bottom: 20px;
      object-fit: contain;
      border-radius: 8px;
    }

    .page-8k8-6__feature-title {
      font-size: 1.5em;
      color: #1a2a6c;
      margin-bottom: 15px;
    }

    .page-8k8-6__feature-description {
      font-size: 1em;
      color: #666;
    }

    /* How-To Section */
    .page-8k8-6__steps-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-8k8-6__step-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: left;
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      box-sizing: border-box;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .page-8k8-6__step-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-6__step-number {
      font-size: 2.5em;
      color: #ffcc00;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-8k8-6__step-title {
      font-size: 1.6em;
      color: #1a2a6c;
      margin-bottom: 10px;
    }

    .page-8k8-6__step-description {
      font-size: 1em;
      color: #666;
    }

    /* Game Providers Section */
    .page-8k8-6__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-6__provider-card {
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      box-sizing: border-box;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-8k8-6__provider-logo {
      width: 200px; /* Minimum 200x200 */
      height: 200px;
      object-fit: contain;
      margin-bottom: 15px;
      border-radius: 4px;
    }

    .page-8k8-6__provider-name {
      font-size: 1.2em;
      font-weight: bold;
      color: #333;
    }

    /* FAQ Section */
    .page-8k8-6__faq-list {
      margin-top: 40px;
      text-align: left;
    }

    .page-8k8-6__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-6__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      font-size: 1.2em;
      font-weight: bold;
      color: #1a2a6c;
      cursor: pointer;
      user-select: none;
      background-color: #e0f2f7; /* Light blue background for questions */
      transition: background-color 0.3s ease;
    }

    .page-8k8-6__faq-question:hover {
      background-color: #d0eaf0;
    }

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

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

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

    .page-8k8-6__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;
      background-color: #fcfcfc;
      color: #555;
    }

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

    /* Contact & Support Section */
    .page-8k8-6__contact-info {
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-8k8-6__contact-card {
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      box-sizing: border-box;
    }

    .page-8k8-6__contact-title {
      font-size: 1.4em;
      color: #1a2a6c;
      margin-bottom: 10px;
    }

    .page-8k8-6__contact-text {
      font-size: 1.1em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-8k8-6__external-link {
      display: inline-block;
      background-color: #007bff; /* Blue for external links */
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1em;
      transition: background-color 0.3s ease;
    }

    .page-8k8-6__external-link:hover {
      background-color: #0056b3;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-6__heading {
        font-size: 2.2em;
      }

      .page-8k8-6__subheading {
        font-size: 1.4em;
      }

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

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

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

      .page-8k8-6__section {
        padding: 40px 0;
      }

      .page-8k8-6__features-grid,
      .page-8k8-6__steps-list,
      .page-8k8-6__providers-grid,
      .page-8k8-6__contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-6__feature-item,
      .page-8k8-6__step-item,
      .page-8k8-6__provider-card,
      .page-8k8-6__contact-card {
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding: 20px !important; /* Adjust padding for mobile */
      }

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

      .page-8k8-6__faq-answer {
        padding: 15px 20px !important; /* Ensure padding is adjusted */
      }

      /* Image responsiveness */
      .page-8k8-6__hero-background,
      .page-8k8-6__feature-icon,
      .page-8k8-6__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-6__hero-background {
        width: 100%;
      }
      .page-8k8-6__feature-icon,
      .page-8k8-6__provider-logo {
        width: 200px; /* Maintain minimum size, but allow scaling */
        margin-left: auto;
        margin-right: auto;
        display: block;
      }
      /* Ensure text in lists wraps */
      .page-8k8-6__feature-description,
      .page-8k8-6__step-description,
      .page-8k8-6__provider-name,
      .page-8k8-6__contact-text,
      .page-8k8-6__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-6__hero-title {
        font-size: 2em;
      }
      .page-8k8-6__heading {
        font-size: 1.8em;
      }
      .page-8k8-6__subheading {
        font-size: 1.2em;
      }
    }
  