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

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

    .page-8k8-slot__section {
      background-color: #fff;
      margin-bottom: 30px;
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Ensure padding doesn't push elements out */
    }

    .page-8k8-slot__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      text-align: center;
      padding: 10px 0 60px 0; /* Adjusted padding-top to 10px as per requirement */
      border-radius: 0 0 15px 15px;
      margin-bottom: 30px;
      position: relative;
      overflow: hidden;
    }

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

    .page-8k8-slot__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      color: #ffe0b2; /* Light gold for contrast */
    }

    .page-8k8-slot__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      color: #fff;
    }

    .page-8k8-slot__button {
      display: inline-block;
      background-color: #ffc107; /* Gold/Yellow for action */
      color: #1a2a6c; /* Dark blue for contrast */
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none; /* Ensure it looks like a button */
      cursor: pointer;
    }

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

    .page-8k8-slot__image-wrapper {
      text-align: center;
      margin-top: 30px;
    }

    .page-8k8-slot__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

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

    .page-8k8-slot__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffc107;
      border-radius: 2px;
    }

    .page-8k8-slot__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #555;
    }

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

    .page-8k8-slot__game-card {
      background-color: #fefefe;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-slot__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-8k8-slot__game-title {
      font-size: 1.4em;
      color: #1a2a6c;
      margin: 15px 10px 5px 10px;
    }

    .page-8k8-slot__game-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px 15px 15px;
    }

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

    .page-8k8-slot__feature-item {
      background-color: #e3f2fd; /* Light blue */
      border-left: 5px solid #2196f3; /* Blue accent */
      padding: 20px;
      border-radius: 8px;
      font-size: 1.1em;
      color: #3f51b5; /* Darker blue text */
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

    .page-8k8-slot__feature-item strong {
      color: #1a2a6c;
    }

    /* FAQ Section Styles */
    .page-8k8-slot__faq-list {
      margin-top: 30px;
      border-top: 1px solid #eee;
      padding-top: 20px;
    }

    .page-8k8-slot__faq-item {
      background-color: #fefefe;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

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

    .page-8k8-slot__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

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

    .page-8k8-slot__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
      transition: transform 0.3s ease;
    }

    .page-8k8-slot__faq-item.active .page-8k8-slot__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus visual effect */
    }

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

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

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

    @media (max-width: 768px) {
      .page-8k8-slot__container {
        padding: 15px;
      }

      .page-8k8-slot__section {
        padding: 25px;
        margin-bottom: 20px;
      }

      .page-8k8-slot__hero-title {
        font-size: 2.2em;
      }

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

      .page-8k8-slot__button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

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

      .page-8k8-slot__game-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
        gap: 20px;
      }

      .page-8k8-slot__game-image {
        height: 180px;
      }

      .page-8k8-slot__game-title {
        font-size: 1.2em;
      }

      .page-8k8-slot__game-description {
        font-size: 0.9em;
      }

      .page-8k8-slot__features-list {
        grid-template-columns: 1fr; /* Stack features on mobile */
        gap: 15px;
      }

      .page-8k8-slot__feature-item {
        padding: 15px;
        font-size: 1em;
        width: 100% !important; /* Enforce full width */
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

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

      .page-8k8-slot__faq-toggle {
        font-size: 1.5em;
      }

      .page-8k8-slot__faq-answer {
        padding: 15px 15px !important; /* Adjust padding for mobile */
        font-size: 1em;
      }

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

      .page-8k8-slot__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

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