
    :root {
      --page-8k8-slot-primary-color: #FFD700; /* Gold */
      --page-8k8-slot-secondary-color: #007bff; /* Blue */
      --page-8k8-slot-dark-bg: #1a1a1a; /* Dark background */
      --page-8k8-slot-light-text: #ffffff;
      --page-8k8-slot-gray-text: #cccccc;
      --page-8k8-slot-border-color: #333333;
      --page-8k8-slot-card-bg: #2a2a2a;
      --page-8k8-slot-hover-bg: #3a3a3a;
    }

    /* Main container for page-specific styles */
    .page-8k8-slot {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-slot-light-text);
      background-color: var(--page-8k8-slot-dark-bg);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

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

    .page-8k8-slot__section-title {
      color: var(--page-8k8-slot-primary-color);
      text-align: center;
      font-size: 2.5em;
      margin-bottom: 20px;
      padding-top: 40px;
    }

    .page-8k8-slot__section-description {
      text-align: center;
      color: var(--page-8k8-slot-gray-text);
      font-size: 1.1em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-slot__button {
      display: inline-block;
      background-color: var(--page-8k8-slot-primary-color);
      color: var(--page-8k8-slot-dark-bg);
      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-slot__button:hover {
      background-color: #e6c200; /* Slightly darker gold */
      transform: translateY(-2px);
    }

    .page-8k8-slot__button--secondary {
      background-color: var(--page-8k8-slot-secondary-color);
      color: var(--page-8k8-slot-light-text);
    }

    .page-8k8-slot__button--secondary:hover {
      background-color: #0056b3; /* Slightly darker blue */
    }

    /* Hero Section */
    .page-8k8-slot__hero-section {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 600px;
      color: var(--page-8k8-slot-light-text);
      text-align: center;
      overflow: hidden;
      padding: 10px 0; /* Small decorative padding-top, as body already handles header offset */
    }

    .page-8k8-slot__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .page-8k8-slot__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.4); /* Darken image for text readability */
      max-width: 100%; /* Ensure responsiveness */
      display: block;
    }

    .page-8k8-slot__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
      border-radius: 10px;
    }

    .page-8k8-slot__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--page-8k8-slot-primary-color);
      line-height: 1.2;
    }

    .page-8k8-slot__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--page-8k8-slot-gray-text);
    }

    .page-8k8-slot__hero-cta {
      margin-top: 30px;
    }

    /* Features Section */
    .page-8k8-slot__features-section {
      background-color: #222222;
      padding: 60px 0;
    }

    .page-8k8-slot__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-slot__feature-item {
      background-color: var(--page-8k8-slot-card-bg);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-8k8-slot__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-8k8-slot__feature-heading {
      color: var(--page-8k8-slot-primary-color);
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-8k8-slot__feature-description {
      color: var(--page-8k8-slot-gray-text);
    }

    /* Games Showcase Section */
    .page-8k8-slot__games-showcase {
      padding: 60px 0;
    }

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

    .page-8k8-slot__game-card {
      background-color: var(--page-8k8-slot-card-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-8k8-slot__game-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-slot__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      max-width: 100%; /* Ensure responsiveness */
      display: block;
    }

    .page-8k8-slot__game-title {
      color: var(--page-8k8-slot-primary-color);
      font-size: 1.6em;
      margin: 15px 0 10px;
      padding: 0 15px;
    }

    .page-8k8-slot__game-description {
      color: var(--page-8k8-slot-gray-text);
      padding: 0 15px 20px;
    }

    /* How to Play Section */
    .page-8k8-slot__how-to-play {
      background-color: #222222;
      padding: 60px 0;
    }

    .page-8k8-slot__steps-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      counter-reset: step-counter;
    }

    .page-8k8-slot__step-item {
      background-color: var(--page-8k8-slot-card-bg);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      position: relative;
      text-align: center;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-8k8-slot__step-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-8k8-slot-primary-color);
      color: var(--page-8k8-slot-dark-bg);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5em;
      font-weight: bold;
      border: 3px solid var(--page-8k8-slot-dark-bg);
    }

    .page-8k8-slot__step-heading {
      color: var(--page-8k8-slot-light-text);
      font-size: 1.5em;
      margin-top: 15px;
      margin-bottom: 10px;
    }

    .page-8k8-slot__step-description {
      color: var(--page-8k8-slot-gray-text);
    }

    .page-8k8-slot__cta-bottom {
      text-align: center;
      margin-top: 50px;
    }

    /* Promotions Section */
    .page-8k8-slot__promotions-section {
      padding: 60px 0;
    }

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

    .page-8k8-slot__promo-card {
      background-color: var(--page-8k8-slot-card-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-8k8-slot__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-slot__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100%; /* Ensure responsiveness */
      display: block;
    }

    .page-8k8-slot__promo-title {
      color: var(--page-8k8-slot-primary-color);
      font-size: 1.6em;
      margin: 15px 0 10px;
      padding: 0 15px;
    }

    .page-8k8-slot__promo-description {
      color: var(--page-8k8-slot-gray-text);
      padding: 0 15px 20px;
    }

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

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

    .page-8k8-slot__faq-item {
      background-color: var(--page-8k8-slot-card-bg);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-8k8-slot__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #333333;
      color: var(--page-8k8-slot-light-text);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-slot__faq-question:hover {
      background-color: var(--page-8k8-slot-hover-bg);
    }

    .page-8k8-slot__faq-heading {
      font-size: 1.25em;
      margin: 0;
      flex-grow: 1;
      text-align: left;
      color: var(--page-8k8-slot-light-text);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-slot__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      margin-left: 15px;
      color: var(--page-8k8-slot-primary-color);
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

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

    .page-8k8-slot__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding matches question */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-8k8-slot-gray-text);
      box-sizing: border-box;
    }

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

    .page-8k8-slot__faq-answer p {
      margin: 0;
      padding-bottom: 5px; /* Small padding for paragraph inside answer */
    }

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

      .page-8k8-slot__hero-description {
        font-size: 1.1em;
      }

      .page-8k8-slot__section-title {
        font-size: 2em;
        padding-top: 20px;
      }

      .page-8k8-slot__section-description {
        font-size: 1em;
        margin-bottom: 20px;
      }

      .page-8k8-slot__container {
        padding: 15px;
      }

      /* List items responsiveness */
      .page-8k8-slot__feature-list,
      .page-8k8-slot__game-grid,
      .page-8k8-slot__steps-list,
      .page-8k8-slot__promo-grid {
        grid-template-columns: 1fr; /* Stack items */
        gap: 20px;
      }

      .page-8k8-slot__feature-item,
      .page-8k8-slot__game-card,
      .page-8k8-slot__step-item,
      .page-8k8-slot__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 mobile */
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important; /* Ensure text wraps */
        word-break: break-word !important; /* For long keywords */
      }

      .page-8k8-slot__feature-heading,
      .page-8k8-slot__game-title,
      .page-8k8-slot__step-heading,
      .page-8k8-slot__promo-title {
        font-size: 1.4em;
      }

      .page-8k8-slot__game-image,
      .page-8k8-slot__promo-image {
        height: 180px; /* Adjust image height for mobile */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-slot__faq-question {
        padding: 15px 20px;
      }

      .page-8k8-slot__faq-heading {
        font-size: 1.1em;
      }

      .page-8k8-slot__faq-answer {
        padding: 0 20px;
      }

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

      .page-8k8-slot__faq-toggle {
        font-size: 1.5em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-slot__hero-title {
        font-size: 2em;
      }
      .page-8k8-slot__hero-description {
        font-size: 1em;
      }
      .page-8k8-slot__button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  