
    /* Base styles for the specific page */
    .page-8k8-9 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-top: 10px; /* Minimal padding as body padding-top is handled by shared CSS */
    }

    /* General section styling */
    .page-8k8-9__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-9__section-title {
      font-size: 2.5em;
      color: #1a1a1a;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-8k8-9__section-subtitle {
      font-size: 1.2em;
      color: #555;
      margin-bottom: 40px;
    }

    /* Hero Section */
    .page-8k8-9__hero-section {
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #fff;
      padding: 80px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
    }

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

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

    .page-8k8-9__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      line-height: 1.1;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-9__hero-description {
      font-size: 1.4em;
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-9__download-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      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-9__download-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

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

    .page-8k8-9__feature-item {
      background-color: #fff;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      box-sizing: border-box;
    }

    .page-8k8-9__feature-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-9__feature-icon {
      width: 100px; /* Container size, image inside must be >= 200x200 */
      height: 100px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background-color: #e9ecef;
      overflow: hidden;
    }

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

    .page-8k8-9__feature-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .page-8k8-9__feature-description {
      font-size: 1em;
      color: #666;
      text-align: left;
      flex-grow: 1; /* Allow description to take available space */
    }

    /* How to Download Section */
    .page-8k8-9__step-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-8k8-9__step-item {
      background-color: #fff;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: left;
      position: relative;
      box-sizing: border-box;
    }

    .page-8k8-9__step-number {
      font-size: 2.5em;
      color: #007bff;
      font-weight: bold;
      margin-bottom: 15px;
      display: block;
    }

    .page-8k8-9__step-title {
      font-size: 1.8em;
      color: #1a1a1a;
      margin-bottom: 10px;
    }

    .page-8k8-9__step-text {
      font-size: 1em;
      color: #555;
    }

    /* Games Section */
    .page-8k8-9__game-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-9__provider-logo {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      padding: 15px;
      width: 150px; /* Container size, image inside must be >= 200x200 */
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-9__provider-logo img {
      max-width: 100%;
      max-height: 100%;
      display: block;
    }

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

    .page-8k8-9__promo-card {
      background-color: #fff;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .page-8k8-9__promo-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-9__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .page-8k8-9__promo-title {
      font-size: 1.8em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-8k8-9__promo-description {
      font-size: 1em;
      color: #555;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-8k8-9__promo-link {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-9__promo-link:hover {
      background-color: #0056b3;
    }

    /* Payment Methods Section */
    .page-8k8-9__payment-methods-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-9__payment-logo-container {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      padding: 15px;
      width: 120px; /* Container size, image inside must be >= 200x200 */
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease;
      box-sizing: border-box;
    }

    .page-8k8-9__payment-logo-container:hover {
      transform: translateY(-5px);
    }

    .page-8k8-9__payment-logo-container img {
      max-width: 100%;
      max-height: 100%;
      display: block;
    }

    /* FAQ Section */
    .page-8k8-9__faq-section {
      background-color: #f0f8ff;
    }

    .page-8k8-9__faq-container {
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-9__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      box-sizing: border-box;
    }

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

    .page-8k8-9__faq-question:hover {
      background-color: #0056b3;
    }

    .page-8k8-9__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #fff;
      pointer-events: none; /* Prevents text from blocking click event */
      flex-grow: 1;
      text-align: left;
    }

    .page-8k8-9__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevents icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-8k8-9__faq-item.active .page-8k8-9__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar, or just rotate for '-' */
    }

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

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

    /* Call to Action Section */
    .page-8k8-9__cta-section {
      background-color: #0056b3;
      color: #fff;
      padding: 60px 20px;
    }

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

    .page-8k8-9__cta-description {
      font-size: 1.3em;
      margin-bottom: 40px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-9__section {
        padding: 30px 15px;
      }

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

      .page-8k8-9__hero-section {
        padding: 60px 15px;
        min-height: 300px;
      }

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

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

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

      .page-8k8-9__features-grid,
      .page-8k8-9__step-list,
      .page-8k8-9__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* List item and container responsive rules */
      .page-8k8-9__feature-item,
      .page-8k8-9__step-item,
      .page-8k8-9__promo-card,
      .page-8k8-9__faq-item,
      .page-8k8-9__provider-logo,
      .page-8k8-9__payment-logo-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-9__step-list,
      .page-8k8-9__game-providers,
      .page-8k8-9__payment-methods-grid,
      .page-8k8-9__faq-container {
        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-9__faq-question,
      .page-8k8-9__faq-answer {
        padding: 15px 20px;
      }

      .page-8k8-9__faq-answer {
        padding: 15px 20px !important; /* Ensure important for active state */
      }

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

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

      .page-8k8-9__cta-description {
        font-size: 1.1em;
      }
      
      /* Ensure text wrapping for list items and titles */
      .page-8k8-9__feature-description,
      .page-8k8-9__step-text,
      .page-8k8-9__promo-description,
      .page-8k8-9__faq-answer p {
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }
      .page-8k8-9__feature-title,
      .page-8k8-9__step-title,
      .page-8k8-9__promo-title,
      .page-8k8-9__faq-question h3 {
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-9__hero-title {
        font-size: 2em;
      }
      .page-8k8-9__hero-description {
        font-size: 1em;
      }
      .page-8k8-9__download-button {
        font-size: 1em;
        padding: 10px 20px;
      }
    }
  