
    /* Base styles for the page content */
    .page-8k8-9 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Minimal 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-title {
      font-size: 2.5em;
      color: #0a4f94;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-8k8-9__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #f7931e;
      border-radius: 2px;
    }

    /* Hero Section */
    .page-8k8-9__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
      color: #fff;
      text-align: center;
      padding: 100px 20px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
    }

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

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

    .page-8k8-9__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: #f7931e;
    }

    .page-8k8-9__hero-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      color: #e0e0e0;
    }

    .page-8k8-9__download-button {
      display: inline-block;
      background-color: #f7931e;
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-8k8-9__download-button:hover {
      background-color: #e07b00;
    }

    /* Features Section */
    .page-8k8-9__features-section {
      padding: 80px 0;
      background-color: #fff;
    }

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

    .page-8k8-9__feature-item {
      background-color: #fefefe;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-9__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-9__feature-image {
      width: 100%;
      max-width: 250px; /* Ensure images are not too small as icons */
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-8k8-9__feature-title {
      font-size: 1.8em;
      color: #0a4f94;
      margin-bottom: 15px;
    }

    .page-8k8-9__feature-description {
      color: #555;
    }

    /* Download Guide Section */
    .page-8k8-9__download-guide-section {
      padding: 80px 0;
      background-color: #f0f2f5;
    }

    .page-8k8-9__guide-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      margin-top: 50px;
    }

    .page-8k8-9__step-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      text-align: center;
      flex: 1 1 calc(50% - 40px); /* Two columns on larger screens */
      max-width: calc(50% - 40px);
      box-sizing: border-box;
    }

    .page-8k8-9__step-image {
      width: 100%;
      max-width: 400px;
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-8k8-9__step-number {
      font-size: 2em;
      color: #f7931e;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .page-8k8-9__step-title {
      font-size: 1.5em;
      color: #0a4f94;
      margin-bottom: 15px;
    }

    .page-8k8-9__step-description {
      color: #555;
    }

    /* Game Showcase Section */
    .page-8k8-9__game-showcase-section {
      padding: 80px 0;
      background-color: #fff;
    }

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

    .page-8k8-9__game-card {
      background-color: #fefefe;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

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

    .page-8k8-9__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-8k8-9__game-title {
      font-size: 1.4em;
      color: #0a4f94;
      padding: 20px 15px;
      margin: 0;
    }

    /* Promotions Section */
    .page-8k8-9__promotions-section {
      padding: 80px 0;
      background-color: #f0f2f5;
    }

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

    .page-8k8-9__promotion-card {
      background-color: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-8k8-9__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-8k8-9__promotion-content {
      padding: 25px;
    }

    .page-8k8-9__promotion-title {
      font-size: 1.6em;
      color: #0a4f94;
      margin-bottom: 10px;
    }

    .page-8k8-9__promotion-description {
      color: #555;
      font-size: 0.95em;
    }

    /* Payment Methods Section */
    .page-8k8-9__payments-section {
      padding: 80px 0;
      background-color: #fff;
    }

    .page-8k8-9__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjusted for payment logos */
      gap: 20px;
      margin-top: 50px;
      justify-items: center;
    }

    .page-8k8-9__payment-method-item {
      background-color: #fefefe;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 120px; /* Ensure minimum height for better visual */
      box-sizing: border-box;
    }

    .page-8k8-9__payment-logo {
      max-width: 100%;
      max-height: 80px;
      width: auto;
      height: auto;
      object-fit: contain;
    }

    /* Why Choose Section */
    .page-8k8-9__why-choose-section {
      padding: 80px 0;
      background-color: #f0f2f5;
    }

    .page-8k8-9__why-choose-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
      list-style: none;
      padding: 0;
    }

    .page-8k8-9__why-choose-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      position: relative;
      padding-left: 70px;
    }

    .page-8k8-9__why-choose-item::before {
      content: '✓';
      position: absolute;
      left: 20px;
      top: 30px;
      font-size: 2em;
      color: #f7931e;
      font-weight: bold;
    }

    .page-8k8-9__why-choose-item h3 {
      font-size: 1.5em;
      color: #0a4f94;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-9__why-choose-item p {
      color: #555;
    }

    /* FAQ Section */
    .page-8k8-9__faq-section {
      padding: 80px 0;
      background-color: #fff;
    }

    .page-8k8-9__faq-container {
      max-width: 900px;
      margin: 0 auto;
      margin-top: 50px;
    }

    .page-8k8-9__faq-item {
      background-color: #fefefe;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

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

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

    .page-8k8-9__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #0a4f94;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
    }

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

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

    .page-8k8-9__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: #555;
      background-color: #fff;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-9__hero-title {
        font-size: 3em;
      }
      .page-8k8-9__hero-description {
        font-size: 1.1em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-9__container {
        padding: 15px;
      }
      .page-8k8-9__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }
      .page-8k8-9__hero-section {
        padding: 80px 15px;
        min-height: 400px;
      }
      .page-8k8-9__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-9__hero-description {
        font-size: 1em;
        margin-bottom: 30px;
      }
      .page-8k8-9__download-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      /* Features Grid */
      .page-8k8-9__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-8k8-9__feature-item {
        padding: 25px;
      }
      .page-8k8-9__feature-image {
        max-width: 200px;
      }
      .page-8k8-9__feature-title {
        font-size: 1.6em;
      }

      /* Download Guide Steps */
      .page-8k8-9__guide-steps {
        flex-direction: column;
        gap: 20px;
      }
      .page-8k8-9__step-item {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 25px;
      }
      .page-8k8-9__step-image {
        max-width: 300px;
      }
      .page-8k8-9__step-title {
        font-size: 1.3em;
      }

      /* Game Grid */
      .page-8k8-9__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
      }
      .page-8k8-9__game-image {
        height: 180px;
      }
      .page-8k8-9__game-title {
        font-size: 1.2em;
        padding: 15px;
      }

      /* Promotions Grid */
      .page-8k8-9__promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-8k8-9__promotion-image {
        height: 180px;
      }
      .page-8k8-9__promotion-content {
        padding: 20px;
      }
      .page-8k8-9__promotion-title {
        font-size: 1.4em;
      }

      /* Payment Methods Grid */
      .page-8k8-9__payment-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
      }
      .page-8k8-9__payment-method-item {
        min-height: 100px;
        padding: 15px;
      }
      .page-8k8-9__payment-logo {
        max-height: 70px;
      }

      /* Why Choose List */
      .page-8k8-9__why-choose-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-8k8-9__why-choose-item {
        padding: 25px 20px 25px 60px;
      }
      .page-8k8-9__why-choose-item::before {
        left: 15px;
        top: 25px;
        font-size: 1.8em;
      }
      .page-8k8-9__why-choose-item h3 {
        font-size: 1.3em;
      }

      /* FAQ Section */
      .page-8k8-9__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .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: 15px 20px;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-9__hero-title {
        font-size: 2em;
      }
      .page-8k8-9__hero-description {
        font-size: 0.9em;
      }
      .page-8k8-9__download-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-8k8-9__section-title {
        font-size: 1.8em;
      }
      .page-8k8-9__payment-methods-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on very small screens */
      }
      .page-8k8-9__faq-question {
        font-size: 1em;
      }
      .page-8k8-9__faq-question h3 {
        font-size: 1em;
      }
    }

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

    /* All list items responsiveness */
    .page-8k8-9 ul, .page-8k8-9 ol {
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
      padding: 0 !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
    }

    .page-8k8-9 ul li, .page-8k8-9 ol li {
      width: 100% !important;
      max-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;
      word-break: break-word !important;
    }
  