
    .page-87win {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-top: 10px; /* Small padding-top to avoid header overlap, assuming body has padding-top from shared.css */
    }

    /* Hero Section */
    .page-87win__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 20px 15px 40px;
      background: linear-gradient(135deg, #1a1a2e, #0f0f1a);
      overflow: hidden;
    }

    .page-87win__hero-content {
      max-width: 900px;
      margin-bottom: 30px;
    }

    .page-87win__hero-title {
      font-size: 2.5em;
      color: #e94560;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-87win__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #cccccc;
    }

    .page-87win__hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 15px;
      justify-content: center;
      align-items: center;
    }

    .page-87win__button {
      display: block;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      width: 100%;
      max-width: 250px;
      text-align: center;
    }

    .page-87win__button--primary {
      background-color: #e94560;
      color: #ffffff;
      border: 2px solid #e94560;
    }

    .page-87win__button--primary:hover {
      background-color: #ff6a80;
      transform: translateY(-2px);
    }

    .page-87win__button--secondary {
      background-color: transparent;
      color: #e94560;
      border: 2px solid #e94560;
    }

    .page-87win__button--secondary:hover {
      background-color: rgba(233, 69, 96, 0.1);
      transform: translateY(-2px);
    }

    .page-87win__hero-image-wrapper {
      width: 100%;
      max-width: 800px;
      margin-top: 20px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-87win__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    /* General Section Styling */
    .page-87win__section-title {
      font-size: 2em;
      color: #e94560;
      text-align: center;
      margin-bottom: 25px;
      padding-top: 40px;
    }

    .page-87win__section-description {
      font-size: 1.1em;
      color: #cccccc;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 30px;
      padding: 0 15px;
    }

    /* Features Section */
    .page-87win__features-section {
      padding: 40px 15px;
      background-color: #1a1a2e;
    }

    .page-87win__features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-87win__feature-item {
      background-color: #2a2a4a;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .page-87win__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-87win__feature-icon {
      width: 100%; /* Ensure images are responsive within their container */
      max-width: 250px; /* Example max-width for feature icons */
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      box-sizing: border-box; /* Crucial for responsive images */
    }

    .page-87win__feature-title {
      font-size: 1.5em;
      color: #00bcd4;
      margin-bottom: 10px;
    }

    .page-87win__feature-description {
      color: #cccccc;
      font-size: 1em;
    }

    /* Products Section */
    .page-87win__products-section {
      padding: 40px 15px;
      background-color: #0f0f1a;
    }

    .page-87win__products-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-87win__product-card {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-87win__product-card:hover {
      transform: translateY(-5px);
    }

    .page-87win__product-image {
      width: 100%;
      max-width: 600px; /* Max width for product images */
      height: auto;
      display: block;
      box-sizing: border-box; /* Crucial for responsive images */
    }

    .page-87win__product-title {
      font-size: 1.6em;
      color: #e94560;
      margin: 15px 0 10px;
      padding: 0 15px;
    }

    .page-87win__product-description {
      font-size: 1em;
      color: #cccccc;
      padding: 0 15px 20px;
    }

    /* About Section */
    .page-87win__about-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 40px 15px;
      background-color: #1a1a2e;
    }

    .page-87win__about-content {
      max-width: 800px;
      text-align: center;
      margin-bottom: 30px;
    }

    .page-87win__about-text {
      font-size: 1.1em;
      color: #cccccc;
      margin-bottom: 20px;
    }

    .page-87win__about-image-wrapper {
      width: 100%;
      max-width: 800px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-87win__about-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    /* FAQ Section */
    .page-87win__faq-section {
      padding: 40px 15px;
      background-color: #0f0f1a;
    }

    .page-87win__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-87win__faq-item {
      background-color: #2a2a4a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .page-87win__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a5a;
      transition: background-color 0.3s ease;
    }

    .page-87win__faq-question:hover {
      background-color: #4a4a6a;
    }

    .page-87win__faq-question-title {
      font-size: 1.2em;
      color: #e94560;
      margin: 0;
      pointer-events: none; /* Prevents click event on h3 from interfering with parent div */
    }

    .page-87win__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #00bcd4;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents click event on span from interfering with parent div */
    }

    .page-87win__faq-item.active .page-87win__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' visually */
    }

    .page-87win__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: #cccccc;
    }

    .page-87win__faq-item.active .page-87win__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px !important;
      opacity: 1;
    }

    .page-87win__faq-answer p {
      margin: 0;
      word-wrap: break-word !important; /* Ensure long words break */
      overflow-wrap: break-word !important;
    }

    /* Floating Buttons */
    .page-87win__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-87win__floating-button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 120px;
      height: 45px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      color: #ffffff;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease, background-color 0.3s ease;
    }

    .page-87win__floating-button--register {
      background-color: #e94560;
    }

    .page-87win__floating-button--register:hover {
      background-color: #ff6a80;
      transform: translateY(-3px);
    }

    .page-87win__floating-button--login {
      background-color: #00bcd4;
    }

    .page-87win__floating-button--login:hover {
      background-color: #00e5ff;
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (min-width: 768px) {
      .page-87win__hero-section {
        flex-direction: row;
        text-align: left;
        padding: 60px 30px;
      }

      .page-87win__hero-content {
        margin-right: 50px;
        margin-bottom: 0;
      }

      .page-87win__hero-title {
        font-size: 3.5em;
      }

      .page-87win__hero-description {
        font-size: 1.2em;
      }

      .page-87win__hero-buttons {
        flex-direction: row;
        gap: 20px;
      }

      .page-87win__button {
        width: auto;
        max-width: none;
      }

      .page-87win__features-grid,
      .page-87win__products-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .page-87win__about-section {
        flex-direction: row;
        text-align: left;
      }

      .page-87win__about-content {
        margin-right: 50px;
        margin-bottom: 0;
        text-align: left;
      }

      .page-87win__faq-question-title {
        font-size: 1.3em;
      }

      .page-87win__floating-buttons {
        flex-direction: row;
        bottom: 30px;
        right: 30px;
        gap: 15px;
      }

      .page-87win__floating-button {
        width: 140px;
        height: 50px;
        font-size: 1.1em;
      }
    }

    @media (min-width: 1024px) {
      .page-87win__features-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .page-87win__products-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* Mobile responsive for list items - strict requirement */
    @media (max-width: 768px) {
      .page-87win__features-grid,
      .page-87win__products-grid {
        padding: 0 10px !important; /* Adjust overall padding for grids */
      }

      .page-87win__features-grid > div, /* Targeting feature items */
      .page-87win__products-grid > div { /* Targeting product cards */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px !important; /* Adjust padding for items */
      }

      .page-87win__feature-icon,
      .page-87win__product-image,
      .page-87win__hero-image,
      .page-87win__about-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-87win__hero-title {
        font-size: 2em;
      }
      .page-87win__section-title {
        font-size: 1.8em;
      }
      .page-87win__feature-title,
      .page-87win__product-title,
      .page-87win__faq-question-title {
        font-size: 1.3em;
      }
      .page-87win__hero-description,
      .page-87win__section-description,
      .page-87win__feature-description,
      .page-87win__product-description,
      .page-87win__about-text,
      .page-87win__faq-answer p {
        font-size: 0.95em;
      }

      .page-87win__faq-answer {
        padding: 0 15px !important; /* Reduced padding for mobile */
      }
      .page-87win__faq-item.active .page-87win__faq-answer {
        padding: 15px !important; /* Reduced padding for mobile active state */
      }
    }
  