
    /* Base styles for the page-8k8-slot context */
    .page-8k8-slot {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e; /* Dark background for casino theme */
      line-height: 1.6;
      padding-top: 10px; /* Small decorative padding, relying on body for header offset */
    }

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

    .page-8k8-slot__section {
      background-color: #2a2a4a; /* Slightly lighter dark background for sections */
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-slot__hero-section {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 500px;
      padding: 60px 20px;
      background-color: #1a1a2e; /* Ensure hero section has its own background */
    }

    .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); /* Darken background image for text readability */
    }

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

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

    .page-8k8-slot__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
    }

    .page-8k8-slot__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #ffcc00;
      color: #1a1a2e;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-8k8-slot__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-8k8-slot__heading {
      font-size: 2.5em;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-slot__subheading {
      font-size: 1.8em;
      color: #ffffff;
      margin-bottom: 20px;
    }

    .page-8k8-slot__text {
      font-size: 1.1em;
      color: #c0c0c0;
      margin-bottom: 15px;
    }

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

    .page-8k8-slot__game-card {
      background-color: #3a3a5a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      padding-bottom: 20px; /* Space for text below image */
      text-align: center;
    }

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

    .page-8k8-slot__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      border-bottom: 3px solid #ffcc00;
    }

    .page-8k8-slot__game-title {
      font-size: 1.4em;
      color: #ffcc00;
      margin: 15px 10px 10px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .page-8k8-slot__game-provider {
      font-size: 0.9em;
      color: #c0c0c0;
      margin-bottom: 10px;
    }

    .page-8k8-slot__game-button {
      background-color: #007bff; /* Blue for 'Play Now' */
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      margin-top: 10px;
    }

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

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

    .page-8k8-slot__list-item {
      background-color: #3a3a5a;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-slot__list-item-title {
      color: #ffcc00;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    /* FAQ Section Styles */
    .page-8k8-slot__faq-section {
      background-color: #2a2a4a;
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-slot__faq-heading {
      font-size: 2.5em;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

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

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

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

    .page-8k8-slot__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevents text selection from interfering with click */
      flex-grow: 1;
    }

    .page-8k8-slot__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevents icon from interfering with click */
      transition: transform 0.3s ease;
    }

    .page-8k8-slot__faq-item.active .page-8k8-slot__faq-toggle {
      transform: rotate(45deg); /* Plus to X/Minus visual effect */
    }

    .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: #c0c0c0;
      font-size: 1.05em;
    }

    .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;
    }

    /* Call to Action Section */
    .page-8k8-slot__cta-section {
      text-align: center;
      padding: 50px 20px;
      background: linear-gradient(45deg, #1a1a2e, #3a3a5a);
      border-radius: 10px;
      margin-top: 40px;
    }

    .page-8k8-slot__cta-title {
      font-size: 2.8em;
      color: #ffcc00;
      margin-bottom: 20px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-slot__cta-description {
      font-size: 1.2em;
      color: #e0e0e0;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

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

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

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

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

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

      .page-8k8-slot__game-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
      }

      .page-8k8-slot__game-card {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box !important;
      }

      .page-8k8-slot__list {
        grid-template-columns: 1fr; /* Single column for lists on mobile */
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8k8-slot__list-item {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      
      .page-8k8-slot__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-8k8-slot__faq-answer {
        padding: 0 20px;
        font-size: 1em;
      }

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

      .page-8k8-slot__cta-title {
        font-size: 2em;
      }

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

      /* Image responsiveness */
      .page-8k8-slot img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-8k8-slot__hero-background {
        max-width: 100% !important;
        height: 100% !important; /* Keep full height for hero */
        object-fit: cover;
      }
      .page-8k8-slot__game-image {
        max-width: 100% !important;
        height: 180px !important; /* Adjust height for smaller screens */
        object-fit: cover;
      }
    }

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