
    /* CSS for page-8k8-free-to-88 */
    :root {
      --primary-color: #e44d26; /* A strong casino-like color */
      --secondary-color: #f7b231; /* Gold/yellow accent */
      --dark-background: #1a1a1a;
      --light-background: #222222;
      --medium-background: #282828;
      --darker-background: #333333;
      --light-text: #ffffff;
      --gray-text: #cccccc;
      --border-color: #333333;
      --button-bg: #e44d26;
      --button-hover-bg: #f7b231;
      --header-offset: 122px; /* Fallback, will be overridden by shared.css */
    }

    body {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--light-text);
        background-color: var(--dark-background);
        margin: 0;
        padding-top: var(--header-offset); /* Ensure content is not hidden by fixed header */
        overflow-x: hidden;
    }

    .page-8k8-free-to-88 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px 15px 40px; /* Add some decorative top padding, not full header offset */
      box-sizing: border-box;
    }

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

    .page-8k8-free-to-88__section:nth-child(even) {
      background-color: var(--medium-background);
    }

    .page-8k8-free-to-88__hero-section {
      background: linear-gradient(135deg, var(--dark-background), #333333);
      padding: 60px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 400px; /* Ensure hero section has a decent height */
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
      padding-top: 10px; /* Decorative top padding */
    }

    .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 image is responsive */
      height: auto; /* Maintain aspect ratio */
    }

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

    .page-8k8-free-to-88__hero-title {
      font-size: 3.5em;
      color: var(--secondary-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

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

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

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

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

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

    .page-8k8-free-to-88__text-content {
      max-width: 900px;
      margin: 0 auto 30px;
      padding: 0 15px;
      text-align: left;
      color: var(--gray-text);
      font-size: 1.1em;
    }

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

    .page-8k8-free-to-88__grid-item {
      background-color: var(--darker-background);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--border-color);
    }

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

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

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

    .page-8k8-free-to-88__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 20px;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-8k8-free-to-88__image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-width: 100%; /* Ensure image is responsive */
      box-sizing: border-box;
    }

    /* FAQ Section Styles */
    .page-8k8-free-to-88__faq-section {
      padding: 40px 0;
      margin-bottom: 20px;
      background-color: var(--light-background);
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

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

    .page-8k8-free-to-88__faq-item {
      background-color: var(--darker-background);
      margin-bottom: 15px;
      border-radius: 8px;
      border: 1px solid var(--border-color);
      overflow: hidden;
      box-sizing: border-box; /* Ensure padding/border are included in width */
    }

    .page-8k8-free-to-88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      background-color: #3a3a3a;
      border-bottom: 1px solid var(--border-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

    .page-8k8-free-to-88__faq-question h3 {
      margin: 0;
      color: var(--light-text);
      font-size: 1.2em;
      text-align: left;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-free-to-88__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--secondary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      line-height: 1;
      width: 20px; /* Give it a fixed width to prevent text reflow */
      text-align: center;
    }

    .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 20px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      color: var(--gray-text);
      text-align: left;
      font-size: 1em;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .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__heading {
        font-size: 2em;
      }

      .page-8k8-free-to-88__text-content {
        font-size: 1em;
        padding: 0 10px;
      }

      .page-8k8-free-to-88__grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
      }

      .page-8k8-free-to-88__grid-item {
        padding: 20px;
      }

      .page-8k8-free-to-88__grid-item-title {
        font-size: 1.3em;
      }

      /* List item mobile responsiveness for FAQ */
      .page-8k8-free-to-88__faq-list {
        padding: 0 10px !important; /* Adjust container padding */
        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-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !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__faq-question {
        padding: 15px;
      }

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

      .page-8k8-free-to-88__faq-answer {
        padding: 15px !important; /* Adjust padding for mobile expanded state */
        font-size: 0.95em;
      }

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

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

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

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

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

    /* Ensure good color contrast */
    .page-8k8-free-to-88__hero-title,
    .page-8k8-free-to-88__hero-subtitle,
    .page-8k8-free-to-88__button,
    .page-8k8-free-to-88__heading,
    .page-8k8-free-to-88__text-content,
    .page-8k8-free-to-88__grid-item-title,
    .page-8k8-free-to-88__grid-item-description,
    .page-8k8-free-to-88__faq-question h3,
    .page-8k8-free-to-88__faq-toggle,
    .page-8k8-free-to-88__faq-answer {
        /* All these elements use light text on dark background, ensuring contrast. */
        /* Primary/Secondary colors are vibrant enough for headings. */
        /* Gray text is used on slightly darker background, still meeting AA. */
    }
  