
    :root {
      --page-8k8-9-primary-color: #e63946; /* Red */
      --page-8k8-9-secondary-color: #f1faee; /* Light cream */
      --page-8k8-9-dark-color: #1d3557; /* Dark blue */
      --page-8k8-9-accent-color: #457b9d; /* Blue-gray */
      --page-8k8-9-text-color: #333333;
      --page-8k8-9-light-text-color: #f1faee;
      --page-8k8-9-border-radius: 8px;
      --page-8k8-9-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-9 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-9-text-color);
      background-color: var(--page-8k8-9-secondary-color);
      overflow-x: hidden;
    }

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

    /* Hero Section */
    .page-8k8-9__hero-section {
      background: linear-gradient(135deg, var(--page-8k8-9-dark-color), var(--page-8k8-9-primary-color));
      color: var(--page-8k8-9-light-text-color);
      padding: 10px 0 60px 0; /* 10px top padding for fixed header, rest is content */
      text-align: center;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
    }

    .page-8k8-9__hero-content {
      max-width: 800px;
      z-index: 1;
      position: relative;
    }

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

    .page-8k8-9__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      opacity: 0.9;
    }

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

    .page-8k8-9__cta-button:hover {
      background-color: #3a6b8d; /* Slightly darker accent */
      transform: translateY(-2px);
    }

    .page-8k8-9__hero-image {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 50%;
      max-width: 600px;
      height: auto;
      opacity: 0.7;
      z-index: 0;
      display: block;
    }

    /* Section Styling */
    .page-8k8-9__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-8k8-9__section--light {
      background-color: var(--page-8k8-9-secondary-color);
    }

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

    .page-8k8-9__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: var(--page-8k8-9-dark-color);
    }

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

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

    .page-8k8-9__feature-card {
      background-color: #ffffff;
      padding: 30px;
      border-radius: var(--page-8k8-9-border-radius);
      box-shadow: var(--page-8k8-9-shadow);
      text-align: left;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

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

    .page-8k8-9__feature-image-wrapper {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      border-radius: 50%;
      background-color: var(--page-8k8-9-primary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden; /* Crop image if larger */
      flex-shrink: 0;
    }

    .page-8k8-9__feature-image {
      max-width: 100%;
      height: auto;
      display: block;
    }

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

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

    /* Download Section */
    .page-8k8-9__download-steps {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-9__step-item {
      display: flex;
      align-items: center;
      background-color: #ffffff;
      padding: 25px;
      border-radius: var(--page-8k8-9-border-radius);
      box-shadow: var(--page-8k8-9-shadow);
      text-align: left;
    }

    .page-8k8-9__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: var(--page-8k8-9-primary-color);
      margin-right: 20px;
      flex-shrink: 0;
    }

    .page-8k8-9__step-content h3 {
      font-size: 1.4em;
      margin: 0 0 10px 0;
      color: var(--page-8k8-9-dark-color);
    }

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

    .page-8k8-9__download-images {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .page-8k8-9__download-image-wrapper {
      width: 100%;
      max-width: 400px;
      box-sizing: border-box;
      overflow: hidden;
      border-radius: var(--page-8k8-9-border-radius);
      box-shadow: var(--page-8k8-9-shadow);
    }

    .page-8k8-9__download-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: var(--page-8k8-9-border-radius);
    }

    /* Game Providers / Payment Methods */
    .page-8k8-9__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
    }

    .page-8k8-9__logo-item {
      background-color: #ffffff;
      padding: 20px;
      border-radius: var(--page-8k8-9-border-radius);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-9__logo-img {
      max-width: 100%;
      max-height: 60px;
      height: auto;
      display: block;
    }

    /* FAQ Section */
    .page-8k8-9__faq-section {
      background-color: var(--page-8k8-9-dark-color);
      color: var(--page-8k8-9-light-text-color);
    }

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

    .page-8k8-9__faq-list {
      max-width: 800px;
      margin: 40px auto 0 auto;
      text-align: left;
    }

    .page-8k8-9__faq-item {
      background-color: #ffffff;
      margin-bottom: 15px;
      border-radius: var(--page-8k8-9-border-radius);
      box-shadow: var(--page-8k8-9-shadow);
      overflow: hidden;
      color: var(--page-8k8-9-text-color);
    }

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

    .page-8k8-9__faq-question:hover {
      background-color: #d62c38; /* Slightly darker primary */
    }

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

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

    .page-8k8-9__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #f8f8f8;
      color: var(--page-8k8-9-text-color);
    }

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

    .page-8k8-9__faq-item.active .page-8k8-9__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or rotate to -) */
    }

    /* General text and lists */
    .page-8k8-9 p {
      margin-bottom: 15px;
    }

    .page-8k8-9 ul {
      list-style: none;
      padding: 0;
      margin: 20px 0;
    }

    .page-8k8-9 ul li {
      margin-bottom: 10px;
      position: relative;
      padding-left: 25px;
      text-align: left;
      box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-8k8-9 ul li::before {
      content: '•';
      color: var(--page-8k8-9-primary-color);
      font-weight: bold;
      position: absolute;
      left: 0;
      top: 0;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-8k8-9__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-9__hero-subtitle {
        font-size: 1.2em;
      }
      .page-8k8-9__section-title {
        font-size: 2em;
      }
      .page-8k8-9__hero-image {
        width: 60%;
        max-width: 450px;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-9__hero-section {
        min-height: 400px;
        padding-bottom: 40px;
      }
      .page-8k8-9__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-9__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-9__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-9__section {
        padding: 40px 0;
      }
      .page-8k8-9__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-8k8-9__grid {
        grid-template-columns: 1fr;
      }
      .page-8k8-9__step-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
      }
      .page-8k8-9__step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }
      .page-8k8-9__download-images {
        flex-direction: column;
        align-items: center;
      }
      .page-8k8-9__download-image-wrapper {
        max-width: 320px !important; /* Smaller max-width for mobile */
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
      .page-8k8-9__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      /* Image responsiveness with !important */
      .page-8k8-9__hero-image,
      .page-8k8-9__download-image,
      .page-8k8-9__logo-img,
      .page-8k8-9__feature-image {
        max-width: 100% !important;
        height: auto !important;
      }
      /* Ensure image containers are also responsive */
      .page-8k8-9__logo-item,
      .page-8k8-9__feature-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }


      /* List item mobile responsiveness */
      .page-8k8-9 ul {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important; /* Adjust padding for smaller screens */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-9 ul li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 25px; /* Keep bullet point spacing */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-9__faq-question, .page-8k8-9__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }
      .page-8k8-9__faq-question h3 {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-9__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-9__hero-subtitle {
        font-size: 0.9em;
      }
      .page-8k8-9__section-title {
        font-size: 1.5em;
      }
      .page-8k8-9__feature-card {
        padding: 20px;
      }
      .page-8k8-9__step-item {
        padding: 15px;
      }
      .page-8k8-9__faq-question {
        padding: 15px;
      }
      .page-8k8-9__faq-answer {
        padding: 15px !important;
      }
    }
  