
    /* Base styles for the page wrapper */
    .page-8k8-777-com-login-register {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0; /* Light grey text for contrast on dark background */
      background-color: #1a1a1a; /* Dark background */
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
      box-sizing: border-box;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    /* General section styling */
    .page-8k8-777-com-login-register__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-8k8-777-com-login-register__section--dark {
      background-color: #121212;
    }

    .page-8k8-777-com-login-register__section-title {
      text-align: center;
      color: #ffd700; /* Gold accent color */
      font-size: 2.5em;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-777-com-login-register__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #ffd700;
    }

    /* Hero Section */
    .page-8k8-777-com-login-register__hero-section {
      position: relative;
      background-color: #000;
      color: #fff;
      text-align: center;
      padding: 100px 20px 60px; /* Adjusted padding for better visual */
      overflow: hidden;
      box-sizing: border-box;
      padding-top: 10px; /* Small decorative top padding, header offset handled by body */
    }

    .page-8k8-777-com-login-register__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.4;
      max-width: 100%; /* Ensure responsiveness */
      height: auto;
    }

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

    .page-8k8-777-com-login-register__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #ffd700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-777-com-login-register__hero-description {
      font-size: 1.2em;
      margin-bottom: 40px;
      color: #e0e0e0;
    }

    .page-8k8-777-com-login-register__button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    }

    .page-8k8-777-com-login-register__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #ffd700;
      color: #1a1a1a;
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }

    .page-8k8-777-com-login-register__button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Info cards section */
    .page-8k8-777-com-login-register__info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-777-com-login-register__info-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box; /* Important for mobile responsiveness */
    }

    .page-8k8-777-com-login-register__info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-777-com-login-register__info-card-icon {
      width: 250px; /* Minimum size for images */
      height: 200px;
      object-fit: cover;
      margin-bottom: 20px;
      border-radius: 8px; /* Slightly rounded corners */
      max-width: 100%; /* Ensure responsiveness */
      height: auto;
    }

    .page-8k8-777-com-login-register__info-card-title {
      color: #ffd700;
      font-size: 1.5em;
      margin-bottom: 15px;
    }

    .page-8k8-777-com-login-register__info-card-description {
      color: #cccccc;
      font-size: 0.95em;
    }

    /* How-to steps section */
    .page-8k8-777-com-login-register__steps-container {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-777-com-login-register__step-item {
      display: flex;
      align-items: center;
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Important for mobile responsiveness */
    }

    .page-8k8-777-com-login-register__step-number {
      background-color: #ffd700;
      color: #1a1a1a;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.8em;
      font-weight: bold;
      margin-right: 25px;
      flex-shrink: 0;
    }

    .page-8k8-777-com-login-register__step-content h3 {
      color: #ffd700;
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.6em;
    }

    .page-8k8-777-com-login-register__step-content p {
      color: #cccccc;
      margin-bottom: 0;
    }

    /* Promotions section */
    .page-8k8-777-com-login-register__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-777-com-login-register__promo-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Important for mobile responsiveness */
    }

    .page-8k8-777-com-login-register__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-777-com-login-register__promo-image {
      width: 100%;
      height: 250px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%; /* Ensure responsiveness */
      height: auto;
    }

    .page-8k8-777-com-login-register__promo-content {
      padding: 25px;
    }

    .page-8k8-777-com-login-register__promo-title {
      color: #ffd700;
      font-size: 1.6em;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-777-com-login-register__promo-description {
      color: #cccccc;
      font-size: 0.95em;
      margin-bottom: 20px;
    }

    .page-8k8-777-com-login-register__promo-link {
      display: inline-block;
      padding: 10px 20px;
      background-color: #ffd700;
      color: #1a1a1a;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-8k8-777-com-login-register__promo-link:hover {
      background-color: #e6c200;
    }

    /* Providers and Payments */
    .page-8k8-777-com-login-register__logos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Min 200px for logos */
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
      align-items: center;
    }

    .page-8k8-777-com-login-register__logo-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      width: 100%; /* Ensure it takes full grid column width */
      height: 120px; /* Fixed height for consistency */
      box-sizing: border-box;
    }

    .page-8k8-777-com-login-register__logo-item:hover {
      transform: translateY(-3px);
    }

    .page-8k8-777-com-login-register__logo-image {
      max-width: 100%;
      max-height: 90px;
      object-fit: contain;
      display: block;
    }

    /* Call to action at the bottom */
    .page-8k8-777-com-login-register__cta-section {
      text-align: center;
      background-color: #121212;
      padding: 60px 20px;
    }

    .page-8k8-777-com-login-register__cta-title {
      color: #ffd700;
      font-size: 2.2em;
      margin-bottom: 20px;
    }

    .page-8k8-777-com-login-register__cta-description {
      color: #cccccc;
      font-size: 1.1em;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* FAQ Section Styles */
    .page-8k8-777-com-login-register__faq-container {
      margin-top: 40px;
    }

    .page-8k8-777-com-login-register__faq-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Important for mobile responsiveness */
    }

    .page-8k8-777-com-login-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #333;
      transition: background-color 0.3s ease;
    }

    .page-8k8-777-com-login-register__faq-question:hover {
      background-color: #444;
    }

    .page-8k8-777-com-login-register__faq-question h3 {
      color: #ffd700;
      font-size: 1.2em;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event on parent div */
      flex-grow: 1; /* Allow h3 to take available space */
    }

    .page-8k8-777-com-login-register__faq-toggle {
      font-size: 1.8em;
      color: #ffd700;
      font-weight: bold;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event on parent div */
    }

    .page-8k8-777-com-login-register__faq-item.active .page-8k8-777-com-login-register__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or similar for '-' */
    }

    .page-8k8-777-com-login-register__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Adjust padding to match question */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #cccccc;
      box-sizing: border-box; /* Crucial for padding calculation */
    }

    .page-8k8-777-com-login-register__faq-item.active .page-8k8-777-com-login-register__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important; /* Ensure content padding is visible */
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8-777-com-login-register__hero-title {
        font-size: 3em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-777-com-login-register__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-777-com-login-register__hero-description {
        font-size: 1em;
      }

      .page-8k8-777-com-login-register__button-group {
        flex-direction: column;
        gap: 15px;
      }

      .page-8k8-777-com-login-register__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-8k8-777-com-login-register__section-title {
        font-size: 2em;
      }

      .page-8k8-777-com-login-register__info-grid,
      .page-8k8-777-com-login-register__promo-grid,
      .page-8k8-777-com-login-register__logos-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
      }

      .page-8k8-777-com-login-register__step-item {
        flex-direction: column;
        text-align: center;
      }

      .page-8k8-777-com-login-register__step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }

      .page-8k8-777-com-login-register__step-content h3 {
        font-size: 1.4em;
      }

      /* List item specific mobile adjustments */
      .page-8k8-777-com-login-register__info-card,
      .page-8k8-777-com-login-register__promo-card,
      .page-8k8-777-com-login-register__logo-item,
      .page-8k8-777-com-login-register__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-8k8-777-com-login-register__faq-question {
        padding: 15px 15px;
      }
      .page-8k8-777-com-login-register__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-777-com-login-register__faq-answer {
        padding: 0 15px;
      }
      .page-8k8-777-com-login-register__faq-item.active .page-8k8-777-com-login-register__faq-answer {
        padding: 15px 15px !important;
      }

      .page-8k8-777-com-login-register__logos-grid {
        padding: 0;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-777-com-login-register__hero-title {
        font-size: 2em;
      }
      .page-8k8-777-com-login-register__section {
        padding: 30px 15px;
      }
      .page-8k8-777-com-login-register__button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  