
    /* Base styles for the page content, scoped to .page-8k8-com-login-11 */
    .page-8k8-com-login-11 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      /* Small padding top, relying on body padding from shared.css for header offset */
      padding-top: 10px;
    }

    /* Section styling */
    .page-8k8-com-login-11__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-login-11__section--dark {
      background-color: #f8f9fa;
    }

    /* Hero Section */
    .page-8k8-com-login-11__hero-section {
      text-align: center;
      padding: 80px 20px;
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #fff;
      border-radius: 0;
      box-shadow: none;
      margin-bottom: 0;
      overflow: hidden;
      position: relative;
    }

    .page-8k8-com-login-11__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-8k8-com-login-11__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-com-login-11__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: #fff; /* Ensure good contrast */
    }

    .page-8k8-com-login-11__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0; /* Ensure good contrast */
    }

    .page-8k8-com-login-11__cta-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

    /* General Headings */
    .page-8k8-com-login-11__heading-2 {
      font-size: 2.5em;
      color: #007bff;
      text-align: center;
      margin-bottom: 30px;
      margin-top: 0;
    }

    .page-8k8-com-login-11__heading-3 {
      font-size: 1.8em;
      color: #0056b3;
      margin-bottom: 15px;
    }

    /* Content paragraphs */
    .page-8k8-com-login-11__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #444;
    }

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

    .page-8k8-com-login-11__feature-item {
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Important for list items */
    }

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

    .page-8k8-com-login-11__feature-icon {
      /* The actual image placeholder will be >= 200x200, this sets display size */
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      border-radius: 50%;
      object-fit: cover;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
    }

    .page-8k8-com-login-11__feature-title {
      font-size: 1.4em;
      color: #007bff;
      margin-bottom: 10px;
    }

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

    /* Steps Section */
    .page-8k8-com-login-11__steps-list {
      list-style: none;
      padding: 0;
      counter-reset: step-counter;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-8k8-com-login-11__step-item {
      background-color: #f0f8ff;
      border-left: 5px solid #007bff;
      border-radius: 8px;
      margin-bottom: 20px;
      position: relative;
      padding: 25px 25px 25px 60px; /* Padding for text, keeping space for counter */
      text-align: left;
      flex: 1 1 calc(50% - 20px); /* Two columns on desktop */
      box-sizing: border-box; /* Important for list items */
      min-width: 300px;
      max-width: calc(50% - 20px);
    }

    .page-8k8-com-login-11__step-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      position: absolute;
      left: 15px;
      top: 20px;
      background-color: #007bff;
      color: #fff;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
    }

    .page-8k8-com-login-11__step-title {
      font-size: 1.5em;
      color: #007bff;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-com-login-11__step-description {
      color: #555;
    }

    /* Game Providers Section */
    .page-8k8-com-login-11__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-8k8-com-login-11__provider-logo {
      /* The actual image placeholder will be >= 200x200, this sets display size */
      width: 180px;
      height: 120px;
      object-fit: contain;
      border: 1px solid #eee;
      border-radius: 5px;
      padding: 10px;
      background-color: #fff;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
      transition: transform 0.2s ease;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
      box-sizing: border-box;
    }

    .page-8k8-com-login-11__provider-logo:hover {
      transform: translateY(-3px);
    }

    /* FAQ Section */
    .page-8k8-com-login-11__faq-list {
      list-style: none;
      padding: 0;
      max-width: 900px;
      margin: 30px auto 0 auto;
    }

    .page-8k8-com-login-11__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-login-11__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #007bff;
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-com-login-11__faq-question h3 {
      margin: 0;
      color: inherit; /* Inherit color from parent */
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

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

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

    .page-8k8-com-login-11__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding 0, but use 25px for side padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #333;
      background-color: #f8f9fa;
      font-size: 1.05em;
    }

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

    /* Promotions Section */
    .page-8k8-com-login-11__promo-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      padding: 30px;
      text-align: center;
      margin-top: 30px;
    }

    .page-8k8-com-login-11__promo-title {
      font-size: 2em;
      color: #ffc107;
      margin-bottom: 15px;
    }

    .page-8k8-com-login-11__promo-description {
      font-size: 1.1em;
      color: #444;
      margin-bottom: 25px;
    }

    /* Image responsive default styles */
    .page-8k8-com-login-11 img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }

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

      .page-8k8-com-login-11__hero-description {
        font-size: 1.1em;
      }

      .page-8k8-com-login-11__heading-2 {
        font-size: 2em;
      }

      .page-8k8-com-login-11__heading-3 {
        font-size: 1.5em;
      }

      .page-8k8-com-login-11__paragraph {
        font-size: 1em;
      }

      .page-8k8-com-login-11__section {
        padding: 30px 15px;
      }

      /* List item responsiveness */
      .page-8k8-com-login-11__features-grid,
      .page-8k8-com-login-11__steps-list,
      .page-8k8-com-login-11__providers-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
        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-login-11__feature-item,
      .page-8k8-com-login-11__step-item,
      .page-8k8-com-login-11__provider-logo {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-com-login-11__step-item {
        padding-left: 60px !important; /* Keep space for counter */
        padding-right: 25px !important; /* Maintain right padding */
      }

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

      .page-8k8-com-login-11__faq-question h3 {
        font-size: 1em;
      }

      .page-8k8-com-login-11__faq-toggle {
        font-size: 1.5em;
      }

      .page-8k8-com-login-11__faq-answer {
        padding: 0 20px;
        font-size: 1em;
      }

      .page-8k8-com-login-11__faq-item.active .page-8k8-com-login-11__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-com-login-11__promo-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login-11__promo-description {
        font-size: 1em;
      }
      .page-8k8-com-login-11__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      /* Image specific responsive styles */
      .page-8k8-com-login-11__hero-image,
      .page-8k8-com-login-11__feature-icon,
      .page-8k8-com-login-11__provider-logo {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
          overflow: hidden !important;
      }
    }

    @media (max-width: 375px) {
        .page-8k8-com-login-11__faq-question,
        .page-8k8-com-login-11__faq-answer {
            padding-left: 15px !important;
            padding-right: 15px !important;
        }
        .page-8k8-com-login-11__faq-item.active .page-8k8-com-login-11__faq-answer {
            padding: 15px 15px !important;
        }
    }
  