
    /* Page-specific CSS for 8k8-free-to-88 */
    .page-8k8-free-to-88 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-top: 10px; /* Small padding for hero section, assuming body handles main offset */
    }

    .page-8k8-free-to-88__hero-section {
      position: relative;
      background: linear-gradient(135deg, #001f3f, #007bff); /* Dark blue to blue gradient */
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 40px;
    }

    .page-8k8-free-to-88__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('[GALLERY:pattern:1920x1080:abstract,geometric,background]') no-repeat center center/cover;
      opacity: 0.1;
      z-index: 0;
    }

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

    .page-8k8-free-to-88__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

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

    .page-8k8-free-to-88__cta-button {
      display: inline-block;
      background-color: #ffc107; /* Yellow */
      color: #333;
      padding: 15px 35px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-free-to-88__cta-button:hover {
      background-color: #e0a800; /* Darker yellow */
      transform: translateY(-3px);
    }

    .page-8k8-free-to-88__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }

    .page-8k8-free-to-88__section-title {
      font-size: 2.5em;
      color: #007bff; /* Blue */
      text-align: center;
      margin-bottom: 30px;
      font-weight: 600;
    }

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

    .page-8k8-free-to-88__feature-card {
      background-color: #f0f8ff; /* Light blue */
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

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

    .page-8k8-free-to-88__feature-icon {
      width: 250px; /* Min size 200x200 */
      height: auto;
      margin-bottom: 15px;
      border-radius: 8px;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-free-to-88__feature-title {
      font-size: 1.4em;
      color: #0056b3; /* Darker blue */
      margin-bottom: 10px;
    }

    .page-8k8-free-to-88__game-showcase {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-8k8-free-to-88__game-card {
      background-color: #f8f9fa;
      border: 1px solid #e9ecef;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 15px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-free-to-88__game-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-free-to-88__game-image {
      width: 100%;
      height: 250px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-free-to-88__game-title {
      font-size: 1.2em;
      color: #007bff;
      margin-top: 15px;
      padding: 0 10px;
    }

    .page-8k8-free-to-88__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #555;
    }

    .page-8k8-free-to-88__promotion-details {
      background-color: #e6f7ff; /* Lighter blue */
      padding: 30px;
      border-left: 5px solid #007bff;
      border-radius: 8px;
      margin-top: 30px;
    }

    .page-8k8-free-to-88__promotion-title {
      font-size: 1.8em;
      color: #007bff;
      margin-bottom: 15px;
    }

    .page-8k8-free-to-88__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
    }

    .page-8k8-free-to-88__list-item {
      background-color: #fff;
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 5px;
      border-left: 3px solid #ffc107;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: center;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-8k8-free-to-88__list-item::before {
      content: '✓';
      color: #28a745; /* Green checkmark */
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    .page-8k8-free-to-88__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }

    .page-8k8-free-to-88__faq-title {
      font-size: 2.5em;
      color: #007bff;
      text-align: center;
      margin-bottom: 30px;
      font-weight: 600;
    }

    .page-8k8-free-to-88__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 15px;
    }

    .page-8k8-free-to-88__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-8k8-free-to-88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      background-color: #f0f8ff;
      border-radius: 5px;
      padding-left: 15px;
      padding-right: 15px;
      transition: background-color 0.3s ease;
    }

    .page-8k8-free-to-88__faq-question:hover {
      background-color: #e2f2ff;
    }

    .page-8k8-free-to-88__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-free-to-88__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #007bff;
      margin-left: 10px;
      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); /* Visually change + to X or - */
    }

    .page-8k8-free-to-88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fcfdff;
      border-radius: 0 0 5px 5px;
      color: #555;
    }

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

    .page-8k8-free-to-88__external-link-button {
      display: inline-block;
      background-color: #28a745; /* Green */
      color: #fff;
      padding: 12px 25px;
      border-radius: 50px;
      font-size: 1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      margin-top: 20px;
      border: none;
      cursor: pointer;
    }

    .page-8k8-free-to-88__external-link-button:hover {
      background-color: #218838; /* Darker green */
    }

    .page-8k8-free-to-88__disclaimer {
      font-size: 0.9em;
      color: #777;
      text-align: center;
      margin-top: 40px;
      padding: 0 20px;
    }

    /* Responsive adjustments */
    @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,
      .page-8k8-free-to-88__faq-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-free-to-88__hero-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__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-8k8-free-to-88__section {
        padding: 30px 15px;
      }
      .page-8k8-free-to-88__section-title,
      .page-8k8-free-to-88__faq-title {
        font-size: 1.8em;
      }
      .page-8k8-free-to-88__grid {
        grid-template-columns: 1fr;
      }
      .page-8k8-free-to-88__feature-icon {
        width: 200px; /* Ensure minimum size */
      }
      .page-8k8-free-to-88__game-showcase {
        grid-template-columns: 1fr;
      }
      .page-8k8-free-to-88__game-image {
        height: 200px; /* Adjust height for mobile */
      }
      .page-8k8-free-to-88__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-free-to-88__list {
        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__promotion-details {
        padding: 20px;
      }
      .page-8k8-free-to-88__promotion-title {
        font-size: 1.5em;
      }
      .page-8k8-free-to-88__faq-section {
        padding: 30px 15px;
      }
      .page-8k8-free-to-88__faq-question {
        padding: 12px 10px;
      }
      .page-8k8-free-to-88__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-free-to-88__faq-toggle {
        font-size: 1.5em;
      }
      .page-8k8-free-to-88__faq-answer {
        padding: 15px 10px !important;
      }
    }

    @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__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-8k8-free-to-88__section-title,
      .page-8k8-free-to-88__faq-title {
        font-size: 1.5em;
      }
      .page-8k8-free-to-88__feature-icon {
        width: 200px; /* Ensure minimum size */
      }
      .page-8k8-free-to-88__game-image {
        height: 180px;
      }
      .page-8k8-free-to-88__faq-question h3 {
        font-size: 1em;
      }
    }
  