
    :root {
      --8k8-primary-color: #FFD700; /* Gold */
      --8k8-secondary-color: #000000; /* Black */
      --8k8-accent-color: #DC143C; /* Crimson for highlights */
      --8k8-text-light: #FFFFFF;
      --8k8-text-dark: #333333;
      --8k8-bg-dark: #1a1a1a;
      --8k8-bg-light: #f4f4f4;
      --8k8-border-color: #444444;
    }

    /* Base styles for the page content, ensuring it's scoped */
    .page-8k8-5 {
      font-family: 'Arial', sans-serif;
      color: var(--8k8-text-light);
      background-color: var(--8k8-bg-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small padding top for aesthetic, assuming body handles main offset */
      padding-bottom: 50px;
    }

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

    .page-8k8-5__section--dark {
      background-color: var(--8k8-bg-dark);
    }

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

    .page-8k8-5__heading {
      font-size: 2.8em;
      color: var(--8k8-primary-color);
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-8k8-5__subheading {
      font-size: 1.8em;
      color: var(--8k8-text-light);
      margin-bottom: 15px;
    }

    .page-8k8-5__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #ccc;
    }

    .page-8k8-5__button {
      display: inline-block;
      padding: 12px 30px;
      background-color: var(--8k8-primary-color);
      color: var(--8k8-secondary-color);
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-8k8-5__button:hover {
      background-color: #FFEB3B; /* Lighter gold */
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-8k8-5__hero-section {
      position: relative;
      overflow: hidden;
      padding: 80px 20px;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .page-8k8-5__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* Darken background image for text readability */
      max-width: 100%;
      box-sizing: border-box;
    }

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

    .page-8k8-5__hero-title {
      font-size: 3.5em;
      color: var(--8k8-primary-color);
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-5__hero-description {
      font-size: 1.3em;
      color: var(--8k8-text-light);
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

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

    .page-8k8-5__promo-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      text-align: left;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--8k8-border-color);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      box-sizing: border-box;
    }

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

    .page-8k8-5__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-5__promo-title {
      font-size: 1.5em;
      color: var(--8k8-primary-color);
      margin-bottom: 10px;
      word-wrap: break-word; /* Ensure long titles wrap */
    }

    .page-8k8-5__promo-description {
      font-size: 1em;
      color: #bbb;
      flex-grow: 1; /* Allows description to take available space */
      word-wrap: break-word;
    }

    /* Game Categories Section */
    .page-8k8-5__categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-5__category-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--8k8-border-color);
      box-sizing: border-box;
    }

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

    .page-8k8-5__category-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-5__category-title {
      font-size: 1.4em;
      color: var(--8k8-primary-color);
      margin-bottom: 10px;
      word-wrap: break-word;
    }

    .page-8k8-5__category-description {
      font-size: 0.95em;
      color: #bbb;
      word-wrap: break-word;
    }

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

    .page-8k8-5__feature-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--8k8-border-color);
      box-sizing: border-box;
    }

    .page-8k8-5__feature-image {
      width: 200px; /* Min width */
      height: 200px; /* Min height */
      object-fit: cover;
      margin: 0 auto 15px auto;
      border-radius: 8px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-5__feature-title {
      font-size: 1.3em;
      color: var(--8k8-primary-color);
      margin-bottom: 10px;
      word-wrap: break-word;
    }

    .page-8k8-5__feature-description {
      font-size: 0.95em;
      color: #bbb;
      word-wrap: break-word;
    }

    /* Payment Methods Section */
    .page-8k8-5__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-5__payment-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--8k8-border-color);
      box-sizing: border-box;
    }

    .page-8k8-5__payment-logo-container {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Container height for visual consistency */
      max-width: 100%;
      box-sizing: border-box;
    }
    .page-8k8-5__payment-logo {
      width: 200px; /* Min width for the actual image placeholder */
      height: 200px; /* Min height for the actual image placeholder */
      object-fit: contain; /* To ensure logo is fully visible within its area */
      max-width: 100%;
      box-sizing: border-box;
    }

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

    .page-8k8-5__faq-item {
      background-color: #2a2a2a;
      border: 1px solid var(--8k8-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-8k8-5__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #333333;
      transition: background-color 0.3s ease;
      color: var(--8k8-primary-color);
      font-size: 1.2em;
    }

    .page-8k8-5__faq-question:hover {
      background-color: #444444;
    }

    .page-8k8-5__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--8k8-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-8k8-5__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      pointer-events: none; /* Prevent toggle from blocking click event on parent */
      transition: transform 0.3s ease;
      color: var(--8k8-primary-color);
    }

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

    .page-8k8-5__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #bbb;
      font-size: 1em;
    }

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

    /* Call to Action Section */
    .page-8k8-5__cta-section {
      background-color: var(--8k8-accent-color);
      padding: 50px 20px;
      text-align: center;
      border-radius: 10px;
      margin-top: 50px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-5__cta-title {
      font-size: 2.5em;
      color: var(--8k8-text-light);
      margin-bottom: 20px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-5__cta-description {
      font-size: 1.2em;
      color: #eee;
      margin-bottom: 30px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-5__hero-title {
        font-size: 3em;
      }
      .page-8k8-5__hero-description {
        font-size: 1.2em;
      }
      .page-8k8-5__heading {
        font-size: 2.4em;
      }
      .page-8k8-5__subheading {
        font-size: 1.6em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-5__hero-section {
        padding: 60px 15px;
      }
      .page-8k8-5__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-5__hero-description {
        font-size: 1em;
      }
      .page-8k8-5__heading {
        font-size: 2em;
      }
      .page-8k8-5__subheading {
        font-size: 1.4em;
      }
      .page-8k8-5__paragraph {
        font-size: 1em;
      }
      .page-8k8-5__button {
        padding: 10px 25px;
        font-size: 1em;
      }

      .page-8k8-5__promotions-grid,
      .page-8k8-5__categories-grid,
      .page-8k8-5__features-grid,
      .page-8k8-5__payment-methods-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
      }

      /* Responsive list items for mobile */
      .page-8k8-5__promo-card,
      .page-8k8-5__category-card,
      .page-8k8-5__feature-item,
      .page-8k8-5__payment-item,
      .page-8k8-5__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* List containers */
      .page-8k8-5__promotions-grid,
      .page-8k8-5__categories-grid,
      .page-8k8-5__features-grid,
      .page-8k8-5__payment-methods-grid,
      .page-8k8-5__faq-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important; /* Adjust padding for containers */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-5__promo-title,
      .page-8k8-5__category-title,
      .page-8k8-5__feature-title {
        font-size: 1.3em;
      }

      .page-8k8-5__promo-description,
      .page-8k8-5__category-description,
      .page-8k8-5__feature-description {
        font-size: 0.9em;
      }

      .page-8k8-5__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8-5__faq-answer {
        font-size: 0.9em;
        padding: 0 15px !important; /* Adjust initial padding for mobile */
      }
      .page-8k8-5__faq-item.active .page-8k8-5__faq-answer {
        padding: 15px !important; /* Adjust active padding for mobile */
      }

      .page-8k8-5__cta-title {
        font-size: 2em;
      }
      .page-8k8-5__cta-description {
        font-size: 1em;
      }
      .page-8k8-5__section {
        padding: 30px 15px;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-5__hero-title {
        font-size: 2em;
      }
      .page-8k8-5__hero-description {
        font-size: 0.9em;
      }
      .page-8k8-5__heading {
        font-size: 1.8em;
      }
      .page-8k8-5__subheading {
        font-size: 1.2em;
      }
      .page-8k8-5__cta-title {
        font-size: 1.8em;
      }
    }
  