
    /* Page-specific CSS for 8k8-4 */
    :root {
      --page-8k8-4__primary-color: #e0b300; /* Golden yellow for vibrancy */
      --page-8k8-4__secondary-color: #2a2a2a; /* Dark gray for text */
      --page-8k8-4__background-dark: #1a1a1a;
      --page-8k8-4__background-light: #f5f5f5;
      --page-8k8-4__text-light: #f0f0f0;
      --page-8k8-4__text-dark: #333;
      --page-8k8-4__border-color: #444;
      --page-8k8-4__button-hover: #ffcc00;
    }

    .page-8k8-4 {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-4__text-light);
      background-color: var(--page-8k8-4__background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small top padding, assuming body has header offset */
    }

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

    .page-8k8-4__section {
      padding: 60px 0;
      text-align: center;
      position: relative;
    }

    .page-8k8-4__section--light {
      background-color: var(--page-8k8-4__background-light);
      color: var(--page-8k8-4__text-dark);
    }

    .page-8k8-4__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:online casino,registration,gaming]') no-repeat center center/cover;
      color: var(--page-8k8-4__text-light);
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
    }

    .page-8k8-4__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: var(--page-8k8-4__primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-4__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-4__button {
      display: inline-block;
      background-color: var(--page-8k8-4__primary-color);
      color: var(--page-8k8-4__background-dark);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-4__button:hover {
      background-color: var(--page-8k8-4__button-hover);
    }

    .page-8k8-4__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: var(--page-8k8-4__primary-color);
    }

    .page-8k8-4__registration-steps {
      background-color: var(--page-8k8-4__background-dark);
      color: var(--page-8k8-4__text-light);
    }

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

    .page-8k8-4__step-item {
      background-color: var(--page-8k8-4__secondary-color);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
    }

    .page-8k8-4__step-icon {
      width: 100px;
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      max-width: 100%;
      height: auto;
      overflow: hidden;
    }
    .page-8k8-4__step-icon img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .page-8k8-4__step-number {
      font-size: 2em;
      color: var(--page-8k8-4__primary-color);
      font-weight: bold;
      margin-bottom: 10px;
    }

    .page-8k8-4__step-title {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: var(--page-8k8-4__primary-color);
    }

    .page-8k8-4__step-description {
      font-size: 1em;
      color: var(--page-8k8-4__text-light);
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-8k8-4__why-join {
      background-color: var(--page-8k8-4__background-light);
      color: var(--page-8k8-4__text-dark);
    }

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

    .page-8k8-4__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: left;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
    }

    .page-8k8-4__feature-icon {
      width: 120px;
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      max-width: 100%;
      height: auto;
      overflow: hidden;
    }
    .page-8k8-4__feature-icon img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .page-8k8-4__feature-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: var(--page-8k8-4__primary-color);
    }

    .page-8k8-4__feature-description {
      font-size: 0.95em;
      color: var(--page-8k8-4__text-dark);
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-8k8-4__call-to-action {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:cta:1200x800:online gaming,register now,casino fun]') no-repeat center center/cover;
      color: var(--page-8k8-4__text-light);
      padding: 80px 20px;
    }

    .page-8k8-4__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: var(--page-8k8-4__primary-color);
    }

    .page-8k8-4__cta-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    /* FAQ Section */
    .page-8k8-4__faq-section {
      background-color: var(--page-8k8-4__background-dark);
      color: var(--page-8k8-4__text-light);
    }

    .page-8k8-4__faq-list {
      max-width: 900px;
      margin: 40px auto 0;
      text-align: left;
    }

    .page-8k8-4__faq-item {
      background-color: var(--page-8k8-4__secondary-color);
      border: 1px solid var(--page-8k8-4__border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-8k8-4__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-8k8-4__primary-color);
      background-color: #333;
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-4__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-8k8-4__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      color: var(--page-8k8-4__primary-color);
      pointer-events: none; /* Prevent toggle from blocking click on parent div */
      transition: transform 0.3s ease;
    }

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

    .page-8k8-4__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-8k8-4__text-light);
      text-align: left;
    }

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

    .page-8k8-4__faq-answer p {
      margin-top: 0;
      margin-bottom: 1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

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

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

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

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

      .page-8k8-4__cta-description {
        font-size: 1em;
      }

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

      .page-8k8-4__section {
        padding: 40px 0;
      }

      /* List item responsiveness */
      .page-8k8-4__steps-grid,
      .page-8k8-4__why-join-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-4__step-item,
      .page-8k8-4__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for smaller screens */
      }

      .page-8k8-4__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }

      .page-8k8-4__faq-answer {
        padding: 0 15px;
      }

      .page-8k8-4__faq-item.active .page-8k8-4__faq-answer {
        padding: 15px 15px !important;
      }
    }

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

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

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

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

      .page-8k8-4__cta-title {
        font-size: 1.8em;
      }
    }
  