
    /* Base styles for the page-8k8-slot */
    .page-8k8-slot {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    /* Ensure good contrast for all text elements */
    .page-8k8-slot h1,
    .page-8k8-slot h2,
    .page-8k8-slot h3,
    .page-8k8-slot p,
    .page-8k8-slot li,
    .page-8k8-slot__button {
      color: #222; /* Darker text for better contrast */
    }
    
    .page-8k8-slot__hero-section {
      position: relative;
      padding: 10px 0 60px 0; /* Small top padding, assuming body handles header offset */
      background-color: #1a1a1a; /* Dark background for hero */
      color: #fff;
      text-align: center;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

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

    .page-8k8-slot__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 0 20px;
    }

    .page-8k8-slot__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: #ffc107; /* Gold accent */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-slot__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-8k8-slot__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #ffc107;
      color: #1a1a1a;
      text-decoration: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none; /* Ensure it looks like a button */
      cursor: pointer; /* Indicate it's clickable */
    }

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

    .page-8k8-slot__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      margin-bottom: 40px;
    }

    .page-8k8-slot__section--dark {
      background-color: #333;
      color: #eee;
    }

    .page-8k8-slot__section--dark h2,
    .page-8k8-slot__section--dark h3,
    .page-8k8-slot__section--dark p,
    .page-8k8-slot__section--dark li {
      color: #eee;
    }

    .page-8k8-slot__heading {
      font-size: 2.5em;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-8k8-slot__heading--light {
      color: #ffc107;
    }

    .page-8k8-slot__heading::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: #ffc107;
      margin: 15px auto 0;
      border-radius: 2px;
    }

    .page-8k8-slot__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

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

    .page-8k8-slot__card {
      background-color: #f9f9f9;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
    }

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

    .page-8k8-slot__card-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      border-bottom: 1px solid #eee;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
    }

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

    .page-8k8-slot__card-title {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: #1a1a1a;
    }

    .page-8k8-slot__card-description {
      font-size: 1em;
      color: #555;
      margin-bottom: 20px;
    }

    .page-8k8-slot__features-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-8k8-slot__feature-item {
      background-color: #f0f0f0;
      padding: 20px;
      border-radius: 8px;
      text-align: left;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Crucial for responsive list items */
      color: #333;
    }

    .page-8k8-slot__feature-item h3 {
      font-size: 1.3em;
      color: #ffc107;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-slot__feature-item p {
      font-size: 0.95em;
      color: #555;
    }

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

    .page-8k8-slot__step-item {
      background-color: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      flex: 1 1 300px;
      max-width: 350px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
      position: relative;
      color: #333;
    }

    .page-8k8-slot__step-number {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ffc107;
      color: #1a1a1a;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.4em;
      font-weight: bold;
      border: 3px solid #fff;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-slot__step-title {
      font-size: 1.6em;
      margin-top: 15px;
      margin-bottom: 15px;
      color: #1a1a1a;
    }

    .page-8k8-slot__step-description {
      font-size: 1em;
      color: #555;
    }

    /* FAQ Section Styles */
    .page-8k8-slot__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto 40px auto;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-slot__faq-item {
      margin-bottom: 15px;
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-8k8-slot__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: #f0f0f0;
      color: #1a1a1a;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-slot__faq-question h3 {
      margin: 0;
      padding: 0;
      font-size: 1.2em;
      color: #1a1a1a;
      pointer-events: none; /* Prevents text from blocking click event */
    }

    .page-8k8-slot__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      pointer-events: none; /* Prevents toggle icon from blocking click event */
      transition: transform 0.3s ease;
      color: #ffc107;
    }

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

    .page-8k8-slot__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #f9f9f9;
      color: #555;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1.05em;
    }

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

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

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

      .page-8k8-slot__heading {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-8k8-slot__section {
        padding: 40px 15px;
        margin-bottom: 30px;
      }

      .page-8k8-slot__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-slot__card-image {
        height: 200px;
      }

      .page-8k8-slot__card-title {
        font-size: 1.3em;
      }

      .page-8k8-slot__features-list {
        grid-template-columns: 1fr;
        gap: 15px;
        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__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important; /* Adjust padding to avoid too much spacing */
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-slot__feature-item h3 {
        font-size: 1.1em;
      }

      .page-8k8-slot__feature-item p {
        font-size: 0.9em;
      }

      .page-8k8-slot__steps-list {
        flex-direction: column;
        gap: 20px;
        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 {
        max-width: 100% !important;
        width: 100% !important;
        padding: 25px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-slot__step-title {
        font-size: 1.4em;
      }

      .page-8k8-slot__faq-section {
        padding: 40px 15px;
      }

      .page-8k8-slot__faq-question {
        padding: 15px;
        font-size: 1.1em;
      }

      .page-8k8-slot__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-slot__faq-answer {
        padding: 15px !important;
        font-size: 0.95em;
      }

      /* Image responsiveness */
      .page-8k8-slot img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-8k8-slot__card-image {
        max-width: 100% !important;
        height: auto !important; /* Allow auto height on mobile */
      }
    }
  