
    :root {
      --primary-color: #FFD700; /* Gold/Yellow */
      --secondary-color: #000000; /* Black */
      --accent-color: #FF4500; /* OrangeRed */
      --text-color: #FFFFFF; /* White */
      --dark-text-color: #333333; /* Dark Grey for light backgrounds */
      --background-dark: #1a1a1a; /* Dark background */
      --background-light: #2a2a2a; /* Slightly lighter dark background */
      --border-color: #444444; /* Grey border */
      --header-offset: 122px; /* Default value, assumed from shared.css */
    }

    /* Base styles for the page */
    .page-8k8-slot {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small decorative padding, body handles main offset */
    }

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

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

    .page-8k8-slot__section {
      padding: 60px 0;
      text-align: center;
      background-color: var(--background-light);
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

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

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

    .page-8k8-slot__subheading {
      color: var(--accent-color);
      margin-bottom: 15px;
      font-size: 1.8em;
    }

    .page-8k8-slot__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #ccc;
    }

    /* Hero Section */
    .page-8k8-slot__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:8k8 slot,casino,jackpot]') no-repeat center center/cover;
      padding: 100px 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      border-radius: 0; /* Hero typically full width */
      margin-bottom: 0; /* No margin for hero */
      box-shadow: none;
    }

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

    .page-8k8-slot__hero-subtitle {
      font-size: 1.5em;
      color: var(--text-color);
      margin-bottom: 30px;
      max-width: 800px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-slot__cta-button {
      background-color: var(--accent-color);
      color: var(--text-color);
      padding: 15px 30px;
      font-size: 1.2em;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-slot__cta-button:hover {
      background-color: #e03c00; /* Darker OrangeRed */
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .page-8k8-slot__hero-section {
        padding: 80px 15px;
        min-height: 400px;
      }
      .page-8k8-slot__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-slot__hero-subtitle {
        font-size: 1.2em;
      }
      .page-8k8-slot__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }

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

    .page-8k8-slot__feature-item {
      background-color: var(--background-dark);
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--border-color);
      box-sizing: border-box; /* Important for responsive lists */
    }

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

    .page-8k8-slot__feature-icon {
      margin-bottom: 20px;
      display: inline-block;
    }

    .page-8k8-slot__feature-icon img {
      width: 100px; /* Min size 200x200, so this is just for display */
      height: 100px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

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

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

    @media (max-width: 768px) {
      .page-8k8-slot__features-grid {
        grid-template-columns: 1fr;
      }
      .page-8k8-slot__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

    /* Game Providers Section */
    .page-8k8-slot__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-slot__provider-item {
      background-color: var(--background-dark);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: transform 0.3s ease;
      border: 1px solid var(--border-color);
      box-sizing: border-box; /* Important for responsive lists */
    }

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

    .page-8k8-slot__provider-logo {
      width: 120px; /* Min size 200x200, so this is just for display */
      height: 120px;
      object-fit: contain;
      margin-bottom: 10px;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-slot__provider-name {
      color: var(--primary-color);
      font-weight: bold;
      font-size: 1.1em;
    }

    @media (max-width: 768px) {
      .page-8k8-slot__providers-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
      }
      .page-8k8-slot__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

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

    .page-8k8-slot__step-item {
      background-color: var(--background-dark);
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: left;
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      transition: transform 0.3s ease;
      border: 1px solid var(--border-color);
      box-sizing: border-box; /* Important for responsive lists */
    }

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

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

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

    .page-8k8-slot__step-description {
      color: #b0b0b0;
      font-size: 0.95em;
      word-wrap: break-word !important; /* Ensure text wraps */
      overflow-wrap: break-word !important;
    }

    @media (max-width: 768px) {
      .page-8k8-slot__steps-list {
        flex-direction: column;
        align-items: center;
        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__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

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

    .page-8k8-slot__promo-card {
      background-color: var(--background-dark);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease;
      border: 1px solid var(--border-color);
      box-sizing: border-box; /* Important for responsive lists */
    }

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

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

    .page-8k8-slot__promo-content {
      padding: 25px;
    }

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

    .page-8k8-slot__promo-description {
      color: #b0b0b0;
      font-size: 0.95em;
      margin-bottom: 20px;
    }

    .page-8k8-slot__promo-button {
      background-color: var(--accent-color);
      color: var(--text-color);
      padding: 10px 20px;
      font-size: 1em;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: inline-block;
      font-weight: bold;
      text-decoration: none;
    }

    .page-8k8-slot__promo-button:hover {
      background-color: #e03c00;
    }

    @media (max-width: 768px) {
      .page-8k8-slot__promo-cards {
        grid-template-columns: 1fr;
      }
      .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;
      }
      .page-8k8-slot__promo-image {
        max-height: 180px;
      }
    }

    /* FAQ Section */
    .page-8k8-slot__faq-section {
      background-color: var(--background-dark);
      padding: 60px 0;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

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

    .page-8k8-slot__faq-item {
      background-color: var(--background-light);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--border-color);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

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

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

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

    .page-8k8-slot__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      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); /* Changes '+' to 'x' or similar, visually indicates open */
    }

    .page-8k8-slot__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      color: #b0b0b0;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: left;
    }

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

    .page-8k8-slot__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
      word-wrap: break-word !important; /* Ensure text wraps */
      overflow-wrap: break-word !important;
    }

    @media (max-width: 768px) {
      .page-8k8-slot__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }
      .page-8k8-slot__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-slot__faq-answer {
        font-size: 0.9em;
        padding: 0 10px;
      }
      .page-8k8-slot__faq-item.active .page-8k8-slot__faq-answer {
        padding: 15px 10px !important;
      }
    }

    /* General responsive adjustments */
    @media (max-width: 480px) {
      .page-8k8-slot__heading {
        font-size: 2em;
      }
      .page-8k8-slot__subheading {
        font-size: 1.5em;
      }
      .page-8k8-slot__paragraph {
        font-size: 1em;
      }
      .page-8k8-slot__section {
        padding: 40px 0;
      }
    }
  