
    :root {
      --8k8-primary: #FFD700; /* Gold */
      --8k8-secondary: #007BFF; /* Blue */
      --8k8-dark: #1a1a1a;
      --8k8-light: #f5f5f5;
      --8k8-text-dark: #333333;
      --8k8-text-light: #ffffff;
      --8k8-accent: #dc3545; /* Red for promotions */
    }

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

    /* Fixed navigation bar spacing: body padding-top is handled by shared.css. */
    /* This section only needs a small decorative padding. */
    .page-8k8-app__hero-section {
      padding-top: 10px; /* Decorative padding */
      background: var(--8k8-dark);
      color: var(--8k8-text-light);
      text-align: center;
      padding-bottom: 60px;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-app__hero-content {
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
      position: relative;
      z-index: 2;
    }

    .page-8k8-app__hero-content h1 {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: var(--8k8-primary);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-app__hero-content p {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      color: var(--8k8-text-light);
    }

    .page-8k8-app__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 1;
    }

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

    .page-8k8-app__button:hover {
      background-color: #e6c200; /* Darker gold */
      transform: translateY(-2px);
    }

    .page-8k8-app__section {
      padding: 40px 20px;
      max-width: 1100px;
      margin: 0 auto;
      background-color: var(--8k8-light);
      border-radius: 8px;
      margin-top: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

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

    .page-8k8-app__section--dark h2,
    .page-8k8-app__section--dark h3 {
      color: var(--8k8-primary);
    }

    .page-8k8-app__section-title {
      font-size: 2.2em;
      color: var(--8k8-dark);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-8k8-app__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: var(--8k8-primary);
      margin: 15px auto 0;
      border-radius: 2px;
    }

    .page-8k8-app__section--dark .page-8k8-app__section-title {
      color: var(--8k8-primary);
    }

    .page-8k8-app__section--dark .page-8k8-app__section-title::after {
      background-color: var(--8k8-light);
    }

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

    .page-8k8-app__feature-card,
    .page-8k8-app__game-card {
      background-color: #ffffff;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-8k8-app__section--dark .page-8k8-app__feature-card,
    .page-8k8-app__section--dark .page-8k8-app__game-card {
      background-color: #2a2a2a;
      color: var(--8k8-text-light);
    }

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

    .page-8k8-app__feature-icon,
    .page-8k8-app__game-image {
      width: 100%;
      max-width: 300px; /* Ensure images are not too wide */
      height: auto;
      margin-bottom: 15px;
      border-radius: 6px;
      object-fit: cover;
      border: 1px solid var(--8k8-primary);
    }

    .page-8k8-app__feature-card h3,
    .page-8k8-app__game-card h3 {
      font-size: 1.4em;
      color: var(--8k8-primary);
      margin-bottom: 10px;
    }

    .page-8k8-app__steps-list {
      list-style: none;
      padding: 0;
      margin: 0;
      counter-reset: step-counter;
      display: flex;
      flex-wrap: wrap; /* Allow items to wrap on smaller screens */
      gap: 20px;
      justify-content: center;
    }

    .page-8k8-app__step-item {
      background-color: #ffffff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      position: relative;
      padding-left: 80px;
      max-width: calc(50% - 10px); /* Two columns on desktop */
      box-sizing: border-box;
      flex-grow: 1; /* Allow items to grow */
    }

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

    .page-8k8-app__step-item::before {
      content: counter(step-counter);
      counter-increment: step-counter;
      position: absolute;
      left: 20px;
      top: 30px;
      background-color: var(--8k8-primary);
      color: var(--8k8-dark);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5em;
      font-weight: bold;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-app__step-item h3 {
      font-size: 1.5em;
      color: var(--8k8-primary);
      margin-bottom: 10px;
    }

    .page-8k8-app__promo-banner {
      background-color: var(--8k8-accent);
      color: var(--8k8-text-light);
      padding: 40px 20px;
      text-align: center;
      border-radius: 8px;
      margin-top: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-app__promo-banner h2 {
      color: var(--8k8-text-light);
      font-size: 2.5em;
      margin-bottom: 15px;
    }

    .page-8k8-app__promo-banner p {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* FAQ Section Styles */
    .page-8k8-app__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto;
      background-color: var(--8k8-light);
      border-radius: 8px;
      margin-top: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-app__faq-item {
      background-color: #ffffff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      border: 1px solid #e0e0e0;
    }

    .page-8k8-app__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #f9f9f9;
      transition: background-color 0.3s ease;
    }

    .page-8k8-app__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-8k8-app__faq-item.active .page-8k8-app__faq-question {
      background-color: var(--8k8-primary);
      color: var(--8k8-dark);
    }

    .page-8k8-app__faq-question h3 {
      font-size: 1.15em;
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Crucial for click event on parent */
      color: var(--8k8-text-dark); /* Default text color */
    }

    .page-8k8-app__faq-item.active .page-8k8-app__faq-question h3 {
      color: var(--8k8-dark); /* Text color when active */
    }

    .page-8k8-app__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      margin-left: 15px;
      width: 24px;
      text-align: center;
      pointer-events: none; /* Crucial for click event on parent */
      transition: transform 0.3s ease;
      color: var(--8k8-primary); /* Default toggle color */
    }

    .page-8k8-app__faq-item.active .page-8k8-app__faq-toggle {
      color: var(--8k8-dark); /* Toggle color when active */
      transform: rotate(45deg); /* Rotate '+' to 'x' visually */
    }

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

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

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

    .page-8k8-app__faq-answer ul {
      list-style-type: disc;
      margin-left: 20px;
    }

    /* General image responsiveness */
    .page-8k8-app img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-app__hero-content h1 {
        font-size: 2em;
      }

      .page-8k8-app__hero-content p {
        font-size: 1em;
      }

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

      .page-8k8-app__section {
        padding: 25px 15px;
        margin-top: 20px;
      }

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

      .page-8k8-app__features-grid,
      .page-8k8-app__games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-app__feature-card,
      .page-8k8-app__game-card {
        padding: 20px;
        width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-app__feature-icon,
      .page-8k8-app__game-image {
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
      }

      .page-8k8-app__steps-list {
        flex-direction: column; /* Stack steps vertically */
        gap: 15px;
      }

      .page-8k8-app__step-item {
        padding: 20px 15px 20px 70px; /* Adjust padding for smaller screens */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-app__step-item::before {
        left: 15px;
        top: 20px;
        width: 35px;
        height: 35px;
        font-size: 1.3em;
      }

      .page-8k8-app__step-item h3 {
        font-size: 1.3em;
      }

      .page-8k8-app__promo-banner {
        padding: 30px 15px;
      }

      .page-8k8-app__promo-banner h2 {
        font-size: 1.8em;
      }

      .page-8k8-app__promo-banner p {
        font-size: 1.1em;
      }

      .page-8k8-app__faq-section {
        padding: 25px 15px;
        margin-top: 20px;
      }

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

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

      .page-8k8-app__faq-toggle {
        font-size: 1.5em;
        margin-left: 10px;
      }

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

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

    /* Even smaller screens (e.g., 375px) */
    @media (max-width: 480px) {
      .page-8k8-app__hero-content h1 {
        font-size: 1.8em;
      }
      .page-8k8-app__section-title {
        font-size: 1.6em;
      }
      .page-8k8-app__step-item {
        padding-left: 65px;
      }
      .page-8k8-app__faq-question {
        padding: 12px 15px;
      }
      .page-8k8-app__faq-question h3 {
        font-size: 0.95em;
      }
      .page-8k8-app__faq-toggle {
        font-size: 1.4em;
      }
      .page-8k8-app__faq-answer {
        padding: 0 15px;
      }
      .page-8k8-app__faq-item.active .page-8k8-app__faq-answer {
        padding: 10px 15px !important;
      }
    }
  