
    /* Base styles */
    :root {
      --page-8k8-9-primary-color: #FFD700; /* Gold */
      --page-8k8-9-secondary-color: #333; /* Dark Gray */
      --page-8k8-9-accent-color: #FF4500; /* Orange-Red */
      --page-8k8-9-background-light: #f9f9f9;
      --page-8k8-9-background-dark: #222;
      --page-8k8-9-text-light: #fefefe;
      --page-8k8-9-text-dark: #333;
    }

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

    .page-8k8-9__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

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

    .page-8k8-9__section-title {
      font-size: 2.8em;
      margin-bottom: 30px;
      color: var(--page-8k8-9-secondary-color);
      font-weight: bold;
    }

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

    .page-8k8-9__section-description {
      font-size: 1.1em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-8k8-9__hero-section {
      position: relative;
      background-color: var(--page-8k8-9-background-dark);
      color: var(--page-8k8-9-text-light);
      padding: 10px 20px 80px; /* Small decorative padding-top, main padding at bottom */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      min-height: 600px;
    }

    .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: 900px;
      padding: 20px;
    }

    .page-8k8-9__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--page-8k8-9-primary-color);
      line-height: 1.2;
      font-weight: bold;
    }

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

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

    .page-8k8-9__button:hover {
      background-color: #E63900; /* Darker accent */
      transform: translateY(-2px);
    }

    /* 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;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: left;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      box-sizing: border-box; /* Required for list items */
    }

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

    .page-8k8-9__feature-icon {
      width: 80px; /* Min size 200x200, this will be a placeholder for a larger image */
      height: 80px;
      margin-bottom: 20px;
      object-fit: contain;
    }

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

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

    /* Download Guide Section */
    .page-8k8-9__guide-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-9__guide-step {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      width: calc(33% - 20px);
      min-width: 280px;
      text-align: center;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-9__step-number {
      font-size: 2.5em;
      color: var(--page-8k8-9-primary-color);
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-8k8-9__step-title {
      font-size: 1.4em;
      color: var(--page-8k8-9-secondary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

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

    .page-8k8-9__guide-image {
      margin-top: 40px;
      width: 100%;
      max-width: 800px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      object-fit: cover;
    }

    /* Game Showcase Section */
    .page-8k8-9__game-showcase-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-8k8-9__game-card {
      background-color: var(--page-8k8-9-background-dark);
      color: var(--page-8k8-9-text-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

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

    .page-8k8-9__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .page-8k8-9__game-info {
      padding: 20px;
    }

    .page-8k8-9__game-title {
      font-size: 1.3em;
      color: var(--page-8k8-9-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8-9__game-description {
      font-size: 0.95em;
      color: var(--page-8k8-9-text-light);
    }

    /* Promotions and Payments Section */
    .page-8k8-9__info-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-9__info-block {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: left;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-9__info-title {
      font-size: 1.8em;
      color: var(--page-8k8-9-primary-color);
      margin-bottom: 20px;
      font-weight: bold;
    }

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

    .page-8k8-9__info-list-item {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      font-size: 1.1em;
      color: var(--page-8k8-9-secondary-color);
      box-sizing: border-box; /* Required for list items */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

    .page-8k8-9__info-list-item::before {
      content: '✓';
      color: var(--page-8k8-9-accent-color);
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    .page-8k8-9__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .page-8k8-9__payment-logo {
      width: 100%;
      max-width: 150px;
      height: auto;
      object-fit: contain;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      box-sizing: border-box; /* Required for list items */
    }

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

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

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

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

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

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

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

    .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); /* Plus to X (minus) */
    }

    /* Call to Action Section */
    .page-8k8-9__cta-section {
      background-color: var(--page-8k8-9-background-dark);
      color: var(--page-8k8-9-text-light);
      padding: 80px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

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

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

    .page-8k8-9__cta-title {
      font-size: 2.8em;
      color: var(--page-8k8-9-primary-color);
      margin-bottom: 25px;
      font-weight: bold;
    }

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

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

    @media (max-width: 768px) {
      .page-8k8-9__hero-section {
        min-height: 500px;
        padding-bottom: 60px;
      }
      .page-8k8-9__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-9__hero-subtitle {
        font-size: 1.2em;
      }
      .page-8k8-9__section {
        padding: 40px 15px;
      }
      .page-8k8-9__section-title {
        font-size: 2em;
      }
      .page-8k8-9__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      /* List items responsive */
      .page-8k8-9__features-grid,
      .page-8k8-9__guide-steps,
      .page-8k8-9__game-showcase-grid,
      .page-8k8-9__info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-9__feature-item,
      .page-8k8-9__guide-step,
      .page-8k8-9__game-card,
      .page-8k8-9__info-block,
      .page-8k8-9__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-9__info-list {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-9__info-list-item {
        padding: 5px 0 !important;
        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;
      }

      .page-8k8-9__payment-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 10px;
      }

      .page-8k8-9__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }

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

      .page-8k8-9__faq-answer {
        padding: 15px 20px;
      }

      .page-8k8-9__cta-section {
        padding: 60px 15px;
      }
      .page-8k8-9__cta-title {
        font-size: 2.2em;
      }
      .page-8k8-9__cta-description {
        font-size: 1.1em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-9__hero-title {
        font-size: 2em;
      }
      .page-8k8-9__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-9__section-title {
        font-size: 1.8em;
      }
      .page-8k8-9__feature-title {
        font-size: 1.3em;
      }
      .page-8k8-9__step-title {
        font-size: 1.2em;
      }
      .page-8k8-9__game-title {
        font-size: 1.1em;
      }
      .page-8k8-9__info-title {
        font-size: 1.5em;
      }
      .page-8k8-9__cta-title {
        font-size: 1.8em;
      }
    }
  