
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #333333; /* Dark Grey */
      --accent-color: #FF4500; /* Orange Red */
      --background-dark: #1a1a1a;
      --background-light: #ffffff;
      --text-light: #f0f0f0;
      --text-dark: #333333;
      --border-color: #444444;
      --button-bg: #FFD700;
      --button-text: #1a1a1a;
      --button-hover-bg: #e6c200;
    }

    /* Fallback for header offset if shared.css doesn't provide it */
    .page-8k8-slot {
      padding-top: var(--header-offset, 122px); /* Fallback to 122px if not defined */
    }

    .page-8k8-slot__hero-section {
      position: relative;
      width: 100%;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--text-light);
      overflow: hidden;
      padding: 10px 20px 60px; /* Small top padding, relying on body for main offset */
      box-sizing: border-box;
    }

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

    .page-8k8-slot__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      background-color: rgba(0, 0, 0, 0.6);
      padding: 40px;
      border-radius: 10px;
    }

    .page-8k8-slot__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--primary-color);
      line-height: 1.2;
    }

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

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

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

    .page-8k8-slot__section {
      padding: 60px 20px;
      background-color: var(--background-dark);
      color: var(--text-light);
      text-align: center;
    }

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

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

    .page-8k8-slot__section-text {
      font-size: 1.1em;
      line-height: 1.6;
      max-width: 800px;
      margin: 0 auto 30px;
    }

    .page-8k8-slot__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

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

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

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

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

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

    .page-8k8-slot__game-description {
      font-size: 1em;
      color: var(--text-light);
      line-height: 1.5;
      margin-bottom: 20px;
    }

    .page-8k8-slot__game-provider {
      font-size: 0.9em;
      color: var(--primary-color);
      font-weight: bold;
      margin-top: 15px;
    }

    .page-8k8-slot__features-list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 800px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-8k8-slot__feature-item {
      background-color: var(--secondary-color);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      flex: 1 1 calc(50% - 20px);
      min-width: 280px;
      text-align: left;
      box-sizing: border-box;
      border: 1px solid var(--border-color);
    }

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

    .page-8k8-slot__feature-description {
      font-size: 1em;
      color: var(--text-light);
      line-height: 1.5;
    }

    .page-8k8-slot__faq-section {
      padding: 60px 20px;
      background-color: var(--background-dark);
      color: var(--text-light);
      text-align: center;
    }

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

    .page-8k8-slot__faq-item {
      background-color: var(--secondary-color);
      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;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--primary-color);
      background-color: var(--secondary-color);
      border-bottom: 1px solid var(--border-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

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

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

    .page-8k8-slot__faq-item.active .page-8k8-slot__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .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;
      color: var(--text-light);
      background-color: #2a2a2a;
    }

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

    .page-8k8-slot__faq-answer p {
      margin: 0;
      line-height: 1.6;
    }

    .page-8k8-slot__promo-banner {
      background-color: var(--accent-color);
      color: var(--text-light);
      padding: 40px 20px;
      text-align: center;
      margin-top: 60px;
    }

    .page-8k8-slot__promo-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: var(--text-light);
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-slot__hero-title {
        font-size: 3em;
      }
      .page-8k8-slot__hero-description {
        font-size: 1.2em;
      }
      .page-8k8-slot__section-title {
        font-size: 2.5em;
      }
      .page-8k8-slot__game-title {
        font-size: 1.6em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-slot__hero-section {
        min-height: 400px;
        padding: 10px 15px 40px;
      }
      .page-8k8-slot__hero-content {
        padding: 30px;
      }
      .page-8k8-slot__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-slot__hero-description {
        font-size: 1em;
      }
      .page-8k8-slot__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-8k8-slot__section {
        padding: 40px 15px;
      }
      .page-8k8-slot__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }
      .page-8k8-slot__section-text {
        font-size: 1em;
      }
      .page-8k8-slot__grid {
        grid-template-columns: 1fr;
      }
      .page-8k8-slot__game-image {
        height: 200px;
      }
      .page-8k8-slot__game-content {
        padding: 20px;
      }
      .page-8k8-slot__game-title {
        font-size: 1.4em;
      }
      .page-8k8-slot__feature-item {
        flex: 1 1 100%;
        min-width: unset;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-slot__features-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-slot__feature-title {
        font-size: 1.3em;
      }
      .page-8k8-slot__faq-question {
        font-size: 1em;
        padding: 15px 20px;
      }
      .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__promo-banner {
        padding: 30px 15px;
      }
      .page-8k8-slot__promo-title {
        font-size: 2em;
      }
      .page-8k8-slot__promo-description {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-slot__hero-title {
        font-size: 2em;
      }
      .page-8k8-slot__hero-content {
        padding: 20px;
      }
      .page-8k8-slot__section-title {
        font-size: 1.8em;
      }
    }
  