
    /* Base styles for the page */
    .page-68win10 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-bottom: 80px; /* Space for the floating button */
    }

    .page-68win10__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-68win10__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-68win10__section--light {
      background-color: #ffffff;
    }

    .page-68win10__section--dark {
      background-color: #e9ecef;
    }

    .page-68win10__heading-primary {
      font-size: 2.8em;
      color: #0056b3;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-68win10__heading-secondary {
      font-size: 2em;
      color: #0056b3;
      margin-bottom: 25px;
      font-weight: bold;
    }

    .page-68win10__heading-tertiary {
      font-size: 1.5em;
      color: #0056b3;
      margin-bottom: 15px;
    }

    .page-68win10__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #555;
    }

    /* Hero Section */
    .page-68win10__hero-section {
      position: relative;
      padding: 60px 0 40px; /* Adjusted padding-top for fixed header */
      background-size: cover;
      background-position: center;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      overflow: hidden; /* Ensure banner image is contained */
    }

    .page-68win10__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.7); /* Darken image slightly for text readability */
    }

    .page-68win10__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent background for text */
      border-radius: 10px;
    }

    .page-68win10__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

    /* Floating CTA Button */
    .page-68win10__floating-cta {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ffc107; /* Yellow for attention */
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.3em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap; /* Prevent text wrapping */
    }

    .page-68win10__floating-cta:hover {
      background-color: #e0a800;
      transform: translateX(-50%) scale(1.05);
    }

    /* Game Categories */
    .page-68win10__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      text-align: left;
    }

    .page-68win10__game-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 20px;
    }

    .page-68win10__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

    .page-68win10__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Ensure image responsiveness */
      height: auto;
    }

    .page-68win10__game-title {
      font-size: 1.3em;
      margin: 20px 15px 10px;
      color: #0056b3;
      font-weight: bold;
    }

    .page-68win10__game-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px;
    }

    /* Features / Why Choose Us */
    .page-68win10__feature-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-68win10__feature-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 30px;
      width: calc(33% - 20px); /* Three columns on desktop */
      box-sizing: border-box;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-68win10__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

    .page-68win10__feature-icon {
      width: 200px; /* Minimum 200x200px */
      height: 200px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%; /* Ensure image responsiveness */
      height: auto;
    }

    .page-68win10__feature-title {
      font-size: 1.2em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-68win10__feature-description {
      font-size: 0.95em;
      color: #666;
    }

    /* How To Section */
    .page-68win10__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-68win10__step-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-68win10__step-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

    .page-68win10__step-number {
      font-size: 2.5em;
      color: #ffc107;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .page-68win10__step-title {
      font-size: 1.4em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-68win10__step-description {
      font-size: 1em;
      color: #555;
    }

    .page-68win10__app-download {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .page-68win10__download-button {
      background-color: #28a745;
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      display: inline-block;
      min-width: 250px;
    }

    .page-68win10__download-button:hover {
      background-color: #218838;
    }
    
    .page-68win10__download-button--ios {
      background-color: #007bff;
    }

    .page-68win10__download-button--ios:hover {
      background-color: #0069d9;
    }

    /* Promotions */
    .page-68win10__promo-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
      text-align: left;
    }

    .page-68win10__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-68win10__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

    .page-68win10__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Ensure image responsiveness */
      height: auto;
    }

    .page-68win10__promo-content {
      padding: 20px;
    }

    .page-68win10__promo-title {
      font-size: 1.3em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-68win10__promo-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
    }

    .page-68win10__promo-link {
      background-color: #ffc107;
      color: #333;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      display: inline-block;
    }

    .page-68win10__promo-link:hover {
      background-color: #e0a800;
    }

    /* FAQ Section */
    .page-68win10__faq-list {
      margin-top: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    .page-68win10__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-68win10__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      background-color: #f0f8ff;
      font-weight: bold;
      color: #0056b3;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-68win10__faq-question:hover {
      background-color: #e6f2ff;
    }

    .page-68win10__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-68win10__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      pointer-events: none; /* Prevent span from blocking click */
      transition: transform 0.3s ease;
    }

    .page-68win10__faq-item.active .page-68win10__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar, or just change text */
    }

    .page-68win10__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      font-size: 1em;
      background-color: #ffffff;
    }

    .page-68win10__faq-item.active .page-68win10__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-68win10__heading-primary {
        font-size: 2.2em;
      }
      .page-68win10__heading-secondary {
        font-size: 1.8em;
      }
      .page-68win10__feature-item {
        width: calc(50% - 15px); /* Two columns */
      }
    }

    @media (max-width: 768px) {
      .page-68win10__hero-section {
        padding-top: 60px; /* Ensure padding for mobile fixed header */
        min-height: 300px;
      }
      .page-68win10__hero-heading {
        font-size: 2em;
      }
      .page-68win10__hero-subtitle {
        font-size: 1.2em;
      }
      .page-68win10__floating-cta {
        width: calc(100% - 40px) !important; /* Full width minus padding */
        left: 20px;
        transform: none;
        bottom: 10px;
        padding: 12px 20px;
        font-size: 1.1em;
        border-radius: 8px;
      }
      .page-68win10__container {
        padding: 0 10px;
      }
      .page-68win10__section {
        padding: 30px 0;
      }
      .page-68win10__heading-primary {
        font-size: 1.8em;
      }
      .page-68win10__heading-secondary {
        font-size: 1.5em;
      }
      .page-68win10__heading-tertiary {
        font-size: 1.3em;
      }

      /* List item mobile responsiveness */
      .page-68win10__feature-list,
      .page-68win10__game-grid,
      .page-68win10__steps-grid,
      .page-68win10__promo-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-68win10__feature-item,
      .page-68win10__game-card,
      .page-68win10__step-card,
      .page-68win10__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px;
        padding-right: 15px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-68win10__feature-icon,
      .page-68win10__game-image,
      .page-68win10__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-68win10__feature-description,
      .page-68win10__game-description,
      .page-68win10__step-description,
      .page-68win10__promo-description,
      .page-68win10__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-68win10__app-download {
        flex-direction: column;
        align-items: center;
      }
      .page-68win10__download-button {
        width: 100%;
        max-width: 300px;
      }
      .page-68win10__faq-question {
        font-size: 1em;
        padding: 15px;
      }
      .page-68win10__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-68win10__hero-heading {
        font-size: 1.5em;
      }
      .page-68win10__hero-subtitle {
        font-size: 1em;
      }
      .page-68win10__floating-cta {
        font-size: 1em;
        padding: 10px 15px;
      }
    }
  