
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #000080; /* Navy Blue */
      --accent-color: #FF4500; /* OrangeRed */
      --text-dark: #333333;
      --text-light: #ffffff;
      --background-light: #f4f4f4;
      --background-dark: #1a1a1a;
      --header-offset: 122px; /* Placeholder for shared header height */
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      background-color: var(--background-light);
      margin: 0;
      padding: 0;
      padding-top: var(--header-offset); /* Ensure content is below fixed header */
      direction: ltr;
    }

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

    /* Hero Section */
    .page-8k8-slot__hero-section {
      position: relative;
      color: var(--text-light);
      text-align: center;
      padding: 10px 0 60px 0; /* Adjusted padding-top to avoid double offset */
      background-color: var(--background-dark);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-slot__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 1;
      max-width: 100%; /* Important for image responsiveness */
      height: auto;
      box-sizing: border-box;
    }

    .page-8k8-slot__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
      padding: 40px 20px;
      box-sizing: border-box;
    }

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

    .page-8k8-slot__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--text-light);
    }

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

    .page-8k8-slot__cta-button:hover {
      background-color: #e63900;
      transform: translateY(-3px);
    }

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

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

    .page-8k8-slot__section-title {
      font-size: 2.2em;
      margin-bottom: 40px;
      color: var(--secondary-color);
    }

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

    .page-8k8-slot__section-description {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 40px auto;
    }

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

    .page-8k8-slot__feature-item {
      background-color: var(--text-light);
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-8k8-slot__section--dark .page-8k8-slot__feature-item {
      background-color: #2a2a2a;
      color: var(--text-light);
    }

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

    .page-8k8-slot__feature-icon {
      width: 60px; /* Container size for the scaled image */
      height: 60px;
      margin: 0 auto 20px auto; /* Center the icon */
      display: flex; /* Use flex to center the image inside */
      justify-content: center;
      align-items: center;
      max-width: 100%;
      box-sizing: border-box;
    }
    .page-8k8-slot__feature-icon img {
      max-width: 100%;
      height: auto;
      object-fit: contain;
      box-sizing: border-box;
    }

    .page-8k8-slot__feature-title {
      font-size: 1.4em;
      margin-bottom: 15px;
      color: var(--secondary-color);
      text-align: center;
    }

    .page-8k8-slot__section--dark .page-8k8-slot__feature-title {
      color: var(--primary-color);
    }

    .page-8k8-slot__feature-description {
      font-size: 1em;
      color: var(--text-dark);
      text-align: center;
    }

    .page-8k8-slot__section--dark .page-8k8-slot__feature-description {
      color: #cccccc;
    }

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

    .page-8k8-slot__game-card {
      background-color: var(--text-light);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      box-sizing: border-box;
    }

    .page-8k8-slot__section--dark .page-8k8-slot__game-card {
      background-color: #2a2a2a;
    }

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

    .page-8k8-slot__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

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

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

    .page-8k8-slot__section--dark .page-8k8-slot__game-title {
      color: var(--primary-color);
    }

    .page-8k8-slot__game-description {
      font-size: 0.95em;
      color: var(--text-dark);
      margin-bottom: 15px;
    }

    .page-8k8-slot__section--dark .page-8k8-slot__game-description {
      color: #cccccc;
    }

    .page-8k8-slot__play-button {
      display: block;
      background-color: var(--primary-color);
      color: var(--text-dark);
      padding: 10px 15px;
      border-radius: 5px;
      text-align: center;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-slot__play-button:hover {
      background-color: #e6c200;
    }

    /* How It Works 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(--text-light);
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      width: calc(33% - 20px); /* Adjust for gap */
      min-width: 280px;
      box-sizing: border-box;
      text-align: left;
      transition: transform 0.3s ease;
    }
    .page-8k8-slot__section--dark .page-8k8-slot__step-item {
      background-color: #2a2a2a;
      color: var(--text-light);
    }

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

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

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

    .page-8k8-slot__section--dark .page-8k8-slot__step-title {
      color: var(--primary-color);
    }

    .page-8k8-slot__step-description {
      font-size: 1em;
      color: var(--text-dark);
    }

    .page-8k8-slot__section--dark .page-8k8-slot__step-description {
      color: #cccccc;
    }

    /* 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-logo {
      background-color: var(--text-light);
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      box-sizing: border-box;
    }
    .page-8k8-slot__section--dark .page-8k8-slot__provider-logo {
      background-color: #2a2a2a;
    }

    .page-8k8-slot__provider-logo img {
      max-width: 90%;
      max-height: 70px;
      object-fit: contain;
      height: auto;
      box-sizing: border-box;
    }

    /* FAQ Section */
    .page-8k8-slot__faq-section {
      padding: 60px 0;
      text-align: center;
      background-color: var(--background-light);
    }

    .page-8k8-slot__faq-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

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

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

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

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

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

    .page-8k8-slot__faq-item.active .page-8k8-slot__faq-toggle {
      transform: rotate(45deg);
    }

    .page-8k8-slot__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: var(--text-light);
      color: var(--text-dark);
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
      box-sizing: border-box;
    }

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

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

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

      .page-8k8-slot__section-title {
        font-size: 1.8em;
      }

      .page-8k8-slot__features-grid,
      .page-8k8-slot__games-grid,
      .page-8k8-slot__providers-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-slot__feature-item,
      .page-8k8-slot__game-card,
      .page-8k8-slot__provider-logo {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px; /* Adjust padding for mobile */
        padding-right: 15px; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-slot__steps-list {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !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;
        padding-left: 15px; /* Adjust padding for mobile */
        padding-right: 15px; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !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: 15px 20px;
      }

      .page-8k8-slot__game-image,
      .page-8k8-slot__hero-image,
      .page-8k8-slot__feature-icon img,
      .page-8k8-slot__provider-logo img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-slot__hero-section {
        padding-bottom: 40px;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-slot__hero-title {
        font-size: 1.8em;
      }
      .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: 1.6em;
      }
    }
  