
    :root {
      --page-primary-color: #f7b32b; /* Gold/Orange */
      --page-secondary-color: #2c3e50; /* Dark Blue */
      --page-accent-color: #e74c3c; /* Red */
      --page-text-color: #ecf0f1; /* Light Gray */
      --page-dark-text-color: #34495e; /* Darker Blue */
      --page-background-dark: #1a252f; /* Very Dark Blue */
      --page-background-light: #fdfdfd; /* Off-white */
    }

    /* Base styles for the specific page */
    .page-8k8-free-to-88 {
      font-family: 'Roboto', sans-serif;
      color: var(--page-dark-text-color);
      line-height: 1.6;
      background-color: var(--page-background-light);
    }

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

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

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

    .page-8k8-free-to-88__heading {
      text-align: center;
      margin-bottom: 30px;
      color: var(--page-secondary-color);
      font-size: 2.5em;
      font-weight: 700;
    }

    .page-8k8-free-to-88__heading--dark {
      color: var(--page-primary-color);
    }

    .page-8k8-free-to-88__subheading {
      text-align: center;
      margin-bottom: 20px;
      color: var(--page-accent-color);
      font-size: 1.5em;
      font-weight: 500;
    }

    .page-8k8-free-to-88__paragraph {
      margin-bottom: 15px;
      font-size: 1.1em;
      text-align: justify;
    }

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

    .page-8k8-free-to-88__button:hover {
      background-color: #e6a020; /* Slightly darker gold */
      transform: translateY(-2px);
    }

    .page-8k8-free-to-88__button-container {
      text-align: center;
      margin-top: 30px;
    }

    /* Hero Section */
    .page-8k8-free-to-88__hero-section {
      background-color: var(--page-background-dark);
      color: var(--page-text-color);
      padding: 10px 0 60px 0; /* Minimal top padding, assuming body has offset */
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-free-to-88__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-8k8-free-to-88__hero-title {
      font-size: 3.5em;
      font-weight: 900;
      color: var(--page-primary-color);
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-8k8-free-to-88__hero-subtitle {
      font-size: 1.8em;
      color: #fff;
      margin-bottom: 25px;
    }

    .page-8k8-free-to-88__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin-top: 30px;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

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

    .page-8k8-free-to-88__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-free-to-88__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-free-to-88__promo-icon {
      margin-bottom: 20px;
      width: 100%;
      max-width: 250px; /* Example size for promo icon image */
      height: auto;
      border-radius: 8px;
    }

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

    .page-8k8-free-to-88__promo-description {
      color: var(--page-dark-text-color);
      font-size: 1em;
      margin-bottom: 20px;
    }

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

    .page-8k8-free-to-88__game-card {
      background-color: var(--page-background-dark);
      color: var(--page-text-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-free-to-88__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

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

    .page-8k8-free-to-88__game-info {
      padding: 20px;
      text-align: center;
    }

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

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

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

    .page-8k8-free-to-88__feature-item {
      background-color: var(--page-background-light);
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .page-8k8-free-to-88__feature-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .page-8k8-free-to-88__feature-icon {
      width: 100%;
      max-width: 150px; /* Example size for feature icon image */
      height: auto;
      margin-bottom: 20px;
      border-radius: 5px;
    }

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

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

    /* CTA Section */
    .page-8k8-free-to-88__cta-section {
      background-color: var(--page-primary-color);
      color: #fff;
      text-align: center;
      padding: 60px 20px;
    }

    .page-8k8-free-to-88__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      font-weight: 700;
    }

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

    .page-8k8-free-to-88__cta-button {
      background-color: var(--page-secondary-color);
      color: #fff;
      padding: 18px 40px;
      font-size: 1.3em;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-free-to-88__cta-button:hover {
      background-color: #34495e;
      transform: translateY(-3px);
    }

    /* FAQ Section */
    .page-8k8-free-to-88__faq-section {
      background-color: var(--page-background-dark);
      color: var(--page-text-color);
    }

    .page-8k8-free-to-88__faq-container {
      max-width: 800px;
      margin: 30px auto 0 auto;
    }

    .page-8k8-free-to-88__faq-item {
      background-color: var(--page-secondary-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

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

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

    .page-8k8-free-to-88__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
      text-align: left;
    }

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

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

    .page-8k8-free-to-88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--page-text-color);
      font-size: 1em;
      background-color: #3e5163; /* Slightly lighter than secondary */
      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 adjustments */
    @media (max-width: 1024px) {
      .page-8k8-free-to-88__hero-title {
        font-size: 3em;
      }
      .page-8k8-free-to-88__hero-subtitle {
        font-size: 1.6em;
      }
      .page-8k8-free-to-88__heading {
        font-size: 2.2em;
      }
      .page-8k8-free-to-88__cta-title {
        font-size: 2.4em;
      }
    }

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

      .page-8k8-free-to-88__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-free-to-88__hero-subtitle {
        font-size: 1.4em;
      }
      .page-8k8-free-to-88__heading {
        font-size: 2em;
      }
      .page-8k8-free-to-88__subheading {
        font-size: 1.3em;
      }
      .page-8k8-free-to-88__paragraph {
        font-size: 1em;
      }
      .page-8k8-free-to-88__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      /* List item specific rules for mobile */
      .page-8k8-free-to-88__promo-grid,
      .page-8k8-free-to-88__game-grid,
      .page-8k8-free-to-88__feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-free-to-88__promo-card,
      .page-8k8-free-to-88__game-card,
      .page-8k8-free-to-88__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Image responsive */
      .page-8k8-free-to-88__hero-image,
      .page-8k8-free-to-88__promo-icon,
      .page-8k8-free-to-88__game-image,
      .page-8k8-free-to-88__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-free-to-88__cta-title {
        font-size: 2em;
      }
      .page-8k8-free-to-88__cta-description {
        font-size: 1.1em;
      }
      .page-8k8-free-to-88__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
      }

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

    @media (max-width: 480px) {
      .page-8k8-free-to-88__hero-title {
        font-size: 2em;
      }
      .page-8k8-free-to-88__hero-subtitle {
        font-size: 1.2em;
      }
      .page-8k8-free-to-88__heading {
        font-size: 1.8em;
      }
      .page-8k8-free-to-88__cta-title {
        font-size: 1.8em;
      }
      .page-8k8-free-to-88__cta-button {
        font-size: 1em;
      }
    }
  