
    :root {
      --primary-color: #ffcc00; /* Gold/Yellow for excitement */
      --secondary-color: #333333; /* Dark grey for text on light backgrounds */
      --background-dark: #1a1a1a; /* Very dark background */
      --background-light: #f0f0f0; /* Light background for contrast sections */
      --text-color-light: #ffffff;
      --text-color-dark: #333333;
      --border-color: #555555;
      --button-hover-color: #e6b800;
      --button-text-color: #1a1a1a;
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color-light);
      background-color: var(--background-dark);
      margin: 0;
      padding: 0;
    }

    .page-8k8-slot {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
      /* Fallback for header offset if shared.css doesn't apply padding-top to body */
      padding-top: var(--header-offset, 122px);
    }

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

    .page-8k8-slot__section--dark {
      background-color: var(--background-dark);
      color: var(--text-color-light);
    }

    .page-8k8-slot__section--light {
      background-color: var(--background-light);
      color: var(--text-color-dark);
    }

    .page-8k8-slot__heading {
      font-size: 2.8em;
      color: var(--primary-color);
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-8k8-slot__subheading {
      font-size: 1.8em;
      color: var(--text-color-light);
      margin-bottom: 30px;
      font-weight: normal;
    }

    .page-8k8-slot__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      line-height: 1.8;
      color: var(--text-color-light);
    }

    .page-8k8-slot__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--button-text-color);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-slot__button:hover {
      background-color: var(--button-hover-color);
    }

    /* Hero Section */
    .page-8k8-slot__hero-section {
      position: relative;
      background-size: cover;
      background-position: center;
      color: var(--text-color-light);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 500px;
      padding-top: 10px; /* Minimal padding-top as body should handle header offset */
      padding-bottom: 10px;
      box-sizing: border-box;
      overflow: hidden; /* Ensure content doesn't spill */
    }

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

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

    .page-8k8-slot__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

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

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

    .page-8k8-slot__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      color: var(--text-color-light);
      border: 1px solid var(--border-color);
    }

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

    .page-8k8-slot__game-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-slot__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-8k8-slot__game-card:hover .page-8k8-slot__game-image {
      transform: scale(1.05);
    }

    .page-8k8-slot__game-content {
      padding: 20px;
    }

    .page-8k8-slot__game-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

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

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

    .page-8k8-slot__benefit-item {
      background-color: #2a2a2a;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: left;
      box-sizing: border-box; /* Crucial for responsive list items */
      border: 1px solid var(--border-color);
      word-wrap: break-word; /* Ensure long words break */
      overflow-wrap: break-word; /* Ensure long words break */
    }

    .page-8k8-slot__benefit-item-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-slot__benefit-item-description {
      font-size: 1em;
      color: #cccccc;
    }

    /* How To Play Section (Steps) */
    .page-8k8-slot__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-slot__step-card {
      background-color: #2a2a2a;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      box-sizing: border-box; /* Crucial for responsive list items */
      border: 1px solid var(--border-color);
      word-wrap: break-word; /* Ensure long words break */
      overflow-wrap: break-word; /* Ensure long words break */
    }

    .page-8k8-slot__step-number {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-8k8-slot__step-title {
      font-size: 1.4em;
      color: var(--text-color-light);
      margin-bottom: 10px;
    }

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

    /* FAQ Section */
    .page-8k8-slot__faq-list {
      margin-top: 40px;
      text-align: left;
    }

    .page-8k8-slot__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--border-color);
    }

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

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

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

    .page-8k8-slot__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      line-height: 1; /* Ensure consistent height */
    }

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

    .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: #cccccc;
      background-color: #2a2a2a;
    }

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

    /* CTA Section */
    .page-8k8-slot__cta-section {
      background-color: var(--primary-color);
      color: var(--background-dark);
      padding: 60px 0;
      text-align: center;
    }

    .page-8k8-slot__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--background-dark);
    }

    .page-8k8-slot__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--secondary-color);
    }

    .page-8k8-slot__cta-button {
      background-color: var(--background-dark);
      color: var(--primary-color);
    }

    .page-8k8-slot__cta-button:hover {
      background-color: #000000;
      color: var(--primary-color);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-slot {
        padding: 0 10px;
      }

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

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

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

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

      .page-8k8-slot__games-grid,
      .page-8k8-slot__benefits-list,
      .page-8k8-slot__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* List item specific responsive styles */
      .page-8k8-slot__benefits-list,
      .page-8k8-slot__steps-grid {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-slot__benefit-item,
      .page-8k8-slot__step-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 25px !important; /* Slightly reduced padding for mobile */
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

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

      .page-8k8-slot__game-image-wrapper {
        height: 180px; /* Adjust image height for mobile */
      }
      .page-8k8-slot__game-image {
        max-width: 100% !important;
        height: auto !important;
      }

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

      .page-8k8-slot__faq-question h3 {
        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__cta-title {
        font-size: 2em;
      }

      .page-8k8-slot__cta-description {
        font-size: 1em;
      }
    }
    @media (max-width: 480px) {
      .page-8k8-slot__hero-title {
        font-size: 2em;
      }
      .page-8k8-slot__hero-description {
        font-size: 1em;
      }
      .page-8k8-slot__heading {
        font-size: 1.8em;
      }
      .page-8k8-slot__subheading {
        font-size: 1.2em;
      }
    }
  