
    /* General styling for the page content wrapper */
    .page-8k8-8 {
      font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      color: #E0E0E0; /* Light gray text */
      background-color: #1a1a2e; /* Dark blue-purple background */
      line-height: 1.6;
      padding-top: 10px; /* Decorative padding for hero/first section, assuming body padding-top handles header offset */
    }

    /* Container for consistent content width */
    .page-8k8-8__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 15px;
      box-sizing: border-box;
    }

    /* Section Titles */
    .page-8k8-8__section-title {
      font-size: 2.5em;
      color: #FFD700; /* Gold */
      text-align: center;
      margin-bottom: 20px;
      font-weight: 700;
      line-height: 1.2;
    }

    .page-8k8-8__section-description {
      font-size: 1.1em;
      color: #B0B0B0; /* Lighter gray */
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px auto;
    }

    /* Hero Section */
    .page-8k8-8__hero-section {
      position: relative;
      width: 100%;
      min-height: 550px; /* Minimum height for desktop */
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      text-align: center;
      padding: 10px 0 50px 0; /* Decorative padding, body padding-top handles main offset */
      box-sizing: border-box;
    }

    .page-8k8-8__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
      z-index: 1;
    }

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

    .page-8k8-8__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
      color: #FFFFFF;
    }

    .page-8k8-8__hero-title {
      font-size: 3.5em;
      color: #FFD700; /* Gold */
      margin-bottom: 20px;
      font-weight: 900;
      line-height: 1.1;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-8__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 40px;
      font-weight: 400;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-8__hero-cta-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    }

    .page-8k8-8__hero-button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: 600;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-8__hero-button--primary {
      background-color: #FFD700; /* Gold */
      color: #1a1a2e; /* Dark blue-purple */
      border: 2px solid #FFD700;
    }

    .page-8k8-8__hero-button--primary:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    .page-8k8-8__hero-button--secondary {
      background-color: transparent;
      color: #FFD700; /* Gold */
      border: 2px solid #FFD700;
    }

    .page-8k8-8__hero-button--secondary:hover {
      background-color: rgba(255, 215, 0, 0.1);
      transform: translateY(-3px);
    }

    /* About Section */
    .page-8k8-8__about-section {
      padding: 60px 0;
      background-color: #1a1a2e;
    }

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

    .page-8k8-8__about-card {
      background-color: #2e2e4a; /* Slightly lighter dark blue */
      padding: 30px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-8k8-8__about-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-8__about-card-icon {
      width: 200px; /* Min size 200px */
      height: auto;
      max-width: 100%;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-8k8-8__about-card-title {
      font-size: 1.8em;
      color: #FFD700;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .page-8k8-8__about-card-text {
      font-size: 1em;
      color: #B0B0B0;
    }

    /* Games Section */
    .page-8k8-8__games-section {
      padding: 60px 0;
      background-color: #23233b; /* Another shade of dark blue */
    }

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

    .page-8k8-8__game-card {
      background-color: #2e2e4a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-8k8-8__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-8__game-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency, will be object-fit */
      object-fit: cover;
      display: block;
    }

    .page-8k8-8__game-card-title {
      font-size: 1.5em;
      color: #FFD700;
      padding: 15px 20px 0;
      font-weight: 700;
    }

    .page-8k8-8__game-card-text {
      font-size: 0.95em;
      color: #B0B0B0;
      padding: 0 20px 20px;
    }

    .page-8k8-8__view-more-container {
      text-align: center;
      margin-top: 50px;
    }

    .page-8k8-8__view-more-text {
      font-size: 1.2em;
      color: #E0E0E0;
      margin-bottom: 20px;
    }

    .page-8k8-8__view-more-button {
      background-color: #FFD700;
      color: #1a1a2e;
      padding: 12px 25px;
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-8k8-8__view-more-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    /* Promotions Section */
    .page-8k8-8__promo-section {
      padding: 60px 0;
      background-color: #1a1a2e;
    }

    .page-8k8-8__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-8__promo-card {
      background-color: #2e2e4a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-8k8-8__promo-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-8__promo-card-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
    }

    .page-8k8-8__promo-card-title {
      font-size: 1.6em;
      color: #FFD700;
      padding: 15px 20px 0;
      font-weight: 700;
    }

    .page-8k8-8__promo-card-text {
      font-size: 1em;
      color: #B0B0B0;
      padding: 0 20px 15px;
    }

    .page-8k8-8__promo-card-button {
      display: inline-block;
      background-color: #FFD700;
      color: #1a1a2e;
      padding: 10px 20px;
      margin: 0 20px 20px;
      border-radius: 8px;
      font-size: 1em;
      font-weight: 600;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .page-8k8-8__promo-card-button:hover {
      background-color: #e6c200;
    }

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

    .page-8k8-8__cta-title {
      font-size: 3em;
      color: #FFD700;
      margin-bottom: 20px;
      font-weight: 800;
    }

    .page-8k8-8__cta-description {
      font-size: 1.3em;
      color: #B0B0B0;
      max-width: 700px;
      margin: 0 auto 40px auto;
    }

    .page-8k8-8__cta-button {
      display: inline-block;
      background-color: #FFD700;
      color: #1a1a2e;
      padding: 18px 40px;
      border-radius: 10px;
      font-size: 1.4em;
      font-weight: 700;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-8__cta-button:hover {
      background-color: #e6c200;
      transform: translateY(-5px);
    }

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

    .page-8k8-8__faq-list {
      max-width: 900px;
      margin: 40px auto 0 auto;
    }

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

    .page-8k8-8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a5e; /* Slightly darker for question */
      border-radius: 10px;
      transition: background-color 0.3s ease;
    }

    .page-8k8-8__faq-question:hover {
      background-color: #4a4a7e;
    }

    .page-8k8-8__faq-q-text {
      font-size: 1.3em;
      color: #FFD700;
      margin: 0;
      font-weight: 600;
      pointer-events: none; /* Prevent text from blocking click event */
    }

    .page-8k8-8__faq-toggle {
      font-size: 1.8em;
      color: #FFD700;
      font-weight: 700;
      margin-left: 20px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-8k8-8__faq-item.active .page-8k8-8__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' */
    }

    .page-8k8-8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* 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: #B0B0B0;
      font-size: 1.05em;
    }

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

    .page-8k8-8__faq-answer p {
      margin: 0;
    }

    /* Image responsiveness for all images */
    .page-8k8-8 img {
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

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

    @media (max-width: 768px) {
      .page-8k8-8__hero-section {
        min-height: 450px;
      }
      .page-8k8-8__hero-title {
        font-size: 2.2em;
        margin-bottom: 15px;
      }
      .page-8k8-8__hero-subtitle {
        font-size: 1.1em;
        margin-bottom: 30px;
      }
      .page-8k8-8__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-8__hero-cta-group {
        flex-direction: column;
        gap: 15px;
      }
      .page-8k8-8__section-title {
        font-size: 1.8em;
      }
      .page-8k8-8__section-description {
        font-size: 1em;
        margin-bottom: 30px;
      }

      /* Mobile list item requirements */
      .page-8k8-8__about-grid,
      .page-8k8-8__game-grid,
      .page-8k8-8__promo-grid {
        grid-template-columns: 1fr; /* Stack cards vertically */
        gap: 20px;
      }

      .page-8k8-8__about-card,
      .page-8k8-8__game-card,
      .page-8k8-8__promo-card {
        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 */
      }

      .page-8k8-8__about-card-title,
      .page-8k8-8__game-card-title,
      .page-8k8-8__promo-card-title {
        font-size: 1.5em; /* Adjust font size */
      }

      .page-8k8-8__about-card-text,
      .page-8k8-8__game-card-text,
      .page-8k8-8__promo-card-text {
        font-size: 0.9em; /* Adjust font size */
      }

      .page-8k8-8__game-card-image,
      .page-8k8-8__promo-card-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* Ensure text wraps */
      .page-8k8-8__about-card-text,
      .page-8k8-8__game-card-text,
      .page-8k8-8__promo-card-text,
      .page-8k8-8__faq-q-text,
      .page-8k8-8__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-8__cta-title {
        font-size: 2em;
      }
      .page-8k8-8__cta-description {
        font-size: 1.1em;
      }
      .page-8k8-8__cta-button {
        padding: 15px 30px;
        font-size: 1.2em;
      }

      .page-8k8-8__faq-question {
        padding: 15px 20px;
      }
      .page-8k8-8__faq-q-text {
        font-size: 1.1em;
      }
      .page-8k8-8__faq-toggle {
        font-size: 1.5em;
      }
      .page-8k8-8__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-8__faq-item.active .page-8k8-8__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-8 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-8__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-8__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-8__hero-button {
        width: 100%;
        max-width: 250px;
      }
      .page-8k8-8__section-title {
        font-size: 1.5em;
      }
      .page-8k8-8__cta-title {
        font-size: 1.8em;
      }
      .page-8k8-8__cta-button {
        font-size: 1em;
        padding: 12px 25px;
      }
    }
  