
    /* Base styles for the page content */
    .page-www-8k8 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 40px; /* Ensure space above footer */
    }

    /* Hero Section */
    .page-www-8k8__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Responsive height */
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, relying on body for header offset */
      box-sizing: border-box;
    }

    .page-www-8k8__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-www-8k8__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 2;
    }

    .page-www-8k8__hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-www-8k8__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #ffd700; /* Gold color for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-www-8k8__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #eee;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }

    .page-www-8k8__cta-button {
      display: inline-block;
      background-color: #007bff; /* Blue for call to action */
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-www-8k8__cta-button:hover {
      background-color: #0056b3;
    }

    /* General Section Styling */
    .page-www-8k8__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      box-sizing: border-box;
    }

    .page-www-8k8__section-heading {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: #2c3e50;
      position: relative;
    }

    .page-www-8k8__section-heading::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: #ffd700;
      margin: 15px auto 0;
    }

    .page-www-8k8__text-content {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Features/Games Grid */
    .page-www-8k8__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-www-8k8__grid-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
    }

    .page-www-8k8__grid-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-www-8k8__grid-image-container {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-www-8k8__grid-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-www-8k8__grid-content {
      padding: 25px;
    }

    .page-www-8k8__grid-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: #2c3e50;
    }

    .page-www-8k8__grid-description {
      font-size: 1em;
      color: #666;
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-www-8k8__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: left;
      margin-bottom: 30px;
    }

    .page-www-8k8__promo-title {
      font-size: 2em;
      color: #007bff;
      margin-bottom: 15px;
    }

    .page-www-8k8__promo-description {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 20px;
    }

    .page-www-8k8__promo-link {
      display: inline-block;
      background-color: #28a745; /* Green for promotion link */
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-www-8k8__promo-link:hover {
      background-color: #218838;
    }

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

    .page-www-8k8__payment-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 15px 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 150px;
      font-weight: bold;
      color: #333;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
    }

    .page-www-8k8__payment-item:hover {
      transform: translateY(-3px);
    }

    /* FAQ Section */
    .page-www-8k8__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
      box-sizing: border-box;
      text-align: left;
    }

    .page-www-8k8__faq-heading {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: #2c3e50;
      text-align: center;
      position: relative;
    }

    .page-www-8k8__faq-heading::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: #ffd700;
      margin: 15px auto 0;
    }

    .page-www-8k8__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

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

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

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

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

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

    .page-www-8k8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #fdfdfd;
      color: #555;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-www-8k8__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-www-8k8__hero-title {
        font-size: 2.5em;
      }

      .page-www-8k8__hero-subtitle {
        font-size: 1.2em;
      }

      .page-www-8k8__section-heading,
      .page-www-8k8__faq-heading {
        font-size: 2em;
      }

      .page-www-8k8__section {
        padding: 40px 15px;
      }

      .page-www-8k8__grid {
        grid-template-columns: 1fr;
      }

      /* Mobile List Item Responsive Requirements */
      .page-www-8k8__payment-methods-grid,
      .page-www-8k8__grid {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-www-8k8__payment-item,
      .page-www-8k8__grid-item {
        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-www-8k8__grid-content {
        padding: 15px;
      }

      .page-www-8k8__grid-title {
        font-size: 1.3em;
      }

      .page-www-8k8__promo-card {
        padding: 20px;
      }

      .page-www-8k8__promo-title {
        font-size: 1.5em;
      }

      .page-www-8k8__faq-section {
        padding: 40px 15px;
      }

      .page-www-8k8__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }

      .page-www-8k8__faq-question h3 {
        font-size: 1em;
      }

      .page-www-8k8__faq-answer {
        padding: 0 20px;
      }

      .page-www-8k8__faq-item.active .page-www-8k8__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsiveness */
      .page-www-8k8__hero-image,
      .page-www-8k8__grid-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-www-8k8__grid-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-www-8k8__hero-title {
        font-size: 2em;
      }

      .page-www-8k8__hero-subtitle {
        font-size: 1em;
      }

      .page-www-8k8__cta-button {
        padding: 12px 20px;
        font-size: 1em;
      }
    }
  