
    /* Global styles for the page-8k8-4 context */
    .page-8k8-4 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    /* Section styling */
    .page-8k8-4__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box; /* Ensure padding is included in the width */
    }

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

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

    .page-8k8-4__section--dark .page-8k8-4__section-title {
      color: #f39c12; /* Brighter color for dark background */
    }

    /* Hero Section */
    .page-8k8-4__hero-section {
      position: relative;
      overflow: hidden;
      padding: 10px 0 60px; /* 10px top padding for fixed header, 60px bottom */
      color: #fff;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Gradient fallback */
    }

    .page-8k8-4__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.7); /* Darken image for text readability */
      max-width: 100%; /* Image responsiveness */
      height: auto; /* Image responsiveness */
    }

    .page-8k8-4__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
    }

    .page-8k8-4__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #f39c12; /* Gold color */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-4__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #ecf0f1;
    }

    .page-8k8-4__cta-button {
      display: inline-block;
      background-color: #f39c12; /* Gold */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none; /* Ensure it looks like a button */
      cursor: pointer;
    }

    .page-8k8-4__cta-button:hover {
      background-color: #e67e22; /* Darker gold/orange */
      transform: translateY(-2px);
    }

    /* Why Register Section */
    .page-8k8-4__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-8k8-4__feature-item {
      background-color: #fdfdfd;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-4__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-4__feature-icon {
      margin-bottom: 15px;
      width: 200px; /* Min size 200x200 */
      height: auto;
      max-width: 100%;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-8k8-4__feature-description {
      color: #555;
    }

    /* How to Register Section */
    .page-8k8-4__steps-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 0;
      list-style: none;
    }

    .page-8k8-4__step-item {
      background-color: #fdfdfd;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: center;
      flex: 1 1 calc(33% - 40px); /* 3 items per row, with gap */
      max-width: calc(33% - 40px);
      box-sizing: border-box;
      position: relative;
    }

    .page-8k8-4__step-number {
      background-color: #f39c12;
      color: #fff;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8em;
      font-weight: bold;
      margin: 0 auto 20px;
    }

    .page-8k8-4__step-title {
      font-size: 1.4em;
      color: #2c3e50;
      margin-bottom: 10px;
    }

    .page-8k8-4__step-description {
      color: #555;
    }

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

    .page-8k8-4__provider-item,
    .page-8k8-4__payment-item {
      background-color: #fdfdfd;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      text-align: center;
      box-sizing: border-box;
      width: 100%; /* Ensure it takes full grid cell width */
      max-width: 200px; /* Limit max width for larger screens */
    }

    .page-8k8-4__provider-logo,
    .page-8k8-4__payment-logo {
      width: 100px; /* Display size */
      height: auto;
      max-width: 100%;
      margin-bottom: 5px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-4__provider-name,
    .page-8k8-4__payment-name {
      font-size: 0.9em;
      color: #444;
      font-weight: bold;
    }

    /* FAQ Section */
    .page-8k8-4__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-4__faq-item {
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      background-color: #fdfdfd;
    }

    .page-8k8-4__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: #eee;
      cursor: pointer;
      font-size: 1.15em;
      font-weight: bold;
      color: #2c3e50;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

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

    .page-8k8-4__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      color: #f39c12;
    }

    .page-8k8-4__faq-item.active .page-8k8-4__faq-toggle {
      transform: rotate(45deg); /* Plus to X / Minus */
    }

    .page-8k8-4__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      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;
      background-color: #fff;
    }

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

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

      .page-8k8-4__hero-subtitle {
        font-size: 1.2em;
      }

      .page-8k8-4__section-title {
        font-size: 2em;
      }

      .page-8k8-4__features-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-4__feature-item {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-4__steps-list {
        flex-direction: column;
        align-items: center;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-4__step-item {
        flex: 1 1 100%;
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important; /* Adjust padding for mobile */
      }
      
      .page-8k8-4__step-description,
      .page-8k8-4__feature-description,
      .page-8k8-4__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-4__provider-grid,
      .page-8k8-4__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-8k8-4__provider-item,
      .page-8k8-4__payment-item {
        max-width: 100%; /* Allow items to fill grid cells */
      }

      .page-8k8-4__provider-logo,
      .page-8k8-4__payment-logo {
        width: 80px; /* Adjust logo size for mobile */
      }

      /* Image responsiveness for all images */
      .page-8k8-4 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-4__hero-background,
      .page-8k8-4__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-4__hero-title {
        font-size: 2em;
      }

      .page-8k8-4__hero-subtitle {
        font-size: 1em;
      }

      .page-8k8-4__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-4__section {
        padding: 30px 15px;
      }
    }
  