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

    /* Hero Section */
    .page-8k8-4-2__hero-section {
      position: relative;
      width: 100%;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Small top padding, assuming body has header offset */
      box-sizing: border-box;
    }

    .page-8k8-4-2__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-8k8-4-2__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 2;
    }

    .page-8k8-4-2__hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      padding: 20px;
      animation: fadeIn 1.5s ease-out;
    }

    .page-8k8-4-2__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #FFD700; /* Gold-like color */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-4-2__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-8k8-4-2__promo-button {
      display: inline-block;
      background-color: #FF4500; /* Orange-red for action */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.2em;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer; /* Indicate it's clickable even without link */
      border: none;
    }

    .page-8k8-4-2__promo-button:hover {
      background-color: #E63900;
    }

    /* Section Styling */
    .page-8k8-4-2__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-4-2__section--dark {
      background-color: #222;
      color: #eee;
    }

    .page-8k8-4-2__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: #333;
      position: relative;
      padding-bottom: 15px;
    }
    .page-8k8-4-2__section--dark .page-8k8-4-2__section-title {
      color: #FFD700;
    }

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

    /* Features Grid */
    .page-8k8-4-2__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-4-2__feature-card {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-8k8-4-2__section--dark .page-8k8-4-2__feature-card {
      background-color: #333;
      color: #eee;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-4-2__feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-4-2__feature-icon {
      width: 250px; /* Min size for images */
      height: 250px; /* Min size for images */
      margin-bottom: 20px;
      object-fit: cover;
      border-radius: 8px;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-4-2__feature-title {
      font-size: 1.8em;
      margin-bottom: 15px;
      color: #FF4500;
    }
    .page-8k8-4-2__section--dark .page-8k8-4-2__feature-title {
      color: #FFD700;
    }

    .page-8k8-4-2__feature-description {
      font-size: 1em;
      color: #555;
      flex-grow: 1; /* Ensures description takes available space */
    }
    .page-8k8-4-2__section--dark .page-8k8-4-2__feature-description {
      color: #ccc;
    }

    /* Call to Action */
    .page-8k8-4-2__cta-section {
      background-color: #FFD700;
      color: #333;
      padding: 80px 20px;
      text-align: center;
    }

    .page-8k8-4-2__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #333;
    }

    .page-8k8-4-2__cta-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-4-2__cta-button {
      display: inline-block;
      background-color: #FF4500;
      color: #fff;
      padding: 18px 35px;
      border-radius: 8px;
      font-size: 1.4em;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-4-2__cta-button:hover {
      background-color: #E63900;
      transform: translateY(-3px);
    }

    /* Game Providers Section */
    .page-8k8-4-2__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjusted for more providers */
      gap: 25px;
      margin-top: 40px;
    }

    .page-8k8-4-2__provider-item {
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 150px;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-8k8-4-2__section--dark .page-8k8-4-2__provider-item {
      background-color: #444;
      color: #eee;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-4-2__provider-item:hover {
      transform: translateY(-5px);
    }

    .page-8k8-4-2__provider-logo {
      width: 200px; /* Min size for images */
      height: 100px; /* Min size for images */
      max-width: 100%;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .page-8k8-4-2__provider-name {
      font-weight: bold;
      color: #333;
    }
    .page-8k8-4-2__section--dark .page-8k8-4-2__provider-name {
      color: #FFD700;
    }

    /* FAQ Section */
    .page-8k8-4-2__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

    .page-8k8-4-2__faq-title {
      text-align: center;
      font-size: 2.5em;
      margin-bottom: 40px;
      color: #333;
      position: relative;
      padding-bottom: 15px;
    }

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

    .page-8k8-4-2__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

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

    .page-8k8-4-2__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-8k8-4-2__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-8k8-4-2__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent div */
      color: #FF4500;
    }

    .page-8k8-4-2__faq-item.active .page-8k8-4-2__faq-toggle {
      transform: rotate(45deg); /* Changes + to x or - visually */
    }

    .page-8k8-4-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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;
      background-color: #fdfdfd;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-4-2__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-4-2__hero-subtitle {
        font-size: 1.2em;
      }

      .page-8k8-4-2__promo-button,
      .page-8k8-4-2__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-8k8-4-2__section-title,
      .page-8k8-4-2__cta-title,
      .page-8k8-4-2__faq-title {
        font-size: 2em;
      }

      .page-8k8-4-2__features-grid,
      .page-8k8-4-2__providers-grid {
        grid-template-columns: 1fr;
        padding: 0 15px !important; /* Adjust padding for container */
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-4-2__feature-card,
      .page-8k8-4-2__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-4-2__feature-icon,
      .page-8k8-4-2__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        width: auto !important; /* Ensure image scales down */
        box-sizing: border-box !important;
      }

      .page-8k8-4-2__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-8k8-4-2__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-4-2__faq-answer {
        padding: 15px 20px;
      }

      .page-8k8-4-2__faq-item.active .page-8k8-4-2__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-4-2__hero-title {
        font-size: 2em;
      }

      .page-8k8-4-2__hero-subtitle {
        font-size: 1em;
      }

      .page-8k8-4-2__section-title,
      .page-8k8-4-2__cta-title,
      .page-8k8-4-2__faq-title {
        font-size: 1.8em;
      }
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
  