
    /* CSS for page-8k8-2 */
    :root {
      --page-8k8-2-primary-color: #FFD700; /* Gold */
      --page-8k8-2-secondary-color: #000000; /* Black */
      --page-8k8-2-text-color: #FFFFFF; /* White */
      --page-8k8-2-accent-color: #FF4500; /* OrangeRed */
      --page-8k8-2-background-dark: #1a1a1a;
      --page-8k8-2-background-light: #2c2c2c;
      --page-8k8-2-border-color: #444444;
      --header-offset: 122px; /* Default value, may be overridden by shared.css */
    }

    .page-8k8-2 {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-2-text-color);
      background-color: var(--page-8k8-2-background-dark);
      line-height: 1.6;
      /* Fallback padding-top for fixed header if shared.css doesn't apply to body */
      padding-top: var(--header-offset, 122px);
    }

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

    .page-8k8-2__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:casino,mobile,download,8k8,app]') center center / cover no-repeat;
      padding: 100px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Decorative padding, main offset handled by .page-8k8-2 */
    }

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

    .page-8k8-2__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 40px;
      color: var(--page-8k8-2-text-color);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-2__button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

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

    .page-8k8-2__button:hover {
      background-color: var(--page-8k8-2-accent-color);
      transform: translateY(-3px);
    }

    .page-8k8-2__section {
      padding: 60px 0;
      background-color: var(--page-8k8-2-background-light);
      border-bottom: 1px solid var(--page-8k8-2-border-color);
    }

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

    .page-8k8-2__section-title {
      font-size: 2.5em;
      color: var(--page-8k8-2-primary-color);
      text-align: center;
      margin-bottom: 40px;
      font-weight: bold;
    }

    .page-8k8-2__section-description {
      font-size: 1.1em;
      text-align: center;
      max-width: 900px;
      margin: 0 auto 50px auto;
      color: #ccc;
    }

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

    .page-8k8-2__feature-item {
      background-color: var(--page-8k8-2-background-dark);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--page-8k8-2-border-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-8k8-2__feature-icon {
      width: 250px; /* Minimum 200x200 */
      height: 250px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

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

    .page-8k8-2__feature-description {
      color: #bbb;
    }

    .page-8k8-2__image-wrapper {
      text-align: center;
      margin-bottom: 40px;
    }

    .page-8k8-2__image-wrapper img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      min-width: 200px; /* Ensure images are not small icons */
      min-height: 200px;
      object-fit: cover;
    }

    .page-8k8-2__step-list {
      display: flex;
      flex-direction: column;
      gap: 30px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-2__step-item {
      background-color: var(--page-8k8-2-background-dark);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: flex-start;
      gap: 20px;
      border-left: 5px solid var(--page-8k8-2-primary-color);
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-2__step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--page-8k8-2-primary-color);
      flex-shrink: 0;
    }

    .page-8k8-2__step-content {
      flex-grow: 1;
    }

    .page-8k8-2__step-title {
      font-size: 1.6em;
      color: var(--page-8k8-2-primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-2__step-description {
      color: #bbb;
    }

    /* FAQ Section */
    .page-8k8-2__faq-section {
      padding: 60px 0;
      background-color: var(--page-8k8-2-background-light);
    }

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

    .page-8k8-2__faq-item {
      background-color: var(--page-8k8-2-background-dark);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--page-8k8-2-border-color);
      box-sizing: border-box; /* Required for list items */
    }

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

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

    .page-8k8-2__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-2__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-8k8-2-primary-color);
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-8k8-2__faq-item.active .page-8k8-2__faq-toggle {
      transform: rotate(45deg); /* Changes + to x */
    }

    .page-8k8-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Adjusted padding to match question */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #bbb;
      font-size: 1.05em;
    }

    .page-8k8-2__faq-item.active .page-8k8-2__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 20px !important; /* Ensure padding is applied when active */
      opacity: 1;
    }

    /* Call to Action Section */
    .page-8k8-2__cta-section {
      text-align: center;
      padding: 80px 20px;
      background-color: var(--page-8k8-2-accent-color);
      color: var(--page-8k8-2-text-color);
    }

    .page-8k8-2__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: var(--page-8k8-2-text-color);
      font-weight: bold;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-2__hero-title {
        font-size: 3em;
      }
      .page-8k8-2__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8-2__section-title {
        font-size: 2em;
      }
      .page-8k8-2__cta-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-2__container {
        padding: 15px;
      }
      .page-8k8-2__hero-section {
        padding: 80px 15px;
      }
      .page-8k8-2__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-2__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-2__button-group {
        flex-direction: column;
        gap: 15px;
      }
      .page-8k8-2__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-8k8-2__section {
        padding: 40px 0;
      }
      .page-8k8-2__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-8k8-2__section-description {
        font-size: 1em;
        margin-bottom: 30px;
      }
      .page-8k8-2__feature-item {
        padding: 25px;
      }
      .page-8k8-2__feature-icon {
        width: 200px; /* Enforce min-size */
        height: 200px;
      }
      .page-8k8-2__feature-title {
        font-size: 1.3em;
      }

      /* List item responsive requirements */
      .page-8k8-2__step-list {
        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-2__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
        margin-left: 0 !important;
        margin-right: 0 !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .page-8k8-2__step-number {
        font-size: 1.8em;
        margin-bottom: 10px;
      }
      .page-8k8-2__step-title {
        font-size: 1.4em;
      }
      .page-8k8-2__step-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-2__faq-question {
        padding: 15px;
        font-size: 1.1em;
      }
      .page-8k8-2__faq-toggle {
        font-size: 1.5em;
      }
      .page-8k8-2__faq-answer {
        padding: 0 15px;
      }
      .page-8k8-2__faq-item.active .page-8k8-2__faq-answer {
        padding: 15px 15px !important;
      }

      .page-8k8-2__cta-section {
        padding: 50px 15px;
      }
      .page-8k8-2__cta-title {
        font-size: 2em;
      }
      .page-8k8-2__cta-description {
        font-size: 1.1em;
      }

      /* Image responsive */
      .page-8k8-2__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-8k8-2__image-wrapper img {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-2__hero-title {
        font-size: 2em;
      }
      .page-8k8-2__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-2__section-title {
        font-size: 1.6em;
      }
      .page-8k8-2__feature-title {
        font-size: 1.2em;
      }
      .page-8k8-2__step-title {
        font-size: 1.2em;
      }
      .page-8k8-2__faq-question {
        font-size: 1em;
      }
      .page-8k8-2__faq-toggle {
        font-size: 1.3em;
      }
      .page-8k8-2__cta-title {
        font-size: 1.8em;
      }
    }
  