
    /* Base styles for the page content */
    .page-8k8-com-register-login {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-top: 10px; /* Small padding top as body padding is expected from shared.css */
    }

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

    /* Hero Section */
    .page-8k8-com-register-login__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
      border-radius: 15px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-com-register-login__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('[GALLERY:abstract:1920x1080:geometric,abstract,pattern]');
      background-size: cover;
      opacity: 0.1;
      z-index: 0;
    }

    .page-8k8-com-register-login__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-8k8-com-register-login__hero-title {
      font-size: 3.5em;
      color: #ffcc00; /* Gold */
      margin-bottom: 20px;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
      font-weight: 700;
      line-height: 1.2;
    }

    .page-8k8-com-register-login__hero-subtitle {
      font-size: 1.5em;
      color: #ffffff;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-register-login__cta-button {
      display: inline-block;
      padding: 15px 40px;
      background-color: #e63946; /* Red */
      color: #ffffff;
      text-decoration: none;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

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

    /* Section Styling */
    .page-8k8-com-register-login__section {
      background-color: #2a2a4a;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-8k8-com-register-login__section-title {
      font-size: 2.5em;
      color: #ffcc00; /* Gold */
      text-align: center;
      margin-bottom: 30px;
      font-weight: 600;
    }

    .page-8k8-com-register-login__section-subtitle {
      font-size: 1.2em;
      color: #cccccc;
      text-align: center;
      margin-bottom: 40px;
    }

    /* Steps and Lists */
    .page-8k8-com-register-login__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-com-register-login__step-item {
      background-color: #3b3b6b;
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-8k8-com-register-login__step-item:hover {
      transform: translateY(-5px);
    }

    .page-8k8-com-register-login__step-icon {
      width: 250px; /* Adjusted to meet min size 200x200 */
      height: 200px;
      margin-bottom: 20px;
      border-radius: 8px;
      object-fit: cover;
      max-width: 100%; /* Responsive image */
    }

    .page-8k8-com-register-login__step-title {
      font-size: 1.8em;
      color: #ffcc00;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .page-8k8-com-register-login__step-description {
      font-size: 1.1em;
      color: #e0e0e0;
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-com-register-login__payment-providers,
    .page-8k8-com-register-login__game-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-com-register-login__provider-item {
      background-color: #3b3b6b;
      padding: 15px 25px;
      border-radius: 8px;
      font-size: 1.1em;
      color: #ffffff;
      font-weight: 500;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-8k8-com-register-login__faq-section {
      margin-top: 50px;
    }

    .page-8k8-com-register-login__faq-item {
      background-color: #3b3b6b;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-8k8-com-register-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #4a4a7d;
      color: #ffcc00;
      font-size: 1.3em;
      font-weight: 600;
      transition: background-color 0.3s ease;
      user-select: none;
      box-sizing: border-box;
    }

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

    .page-8k8-com-register-login__faq-question h3 {
      margin: 0;
      color: #ffcc00;
      font-size: 1em; /* Adjust to match parent font size */
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

    .page-8k8-com-register-login__faq-item.active .page-8k8-com-register-login__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
    }

    .page-8k8-com-register-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      opacity: 0;
      background-color: #3b3b6b;
      color: #e0e0e0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      box-sizing: border-box;
      font-size: 1.1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-com-register-login__faq-item.active .page-8k8-com-register-login__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important; /* Final padding */
      opacity: 1;
    }

    /* General text and links */
    .page-8k8-com-register-login p {
      margin-bottom: 1em;
    }

    .page-8k8-com-register-login strong {
      color: #ffcc00;
    }

    .page-8k8-com-register-login__promo-link {
      color: #e63946;
      text-decoration: none;
      font-weight: bold;
    }

    .page-8k8-com-register-login__promo-link:hover {
      text-decoration: underline;
    }

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

      .page-8k8-com-register-login__hero-subtitle {
        font-size: 1.2em;
      }

      .page-8k8-com-register-login__cta-button {
        padding: 12px 30px;
        font-size: 1em;
      }

      .page-8k8-com-register-login__section {
        padding: 30px 15px;
      }

      .page-8k8-com-register-login__section-title {
        font-size: 2em;
      }

      .page-8k8-com-register-login__step-item {
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-com-register-login__step-title {
        font-size: 1.5em;
      }

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

      .page-8k8-com-register-login__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-8k8-com-register-login__faq-answer {
        padding: 0 20px;
        font-size: 1em;
      }

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

      .page-8k8-com-register-login__container {
        padding: 10px;
      }

      .page-8k8-com-register-login__payment-providers,
      .page-8k8-com-register-login__game-providers {
        gap: 10px;
      }

      .page-8k8-com-register-login__provider-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 12px 15px;
        font-size: 0.9em;
      }
      .page-8k8-com-register-login__steps-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-register-login__hero-title {
        font-size: 2em;
      }
      .page-8k8-com-register-login__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-com-register-login__section-title {
        font-size: 1.8em;
      }
    }

    /* Ensure images are responsive */
    .page-8k8-com-register-login img {
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }
    @media (max-width: 768px) {
      .page-8k8-com-register-login img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-register-login__step-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  