
    :root {
      --page-3winlink__primary-color: #007bff; /* Blue */
      --page-3winlink__secondary-color: #6c757d; /* Grey */
      --page-3winlink__accent-color: #ffc107; /* Yellow */
      --page-3winlink__background-light: #f8f9fa; /* Light grey */
      --page-3winlink__background-dark: #343a40; /* Dark grey */
      --page-3winlink__text-color-dark: #212529; /* Dark text */
      --page-3winlink__text-color-light: #ffffff; /* Light text */
      --page-3winlink__border-color: #e9ecef;
    }

    .page-3winlink {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-3winlink__text-color-dark);
      background-color: var(--page-3winlink__background-light);
      margin: 0 auto;
      max-width: 100%;
      overflow-x: hidden;
      box-sizing: border-box;
    }

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

    .page-3winlink__section {
      padding: 40px 0;
      box-sizing: border-box;
    }

    .page-3winlink__section--dark {
      background-color: var(--page-3winlink__background-dark);
      color: var(--page-3winlink__text-color-light);
    }

    .page-3winlink__section-title {
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.2em;
      color: var(--page-3winlink__primary-color);
      font-weight: bold;
    }

    .page-3winlink__section--dark .page-3winlink__section-title {
      color: var(--page-3winlink__accent-color);
    }

    .page-3winlink__text-center {
      text-align: center;
    }

    /* Hero Section */
    .page-3winlink__hero-section {
      position: relative;
      background-color: var(--page-3winlink__background-dark);
      color: var(--page-3winlink__text-color-light);
      text-align: center;
      padding: 10px 0 60px 0; /* Adjusted padding-top for fixed header */
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-3winlink__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .page-3winlink__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      margin: 0 auto;
      object-fit: cover;
      filter: none; /* Ensure no color filters */
    }

    .page-3winlink__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: var(--page-3winlink__accent-color);
    }

    .page-3winlink__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-3winlink__button {
      display: inline-block;
      background-color: var(--page-3winlink__primary-color);
      color: var(--page-3winlink__text-color-light);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-3winlink__button:hover {
      background-color: #0056b3;
    }

    /* Why Choose Section */
    .page-3winlink__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-3winlink__feature-item {
      background-color: var(--page-3winlink__text-color-light);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-3winlink__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-3winlink__feature-icon {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
        filter: none; /* Ensure no color filters */
        max-width: 250px; /* To ensure it's not too large but still above 200px */
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .page-3winlink__feature-title {
      font-size: 1.5em;
      color: var(--page-3winlink__primary-color);
      margin-bottom: 10px;
    }

    /* Games Section */
    .page-3winlink__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

    .page-3winlink__game-card {
      background-color: var(--page-3winlink__text-color-light);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-3winlink__game-card:hover {
      transform: translateY(-5px);
    }

    .page-3winlink__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-3winlink__game-image {
      width: 100%;
      height: 200px; /* Fixed height to ensure minimum dimension */
      object-fit: cover;
      filter: none; /* Ensure no color filters */
    }

    .page-3winlink__game-content {
      padding: 15px;
    }

    .page-3winlink__game-title {
      font-size: 1.3em;
      color: var(--page-3winlink__primary-color);
      margin-bottom: 10px;
    }

    .page-3winlink__game-description {
      font-size: 0.95em;
      color: var(--page-3winlink__secondary-color);
    }

    /* How To Section */
    .page-3winlink__steps-list {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .page-3winlink__step-item {
      display: flex;
      align-items: center;
      background-color: var(--page-3winlink__text-color-light);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-3winlink__step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--page-3winlink__primary-color);
      margin-right: 20px;
      flex-shrink: 0;
    }

    .page-3winlink__step-content h3 {
      font-size: 1.4em;
      color: var(--page-3winlink__primary-color);
      margin-bottom: 5px;
    }

    .page-3winlink__step-content p {
      font-size: 1em;
      color: var(--page-3winlink__text-color-dark);
    }

    .page-3winlink__step-image-wrapper {
        width: 100%;
        max-width: 250px; /* Ensure images are not too small */
        overflow: hidden;
        box-sizing: border-box;
        margin-left: 20px;
        flex-shrink: 0;
    }

    .page-3winlink__step-image {
        width: 100%;
        height: auto;
        min-height: 200px; /* Ensure minimum height */
        object-fit: cover;
        border-radius: 5px;
        filter: none; /* Ensure no color filters */
    }

    /* Floating Login Button */
    .page-3winlink__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-3winlink__accent-color);
      color: var(--page-3winlink__text-color-dark);
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      cursor: pointer;
      transition: transform 0.3s ease, background-color 0.3s ease;
      text-decoration: none; /* Important for <a> tag */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      animation: page-3winlink__pulse 2s infinite;
      box-sizing: border-box;
      border: none;
    }

    .page-3winlink__floating-button:hover {
      background-color: #e0a800;
      transform: scale(1.05);
    }

    @keyframes page-3winlink__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.03); }
      100% { transform: scale(1); }
    }

    /* FAQ Section */
    .page-3winlink__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-3winlink__faq-item {
      background-color: var(--page-3winlink__text-color-light);
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-3winlink__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-3winlink__primary-color);
      color: var(--page-3winlink__text-color-light);
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-3winlink__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from intercepting click */
      color: inherit; /* Inherit color from parent */
    }

    .page-3winlink__faq-question:hover {
      background-color: #0056b3;
    }

    .page-3winlink__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from intercepting click */
    }

    .page-3winlink__faq-item.active .page-3winlink__faq-toggle {
      transform: rotate(45deg); /* Changes + to x or similar */
    }

    .page-3winlink__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: #f0f0f0;
      color: var(--page-3winlink__text-color-dark);
      box-sizing: border-box;
    }

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

    .page-3winlink__faq-answer p {
      margin: 0;
      padding: 0;
      font-size: 0.95em;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-3winlink__hero-title {
        font-size: 2.2em;
      }

      .page-3winlink__hero-subtitle {
        font-size: 1.1em;
      }

      .page-3winlink__section-title {
        font-size: 1.8em;
      }

      .page-3winlink__features-grid,
      .page-3winlink__game-grid {
        grid-template-columns: 1fr;
      }

      .page-3winlink__step-item {
        flex-direction: column;
        text-align: center;
      }

      .page-3winlink__step-number {
        margin-right: 0;
        margin-bottom: 10px;
      }

      .page-3winlink__step-content {
        width: 100%;
      }

      .page-3winlink__step-image-wrapper {
        margin-left: 0;
        margin-top: 15px;
        max-width: 100%; /* Ensure image fits */
      }
      .page-3winlink__step-image {
        width: 100%;
        height: auto;
        min-height: 200px;
      }

      .page-3winlink__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-3winlink__floating-button {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 15px;
        padding: 12px 15px;
        font-size: 1em;
      }

      /* Mobile responsive list items (general rule for any list-like structure) */
      .page-3winlink__features-grid > .page-3winlink__feature-item,
      .page-3winlink__game-grid > .page-3winlink__game-card,
      .page-3winlink__steps-list > .page-3winlink__step-item,
      .page-3winlink__faq-list > .page-3winlink__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;
      }

      .page-3winlink__features-grid,
      .page-3winlink__game-grid,
      .page-3winlink__steps-list,
      .page-3winlink__faq-list {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding: 0 15px !important; /* Adjust padding to match container */
          margin-left: auto !important;
          margin-right: auto !important;
      }

      .page-3winlink__game-image,
      .page-3winlink__hero-image,
      .page-3winlink__feature-icon,
      .page-3winlink__step-image {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
          filter: none !important; /* Ensure no color filters */
      }

      .page-3winlink__game-image-wrapper,
      .page-3winlink__hero-image-wrapper,
      .page-3winlink__step-image-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }

      .page-3winlink__faq-question,
      .page-3winlink__faq-answer {
          padding-left: 15px !important;
          padding-right: 15px !important;
      }

      .page-3winlink__faq-answer p {
          word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
        .page-3winlink__hero-title {
            font-size: 1.8em;
        }
        .page-3winlink__hero-subtitle {
            font-size: 1em;
        }
        .page-3winlink__section-title {
            font-size: 1.5em;
        }
        .page-3winlink__floating-button {
            padding: 10px 15px;
            font-size: 0.9em;
        }
    }
  