
    :root {
      --primary-color: #ffcc00; /* Gold/Yellow for 8k8 branding */
      --secondary-color: #333333; /* Dark grey */
      --text-color: #ffffff; /* White text */
      --background-dark: #1a1a1a; /* Dark background */
      --background-light: #2c2c2c; /* Slightly lighter dark background */
      --accent-color: #007bff; /* Blue for links/buttons if needed, but primary is gold */
      --border-color: #555555;
      --padding-section: 40px 20px;
      --gap-medium: 20px;
      --border-radius-medium: 8px;
    }

    /* Base styles for the page, ensuring proper spacing and readability */
    .page-8k8-app {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--background-dark);
      line-height: 1.6;
    }

    .page-8k8-app__section {
      padding: var(--padding-section);
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

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

    .page-8k8-app__heading {
      color: var(--primary-color);
      margin-bottom: var(--gap-medium);
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-8k8-app__subheading {
      color: var(--text-color);
      margin-bottom: var(--gap-medium);
      font-size: 1.8em;
    }

    .page-8k8-app__paragraph {
      margin-bottom: 15px;
      font-size: 1.1em;
      color: #e0e0e0;
    }

    /* Hero Section */
    .page-8k8-app__hero-section {
      padding: 10px 20px 60px 20px; /* Adjusted padding-top to avoid double header offset */
      background: var(--background-dark) center center no-repeat;
      background-size: cover;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 500px;
      text-align: center;
      position: relative;
    }

    .page-8k8-app__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

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

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

    .page-8k8-app__hero-description {
      font-size: 1.4em;
      color: #e0e0e0;
      margin-bottom: 30px;
    }

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

    .page-8k8-app__cta-button:hover {
      background-color: #ffd700;
      transform: translateY(-2px);
    }

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

    .page-8k8-app__feature-item {
      background-color: var(--background-light);
      padding: var(--gap-medium);
      border-radius: var(--border-radius-medium);
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-app__feature-icon {
      width: 200px; /* Minimum size */
      height: 150px;
      object-fit: contain;
      margin-bottom: 15px;
      border-radius: 4px;
    }

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

    .page-8k8-app__feature-description {
      font-size: 1em;
      color: #ccc;
    }

    /* Download Steps Section */
    .page-8k8-app__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      gap: var(--gap-medium);
    }

    .page-8k8-app__step-item {
      background-color: var(--background-light);
      padding: var(--gap-medium);
      border-radius: var(--border-radius-medium);
      text-align: left;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: flex-start;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-app__step-number {
      background-color: var(--primary-color);
      color: var(--secondary-color);
      width: 40px;
      height: 40px;
      min-width: 40px; /* Ensure number doesn't shrink */
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5em;
      font-weight: bold;
      margin-right: var(--gap-medium);
    }

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

    .page-8k8-app__step-title {
      color: var(--primary-color);
      font-size: 1.4em;
      margin-bottom: 5px;
    }

    .page-8k8-app__step-description {
      font-size: 1em;
      color: #ccc;
    }

    /* Game Showcase Section */
    .page-8k8-app__game-showcase-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--gap-medium);
      margin-top: 30px;
    }

    .page-8k8-app__game-card {
      background-color: var(--background-light);
      border-radius: var(--border-radius-medium);
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-align: center;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-app__game-image-container {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
    }

    .page-8k8-app__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-8k8-app__game-info {
      padding: 15px;
    }

    .page-8k8-app__game-title {
      color: var(--primary-color);
      font-size: 1.3em;
      margin-bottom: 5px;
    }

    .page-8k8-app__game-provider {
      color: #aaa;
      font-size: 0.9em;
    }

    /* Promotions Section */
    .page-8k8-app__promotion-card {
      background-color: var(--background-light);
      padding: var(--gap-medium);
      border-radius: var(--border-radius-medium);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      margin-top: var(--gap-medium);
      text-align: left;
    }

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

    .page-8k8-app__promotion-description {
      color: #ccc;
      margin-bottom: 15px;
    }

    /* FAQ Section */
    .page-8k8-app__faq-container {
      margin-top: 30px;
      text-align: left;
    }

    .page-8k8-app__faq-item {
      background-color: var(--background-light);
      border-radius: var(--border-radius-medium);
      margin-bottom: 10px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

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

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

    .page-8k8-app__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8k8-app__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
      transition: transform 0.3s ease;
    }

    .page-8k8-app__faq-item.active .page-8k8-app__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar, or just rotate to '-' */
      content: '−'; /* This won't work in CSS, handled by JS */
    }

    .page-8k8-app__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: #ccc;
      font-size: 1em;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-app__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-app__hero-description {
        font-size: 1.1em;
      }

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

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

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

      .page-8k8-app__paragraph {
        font-size: 1em;
      }

      /* List items mobile responsiveness */
      .page-8k8-app__feature-item,
      .page-8k8-app__step-item,
      .page-8k8-app__game-card {
        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;
        word-break: break-word !important;
      }

      .page-8k8-app__features-grid,
      .page-8k8-app__steps-list,
      .page-8k8-app__game-showcase-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important; /* Ensure no extra padding on container */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-app__game-image-container {
        height: 180px;
      }

      /* Images responsiveness */
      .page-8k8-app__feature-icon,
      .page-8k8-app__game-image,
      .page-8k8-app__app-screenshot {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-app__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

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

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

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

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

    @media (max-width: 480px) {
      .page-8k8-app__hero-title {
        font-size: 2em;
      }
      .page-8k8-app__hero-description {
        font-size: 1em;
      }
      .page-8k8-app__cta-button {
        font-size: 1em;
        padding: 10px 20px;
      }
      .page-8k8-app__step-number {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 1.2em;
        margin-right: 10px;
      }
      .page-8k8-app__step-title {
        font-size: 1.2em;
      }
      .page-8k8-app__faq-question h3 {
        font-size: 1em;
      }
    }
  