
    /* Base styles for the page-8k8-link scope */
    .page-8k8-link {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 40px; /* Ensure space before footer */
      padding-top: 10px; /* Minimal top padding, assuming body already handles header offset */
    }

    /* Section styling */
    .page-8k8-link__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }

    .page-8k8-link__section--dark {
      background-color: #2a0047; /* Dark purple, inspired by casino theme */
      color: #fff;
    }

    .page-8k8-link__section--dark h2,
    .page-8k8-link__section--dark h3 {
      color: #ffcc00; /* Gold for headings */
    }

    .page-8k8-link__section--dark p {
      color: #e0e0e0;
    }

    .page-8k8-link__section-title {
      font-size: 2.5em;
      color: #2a0047; /* Dark purple */
      text-align: center;
      margin-bottom: 30px;
      font-weight: 700;
    }

    .page-8k8-link__section--dark .page-8k8-link__section-title {
      color: #ffcc00; /* Gold */
    }

    .page-8k8-link__section-subtitle {
      font-size: 1.8em;
      color: #4a0072; /* Slightly lighter purple */
      margin-bottom: 20px;
      font-weight: 600;
    }

    .page-8k8-link__text-content {
      font-size: 1.1em;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    /* Hero Section */
    .page-8k8-link__hero-section {
      background: linear-gradient(135deg, #4a0072, #2a0047); /* Purple gradient */
      color: #fff;
      text-align: center;
      padding: 80px 20px;
      border-radius: 8px;
      margin-bottom: 30px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 400px;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-link__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('[GALLERY:abstract:1920x1080:casino,background,abstract_pattern]') no-repeat center center/cover;
      opacity: 0.1;
      z-index: 0;
    }

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

    .page-8k8-link__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      font-weight: 800;
      color: #ffcc00; /* Gold */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-link__hero-description {
      font-size: 1.4em;
      margin-bottom: 40px;
      font-weight: 300;
      color: #e0e0e0;
    }

    .page-8k8-link__cta-button {
      display: inline-block;
      background-color: #ffcc00; /* Gold */
      color: #2a0047; /* Dark purple */
      padding: 18px 40px;
      font-size: 1.3em;
      font-weight: 700;
      border-radius: 50px;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-link__cta-button:hover {
      background-color: #e6b800; /* Darker gold */
      transform: translateY(-3px);
    }

    /* Image Styling */
    .page-8k8-link__image-container {
      text-align: center;
      margin: 30px 0;
    }

    .page-8k8-link__content-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      display: block;
      margin: 0 auto;
    }

    /* Feature List */
    .page-8k8-link__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-link__feature-item {
      background-color: #f5f5f5;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: center;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-link__feature-item-title {
      font-size: 1.4em;
      color: #4a0072;
      margin-top: 15px;
      margin-bottom: 10px;
    }

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

    .page-8k8-link__feature-icon {
      width: 250px; /* Min size for image */
      height: auto;
      max-width: 100%;
      margin-bottom: 15px;
    }

    /* How-To Steps */
    .page-8k8-link__steps-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 0;
      list-style: none;
    }

    .page-8k8-link__step-item {
      background-color: #f0f8ff; /* Light blue background */
      padding: 25px;
      border-left: 5px solid #4a0072;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: flex-start;
      gap: 20px;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-link__step-number {
      font-size: 2em;
      font-weight: 700;
      color: #ffcc00;
      background-color: #4a0072;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .page-8k8-link__step-content h3 {
      font-size: 1.5em;
      color: #4a0072;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-link__step-content p {
      color: #555;
      margin-bottom: 0;
    }

    /* Promotions Section */
    .page-8k8-link__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-8k8-link__promo-card {
      background-color: #fff;
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

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

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

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

    .page-8k8-link__promo-title {
      font-size: 1.5em;
      color: #4a0072;
      margin-bottom: 10px;
    }

    .page-8k8-link__promo-description {
      font-size: 1em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-8k8-link__promo-button {
      background-color: #ffcc00;
      color: #2a0047;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      display: inline-block; /* Make it behave like a button */
    }

    .page-8k8-link__promo-button:hover {
      background-color: #e6b800;
    }

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

    .page-8k8-link__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 15px;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-link__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-8k8-link__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      color: #4a0072;
      font-weight: 600;
      transition: color 0.3s ease;
    }

    .page-8k8-link__faq-question:hover {
      color: #ffcc00;
    }

    .page-8k8-link__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-link__faq-toggle {
      font-size: 1.5em;
      font-weight: 700;
      color: #ffcc00;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

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

    .page-8k8-link__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding */
      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: 1em;
      line-height: 1.7;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-link {
        padding-top: 0; /* body padding-top should handle this */
      }
      .page-8k8-link__section {
        padding: 30px 15px;
        margin-bottom: 20px;
      }

      .page-8k8-link__hero-section {
        padding: 60px 15px;
        min-height: 300px;
      }

      .page-8k8-link__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-link__hero-description {
        font-size: 1.1em;
      }

      .page-8k8-link__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
      }

      .page-8k8-link__section-title {
        font-size: 2em;
        margin-bottom: 20px;
      }

      .page-8k8-link__section-subtitle {
        font-size: 1.5em;
      }

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

      /* List item responsive optimization */
      .page-8k8-link__feature-list,
      .page-8k8-link__steps-list,
      .page-8k8-link__promo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        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-link__feature-item,
      .page-8k8-link__step-item,
      .page-8k8-link__promo-card,
      .page-8k8-link__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-link__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-8k8-link__step-number {
        margin-bottom: 10px;
      }

      .page-8k8-link__faq-section {
        padding: 30px 15px;
      }

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

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

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

      /* Image responsive optimization */
      .page-8k8-link__content-image,
      .page-8k8-link__feature-icon,
      .page-8k8-link__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-link__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-link__hero-title {
        font-size: 2em;
      }
      .page-8k8-link__hero-description {
        font-size: 1em;
      }
      .page-8k8-link__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  