
    /* Base styles for the 86win page */
.page-86win {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
  overflow-x: hidden;
  padding-top: var(--header-offset, 0px); /* Fallback for shared header offset if not handled by body */
}

.page-86win__brand-highlight {
  color: #ff4500; /* A vibrant orange/red for brand emphasis */
  font-weight: bold;
}

.page-86win__section-title {
  font-size: 2.2em;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 20px;
}

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

/* Hero Section */
.page-86win__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 10px 0 60px 0; /* Adjusted padding-top as per instructions */
  min-height: 500px;
  overflow: hidden;
  background-color: #0d1a26; /* Dark background for contrast */
}

.page-86win__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4;
}

.page-86win__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.page-86win__main-heading {
  font-size: 2.8em;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #fff;
}

.page-86win__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-86win__hero-button {
  display: inline-block;
  background-color: #ff4500;
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-86win__hero-button:hover {
  background-color: #e63900;
}

/* Product Showcase Section */
.page-86win__product-showcase {
  padding: 60px 20px;
  background-color: #fff;
}

.page-86win__product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-86win__product-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-86win__product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-86win__product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  max-width: 100% !important;
  height: auto !important;
  box-sizing: border-box !important;
}

.page-86win__product-title {
  font-size: 1.5em;
  color: #2c3e50;
  margin: 15px 0 10px;
  padding: 0 15px;
}

.page-86win__product-text {
  font-size: 1em;
  color: #666;
  padding: 0 15px 20px;
}

/* Promotions Section */
.page-86win__promotions-section {
  padding: 60px 20px;
  background-color: #e0f2f1;
}

.page-86win__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-86win__promo-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-86win__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-86win__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  max-width: 100% !important;
  height: auto !important;
  box-sizing: border-box !important;
}

.page-86win__promo-title {
  font-size: 1.6em;
  color: #2c3e50;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-86win__promo-text {
  font-size: 1em;
  color: #666;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-86win__promo-action {
  display: inline-block;
  background-color: #ff4500;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 20px;
  cursor: default; /* No link, so make it look like text or button */
}

/* About Section */
.page-86win__about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  background-color: #f4f7f6;
}

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

.page-86win__about-text {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 15px;
}

.page-86win__about-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  max-width: 100% !important;
  height: auto !important;
  box-sizing: border-box !important;
}

/* Why Choose Section */
.page-86win__why-choose-section {
  padding: 60px 20px;
  background-color: #fff;
}

.page-86win__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-86win__feature-item {
  text-align: center;
  padding: 25px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-86win__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  max-width: 100% !important;
  height: auto !important;
  box-sizing: border-box !important;
}

.page-86win__feature-title {
  font-size: 1.4em;
  color: #2c3e50;
  margin-bottom: 10px;
}

.page-86win__feature-text {
  font-size: 1em;
  color: #666;
}

/* FAQ Section */
.page-86win__faq-section {
  padding: 60px 20px;
  background-color: #e0f2f1;
}

.page-86win__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-86win__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
  user-select: none;
}

.page-86win__faq-question:hover {
  background-color: #f5f5f5;
}

.page-86win__faq-title {
  font-size: 1.2em;
  color: #2c3e50;
  margin: 0;
  flex-grow: 1;
  pointer-events: none; /* Crucial for click handler on parent */
}

.page-86win__faq-toggle {
  font-size: 1.8em;
  color: #ff4500;
  font-weight: bold;
  margin-left: 15px;
  transition: transform 0.3s ease;
  pointer-events: none; /* Crucial for click handler on parent */
}

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

.page-86win__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;
  background-color: #fefefe;
}

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

.page-86win__faq-answer p {
  margin: 0;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}

/* CTA Section */
.page-86win__cta-section {
  padding: 60px 20px;
  background-color: #0d1a26;
  color: #fff;
  text-align: center;
}

.page-86win__cta-section .page-86win__section-title {
  color: #fff;
}

