
    /* Base styles for the page */
    .page-8k8 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Small top padding, assuming body has header offset */
    }

    .page-8k8__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-8k8__hero-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #0d1a26; /* Dark background for contrast */
      color: #fff;
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 40px;
    }

    .page-8k8__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3; /* Subtly blend background image */
      z-index: 0;
    }

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

    .page-8k8__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #ffcc00; /* Bright accent color for title */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-8k8__cta-button {
      display: inline-block;
      background-color: #007bff; /* Primary CTA color */
      color: #fff;
      padding: 15px 30px;
      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__cta-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* Section Styling */
    .page-8k8__section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-8k8__section-title {
      text-align: center;
      font-size: 2.5em;
      margin-bottom: 30px;
      color: #0d1a26;
      position: relative;
      padding-bottom: 15px;
    }

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

    /* Game Categories / Features Grid */
    .page-8k8__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
      align-items: stretch;
    }

    .page-8k8__grid-item {
      background-color: #f0f0f0;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-8k8__grid-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-8k8__grid-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
      height: auto; /* Maintain aspect ratio */
    }

    .page-8k8__grid-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-8k8__grid-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: #0d1a26;
      min-height: 40px; /* Ensure consistent height for titles */
    }

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

    /* Promotions */
    .page-8k8__promotions-list {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      list-style: none;
      padding: 0;
    }

    .page-8k8__promotion-item {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 25px;
      flex: 1 1 calc(33% - 20px); /* Three items per row, with gap */
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      min-width: 280px; /* Ensure items don't get too small */
      box-sizing: border-box;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8__promotion-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-8k8__promotion-title {
      font-size: 1.6em;
      color: #0d1a26;
      margin-bottom: 10px;
    }

    .page-8k8__promotion-text {
      color: #666;
      font-size: 1em;
    }

    /* Payment Methods */
    .page-8k8__payment-methods {
      text-align: center;
    }

    .page-8k8__payment-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8__payment-item {
      width: 120px;
      height: 80px;
      background-color: #f0f0f0;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .page-8k8__payment-logo {
      max-width: 80%;
      max-height: 80%;
      object-fit: contain;
    }

    /* Game Providers */
    .page-8k8__provider-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8__provider-item {
      width: 150px;
      height: 100px;
      background-color: #f0f0f0;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .page-8k8__provider-logo {
      max-width: 80%;
      max-height: 80%;
      object-fit: contain;
    }

    /* Call to Action Section */
    .page-8k8__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: #007bff;
      color: #fff;
      border-radius: 8px;
      margin-bottom: 40px;
    }

    .page-8k8__cta-section-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      color: #fff;
    }

    .page-8k8__cta-section-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* FAQ Section */
    .page-8k8__faq-section {
      padding: 40px 0;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-8k8__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
    }

    .page-8k8__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-8k8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f5f5f5;
      cursor: pointer;
      user-select: none;
      border-radius: 5px;
      transition: background-color 0.3s ease;
    }

    .page-8k8__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-8k8__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-8k8__faq-item.active .page-8k8__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or just change to '-' */
      content: '−'; /* This will be handled by JS */
    }

    .page-8k8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      font-size: 0.95em;
      background-color: #fafafa;
      border-bottom-left-radius: 5px;
      border-bottom-right-radius: 5px;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8__hero-title {
        font-size: 3em;
      }
      .page-8k8__hero-description {
        font-size: 1.2em;
      }
      .page-8k8__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
      .page-8k8__promotion-item {
        flex: 1 1 calc(50% - 20px); /* Two items per row on tablets */
      }
    }

    @media (max-width: 768px) {
      .page-8k8__container {
        padding: 15px;
      }
      .page-8k8__hero-section {
        padding: 40px 15px;
      }
      .page-8k8__hero-title {
        font-size: 2.5em;
      }
      .page-8k8__hero-description {
        font-size: 1.1em;
      }
      .page-8k8__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8__section-title {
        font-size: 2em;
        margin-bottom: 20px;
      }
      .page-8k8__grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
      }
      .page-8k8__grid-item {
        margin: 0 auto;
        max-width: 400px;
      }
      .page-8k8__grid-image {
        height: 180px;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8__promotions-list {
        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__promotion-item {
        flex: 1 1 100%; /* Single column on mobile */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8__promotion-title {
        font-size: 1.4em;
      }
      .page-8k8__payment-item, .page-8k8__provider-item {
        width: 100px;
        height: 70px;
      }
      .page-8k8__cta-section {
        padding: 30px 15px;
      }
      .page-8k8__cta-section-title {
        font-size: 1.8em;
      }
      .page-8k8__cta-section-description {
        font-size: 1em;
      }
      .page-8k8__faq-list {
        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__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8__faq-question {
        padding: 12px 15px;
      }
      .page-8k8__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8__faq-answer {
        padding: 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8__payment-logo, .page-8k8__provider-logo {
        max-width: 70%;
        max-height: 70%;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8__hero-title {
        font-size: 2em;
      }
      .page-8k8__hero-description {
        font-size: 0.95em;
      }
      .page-8k8__section-title {
        font-size: 1.8em;
      }
      .page-8k8__grid-title {
        font-size: 1.3em;
      }
      .page-8k8__promotion-title {
        font-size: 1.2em;
      }
    }
  