
    /* Page-specific CSS for 8k8 Slot */
    :root {
      --page-8k8-slot-primary-color: #FFD700; /* Gold */
      --page-8k8-slot-secondary-color: #1A1A2E; /* Dark Blue/Purple */
      --page-8k8-slot-text-color: #E0E0E0;
      --page-8k8-slot-dark-text: #333;
      --page-8k8-slot-background-light: #282C34;
      --page-8k8-slot-background-dark: #1A1A2E;
      --page-8k8-slot-border-color: #555;
      --page-8k8-slot-button-hover: #FFC107;
    }

    .page-8k8-slot {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-slot-text-color);
      background-color: var(--page-8k8-slot-background-dark);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: var(--header-offset, 122px); /* Fallback for header spacing */
    }

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

    .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,philippines,gaming]') center center no-repeat;
      background-size: cover;
      color: #FFF;
      text-align: center;
      padding: 60px 20px; /* General padding, not for header offset */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      box-sizing: border-box;
      position: relative;
    }

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

    .page-8k8-slot__hero-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 800px;
    }

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

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

    .page-8k8-slot__section {
      padding: 60px 20px;
      text-align: center;
      background-color: var(--page-8k8-slot-background-light);
      border-bottom: 1px solid var(--page-8k8-slot-border-color);
      box-sizing: border-box;
    }

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

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

    .page-8k8-slot__section-title span {
      color: var(--page-8k8-slot-text-color);
    }

    .page-8k8-slot__text-content {
      max-width: 900px;
      margin: 0 auto 40px auto;
      font-size: 1.1em;
      color: var(--page-8k8-slot-text-color);
    }

    .page-8k8-slot__features-grid,
    .page-8k8-slot__game-showcase,
    .page-8k8-slot__promo-grid,
    .page-8k8-slot__steps-list,
    .page-8k8-slot__payment-methods,
    .page-8k8-slot__provider-list {
      display: grid;
      gap: 30px;
      margin-top: 40px;
      justify-content: center;
    }

    .page-8k8-slot__features-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-8k8-slot__feature-item {
      background-color: var(--page-8k8-slot-background-dark);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

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

    .page-8k8-slot__feature-icon {
      width: 250px; /* Enforce minimum 200px width */
      height: auto;
      margin-bottom: 20px;
      max-width: 100%;
      border-radius: 8px;
    }

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

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

    .page-8k8-slot__game-showcase,
    .page-8k8-slot__promo-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

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

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

    .page-8k8-slot__game-image,
    .page-8k8-slot__promo-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

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

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

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

    .page-8k8-slot__steps-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-slot__step-item {
      background-color: var(--page-8k8-slot-background-dark);
      padding: 25px;
      border-radius: 10px;
      margin: 15px;
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      position: relative;
      box-sizing: border-box;
      transition: transform 0.3s ease;
    }
    .page-8k8-slot__step-item:hover {
      transform: translateY(-8px);
    }

    .page-8k8-slot__step-number {
      font-size: 2.5em;
      color: var(--page-8k8-slot-primary-color);
      font-weight: bold;
      margin-bottom: 15px;
      position: absolute;
      top: 15px;
      right: 15px;
      opacity: 0.7;
    }

    .page-8k8-slot__step-title {
      font-size: 1.6em;
      color: var(--page-8k8-slot-primary-color);
      margin-bottom: 10px;
      padding-right: 50px; /* Make space for the number */
    }

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

    .page-8k8-slot__payment-methods,
    .page-8k8-slot__provider-list {
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjusted for smaller items */
      max-width: 900px;
      margin: 40px auto;
    }

    .page-8k8-slot__payment-item,
    .page-8k8-slot__provider-item {
      background-color: var(--page-8k8-slot-background-light);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
      min-height: 150px; /* Ensure sufficient height */
    }
    .page-8k8-slot__payment-item:hover,
    .page-8k8-slot__provider-item:hover {
      transform: translateY(-5px);
    }

    .page-8k8-slot__payment-icon,
    .page-8k8-slot__provider-logo {
      width: 250px; /* Enforce minimum 200px width */
      height: auto;
      max-width: 100%;
      margin-bottom: 10px;
      border-radius: 5px;
    }
    .page-8k8-slot__payment-name,
    .page-8k8-slot__provider-name {
      font-size: 1.1em;
      color: var(--page-8k8-slot-primary-color);
      font-weight: bold;
    }

    /* FAQ Section Styles */
    .page-8k8-slot__faq-section {
      background-color: var(--page-8k8-slot-background-light);
      padding: 60px 20px;
      text-align: center;
      box-sizing: border-box;
    }

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

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

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

    .page-8k8-slot__faq-question h3 {
      margin: 0;
      color: inherit;
      font-size: inherit;
      pointer-events: none; /* Prevent h3 from intercepting click */
      flex-grow: 1;
    }

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

    .page-8k8-slot__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from intercepting click */
    }

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

    .page-8k8-slot__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Adjusted padding for better visual */
      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(--page-8k8-slot-text-color);
      font-size: 1em;
      box-sizing: border-box;
    }

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

    /* General responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-slot__hero-section {
        padding: 80px 15px;
      }
      .page-8k8-slot__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-slot__hero-description {
        font-size: 1.1em;
      }
      .page-8k8-slot__section-title {
        font-size: 2em;
      }
      .page-8k8-slot__text-content {
        font-size: 1em;
      }
      .page-8k8-slot__features-grid,
      .page-8k8-slot__game-showcase,
      .page-8k8-slot__promo-grid,
      .page-8k8-slot__payment-methods,
      .page-8k8-slot__provider-list {
        grid-template-columns: 1fr; /* Single column layout for most grids */
        gap: 20px;
      }

      .page-8k8-slot__feature-item,
      .page-8k8-slot__game-card,
      .page-8k8-slot__promo-card,
      .page-8k8-slot__step-item,
      .page-8k8-slot__payment-item,
      .page-8k8-slot__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding: 20px !important; /* Adjust padding for mobile */
      }

      .page-8k8-slot__steps-list {
        flex-direction: column;
        align-items: center;
        padding: 0;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8k8-slot__step-item {
        margin: 10px 0;
        min-width: unset;
        max-width: 95%; /* Slightly less than 100% to avoid edge touching */
      }

      .page-8k8-slot__feature-icon,
      .page-8k8-slot__payment-icon,
      .page-8k8-slot__provider-logo {
        width: 200px !important; /* Enforce minimum 200px width for images */
        height: auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-slot__game-image,
      .page-8k8-slot__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-slot__faq-question {
        font-size: 1.1em;
        padding: 15px;
      }
      .page-8k8-slot__faq-answer {
        font-size: 0.95em;
        padding: 0 15px;
      }
      .page-8k8-slot__faq-item.active .page-8k8-slot__faq-answer {
        padding: 15px !important;
      }
      
      /* Ensure text wrapping for all list items and general content */
      .page-8k8-slot__feature-description,
      .page-8k8-slot__game-title,
      .page-8k8-slot__promo-description,
      .page-8k8-slot__step-description,
      .page-8k8-slot__payment-name,
      .page-8k8-slot__provider-name,
      .page-8k8-slot__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-slot__hero-title {
        font-size: 2em;
      }
      .page-8k8-slot__hero-description {
        font-size: 1em;
      }
      .page-8k8-slot__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-slot__section-title {
        font-size: 1.8em;
      }
      .page-8k8-slot__faq-question {
        font-size: 1em;
      }
    }
  