
    /* Page-specific CSS for 8k8 Link */
    .page-8k8-link {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Adjust for fixed header, 10px for visual separation */
    }

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

    .page-8k8-link__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* 8k8 brand colors */
      color: #fff;
      text-align: center;
      padding: 80px 20px;
      border-radius: 10px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-link__hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: rgba(255, 255, 255, 0.1);
      transform: rotate(30deg);
      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: 15px;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-link__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      font-weight: 300;
    }

    .page-8k8-link__cta-button {
      display: inline-block;
      background-color: #ffcc00; /* Bright gold for CTA */
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

    .page-8k8-link__section {
      background-color: #fff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-link__section-title {
      font-size: 2.5em;
      color: #1a2a6c;
      text-align: center;
      margin-bottom: 30px;
      font-weight: 600;
    }

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

    .page-8k8-link__image-wrapper {
      text-align: center;
      margin: 30px 0;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-link__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;
    }

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

    .page-8k8-link__feature-card {
      background-color: #f9f9f9;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

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

    .page-8k8-link__feature-icon {
      width: 250px; /* Min size 200x200 */
      height: auto;
      margin-bottom: 15px;
      border-radius: 5px;
    }

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

    .page-8k8-link__game-providers,
    .page-8k8-link__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-link__provider-logo,
    .page-8k8-link__payment-logo {
      width: 200px; /* Min size 200x200 */
      height: auto;
      object-fit: contain;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    }

    /* FAQ Section */
    .page-8k8-link__faq-section {
      background-color: #f0f4f8;
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      margin-top: 30px;
    }

    .page-8k8-link__faq-title {
      font-size: 2.5em;
      color: #1a2a6c;
      text-align: center;
      margin-bottom: 30px;
      font-weight: 600;
    }

    .page-8k8-link__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      border: 1px solid #e0e0e0;
    }

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

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

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

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

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

    .page-8k8-link__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;
      background-color: #fff;
      color: #555;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-link__container {
        padding: 15px;
      }

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

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

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

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

      .page-8k8-link__section {
        padding: 30px 20px;
        margin-bottom: 20px;
      }

      .page-8k8-link__section-title,
      .page-8k8-link__faq-title {
        font-size: 2em;
      }

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

      /* List item responsive requirements */
      .page-8k8-link__feature-grid {
        grid-template-columns: 1fr;
      }
      .page-8k8-link__feature-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjusted padding */
      }
      .page-8k8-link__feature-title {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .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;
      }
      .page-8k8-link__faq-question {
        padding: 12px 15px;
        font-size: 1.1em;
      }
      .page-8k8-link__faq-answer {
        padding: 15px 15px !important; /* Adjusted padding */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-link__game-providers,
      .page-8k8-link__payment-methods {
        gap: 15px;
      }

      .page-8k8-link__provider-logo,
      .page-8k8-link__payment-logo {
        width: 150px;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-link__hero-title {
        font-size: 2em;
      }
      .page-8k8-link__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-link__section-title,
      .page-8k8-link__faq-title {
        font-size: 1.8em;
      }
      .page-8k8-link__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-8k8-link__provider-logo,
      .page-8k8-link__payment-logo {
        width: 120px;
      }
    }
  