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

    .page-8k8-com-2__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      padding: 10px 20px 80px; /* Small padding-top, relying on body for header offset */
      text-align: center;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 450px;
    }

    .page-8k8-com-2__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('[GALLERY:hero:1920x1080:gaming_background,abstract,lights]') no-repeat center center/cover;
      opacity: 0.2;
      z-index: 0;
    }

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

    .page-8k8-com-2__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      font-weight: 700;
      color: #fff;
    }

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

    .page-8k8-com-2__cta-button {
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

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

    .page-8k8-com-2__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
      margin-bottom: 40px;
    }
    
    .page-8k8-com-2__section:first-of-type {
        margin-top: 40px; /* Add some space below hero for first section */
    }

    .page-8k8-com-2__section-title {
      font-size: 2.5em;
      color: #1a2a6c;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-8k8-com-2__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #555;
      text-align: justify;
    }

    .page-8k8-com-2__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-com-2__feature-card {
      background-color: #fefefe;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 20px 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;
      border: 1px solid #eee;
    }

    .page-8k8-com-2__feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-com-2__feature-icon {
      width: 120px;
      height: 120px;
      margin-bottom: 20px;
      object-fit: cover;
      border-radius: 50%;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-com-2__feature-title {
      font-size: 1.4em;
      color: #1a2a6c;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .page-8k8-com-2__feature-description {
      color: #666;
      font-size: 0.95em;
    }

    .page-8k8-com-2__steps-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-8k8-com-2__step-item {
      background-color: #fefefe;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      flex: 1 1 calc(33% - 40px); /* 3 items per row, with gap */
      min-width: 280px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-com-2__step-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

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

    .page-8k8-com-2__step-title {
      font-size: 1.3em;
      color: #1a2a6c;
      margin-bottom: 10px;
    }

    .page-8k8-com-2__step-description {
      color: #666;
      font-size: 0.95em;
    }

    .page-8k8-com-2__game-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-8k8-com-2__provider-card {
      background-color: #fefefe;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #eee;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-8k8-com-2__provider-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-com-2__provider-logo {
      width: 150px; /* Increased size */
      height: auto;
      max-height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .page-8k8-com-2__provider-name {
      font-size: 1.1em;
      color: #1a2a6c;
      font-weight: 600;
    }

    .page-8k8-com-2__faq-container {
      margin-top: 40px;
    }

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

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

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

    .page-8k8-com-2__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #1a2a6c;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

    .page-8k8-com-2__faq-item.active .page-8k8-com-2__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or - */
    }

    .page-8k8-com-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding for smooth transition */
      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-2__faq-item.active .page-8k8-com-2__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px !important; /* Final padding */
      opacity: 1;
    }

    .page-8k8-com-2__promo-link {
        display: block;
        text-align: center;
        margin-top: 40px;
        font-size: 1.2em;
    }

    .page-8k8-com-2__promo-link .page-8k8-com-2__cta-button {
        background-color: #ff4500; /* A different color for promo */
        color: #fff;
    }
    .page-8k8-com-2__promo-link .page-8k8-com-2__cta-button:hover {
        background-color: #e03d00;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8-com-2__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-com-2__hero-subtitle {
        font-size: 1.2em;
      }
      .page-8k8-com-2__section-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-2__hero-section {
        padding: 10px 15px 60px;
        min-height: 350px;
      }
      .page-8k8-com-2__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-com-2__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-com-2__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-com-2__section {
        padding: 40px 15px;
        margin-bottom: 30px;
      }
      .page-8k8-com-2__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-8k8-com-2__text-content {
        font-size: 1em;
      }
      .page-8k8-com-2__features-grid,
      .page-8k8-com-2__game-providers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-8k8-com-2__step-item {
        flex: 1 1 100%; /* One item per row on mobile */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 25px;
      }
      .page-8k8-com-2__steps-list {
        flex-direction: column; /* Stack steps vertically */
        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-com-2__feature-card,
      .page-8k8-com-2__provider-card {
        padding: 25px;
      }
      .page-8k8-com-2__feature-icon {
        width: 100px;
        height: 100px;
      }
      .page-8k8-com-2__provider-logo {
        width: 120px;
      }
      .page-8k8-com-2__faq-question {
        padding: 15px;
      }
      .page-8k8-com-2__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-com-2__faq-answer {
        padding: 15px !important; /* Adjust for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-2__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com-2__hero-subtitle {
        font-size: 0.9em;
      }
      .page-8k8-com-2__section-title {
        font-size: 1.5em;
      }
      .page-8k8-com-2__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }
  