
    :root {
      --page-8k8-free-to-88-primary-color: #fdd835; /* Yellow */
      --page-8k8-free-to-88-secondary-color: #424242; /* Dark Grey */
      --page-8k8-free-to-88-background-dark: #212121; /* Darker Grey */
      --page-8k8-free-to-88-text-light: #ffffff;
      --page-8k8-free-to-88-text-dark: #e0e0e0;
      --page-8k8-free-to-88-accent-color: #e53935; /* Red for emphasis */
    }

    .page-8k8-free-to-88 {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-free-to-88-text-dark);
      background-color: var(--page-8k8-free-to-88-background-dark);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for fixed header */
    }

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

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

    .page-8k8-free-to-88__section--hero {
      background-color: var(--page-8k8-free-to-88-background-dark);
      color: var(--page-8k8-free-to-88-text-light);
      text-align: center;
      padding: 10px 20px 80px 20px; /* Small top padding, more bottom */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

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

    .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;
      margin-bottom: 20px;
      color: var(--page-8k8-free-to-88-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

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

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

    .page-8k8-free-to-88__button:hover {
      background-color: #ffd700; /* Slightly brighter yellow */
      transform: translateY(-3px);
    }

    .page-8k8-free-to-88__section-title {
      font-size: 2.5em;
      color: var(--page-8k8-free-to-88-primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-free-to-88__section-title::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__content-text {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: center;
    }

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

    .page-8k8-free-to-88__feature-item {
      background-color: var(--page-8k8-free-to-88-background-dark);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Required for lists */
    }

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

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

    .page-8k8-free-to-88__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 25px;
      box-sizing: border-box; /* Required for images */
    }

    .page-8k8-free-to-88__image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      object-fit: cover;
    }

    .page-8k8-free-to-88__how-to-claim-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-free-to-88__step-card {
      background-color: var(--page-8k8-free-to-88-background-dark);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      flex: 1 1 calc(33% - 40px); /* Three cards per row on desktop */
      min-width: 280px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
      box-sizing: border-box; /* Required for cards */
    }

    .page-8k8-free-to-88__step-number {
      font-size: 2.5em;
      color: var(--page-8k8-free-to-88-accent-color);
      font-weight: bold;
      margin-bottom: 15px;
    }

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

    .page-8k8-free-to-88__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-8k8-free-to-88__game-card {
      background-color: var(--page-8k8-free-to-88-background-dark);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Required for cards */
    }

    .page-8k8-free-to-88__game-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-free-to-88__game-image {
      width: 100%;
      max-width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .page-8k8-free-to-88__game-title {
      font-size: 1.2em;
      color: var(--page-8k8-free-to-88-text-light);
      padding: 15px;
      margin: 0;
    }

    /* FAQ Section Styles */
    .page-8k8-free-to-88__faq-list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 900px;
    }

    .page-8k8-free-to-88__faq-item {
      background-color: var(--page-8k8-free-to-88-background-dark);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
      box-sizing: border-box; /* Required for lists */
    }

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

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

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

    .page-8k8-free-to-88__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      color: var(--page-8k8-free-to-88-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-8k8-free-to-88__faq-item.active .page-8k8-free-to-88__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
    }

    .page-8k8-free-to-88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: var(--page-8k8-free-to-88-background-dark);
      color: var(--page-8k8-free-to-88-text-dark);
      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; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive Styles */
    @media (max-width: 1024px) {
      .page-8k8-free-to-88__hero-title {
        font-size: 2.8em;
      }

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

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

    @media (max-width: 768px) {
      .page-8k8-free-to-88__section {
        padding: 40px 15px;
      }

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

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

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

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

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

      .page-8k8-free-to-88__feature-list {
        grid-template-columns: 1fr;
      }

      .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: 20px;
      }

      .page-8k8-free-to-88__how-to-claim-steps {
        flex-direction: column;
        align-items: center;
      }

      .page-8k8-free-to-88__step-card {
        flex: 1 1 100%;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 25px;
      }

      .page-8k8-free-to-88__game-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-free-to-88__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-free-to-88__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-free-to-88__image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-8k8-free-to-88__faq-list {
        padding: 0 10px;
      }

      .page-8k8-free-to-88__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-free-to-88__faq-question {
        font-size: 1.1em;
        padding: 18px 20px;
      }

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

      .page-8k8-free-to-88__faq-answer {
        padding: 0 20px;
      }

      .page-8k8-free-to-88__faq-item.active .page-8k8-free-to-88__faq-answer {
        padding: 15px 20px !important;
      }
      
      .page-8k8-free-to-88__faq-toggle {
        font-size: 1.5em;
      }
    }

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

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

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

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