
    /* Page-specific CSS for 8k8 Register */
    .page-8k8-register {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-8k8-register__hero-section {
      background: linear-gradient(135deg, #0a1128, #1a2c5a);
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding-top: 70px; /* Small padding to avoid content touching fixed header */
    }

    .page-8k8-register__hero-background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.2;
      z-index: 0;
    }

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

    .page-8k8-register__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #fddb00; /* Gold/Yellow for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-register__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      color: #e0e0e0;
    }

    .page-8k8-register__cta-button {
      display: inline-block;
      background-color: #fddb00; /* Gold/Yellow */
      color: #0a1128;
      padding: 15px 35px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-register__cta-button:hover {
      background-color: #ffe033;
      transform: translateY(-2px);
    }

    .page-8k8-register__section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }

    .page-8k8-register__section:first-of-type {
      margin-top: 30px;
    }

    .page-8k8-register__section-title {
      font-size: 2.2em;
      color: #0a1128;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-8k8-register__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #fddb00;
      border-radius: 2px;
    }

    .page-8k8-register__content-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      align-items: flex-start;
    }

    .page-8k8-register__image-container {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      text-align: center;
    }

    .page-8k8-register__image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-register__text-content {
      flex: 2;
      min-width: 300px;
      max-width: 700px;
    }

    .page-8k8-register__paragraph {
      margin-bottom: 20px;
      font-size: 1.05em;
      color: #555;
    }

    .page-8k8-register__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .page-8k8-register__list-item {
      background-color: #e6f0ff; /* Light blue background */
      padding: 20px;
      border-radius: 8px;
      flex: 1 1 calc(33% - 20px); /* Three items per row */
      box-sizing: border-box;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      min-width: 280px;
      position: relative;
      padding-left: 50px;
    }

    .page-8k8-register__list-item::before {
      content: '✓';
      position: absolute;
      left: 15px;
      top: 18px;
      color: #0a1128;
      font-size: 1.5em;
      font-weight: bold;
    }

    .page-8k8-register__list-item-title {
      font-size: 1.2em;
      color: #0a1128;
      margin-bottom: 10px;
    }

    .page-8k8-register__step-list {
      list-style: none;
      padding: 0;
      counter-reset: step-counter;
    }

    .page-8k8-register__step-item {
      background-color: #fff;
      border: 1px solid #ddd;
      padding: 25px;
      margin-bottom: 20px;
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    }

    .page-8k8-register__step-number {
      counter-increment: step-counter;
      width: 40px;
      height: 40px;
      background-color: #0a1128;
      color: #fddb00;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.3em;
      font-weight: bold;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .page-8k8-register__step-content h3 {
      font-size: 1.4em;
      color: #0a1128;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-register__step-content p {
      color: #555;
      font-size: 1.05em;
    }

    .page-8k8-register__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-content: center;
    }

    .page-8k8-register__payment-method-card {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
    }

    .page-8k8-register__payment-method-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-register__payment-method-image {
      max-width: 120px;
      height: auto;
      margin-bottom: 15px;
      border-radius: 5px;
    }

    .page-8k8-register__payment-method-name {
      font-size: 1.1em;
      font-weight: bold;
      color: #0a1128;
    }

    .page-8k8-register__game-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-content: center;
    }

    .page-8k8-register__provider-card {
      background-color: #fefefe;
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      transition: transform 0.2s ease;
    }

    .page-8k8-register__provider-card:hover {
      transform: scale(1.03);
    }

    .page-8k8-register__provider-logo {
      max-width: 100px;
      height: auto;
      margin-bottom: 10px;
      border-radius: 5px;
    }

    .page-8k8-register__provider-name {
      font-size: 0.95em;
      font-weight: 600;
      color: #333;
    }

    .page-8k8-register__faq-container {
      margin-top: 40px;
    }

    .page-8k8-register__faq-item {
      background-color: #fefefe;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #f0f7ff; /* Lighter blue for question */
      transition: background-color 0.3s ease;
    }

    .page-8k8-register__faq-question:hover {
      background-color: #e0eaff;
    }

    .page-8k8-register__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #0a1128;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-register__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #0a1128;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-8k8-register__faq-item.active .page-8k8-register__faq-toggle {
      transform: rotate(45deg);
    }

    .page-8k8-register__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      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: #fff;
      color: #555;
    }

    .page-8k8-register__faq-item.active .page-8k8-register__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important; /* Adjusted padding when active */
      opacity: 1;
    }

    .page-8k8-register__faq-answer p {
      margin: 0 0 10px 0;
    }

    .page-8k8-register__faq-answer p:last-child {
      margin-bottom: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .page-8k8-register__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-register__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-register__section-title {
        font-size: 1.8em;
      }
      .page-8k8-register__list-item {
        flex: 1 1 calc(50% - 15px); /* Two items per row */
      }
    }

    @media (max-width: 768px) {
      .page-8k8-register__hero-section {
        padding: 50px 15px;
        padding-top: 60px; /* Adjust for smaller header offset if any */
      }
      .page-8k8-register__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-register__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-register__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-8k8-register__section {
        padding: 30px 15px;
        margin-left: 15px;
        margin-right: 15px;
      }
      .page-8k8-register__section-title {
        font-size: 1.6em;
        margin-bottom: 30px;
      }
      .page-8k8-register__content-wrapper {
        flex-direction: column;
        gap: 20px;
      }
      .page-8k8-register__image-container,
      .page-8k8-register__text-content {
        min-width: unset;
        max-width: 100%;
        width: 100%; /* Ensure full width */
      }
      .page-8k8-register__paragraph {
        font-size: 0.95em;
      }

      /* List item mobile responsiveness */
      .page-8k8-register__list,
      .page-8k8-register__step-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8k8-register__list-item {
        flex: 1 1 100%; /* Single item per row */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 45px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-register__list-item::before {
        left: 10px;
        top: 15px;
      }

      .page-8k8-register__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-register__step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }
      .page-8k8-register__step-content h3 {
        font-size: 1.2em;
      }
      .page-8k8-register__step-content p {
        font-size: 0.9em;
      }

      .page-8k8-register__payment-methods-grid,
      .page-8k8-register__game-providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
      }
      .page-8k8-register__payment-method-card,
      .page-8k8-register__provider-card {
        padding: 15px;
      }
      .page-8k8-register__payment-method-image,
      .page-8k8-register__provider-logo {
        max-width: 100px;
      }

      .page-8k8-register__faq-question {
        padding: 15px 20px;
      }
      .page-8k8-register__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-register__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-register__faq-item.active .page-8k8-register__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-register__hero-section {
        padding: 40px 10px;
        padding-top: 50px;
      }
      .page-8k8-register__hero-title {
        font-size: 1.5em;
      }
      .page-8k8-register__hero-subtitle {
        font-size: 0.9em;
      }
      .page-8k8-register__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-8k8-register__section {
        padding: 25px 10px;
        margin-left: 10px;
        margin-right: 10px;
      }
      .page-8k8-register__section-title {
        font-size: 1.4em;
      }
      .page-8k8-register__payment-methods-grid,
      .page-8k8-register__game-providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
      }
      .page-8k8-register__payment-method-image,
      .page-8k8-register__provider-logo {
        max-width: 80px;
      }
    }
  