
    :root {
      --page-8k8-free-to-88-primary-color: #f7b32b; /* Golden Yellow */
      --page-8k8-free-to-88-secondary-color: #2c3e50; /* Dark Blue */
      --page-8k8-free-to-88-accent-color: #e74c3c; /* Red */
      --page-8k8-free-to-88-text-color: #ecf0f1; /* Light Grey */
      --page-8k8-free-to-88-dark-bg: #1a1a1a; /* Very Dark Grey */
      --page-8k8-free-to-88-light-bg: #222222; /* Dark Grey */
      --page-8k8-free-to-88-border-color: #333333; /* Medium Grey */
      --page-8k8-free-to-88-button-hover-bg: #e67e22; /* Orange */
    }

    .page-8k8-free-to-88 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-free-to-88-text-color);
      background-color: var(--page-8k8-free-to-88-dark-bg);
      margin: 0;
      padding-top: 10px; /* Minimal padding-top as body is assumed to have header offset */
    }

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

    .page-8k8-free-to-88__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      background-color: var(--page-8k8-free-to-88-light-bg);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-free-to-88__section--dark {
      background-color: var(--page-8k8-free-to-88-secondary-color);
    }

    .page-8k8-free-to-88__heading-primary {
      font-size: 2.8em;
      color: var(--page-8k8-free-to-88-primary-color);
      text-align: center;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-free-to-88__heading-secondary {
      font-size: 2.2em;
      color: var(--page-8k8-free-to-88-primary-color);
      text-align: center;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-free-to-88__heading-secondary::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-8k8-free-to-88-accent-color);
      border-radius: 2px;
    }

    .page-8k8-free-to-88__heading-tertiary {
      font-size: 1.6em;
      color: var(--page-8k8-free-to-88-text-color);
      margin-bottom: 15px;
    }

    .page-8k8-free-to-88__paragraph {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: var(--page-8k8-free-to-88-text-color);
    }

    .page-8k8-free-to-88__button {
      display: inline-block;
      background-color: var(--page-8k8-free-to-88-primary-color);
      color: var(--page-8k8-free-to-88-secondary-color);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-free-to-88__button:hover {
      background-color: var(--page-8k8-free-to-88-button-hover-bg);
      transform: translateY(-2px);
    }

    .page-8k8-free-to-88__center-content {
      text-align: center;
    }

    /* Hero Section */
    .page-8k8-free-to-88__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, var(--page-8k8-free-to-88-secondary-color) 0%, var(--page-8k8-free-to-88-dark-bg) 100%);
      border-radius: 0;
      margin-bottom: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-free-to-88__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-8k8-free-to-88__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }

    .page-8k8-free-to-88__hero-title {
      font-size: 3.5em;
      color: var(--page-8k8-free-to-88-primary-color);
      margin-bottom: 15px;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-free-to-88__hero-subtitle {
      font-size: 1.5em;
      color: var(--page-8k8-free-to-88-text-color);
      margin-bottom: 30px;
      opacity: 0.9;
    }

    /* Promotions Section */
    .page-8k8-free-to-88__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-free-to-88__promotion-card {
      background-color: var(--page-8k8-free-to-88-dark-bg);
      border: 1px solid var(--page-8k8-free-to-88-border-color);
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-free-to-88__promotion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
    }

    .page-8k8-free-to-88__promotion-icon {
      margin-bottom: 15px;
      width: 100%;
      max-width: 300px; /* Ensure images are not too wide */
      height: auto;
      border-radius: 4px;
      box-sizing: border-box;
    }

    .page-8k8-free-to-88__promotion-title {
      font-size: 1.4em;
      color: var(--page-8k8-free-to-88-primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-free-to-88__promotion-description {
      font-size: 1em;
      color: var(--page-8k8-free-to-88-text-color);
    }

    /* Game Providers Section */
    .page-8k8-free-to-88__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-8k8-free-to-88__provider-item {
      background-color: var(--page-8k8-free-to-88-dark-bg);
      border: 1px solid var(--page-8k8-free-to-88-border-color);
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease;
      width: 100%; /* Ensure full width in grid item */
      box-sizing: border-box;
      max-width: 250px; /* Limit max width for larger screens */
    }

    .page-8k8-free-to-88__provider-item:hover {
      transform: translateY(-3px);
    }

    .page-8k8-free-to-88__provider-logo {
      width: 100%;
      max-width: 150px;
      height: auto;
      margin-bottom: 10px;
      filter: grayscale(20%); /* Allowed filter for slight aesthetic, not color change */
      transition: filter 0.3s ease;
    }

    .page-8k8-free-to-88__provider-item:hover .page-8k8-free-to-88__provider-logo {
      filter: grayscale(0%);
    }

    .page-8k8-free-to-88__provider-name {
      font-size: 1.1em;
      color: var(--page-8k8-free-to-88-text-color);
      font-weight: bold;
    }

    /* Features List */
    .page-8k8-free-to-88__features-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-8k8-free-to-88__feature-item {
      background-color: var(--page-8k8-free-to-88-dark-bg);
      border: 1px solid var(--page-8k8-free-to-88-border-color);
      border-radius: 8px;
      padding: 20px;
      display: flex;
      align-items: flex-start;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-8k8-free-to-88__feature-icon {
      width: 50px;
      height: 50px;
      margin-right: 15px;
      flex-shrink: 0;
      max-width: 100%;
    }

    .page-8k8-free-to-88__feature-content h3 {
      color: var(--page-8k8-free-to-88-primary-color);
      margin-top: 0;
      font-size: 1.3em;
    }

    .page-8k8-free-to-88__feature-content p {
      color: var(--page-8k8-free-to-88-text-color);
      font-size: 0.95em;
    }

    /* Call to Action Section */
    .page-8k8-free-to-88__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: var(--page-8k8-free-to-88-accent-color);
      border-radius: 8px;
      margin-top: 40px;
    }

    .page-8k8-free-to-88__cta-title {
      font-size: 2.5em;
      color: #fff;
      margin-bottom: 20px;
    }

    .page-8k8-free-to-88__cta-description {
      font-size: 1.2em;
      color: #f8f8f8;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* FAQ Section */
    .page-8k8-free-to-88__faq-list {
      margin-top: 30px;
    }

    .page-8k8-free-to-88__faq-item {
      background-color: var(--page-8k8-free-to-88-dark-bg);
      border: 1px solid var(--page-8k8-free-to-88-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-free-to-88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-8k8-free-to-88-secondary-color);
      color: var(--page-8k8-free-to-88-primary-color);
      cursor: pointer;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-free-to-88__faq-question:hover {
      background-color: #34495e; /* Slightly lighter secondary color */
    }

    .page-8k8-free-to-88__faq-question h3 {
      margin: 0;
      color: var(--page-8k8-free-to-88-primary-color);
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
    }

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

    .page-8k8-free-to-88__faq-item.active .page-8k8-free-to-88__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar visual */
    }

    .page-8k8-free-to-88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Adjust padding for closed state */
      color: var(--page-8k8-free-to-88-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-8k8-free-to-88__faq-item.active .page-8k8-free-to-88__faq-answer {
      max-height: 2000px !important; /* Use !important as required */
      padding: 20px !important; /* Use !important as required */
      opacity: 1;
    }

    /* Utility classes */
    .page-8k8-free-to-88__text--highlight {
      color: var(--page-8k8-free-to-88-primary-color);
      font-weight: bold;
    }

    .page-8k8-free-to-88__text--bold {
      font-weight: bold;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-8k8-free-to-88__container {
        padding: 10px;
      }

      .page-8k8-free-to-88__section {
        padding: 20px 15px;
      }

      .page-8k8-free-to-88__heading-primary {
        font-size: 2.2em;
      }

      .page-8k8-free-to-88__heading-secondary {
        font-size: 1.8em;
      }

      .page-8k8-free-to-88__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-free-to-88__hero-subtitle {
        font-size: 1.2em;
      }

      .page-8k8-free-to-88__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-free-to-88__promotions-grid,
      .page-8k8-free-to-88__providers-grid,
      .page-8k8-free-to-88__features-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-free-to-88__promotion-card,
      .page-8k8-free-to-88__provider-item,
      .page-8k8-free-to-88__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px;
      }

      .page-8k8-free-to-88__promotion-description,
      .page-8k8-free-to-88__feature-content p,
      .page-8k8-free-to-88__paragraph {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-free-to-88__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-free-to-88__faq-answer {
        padding: 0 15px; /* Adjust padding for mobile closed state */
      }

      .page-8k8-free-to-88__faq-item.active .page-8k8-free-to-88__faq-answer {
        padding: 15px !important; /* Adjust padding for mobile open state */
      }

      .page-8k8-free-to-88__cta-title {
        font-size: 2em;
      }

      .page-8k8-free-to-88__cta-description {
        font-size: 1em;
      }
    }

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

      .page-8k8-free-to-88__hero-subtitle {
        font-size: 1em;
      }
    }
  