
    /* Global styles for the page-8k8-slot scope */
    .page-8k8-slot {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-top: var(--header-offset, 122px); /* Fallback for shared.css absence, ensuring content isn't hidden by a fixed header */
    }

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

    /* Hero Section */
    .page-8k8-slot__hero-section {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      padding: 10px 20px 80px; /* Top padding for visual spacing, not for header offset */
      min-height: 500px;
      background-color: #000; /* Fallback */
    }

    .page-8k8-slot__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6); /* Allowed for background images to improve text readability */
    }

    .page-8k8-slot__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .page-8k8-slot__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #FFD700; /* Gold color for branding */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

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

    .page-8k8-slot__cta-button {
      display: inline-block;
      background-color: #007bff; /* Primary blue */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-slot__cta-button:hover {
      background-color: #0056b3;
    }

    /* Section Styling */
    .page-8k8-slot__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-8k8-slot__section--dark {
      background-color: #1a1a1a;
      color: #fff;
    }

    .page-8k8-slot__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: #333;
    }

    .page-8k8-slot__section--dark .page-8k8-slot__section-title {
      color: #FFD700;
    }

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

    .page-8k8-slot__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: left;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

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

    .page-8k8-slot__feature-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
      max-width: 100%; /* Responsive image */
    }

    .page-8k8-slot__feature-title {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: #007bff;
    }

    .page-8k8-slot__feature-description {
      font-size: 1em;
      color: #555;
    }

    /* Game Showcase */
    .page-8k8-slot__game-showcase {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-8k8-slot__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      color: #eee;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-slot__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-slot__game-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      max-width: 100%; /* Responsive image */
    }

    .page-8k8-slot__game-info {
      padding: 20px;
      text-align: center;
    }

    .page-8k8-slot__game-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: #FFD700;
    }

    .page-8k8-slot__game-description {
      font-size: 0.95em;
      color: #ccc;
    }

    /* Steps Section */
    .page-8k8-slot__steps-list {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-8k8-slot__step-item {
      background-color: #fff;
      border: 2px solid #007bff;
      border-radius: 10px;
      padding: 30px;
      width: 300px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-slot__step-number {
      font-size: 2em;
      color: #007bff;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-8k8-slot__step-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: #333;
    }

    .page-8k8-slot__step-description {
      font-size: 1em;
      color: #555;
    }

    /* Promotions Section */
    .page-8k8-slot__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 40px;
      max-width: 800px;
      margin: 40px auto 0;
      text-align: center;
    }

    .page-8k8-slot__promo-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 30px;
    }

    .page-8k8-slot__promo-title {
      font-size: 2em;
      color: #E74C3C; /* Red for promotions */
      margin-bottom: 20px;
    }

    .page-8k8-slot__promo-description {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 30px;
    }

    .page-8k8-slot__promo-link {
      display: inline-block;
      background-color: #E74C3C;
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-8k8-slot__promo-link:hover {
      background-color: #C0392B;
    }

    /* FAQ Section */
    .page-8k8-slot__faq-section {
      text-align: left;
    }

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

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

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

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

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

    .page-8k8-slot__faq-toggle {
      font-size: 1.8em;
      font-weight: normal;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-8k8-slot__faq-item.active .page-8k8-slot__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to a cross */
    }

    .page-8k8-slot__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: #555;
      font-size: 1em;
    }

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

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-8k8-slot__container {
        padding: 15px;
      }

      .page-8k8-slot__hero-section {
        min-height: 400px;
        padding-bottom: 60px;
      }

      .page-8k8-slot__hero-title {
        font-size: 2.5em;
      }

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

      .page-8k8-slot__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-slot__section {
        padding: 40px 0;
      }

      .page-8k8-slot__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-8k8-slot__feature-grid,
      .page-8k8-slot__game-showcase {
        grid-template-columns: 1fr;
      }

      .page-8k8-slot__feature-item,
      .page-8k8-slot__game-card,
      .page-8k8-slot__step-item {
        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-slot__steps-list {
        flex-direction: column;
        align-items: center;
        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-slot__promo-card {
        padding: 30px 20px;
        margin-top: 30px;
      }

      .page-8k8-slot__promo-title {
        font-size: 1.6em;
      }

      .page-8k8-slot__promo-description {
        font-size: 0.95em;
      }

      .page-8k8-slot__promo-link {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-slot__faq-question,
      .page-8k8-slot__faq-answer {
        padding-left: 15px !important; /* Adjust padding for smaller screens */
        padding-right: 15px !important; /* Adjust padding for smaller screens */
      }
      .page-8k8-slot__faq-answer {
        padding-top: 15px !important; /* Adjust padding for smaller screens */
        padding-bottom: 15px !important; /* Adjust padding for smaller screens */
      }

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

      /* Image responsive adjustments */
      .page-8k8-slot__hero-background,
      .page-8k8-slot__feature-image,
      .page-8k8-slot__game-image,
      .page-8k8-slot__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-slot__feature-item,
      .page-8k8-slot__game-card,
      .page-8k8-slot__step-item,
      .page-8k8-slot__promo-card,
      .page-8k8-slot__faq-item {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    /* Ensure text wrapping for all content */
    .page-8k8-slot p,
    .page-8k8-slot h1,
    .page-8k8-slot h2,
    .page-8k8-slot h3,
    .page-8k8-slot li,
    .page-8k8-slot__feature-description,
    .page-8k8-slot__game-description,
    .page-8k8-slot__step-description,
    .page-8k8-slot__promo-description,
    .page-8k8-slot__faq-answer {
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
  