
    :root {
      --primary-color: #FFD700; /* Gold/Yellow */
      --secondary-color: #007bff; /* Blue */
      --background-dark: #1a1a2e; /* Dark background */
      --background-light: #24243e; /* Slightly lighter dark */
      --text-light: #f0f0f0; /* Light text */
      --text-dark: #333333; /* Dark text for contrast */
      --accent-color: #e94560; /* Reddish accent */
      --border-color: #3f3f5f; /* Border color */
      --button-hover-color: #FFC107; /* Lighter gold for hover */
      --header-offset: 122px; /* Default offset if not provided by shared.css */
    }

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

    /* General Section Styling */
    .page-8k8-slot__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      background-color: var(--background-light);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

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

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

    .page-8k8-slot__heading {
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-8k8-slot__subheading {
      color: var(--text-light);
      text-align: center;
      margin-bottom: 20px;
      font-size: 1.5em;
    }

    .page-8k8-slot__text-center {
      text-align: center;
    }

    .page-8k8-slot__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--primary-color);
      color: var(--background-dark);
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      text-align: center;
    }

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

    /* Hero Section */
    .page-8k8-slot__hero-section {
      text-align: center;
      padding: 80px 20px;
      background-color: var(--background-dark);
      position: relative;
      overflow: hidden;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-8k8-slot__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
      max-width: 100%; /* Image responsiveness */
      height: auto; /* Image responsiveness */
    }

    .page-8k8-slot__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

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

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

    /* Features 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: 25px;
      border-radius: 8px;
      text-align: center;
      border: 1px solid var(--border-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-8k8-slot__feature-icon {
      width: 200px; /* Min size */
      height: 200px; /* Min size */
      margin-bottom: 15px;
      object-fit: contain;
      max-width: 100%; /* Image responsiveness */
      height: auto; /* Image responsiveness */
    }

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

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

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

    .page-8k8-slot__provider-item {
      background-color: var(--background-dark);
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      border: 1px solid var(--border-color);
      transition: transform 0.2s ease;
    }

    .page-8k8-slot__provider-item:hover {
      transform: scale(1.03);
    }

    .page-8k8-slot__provider-logo {
      width: 200px; /* Min size */
      height: 100px; /* Min size, maintain aspect ratio if needed */
      object-fit: contain;
      max-width: 100%; /* Image responsiveness */
      height: auto; /* Image responsiveness */
    }

    .page-8k8-slot__provider-name {
      color: var(--text-light);
      margin-top: 10px;
      font-size: 0.9em;
      font-weight: bold;
    }

    /* Promotions Section */
    .page-8k8-slot__promo-card {
      background-color: var(--background-dark);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      padding: 25px;
      margin-bottom: 25px;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .page-8k8-slot__promo-image {
      width: 250px; /* Min size */
      height: 150px; /* Min size */
      object-fit: cover;
      border-radius: 5px;
      flex-shrink: 0;
      max-width: 100%; /* Image responsiveness */
      height: auto; /* Image responsiveness */
    }

    .page-8k8-slot__promo-content {
      flex-grow: 1;
    }

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

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

    /* Payment Methods Section */
    .page-8k8-slot__payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 15px;
      margin-top: 30px;
    }

    .page-8k8-slot__payment-item {
      background-color: var(--background-dark);
      padding: 10px;
      border-radius: 5px;
      text-align: center;
      border: 1px solid var(--border-color);
    }

    .page-8k8-slot__payment-logo {
      width: 200px; /* Min size */
      height: 60px; /* Min size, maintain aspect ratio */
      object-fit: contain;
      max-width: 100%; /* Image responsiveness */
      height: auto; /* Image responsiveness */
    }

    /* FAQ Section */
    .page-8k8-slot__faq-list {
      margin-top: 30px;
    }

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

    .page-8k8-slot__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: var(--background-light);
      border-bottom: 1px solid var(--border-color);
      transition: background-color 0.3s ease;
    }

    .page-8k8-slot__faq-question:hover {
      background-color: var(--background-dark);
    }

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

    .page-8k8-slot__faq-toggle {
      font-size: 1.8em;
      color: var(--primary-color);
      font-weight: bold;
      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);
    }

    .page-8k8-slot__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: var(--text-light);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Call to Action */
    .page-8k8-slot__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: var(--background-light);
      border-radius: 8px;
      margin-top: 40px;
    }

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

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

    /* 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__heading {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-slot__section {
        padding: 30px 15px;
      }
      .page-8k8-slot__hero-section {
        padding: 60px 15px;
      }
      .page-8k8-slot__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-slot__hero-description {
        font-size: 1em;
      }
      .page-8k8-slot__features-grid,
      .page-8k8-slot__providers-grid,
      .page-8k8-slot__payments-grid {
        grid-template-columns: 1fr; /* Stack columns */
      }
      .page-8k8-slot__promo-card {
        flex-direction: column;
        text-align: center;
      }
      .page-8k8-slot__promo-image {
        width: 100%;
        max-width: 300px; /* Keep image from being too wide */
        height: auto;
      }
      .page-8k8-slot__promo-content {
        width: 100%;
      }
      .page-8k8-slot__feature-item,
      .page-8k8-slot__provider-item,
      .page-8k8-slot__payment-item,
      .page-8k8-slot__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
      }
      .page-8k8-slot__features-grid,
      .page-8k8-slot__providers-grid,
      .page-8k8-slot__payments-grid,
      .page-8k8-slot__faq-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__faq-answer {
        padding: 15px 15px !important; /* Adjust padding */
      }
      .page-8k8-slot__faq-item.active .page-8k8-slot__faq-answer {
        padding: 15px 15px !important; /* Adjust padding */
      }
      .page-8k8-slot__faq-question {
        padding: 15px !important;
      }
      .page-8k8-slot__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8-slot__faq-toggle {
        font-size: 1.5em;
      }
      .page-8k8-slot__button {
        width: 100%;
        padding: 15px 20px;
      }
      /* Ensure all images are responsive */
      .page-8k8-slot__hero-image,
      .page-8k8-slot__feature-icon,
      .page-8k8-slot__provider-logo,
      .page-8k8-slot__promo-image,
      .page-8k8-slot__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-slot__promo-description,
      .page-8k8-slot__feature-description,
      .page-8k8-slot__provider-name,
      .page-8k8-slot__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important; /* Specifically for long keywords */
      }
    }

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