.page-86win__cta-section .page-86win__section-description {
  color: #e0e0e0;
}

.page-86win__cta-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-86win__cta-button {
  display: inline-block;
  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;
}

.page-86win__cta-button--primary {
  background-color: #ff4500;
  color: #fff;
}

.page-86win__cta-button--primary:hover {
  background-color: #e63900;
  transform: translateY(-2px);
}

.page-86win__cta-button--secondary {
  background-color: #2c3e50;
  color: #fff;
  border: 2px solid #2c3e50;
}

.page-86win__cta-button--secondary:hover {
  background-color: #34495e;
  border-color: #34495e;
  transform: translateY(-2px);
}

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

.page-86win__floating-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px; /* Fixed width for mobile friendly */
  height: 45px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 1em;
}

.page-86win__floating-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-86win__floating-button--register {
  background-color: #28a745; /* Green for register */
}

.page-86win__floating-button--register:hover {
  background-color: #218838;
}

.page-86win__floating-button--login {
  background-color: #007bff; /* Blue for login */
}

.page-86win__floating-button--login:hover {
  background-color: #0069d9;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-86win__main-heading {
    font-size: 2.5em;
  }
  .page-86win__hero-description {
    font-size: 1.2em;
  }
  .page-86win__section-title {
    font-size: 2em;
  }
  .page-86win__promo-title {
    font-size: 1.4em;
  }
  .page-86win__floating-buttons {
    right: 15px;
    bottom: 15px;
  }
}

@media (max-width: 768px) {
  .page-86win__hero-section {
    min-height: 400px;
    padding-bottom: 40px;
  }
  .page-86win__hero-content {
    padding: 15px;
  }
  .page-86win__main-heading {
    font-size: 2em;
  }
  .page-86win__hero-description {
    font-size: 1em;
  }
  .page-86win__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-86win__section-title {
    font-size: 1.8em;
    padding-top: 15px;
  }
  .page-86win__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .page-86win__product-grid,
  .page-86win__promo-cards,
  .page-86win__features-grid {
    grid-template-columns: 1fr; /* Stack items on mobile */
    gap: 20px;
    padding: 0 15px;
  }

  /* List item responsive requirements */
  .page-86win__product-item,
  .page-86win__promo-card,
  .page-86win__feature-item,
  .page-86win__faq-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .page-86win__product-item {
    padding: 0;
  }
  .page-86win__product-text,
  .page-86win__promo-text,
  .page-86win__feature-text {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

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

  .page-86win__about-section {
    flex-direction: column;
  }
  .page-86win__about-content {
    margin-bottom: 30px;
  }

  .page-86win__faq-question {
    padding: 15px;
  }
  .page-86win__faq-title {
    font-size: 1.1em;
  }
  .page-86win__faq-toggle {
    font-size: 1.5em;
  }
  .page-86win__faq-answer {
    padding: 15px !important;
  }

  .page-86win__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-86win__cta-button {
    width: 80%;
    margin: 0 auto;
  }
  .page-86win__floating-buttons {
    right: 10px;
    bottom: 10px;
    flex-direction: row; /* Keep them side by side on small mobile */
    width: calc(100% - 20px);
    justify-content: space-around;
  }
  .page-86win__floating-button {
    width: 48%; /* Adjust for 2 buttons side by side */
    height: 40px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-86win__main-heading {
    font-size: 1.8em;
  }
  .page-86win__hero-description {
    font-size: 0.9em;
  }
  .page-86win__section-title {
    font-size: 1.6em;
  }
  .page-86win__promo-title {
    font-size: 1.2em;
  }
  .page-86win__floating-buttons {
    right: 5px;
    bottom: 5px;
    width: calc(100% - 10px);
    gap: 5px;
  }
  .page-86win__floating-button {
    width: 48%;
    height: 38px;
    font-size: 0.85em;
  }
}

  