
    .page-8x-link {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Hero Section */
    .page-8x-link__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 10px 20px 40px; /* 10px top padding for header offset, then standard */
      background: linear-gradient(135deg, #1a1a2e, #0f0f1d);
      position: relative;
      overflow: hidden;
    }

    .page-8x-link__hero-content {
      max-width: 800px;
      z-index: 1;
    }

    .page-8x-link__hero-title {
      font-size: 2.5em;
      color: #ffc107; /* Gold accent */
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-8x-link__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
    }

    .page-8x-link__hero-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-8x-link__button {
      padding: 12px 25px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      color: #1a1a2e; /* Dark text for light buttons */
    }

    .page-8x-link__button--primary {
      background-color: #ffc107; /* Gold */
    }

    .page-8x-link__button--primary:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-8x-link__button--secondary {
      background-color: #6c757d; /* Grey */
      color: #fff;
    }

    .page-8x-link__button--secondary:hover {
      background-color: #5a6268;
      transform: translateY(-2px);
    }

    .page-8x-link__button--small {
      padding: 8px 15px;
      font-size: 0.9em;
      border-radius: 5px;
      color: #1a1a2e;
    }

    .page-8x-link__button--large {
      padding: 15px 30px;
      font-size: 1.1em;
      border-radius: 10px;
    }

    .page-8x-link__hero-image-wrapper {
      margin-top: 30px;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8x-link__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      display: block;
      margin: 0 auto;
    }

    /* General Section Styles */
    .page-8x-link__features-section,
    .page-8x-link__games-section,
    .page-8x-link__promotion-banner,
    .page-8x-link__about-section,
    .page-8x-link__payment-providers-section,
    .page-8x-link__faq-section,
    .page-8x-link__cta-bottom {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #22223b; /* Slightly lighter dark background */
      border-radius: 10px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .page-8x-link__section-title {
      font-size: 2em;
      color: #ffc107;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-8x-link__section-subtitle {
      font-size: 1.1em;
      text-align: center;
      color: #b0b0b0;
      margin-bottom: 40px;
    }

    /* Features Section */
    .page-8x-link__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-8x-link__feature-item {
      background-color: #2e2e4e;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

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

    .page-8x-link__feature-title {
      font-size: 1.4em;
      color: #ffc107;
      margin-bottom: 10px;
    }

    .page-8x-link__feature-description {
      font-size: 0.95em;
      color: #c0c0c0;
    }

    /* Games Section */
    .page-8x-link__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-8x-link__game-card {
      background-color: #2e2e4e;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-8x-link__game-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8x-link__game-title {
      font-size: 1.3em;
      color: #ffc107;
      margin-bottom: 10px;
    }

    .page-8x-link__game-description {
      font-size: 0.9em;
      color: #c0c0c0;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    /* Promotion Banner */
    .page-8x-link__promotion-banner {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background: linear-gradient(90deg, #3f0071, #8e2de2); /* Purple gradient */
      padding: 40px 20px;
    }

    .page-8x-link__promotion-content {
      max-width: 700px;
      margin-bottom: 30px;
    }

    .page-8x-link__promotion-title {
      font-size: 2.2em;
      color: #fff;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-8x-link__promotion-description {
      font-size: 1.1em;
      color: #e0e0e0;
      margin-bottom: 30px;
    }

    .page-8x-link__promotion-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    /* About Section */
    .page-8x-link__paragraph {
      font-size: 1em;
      color: #c0c0c0;
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-8x-link__paragraph strong {
      color: #ffc107;
    }

    /* Payment & Providers Section */
    .page-8x-link__sub-section-title {
      font-size: 1.6em;
      color: #ffc107;
      text-align: center;
      margin-top: 40px;
      margin-bottom: 25px;
    }

    .page-8x-link__logos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      justify-items: center;
      margin-bottom: 40px;
    }

    .page-8x-link__logo-link {
      display: block;
      width: 100%;
      max-width: 250px; /* Max width for logos */
      box-sizing: border-box;
      padding: 10px;
      background-color: #3a3a5e;
      border-radius: 8px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      text-align: center;
    }

    .page-8x-link__logo-link:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    .page-8x-link__logo-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    /* FAQ Section */
    .page-8x-link__faq-container {
      max-width: 900px;
      margin: 30px auto 0;
    }

    .page-8x-link__faq-item {
      background-color: #2e2e4e;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-8x-link__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a5e;
      transition: background-color 0.3s ease;
    }

    .page-8x-link__faq-question:hover {
      background-color: #4a4a6e;
    }

    .page-8x-link__faq-question-text {
      font-size: 1.1em;
      color: #ffc107;
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Crucial for click handling */
    }

    .page-8x-link__faq-toggle {
      font-size: 1.5em;
      color: #ffc107;
      margin-left: 15px;
      width: 25px;
      text-align: center;
      pointer-events: none; /* Crucial for click handling */
    }

    .page-8x-link__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    .page-8x-link__faq-item.active .page-8x-link__faq-question {
      background-color: #4a4a6e;
    }

    .page-8x-link__faq-item.active .page-8x-link__faq-toggle {
      content: '−'; /* This will be handled by JS */
    }

    .page-8x-link__faq-answer p {
      margin: 0;
      font-size: 0.95em;
      color: #e0e0e0;
    }

    /* CTA Bottom Section */
    .page-8x-link__cta-bottom {
      text-align: center;
      background: linear-gradient(135deg, #007bff, #0056b3); /* Blue gradient */
      padding: 50px 20px;
      margin-bottom: 0; /* Last section */
    }

    .page-8x-link__cta-bottom-title {
      font-size: 2.5em;
      color: #fff;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-8x-link__cta-bottom-description {
      font-size: 1.2em;
      color: #e0e0e0;
      margin-bottom: 30px;
    }

    .page-8x-link__cta-bottom-note {
      margin-top: 25px;
      font-size: 0.9em;
      color: #c0c0c0;
    }

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

      .page-8x-link__hero-description {
        font-size: 1em;
      }

      .page-8x-link__button {
        width: 100%;
        max-width: 250px;
      }

      .page-8x-link__hero-buttons {
        flex-direction: column;
        gap: 10px;
      }

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

      .page-8x-link__section-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .page-8x-link__features-grid,
      .page-8x-link__games-grid,
      .page-8x-link__logos-grid {
        grid-template-columns: 1fr; /* Stack items */
        gap: 20px;
      }

      .page-8x-link__feature-item,
      .page-8x-link__game-card,
      .page-8x-link__logo-link,
      .page-8x-link__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8x-link__feature-icon,
      .page-8x-link__game-image,
      .page-8x-link__logo-image {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
      }

      .page-8x-link__promotion-banner {
        flex-direction: column;
      }

      .page-8x-link__promotion-title {
        font-size: 1.8em;
      }

      .page-8x-link__promotion-description {
        font-size: 1em;
      }

      .page-8x-link__sub-section-title {
        font-size: 1.4em;
      }

      .page-8x-link__faq-question {
        padding: 12px 15px;
      }

      .page-8x-link__faq-question-text {
        font-size: 1em;
      }

      .page-8x-link__faq-answer {
        padding: 0 15px;
      }

      .page-8x-link__faq-item.active .page-8x-link__faq-answer {
        padding: 15px !important;
      }

      .page-8x-link__cta-bottom-title {
        font-size: 2em;
      }

      .page-8x-link__cta-bottom-description {
        font-size: 1em;
      }

      .page-8x-link__hero-section,
      .page-8x-link__features-section,
      .page-8x-link__games-section,
      .page-8x-link__promotion-banner,
      .page-8x-link__about-section,
      .page-8x-link__payment-providers-section,
      .page-8x-link__faq-section,
      .page-8x-link__cta-bottom {
        padding-left: 15px;
        padding-right: 15px;
      }
    }

    @media (max-width: 480px) {
      .page-8x-link__hero-title {
        font-size: 1.8em;
      }
      .page-8x-link__section-title {
        font-size: 1.6em;
      }
      .page-8x-link__promotion-title {
        font-size: 1.6em;
      }
      .page-8x-link__cta-bottom-title {
        font-size: 1.8em;
      }
    }
  