
    :root {
      --page-8k8-3-primary-color: #e44d26; /* A vibrant red/orange */
      --page-8k8-3-secondary-color: #333;
      --page-8k8-3-background-light: #f9f9f9;
      --page-8k8-3-text-dark: #333;
      --page-8k8-3-text-light: #fff;
      --page-8k8-3-accent-color: #007bff;
    }

    .page-8k8-3 {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-3-text-dark);
      line-height: 1.6;
      background-color: var(--page-8k8-3-background-light);
      padding-bottom: 40px; /* Ensure space above footer */
    }

    /* Fallback for header offset if shared.css doesn't provide it via body padding-top */
    .page-8k8-3 {
      padding-top: var(--header-offset, 0px); /* Adjust if header covers content */
    }

    .page-8k8-3__hero-section {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('[GALLERY:hero:1920x1080:casino,login,banner,8k8]') no-repeat center center/cover;
      color: var(--page-8k8-3-text-light);
      text-align: center;
      padding: 100px 20px;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small decorative top padding, main offset handled by body */
    }

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

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

    .page-8k8-3__cta-button {
      display: inline-block;
      background-color: var(--page-8k8-3-primary-color);
      color: var(--page-8k8-3-text-light);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

    .page-8k8-3__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-3__section--dark {
      background-color: var(--page-8k8-3-secondary-color);
      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);
      word-break: break-word;
    }

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

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

    .page-8k8-3__feature-card {
      background-color: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: left;
      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;
    }

    .page-8k8-3__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-3__card-icon {
      width: 250px; /* Minimum 200px */
      height: 150px; /* Minimum 200px, but aspect ratio might be different */
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
      border-radius: 5px;
    }

    .page-8k8-3__card-title {
      font-size: 1.8em;
      margin-bottom: 15px;
      color: var(--page-8k8-3-primary-color);
      text-align: center;
      word-break: break-word;
    }

    .page-8k8-3__card-description {
      font-size: 1em;
      color: var(--page-8k8-3-text-dark);
      text-align: center;
    }

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

    .page-8k8-3__steps-item {
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: left;
      flex: 1 1 calc(33% - 40px); /* 3 items per row, with gap */
      max-width: calc(33% - 40px);
      min-width: 280px;
      box-sizing: border-box;
      color: var(--page-8k8-3-text-dark);
    }

    .page-8k8-3__steps-number {
      font-size: 2.5em;
      font-weight: bold;
      color: var(--page-8k8-3-primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-3__steps-text {
      font-size: 1.1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-8k8-3__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-3__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);
      text-align: left;
    }

    .page-8k8-3__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--page-8k8-3-background-light);
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

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

    .page-8k8-3__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-8k8-3-accent-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      line-height: 1; /* Adjust line height to center +/- */
    }

    .page-8k8-3__faq-item.active .page-8k8-3__faq-toggle {
      transform: rotate(45deg); /* Visually indicate open state (e.g., plus becomes cross) */
    }

    .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: var(--page-8k8-3-text-dark);
    }

    .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-top: 0;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-8k8-3__contact-info {
      background-color: var(--page-8k8-3-primary-color);
      color: var(--page-8k8-3-text-light);
      padding: 40px 20px;
      text-align: center;
      margin-top: 40px;
      border-radius: 8px;
    }

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

    .page-8k8-3__contact-text {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8-3__hero-title {
        font-size: 2.8em;
      }

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

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

      .page-8k8-3__steps-item {
        flex: 1 1 calc(50% - 30px); /* 2 items per row */
        max-width: calc(50% - 30px);
      }
    }

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

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

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

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

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

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

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

      .page-8k8-3__feature-card {
        padding: 25px;
        align-items: center;
      }

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

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

      .page-8k8-3__steps-list {
        flex-direction: column;
        gap: 15px;
      }

      .page-8k8-3__steps-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }

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

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

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

      .page-8k8-3__faq-toggle {
        font-size: 1.5em;
      }

      .page-8k8-3__faq-answer {
        padding: 0 20px;
      }

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

      .page-8k8-3__contact-info {
        padding: 30px 15px;
      }

      .page-8k8-3__contact-title {
        font-size: 1.6em;
      }

      .page-8k8-3__contact-text {
        font-size: 1em;
      }

      /* Image responsive optimization */
      .page-8k8-3 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-3__card-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

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

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

      .page-8k8-3__section-title {
        font-size: 1.5em;
      }

      .page-8k8-3__cta-button {
        font-size: 1em;
        padding: 10px 20px;
      }

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