
    /* Global styles for the page-8k8-17 container */
    .page-8k8-17 {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-bottom: 40px; /* Space above footer */
      /* Fallback for header offset if not handled by body padding-top in shared.css */
      /* padding-top: var(--header-offset, 122px); */
    }

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

    /* Hero Section */
    .page-8k8-17__hero-section {
      position: relative;
      overflow: hidden;
      padding: 10px 0 60px; /* Small padding-top as per instruction, rest is for content */
      color: #ffffff;
      text-align: center;
      background-color: #000;
    }

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

    .page-8k8-17__hero-content {
      position: relative;
      z-index: 1;
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-17__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: #ffcc00; /* Gold/Yellow for branding */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-8k8-17__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

    .page-8k8-17__button {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      margin: 10px;
    }

    .page-8k8-17__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }
    
    .page-8k8-17__button--secondary {
      background-color: #333;
      color: #ffcc00;
      border: 2px solid #ffcc00;
    }

    .page-8k8-17__button--secondary:hover {
      background-color: #444;
      color: #fff;
    }

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

    .page-8k8-17__section--dark {
      background-color: #222;
    }

    .page-8k8-17__section--light {
      background-color: #1a1a1a;
    }

    .page-8k8-17__section-title {
      font-size: 2.5em;
      color: #ffcc00;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-17__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #ffcc00;
    }

    .page-8k8-17__text-block {
      max-width: 800px;
      margin: 0 auto 40px;
      font-size: 1.1em;
      color: #ccc;
    }

    /* Game Categories / Product Display */
    .page-8k8-17__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-17__category-card {
      background-color: #2a2a2a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      text-align: center;
      color: #e0e0e0;
      padding-bottom: 20px;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-17__category-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-8k8-17__category-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      border-bottom: 3px solid #ffcc00;
      max-width: 100%; /* Responsive image */
      height: auto;
    }

    .page-8k8-17__category-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin: 20px 15px 10px;
    }

    .page-8k8-17__category-description {
      font-size: 0.95em;
      color: #bbb;
      padding: 0 15px;
      flex-grow: 1;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

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

    .page-8k8-17__promo-card {
      background-color: #2a2a2a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      color: #e0e0e0;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-17__promo-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-8k8-17__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
      height: auto;
    }

    .page-8k8-17__promo-content {
      padding: 20px;
    }

    .page-8k8-17__promo-title {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-8k8-17__promo-description {
      font-size: 0.95em;
      color: #bbb;
      margin-bottom: 20px;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

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

    .page-8k8-17__payment-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 15px 25px;
      color: #fff;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease;
      display: flex;
      align-items: center;
      gap: 10px;
      box-sizing: border-box; /* Required for list items */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-8k8-17__payment-item:hover {
      transform: translateY(-3px);
    }

    .page-8k8-17__payment-icon {
      width: 40px; /* Display size, placeholder ensures minimum source size */
      height: 40px;
      object-fit: contain;
      max-width: 100%; /* Responsive image */
      height: auto;
    }

    /* FAQ Section */
    .page-8k8-17__faq-section {
      background-color: #222;
      padding: 60px 0;
    }

    .page-8k8-17__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
      text-align: left;
      width: 100%; /* Required for list container */
      max-width: 100%; /* Required for list container */
      box-sizing: border-box; /* Required for list container */
      padding: 0; /* Required for list container */
      margin-left: 0; /* Required for list container */
      margin-right: 0; /* Required for list container */
    }

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

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

    .page-8k8-17__faq-question:hover {
      background-color: #444;
    }

    .page-8k8-17__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Crucial for click event on parent */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-8k8-17__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click event on parent */
    }

    .page-8k8-17__faq-item.active .page-8k8-17__faq-toggle {
      transform: rotate(45deg); /* Plus to X/Minus */
    }

    .page-8k8-17__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

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

    /* Call to Action Section */
    .page-8k8-17__cta-section {
      background-color: #1a1a1a;
      padding: 80px 0;
      text-align: center;
    }

    .page-8k8-17__cta-title {
      font-size: 2.8em;
      color: #ffcc00;
      margin-bottom: 25px;
    }

    .page-8k8-17__cta-description {
      font-size: 1.2em;
      color: #f0f0f0;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-17__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-17__hero-subtitle {
        font-size: 1.2em;
      }
      .page-8k8-17__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-17__hero-section {
        padding-bottom: 40px;
      }
      .page-8k8-17__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-17__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-17__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-17__section {
        padding: 40px 0;
      }
      .page-8k8-17__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-8k8-17__text-block {
        font-size: 1em;
      }

      /* List item responsiveness */
      .page-8k8-17__game-categories,
      .page-8k8-17__promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        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-17__category-card,
      .page-8k8-17__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-17__payment-methods-grid {
        flex-direction: column;
        align-items: center;
        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-17__payment-item {
        width: 100% !important;
        max-width: 280px !important; /* Limit max width for better appearance on small screens */
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-17__faq-list {
        margin: 30px auto 0;
        padding: 0 10px !important; /* Adjust padding for mobile */
      }
      .page-8k8-17__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }
      .page-8k8-17__faq-answer {
        padding: 15px 15px !important; /* Adjusted padding for mobile */
      }
      .page-8k8-17__faq-item.active .page-8k8-17__faq-answer {
        padding: 15px 15px !important;
      }
      .page-8k8-17__cta-title {
        font-size: 2em;
      }
      .page-8k8-17__cta-description {
        font-size: 1em;
      }
      /* Ensure all images are responsive */
      .page-8k8-17__hero-background,
      .page-8k8-17__category-image,
      .page-8k8-17__promo-image,
      .page-8k8-17__payment-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-17__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-17__hero-subtitle {
        font-size: 0.9em;
      }
      .page-8k8-17__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-8k8-17__section-title {
        font-size: 1.5em;
      }
      .page-8k8-17__cta-title {
        font-size: 1.8em;
      }
    }
  