
    /* Base styles for the page */
    .page-8k8-com-login {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f8f8f8;
      line-height: 1.6;
      padding-bottom: 20px; /* Ensure space above footer */
    }

    /* Fixed navigation bar offset - assuming body already has padding-top */
    .page-8k8-com-login__hero-section,
    .page-8k8-com-login__section {
      padding-top: 10px; /* Small decorative top padding */
    }

    /* General Section Styling */
    .page-8k8-com-login__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }

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

    .page-8k8-com-login__section--dark h2,
    .page-8k8-com-login__section--dark h3,
    .page-8k8-com-login__section--dark p {
      color: #ecf0f1;
    }

    .page-8k8-com-login__heading {
      text-align: center;
      color: #2c3e50;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-8k8-com-login__heading--light {
      color: #ecf0f1;
    }

    .page-8k8-com-login__subheading {
      text-align: center;
      color: #34495e;
      margin-bottom: 20px;
      font-size: 1.5em;
    }

    /* Hero Section */
    .page-8k8-com-login__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #ffffff;
      text-align: center;
      padding: 80px 20px;
      position: relative;
      overflow: hidden;
      border-radius: 0 0 15px 15px;
    }

    .page-8k8-com-login__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__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-8k8-com-login__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-login__hero-description {
      font-size: 1.3em;
      max-width: 800px;
      margin: 0 auto 40px auto;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-com-login__cta-button {
      display: inline-block;
      background-color: #f39c12;
      color: #ffffff;
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-login__cta-button:hover {
      background-color: #e67e22;
      transform: translateY(-3px);
    }

    /* Info Grid */
    .page-8k8-com-login__info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-login__info-card {
      background-color: #fefefe;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
    }

    .page-8k8-com-login__info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-com-login__info-card-icon {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin-bottom: 20px;
      border-radius: 8px; /* Added for general image styling */
      max-width: 100%;
    }

    .page-8k8-com-login__info-card-title {
      font-size: 1.4em;
      color: #34495e;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-8k8-com-login__info-card-description {
      font-size: 1em;
      color: #555;
      flex-grow: 1; /* Allow description to take available space */
    }

    /* Steps Section */
    .page-8k8-com-login__steps-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .page-8k8-com-login__step-item {
      background-color: #ecf0f1;
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      flex: 1 1 calc(33% - 20px); /* Adjust for 3 columns */
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      max-width: calc(33% - 20px);
      box-sizing: border-box;
    }

    .page-8k8-com-login__step-number {
      font-size: 2.5em;
      color: #f39c12;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-8k8-com-login__step-title {
      font-size: 1.5em;
      color: #2c3e50;
      margin-bottom: 10px;
    }

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

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

    .page-8k8-com-login__provider-logo {
      width: 200px; /* Minimum size */
      height: 100px;
      object-fit: contain;
      background-color: #fefefe;
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
      transition: transform 0.2s ease;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-com-login__provider-logo:hover {
      transform: scale(1.05);
    }

    /* FAQ Section */
    .page-8k8-com-login__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8k8-com-login__faq-item {
      background-color: #fefefe;
      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__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      font-size: 1.2em;
      font-weight: bold;
      color: #2c3e50;
      cursor: pointer;
      user-select: none;
      background-color: #f0f0f0;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-login__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #2c3e50;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-8k8-com-login__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-8k8-com-login__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #f39c12;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent div */
    }

    .page-8k8-com-login__faq-item.active .page-8k8-com-login__faq-toggle {
      transform: rotate(45deg); /* Rotates the plus to a cross/minus */
    }

    .page-8k8-com-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      font-size: 1em;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-com-login__hero-title {
        font-size: 3em;
      }
      .page-8k8-com-login__hero-description {
        font-size: 1.1em;
      }
      .page-8k8-com-login__heading {
        font-size: 2em;
      }
      .page-8k8-com-login__step-item {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-login__hero-section {
        padding: 60px 15px;
      }
      .page-8k8-com-login__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-com-login__hero-description {
        font-size: 1em;
      }
      .page-8k8-com-login__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-com-login__section {
        padding: 30px 15px;
      }
      .page-8k8-com-login__heading {
        font-size: 1.8em;
        margin-bottom: 20px;
      }
      .page-8k8-com-login__subheading {
        font-size: 1.3em;
      }

      /* List item responsive requirements */
      .page-8k8-com-login__info-grid,
      .page-8k8-com-login__steps-list,
      .page-8k8-com-login__providers-grid {
        grid-template-columns: 1fr; /* Single column for all grids */
        gap: 20px;
      }

      .page-8k8-com-login__info-card,
      .page-8k8-com-login__step-item,
      .page-8k8-com-login__provider-logo {
        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 mobile */
      }

      .page-8k8-com-login__step-item {
        flex: 1 1 100%;
      }

      .page-8k8-com-login__info-card-description,
      .page-8k8-com-login__step-description,
      .page-8k8-com-login__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-com-login__faq-question {
        font-size: 1.1em;
        padding: 15px;
      }
      .page-8k8-com-login__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-com-login__faq-toggle {
        font-size: 1.3em;
      }
      .page-8k8-com-login__faq-answer {
        padding: 15px 15px !important;
      }

      /* Images responsive optimization */
      .page-8k8-com-login__hero-image,
      .page-8k8-com-login__info-card-icon,
      .page-8k8-com-login__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-login__info-card-icon {
        width: 80px; /* Adjust icon size for smaller screens */
        height: 80px;
      }
      .page-8k8-com-login__provider-logo {
        width: 150px;
        height: 80px;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-login__hero-title {
        font-size: 2em;
      }
      .page-8k8-com-login__heading {
        font-size: 1.5em;
      }
    }
  