
    :root {
      --page-8k8-9-primary-color: #007bff; /* Blue */
      --page-8k8-9-secondary-color: #6c757d; /* Gray */
      --page-8k8-9-accent-color: #ffc107; /* Yellow */
      --page-8k8-9-dark-bg: #1a1a1a; /* Dark background */
      --page-8k8-9-light-text: #f8f9fa; /* Light text */
      --page-8k8-9-medium-gray: #343a40; /* Medium dark gray */
      --page-8k8-9-border-color: #495057; /* Darker gray for borders */
      --page-8k8-9-success-color: #28a745; /* Green */
      --page-8k8-9-danger-color: #dc3545; /* Red */
    }

    /* Base styles for the page */
    .page-8k8-9 {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-9-light-text);
      background-color: var(--page-8k8-9-dark-bg);
      line-height: 1.6;
      padding-top: 10px; /* Decorative top padding, relying on body padding-top for header offset */
    }

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

    .page-8k8-9__section {
      padding: 40px 0;
      text-align: center;
      margin-bottom: 20px;
    }

    .page-8k8-9__section--dark {
      background-color: var(--page-8k8-9-medium-gray);
      border-radius: 8px;
      padding: 40px 20px;
    }

    .page-8k8-9__heading {
      color: var(--page-8k8-9-accent-color);
      margin-bottom: 20px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-8k8-9__subheading {
      color: var(--page-8k8-9-light-text);
      margin-bottom: 15px;
      font-size: 1.8em;
    }

    .page-8k8-9__paragraph {
      color: var(--page-8k8-9-light-text);
      margin-bottom: 20px;
      font-size: 1.1em;
    }

    /* Hero Section */
    .page-8k8-9__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:casino,mobile,app_bg]') no-repeat center center/cover;
      color: var(--page-8k8-9-light-text);
      padding: 80px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      border-radius: 8px;
      margin-bottom: 30px;
    }

    .page-8k8-9__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--page-8k8-9-accent-color);
      text-align: center;
      line-height: 1.2;
    }

    .page-8k8-9__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      text-align: center;
    }

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

    .page-8k8-9__download-button:hover {
      background-color: #0056b3; /* Darker blue */
    }

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

    .page-8k8-9__feature-card {
      background-color: var(--page-8k8-9-medium-gray);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      border: 1px solid var(--page-8k8-9-border-color);
    }

    .page-8k8-9__feature-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-9__feature-icon {
      width: 200px; /* Minimum size */
      height: auto;
      margin-bottom: 15px;
      border-radius: 8px;
      max-width: 100%;
      box-sizing: border-box;
    }

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

    .page-8k8-9__feature-description {
      color: var(--page-8k8-9-light-text);
      font-size: 1em;
    }

    /* Download Guide Section */
    .page-8k8-9__guide-steps {
      display: flex;
      flex-direction: column;
      gap: 25px;
      margin-top: 30px;
      align-items: center;
    }

    .page-8k8-9__step-item {
      background-color: var(--page-8k8-9-medium-gray);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--page-8k8-9-border-color);
      width: 100%;
      max-width: 700px;
      text-align: left;
    }

    .page-8k8-9__step-number {
      background-color: var(--page-8k8-9-primary-color);
      color: var(--page-8k8-9-light-text);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5em;
      font-weight: bold;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .page-8k8-9__step-content {
      display: flex;
      align-items: flex-start;
    }

    .page-8k8-9__step-text h3 {
      color: var(--page-8k8-9-accent-color);
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.3em;
    }

    .page-8k8-9__step-text p {
      color: var(--page-8k8-9-light-text);
      font-size: 1em;
      margin-bottom: 0;
    }

    /* Why Choose Section */
    .page-8k8-9__why-choose-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      text-align: left;
    }

    .page-8k8-9__why-choose-item {
      background-color: var(--page-8k8-9-medium-gray);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      border-left: 5px solid var(--page-8k8-9-primary-color);
      color: var(--page-8k8-9-light-text);
    }

    .page-8k8-9__why-choose-item h3 {
      color: var(--page-8k8-9-accent-color);
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.3em;
    }

    .page-8k8-9__why-choose-item p {
      font-size: 1em;
      margin-bottom: 0;
    }

    /* Call to Action */
    .page-8k8-9__cta-section {
      background-color: var(--page-8k8-9-primary-color);
      color: var(--page-8k8-9-light-text);
      padding: 50px 20px;
      text-align: center;
      border-radius: 8px;
      margin-top: 40px;
    }

    .page-8k8-9__cta-title {
      font-size: 2.2em;
      margin-bottom: 15px;
    }

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

    /* FAQ Section */
    .page-8k8-9__faq-section {
      text-align: left;
    }

    .page-8k8-9__faq-list {
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-8k8-9__faq-item {
      background-color: var(--page-8k8-9-medium-gray);
      border: 1px solid var(--page-8k8-9-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-9__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-8k8-9-medium-gray);
      color: var(--page-8k8-9-light-text);
      transition: background-color 0.3s ease;
    }

    .page-8k8-9__faq-question:hover {
      background-color: #495057; /* Slightly lighter dark gray */
    }

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

    .page-8k8-9__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
      color: var(--page-8k8-9-primary-color);
    }

    .page-8k8-9__faq-item.active .page-8k8-9__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an 'x' or 'minus' visually */
    }

    .page-8k8-9__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      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-9-light-text);
      font-size: 1em;
    }

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

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-8k8-9__container {
        padding: 15px;
      }

      .page-8k8-9__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-9__hero-description {
        font-size: 1em;
      }

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

      .page-8k8-9__heading {
        font-size: 2em;
      }

      .page-8k8-9__subheading {
        font-size: 1.5em;
      }

      .page-8k8-9__paragraph {
        font-size: 0.95em;
      }

      .page-8k8-9__features-grid,
      .page-8k8-9__why-choose-list {
        grid-template-columns: 1fr;
      }

      /* List item specific responsiveness */
      .page-8k8-9__step-item,
      .page-8k8-9__why-choose-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-9__step-text h3 {
        font-size: 1.1em;
      }

      .page-8k8-9__step-text p {
        font-size: 0.9em;
      }

      .page-8k8-9__feature-card {
        padding: 20px;
      }

      .page-8k8-9__feature-title {
        font-size: 1.2em;
      }

      .page-8k8-9__feature-description {
        font-size: 0.9em;
      }

      .page-8k8-9__faq-question {
        padding: 12px 15px;
      }

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

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

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

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

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

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

      /* Image responsiveness */
      .page-8k8-9__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-9__hero-title {
        font-size: 2em;
      }
      .page-8k8-9__heading {
        font-size: 1.8em;
      }
      .page-8k8-9__subheading {
        font-size: 1.3em;
      }
    }
  