
    /* Base styles for the page */
    .page-68win14 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f5f5f5;
      padding-bottom: 80px; /* Space for floating button */
    }

    .page-68win14__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-68win14__section-title {
      color: #0056b3; /* Dark blue */
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.2em;
      font-weight: bold;
    }

    .page-68win14__section-description {
      text-align: center;
      margin-bottom: 40px;
      font-size: 1.1em;
      color: #555;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-68win14__hero-section {
      position: relative;
      background: linear-gradient(135deg, #007bff, #0056b3); /* Blue gradient */
      color: #ffffff;
      text-align: center;
      padding: 120px 20px 60px; /* Adjusted padding-top for fixed header */
      overflow: hidden;
      border-radius: 0 0 15px 15px;
      margin-bottom: 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px; /* Ensure enough height */
    }

    .page-68win14__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3; /* Overlay effect */
      z-index: 1;
      max-width: 100%; /* Responsive image */
    }

    .page-68win14__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-68win14__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-68win14__hero-text {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-68win14__button {
      display: inline-block;
      background-color: #ffc107; /* Yellow */
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-68win14__button:hover {
      background-color: #e0a800; /* Darker yellow */
      transform: translateY(-2px);
    }

    /* Why Choose Us Section */
    .page-68win14__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-68win14__feature-item {
      background-color: #f9f9f9;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      min-height: 200px;
    }

    .page-68win14__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    }

    .page-68win14__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      color: #007bff; /* Blue */
      font-size: 3em;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #e6f2ff;
      border-radius: 50%;
    }

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

    .page-68win14__feature-description {
      font-size: 1em;
      color: #666;
    }

    /* Game Grid Section */
    .page-68win14__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-68win14__game-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%; /* Ensure cards are same height */
    }

    .page-68win14__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    }

    .page-68win14__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
    }

    .page-68win14__game-content {
      padding: 20px;
      flex-grow: 1; /* Allow content to grow */
      display: flex;
      flex-direction: column;
    }

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

    .page-68win14__game-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1; /* Allow description to take available space */
    }

    .page-68win14__game-button {
      background-color: #28a745; /* Green */
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease;
      text-align: center;
      display: block; /* Make button full width */
      margin-top: auto; /* Push button to the bottom */
      border: none;
      cursor: pointer;
    }

    .page-68win14__game-button:hover {
      background-color: #218838; /* Darker green */
    }

    /* Promotion Section */
    .page-68win14__promo-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-68win14__promo-item {
      background-color: #e6f7ff; /* Light blue */
      border-left: 5px solid #007bff;
      padding: 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 15px;
      box-sizing: border-box; /* Crucial for responsiveness */
      width: 100%; /* Ensure full width on mobile */
    }

    .page-68win14__promo-icon {
      font-size: 2em;
      color: #007bff;
    }

    .page-68win14__promo-content {
      flex-grow: 1;
    }

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

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

    /* How to Get Started Section (Steps) */
    .page-68win14__step-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 0;
      list-style: none;
    }

    .page-68win14__step-item {
      background-color: #f9f9f9;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      padding: 25px;
      text-align: center;
      width: calc(33% - 20px); /* 3 items per row on desktop */
      min-width: 280px;
      box-sizing: border-box;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-68win14__step-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .page-68win14__step-number {
      display: inline-block;
      width: 50px;
      height: 50px;
      line-height: 50px;
      background-color: #007bff;
      color: #ffffff;
      border-radius: 50%;
      font-size: 1.8em;
      font-weight: bold;
      margin-bottom: 15px;
    }

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

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

    .page-68win14__step-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 8px;
      margin-top: 15px;
      max-width: 100%; /* Responsive image */
    }

    /* FAQ Section */
    .page-68win14__faq-container {
      margin-top: 40px;
    }

    .page-68win14__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Ensure padding/border included in width */
      width: 100%; /* Default to full width */
    }

    .page-68win14__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      background-color: #e9ecef;
      color: #333;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-68win14__faq-question:hover {
      background-color: #dee2e6;
    }

    .page-68win14__faq-question h3 {
        margin: 0;
        color: #333;
        font-size: 1.1em;
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-68win14__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      color: #007bff;
    }

    .page-68win14__faq-item.active .page-68win14__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
      color: #dc3545; /* Red for active */
    }

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

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

    /* Floating Login Button */
    .page-68win14__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #dc3545; /* Red for urgency */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap; /* Prevent text wrapping */
      display: flex;
      align-items: center;
      gap: 8px;
      border: none;
      cursor: pointer;
    }

    .page-68win14__floating-button:hover {
      background-color: #c82333; /* Darker red */
      transform: translateX(-50%) translateY(-3px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-68win14__hero-section {
        padding-top: 100px; /* Adjust for smaller fixed header */
        min-height: 350px;
      }

      .page-68win14__hero-title {
        font-size: 2.5em;
      }

      .page-68win14__hero-text {
        font-size: 1.1em;
      }

      .page-68win14__section {
        padding: 30px 15px;
      }

      .page-68win14__section-title {
        font-size: 1.8em;
      }

      .page-68win14__section-description {
        font-size: 1em;
      }

      .page-68win14__feature-grid,
      .page-68win14__game-grid {
        grid-template-columns: 1fr; /* Stack items on mobile */
      }

      .page-68win14__feature-item,
      .page-68win14__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-68win14__promo-item {
        flex-direction: column;
        text-align: center;
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-68win14__promo-icon {
        margin-bottom: 10px;
      }

      .page-68win14__step-list {
        flex-direction: column; /* Stack steps on mobile */
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-68win14__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
      }
      .page-68win14__step-description,
      .page-68win14__feature-description,
      .page-68win14__game-description,
      .page-68win14__promo-description,
      .page-68win14__faq-answer {
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }

      .page-68win14__faq-question {
        font-size: 1em;
        padding: 15px;
      }
      .page-68win14__faq-question h3 {
        font-size: 1em;
      }
      .page-68win14__faq-answer {
        padding: 0 15px;
      }
      .page-68win14__faq-item.active .page-68win14__faq-answer {
        padding: 15px !important;
      }

      .page-68win14__floating-button {
        width: calc(100% - 40px);
        font-size: 1em;
        padding: 12px 20px;
      }
    }

    /* General image responsiveness and no filter rule */
    .page-68win14 img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below images */
        filter: none !important; /* ABSOLUTELY NO IMAGE FILTERS */
    }
    .page-68win14__hero-image,
    .page-68win14__game-image,
    .page-68win14__step-image {
        max-width: 100%;
        height: auto; /* Ensure aspect ratio is maintained */
        object-fit: cover; /* For specific height images */
        filter: none !important; /* ABSOLUTELY NO IMAGE FILTERS */
    }

    @media (max-width: 768px) {
        .page-68win14 img,
        .page-68win14__hero-image,
        .page-68win14__game-image,
        .page-68win14__step-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            filter: none !important; /* ABSOLUTELY NO IMAGE FILTERS */
        }
    }

  