
    /* CSS specific to this page */
    :root {
      --page-8k8-3-primary-color: #e44d26; /* A vibrant orange-red, common in gaming/casino */
      --page-8k8-3-secondary-color: #333;
      --page-8k8-3-accent-color: #ffd700; /* Gold accent */
      --page-8k8-3-background-dark: #1a1a1a;
      --page-8k8-3-background-light: #f5f5f5;
      --page-8k8-3-text-light: #ffffff;
      --page-8k8-3-text-dark: #333333;
      --page-8k8-3-border-radius: 8px;
      --page-8k8-3-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-3 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-3-text-dark);
      background-color: var(--page-8k8-3-background-light);
    }

    .page-8k8-3__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-8k8-3__hero-section {
      position: relative;
      background-color: var(--page-8k8-3-background-dark);
      color: var(--page-8k8-3-text-light);
      text-align: center;
      padding: 80px 20px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 400px;
      padding-top: 10px; /* Decorative top spacing, assuming body padding-top is handled by shared CSS */
    }

    .page-8k8-3__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6); /* Allowed for background images to improve text readability */
      max-width: 100%;
      height: auto; /* Image responsive */
    }

    .page-8k8-3__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

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

    .page-8k8-3__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--page-8k8-3-text-light);
    }

    .page-8k8-3__promo-button {
      display: inline-block;
      background-color: var(--page-8k8-3-primary-color);
      color: var(--page-8k8-3-text-light);
      padding: 15px 30px;
      border-radius: var(--page-8k8-3-border-radius);
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none; /* Use button tag, so no default border */
      cursor: pointer;
    }

    .page-8k8-3__promo-button:hover {
      background-color: #ff6a3d;
      transform: translateY(-3px);
    }

    .page-8k8-3__section {
      padding: 60px 20px;
      background-color: var(--page-8k8-3-background-light);
      color: var(--page-8k8-3-text-dark);
      text-align: center;
    }

    .page-8k8-3__section--dark {
      background-color: var(--page-8k8-3-background-dark);
      color: var(--page-8k8-3-text-light);
    }

    .page-8k8-3__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: var(--page-8k8-3-primary-color);
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-3__section-title--light {
      color: var(--page-8k8-3-accent-color);
    }

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

    .page-8k8-3__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
      text-align: left;
    }

    .page-8k8-3__card {
      background-color: #ffffff;
      padding: 30px;
      border-radius: var(--page-8k8-3-border-radius);
      box-shadow: var(--page-8k8-3-box-shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      color: var(--page-8k8-3-text-dark);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .page-8k8-3__card--dark {
      background-color: #2a2a2a;
      color: var(--page-8k8-3-text-light);
    }

    .page-8k8-3__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-3__card-icon {
      margin-bottom: 20px;
      width: 250px; /* Min size 200x200 */
      height: 250px;
      object-fit: contain;
      max-width: 100%;
      height: auto; /* Image responsive */
    }

    .page-8k8-3__card-title {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: var(--page-8k8-3-primary-color);
    }

    .page-8k8-3__card--dark .page-8k8-3__card-title {
      color: var(--page-8k8-3-accent-color);
    }

    .page-8k8-3__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-8k8-3__step-item {
      background-color: #ffffff;
      padding: 25px;
      margin-bottom: 20px;
      border-radius: var(--page-8k8-3-border-radius);
      box-shadow: var(--page-8k8-3-box-shadow);
      width: 100%;
      max-width: 700px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      text-align: left;
      color: var(--page-8k8-3-text-dark);
      box-sizing: border-box; /* Ensure padding and border are included in width */
    }

    .page-8k8-3__step-number {
      background-color: var(--page-8k8-3-primary-color);
      color: var(--page-8k8-3-text-light);
      border-radius: 50%;
      width: 45px;
      height: 45px;
      min-width: 45px; /* Prevent shrinking */
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5em;
      font-weight: bold;
    }

    .page-8k8-3__step-content h3 {
      font-size: 1.3em;
      margin-top: 0;
      color: var(--page-8k8-3-primary-color);
    }

    .page-8k8-3__step-content p {
      margin-bottom: 0;
    }

    .page-8k8-3__image-container {
      margin-top: 40px;
      text-align: center;
    }

    .page-8k8-3__main-image {
      max-width: 100%;
      height: auto;
      border-radius: var(--page-8k8-3-border-radius);
      box-shadow: var(--page-8k8-3-box-shadow);
    }

    .page-8k8-3__faq-section {
      padding: 60px 20px;
      background-color: var(--page-8k8-3-background-dark);
      color: var(--page-8k8-3-text-light);
      text-align: center;
    }

    .page-8k8-3__faq-container {
      max-width: 900px;
      margin: 0 auto;
      margin-top: 40px;
    }

    .page-8k8-3__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: var(--page-8k8-3-border-radius);
      overflow: hidden;
      box-shadow: var(--page-8k8-3-box-shadow);
      text-align: left;
    }

    .page-8k8-3__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #3a3a3a;
      color: var(--page-8k8-3-text-light);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

    .page-8k8-3__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-8k8-3-accent-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

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

    .page-8k8-3__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #ccc;
    }

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

    .page-8k8-3__faq-answer p {
      margin-bottom: 10px;
    }

    .page-8k8-3__cta-section {
      padding: 60px 20px;
      text-align: center;
      background-color: var(--page-8k8-3-primary-color);
      color: var(--page-8k8-3-text-light);
    }

    .page-8k8-3__cta-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      color: var(--page-8k8-3-text-light);
    }

    .page-8k8-3__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-3__hero-section {
        padding: 60px 15px;
        min-height: 300px;
      }

      .page-8k8-3__hero-title {
        font-size: 2.2em;
      }

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

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

      .page-8k8-3__section {
        padding: 40px 15px;
      }

      .page-8k8-3__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-8k8-3__grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-3__card {
        padding: 25px;
      }

      .page-8k8-3__card-icon {
        width: 200px; /* Min size */
        height: 200px;
      }

      .page-8k8-3__card-title {
        font-size: 1.3em;
      }

      .page-8k8-3__steps-list {
        margin-top: 30px;
      }

      .page-8k8-3__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-3__step-number {
        margin-bottom: 10px;
      }

      .page-8k8-3__step-content h3 {
        font-size: 1.2em;
      }

      .page-8k8-3__faq-section {
        padding: 40px 15px;
      }

      .page-8k8-3__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }

      .page-8k8-3__faq-question h3 {
        font-size: 1em;
      }

      .page-8k8-3__faq-answer {
        padding: 15px 20px;
        word-wrap: break-word !important; /* Ensure long text breaks */
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

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

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

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

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