
    /* Base styles for the page, scoped to its class */
    .page-8k8-slot-casino {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e; /* Dark background for gaming theme */
      line-height: 1.6;
      padding-bottom: 20px; /* Ensure space above footer */
    }

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

    /* Section styling */
    .page-8k8-slot-casino__section {
      padding: 40px 0;
      text-align: center;
      margin-bottom: 20px;
    }

    .page-8k8-slot-casino__section--dark {
      background-color: #0f0f1a;
    }

    .page-8k8-slot-casino__section-title {
      font-size: 2.5em;
      color: #ffcc00; /* Gold accent */
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-8k8-slot-casino__section-subtitle {
      font-size: 1.2em;
      color: #ccc;
      margin-bottom: 30px;
    }

    /* Hero Section */
    .page-8k8-slot-casino__hero-section {
      position: relative;
      overflow: hidden;
      padding: 10px 0 80px; /* Rely on body padding for header offset, add small top padding for aesthetic */
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

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

    .page-8k8-slot-casino__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    }

    .page-8k8-slot-casino__hero-title {
      font-size: 3.5em;
      color: #ffcc00;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-8k8-slot-casino__hero-description {
      font-size: 1.3em;
      color: #fff;
      margin-bottom: 30px;
    }

    /* Buttons */
    .page-8k8-slot-casino__button {
      display: inline-block;
      background-color: #e62e2e; /* Red accent */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-slot-casino__button:hover {
      background-color: #ff4d4d;
      transform: translateY(-2px);
    }

    .page-8k8-slot-casino__button--secondary {
      background-color: #ffcc00;
      color: #1a1a2e;
      margin-left: 15px;
    }

    .page-8k8-slot-casino__button--secondary:hover {
      background-color: #ffdb4d;
    }

    /* Game Cards / Provider Cards */
    .page-8k8-slot-casino__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-slot-casino__card {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
    }

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

    .page-8k8-slot-casino__card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-8k8-slot-casino__card-content {
      padding: 20px;
      flex-grow: 1;
    }

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

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

    /* List styling */
    .page-8k8-slot-casino__list {
      list-style: none;
      padding: 0;
      margin: 30px auto;
      max-width: 800px;
    }

    .page-8k8-slot-casino__list-item {
      background-color: #2a2a4a;
      margin-bottom: 15px;
      padding: 15px 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      text-align: left;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-8k8-slot-casino__list-item::before {
      content: '✓';
      color: #ffcc00;
      font-size: 1.5em;
      margin-right: 15px;
      line-height: 1;
    }

    /* Image wrapper for responsiveness */
    .page-8k8-slot-casino__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 20px auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-slot-casino__main-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* FAQ Section */
    .page-8k8-slot-casino__faq-list {
      max-width: 900px;
      margin: 40px auto 0;
      text-align: left;
    }

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

    .page-8k8-slot-casino__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a5a;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.3s ease;
    }

    .page-8k8-slot-casino__faq-question:hover {
      background-color: #4a4a6a;
    }

    .page-8k8-slot-casino__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #ffcc00;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-8k8-slot-casino__faq-toggle {
      font-size: 1.8em;
      color: #ffcc00;
      font-weight: bold;
      pointer-events: none; /* Prevent toggle from blocking click on parent div */
      transition: transform 0.3s ease;
      line-height: 1;
    }

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

    .page-8k8-slot-casino__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: #ccc;
      text-align: left;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-slot-casino__section-title {
        font-size: 2em;
      }

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

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

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

      .page-8k8-slot-casino__button--secondary {
        margin-left: 0;
        margin-top: 15px;
      }

      .page-8k8-slot-casino__grid {
        grid-template-columns: 1fr;
      }

      /* List item responsive rules */
      .page-8k8-slot-casino__list {
        padding: 0 10px !important; /* Adjust list container padding */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-slot-casino__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important; /* Adjust padding to fit */
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-slot-casino__card-image {
        height: 180px;
      }

      /* Image responsive rules */
      .page-8k8-slot-casino img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-slot-casino__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      /* FAQ Responsive */
      .page-8k8-slot-casino__faq-question {
        padding: 15px 20px;
      }

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

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

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

    @media (max-width: 480px) {
      .page-8k8-slot-casino__hero-title {
        font-size: 2em;
      }
      .page-8k8-slot-casino__hero-description {
        font-size: 0.9em;
      }
      .page-8k8-slot-casino__button {
        display: block;
        width: fit-content;
        margin: 10px auto;
      }
      .page-8k8-slot-casino__button--secondary {
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
      }
    }
  