/* style/promotions-limited-time-offers.css */
.page-promotions-limited-time-offers {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa; /* Light grey background for overall page */
}

.page-promotions-limited-time-offers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-limited-time-offers__hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue for better contrast */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-limited-time-offers__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,blue_gold,pattern,modern]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-promotions-limited-time-offers__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffc107; /* Vibrant gold for title to stand out */
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-limited-time-offers__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-promotions-limited-time-offers__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.page-promotions-limited-time-offers__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-promotions-limited-time-offers__button--primary {
  background-color: #ffc107; /* Vibrant gold */
  color: #000000; /* Black text for strong contrast */
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-promotions-limited-time-offers__button--primary:hover {
  background-color: #e0a800; /* Darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-promotions-limited-time-offers__button--secondary {
  background-color: transparent;
  color: #ffc107; /* Vibrant gold text */
  border: 2px solid #ffc107;
}

.page-promotions-limited-time-offers__button--secondary:hover {
  background-color: #ffc107;
  color: #000000; /* Black text on hover */
  transform: translateY(-3px);
}

.page-promotions-limited-time-offers__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 5px;
}

.page-promotions-limited-time-offers__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary blue */
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
}

.page-promotions-limited-time-offers__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffc107; /* Accent gold */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions-limited-time-offers__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  color: #555;
}

.page-promotions-limited-time-offers__why-choose, 
.page-promotions-limited-time-offers__offer-types, 
.page-promotions-limited-time-offers__how-to-join, 
.page-promotions-limited-time-offers__terms-conditions, 
.page-promotions-limited-time-offers__platform-overview {
  padding: 80px 0;
}

.page-promotions-limited-time-offers__why-choose {
  background-color: #ffffff;
}

.page-promotions-limited-time-offers__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promotions-limited-time-offers__feature-item {
  background-color: #f0f8ff; /* Light blue background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-limited-time-offers__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-promotions-limited-time-offers__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions-limited-time-offers__feature-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-promotions-limited-time-offers__feature-description {
  color: #666;
  font-size: 0.95em;
}

.page-promotions-limited-time-offers__offer-types {
  background-color: #e9f5ff; /* Slightly darker light blue */
}

.page-promotions-limited-time-offers__offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-promotions-limited-time-offers__offer-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promotions-limited-time-offers__offer-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.page-promotions-limited-time-offers__offer-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-promotions-limited-time-offers__offer-title {
  font-size: 1.8em;
  color: #007bff;
  padding: 20px 25px 10px;
  font-weight: 600;
}

.page-promotions-limited-time-offers__offer-description {
  color: #555;
  padding: 0 25px 25px;
  flex-grow: 1;
  font-size: 0.95em;
}

.page-promotions-limited-time-offers__offer-card .page-promotions-limited-time-offers__button {
  margin: 0 25px 25px;
  text-align: center;
}

.page-promotions-limited-time-offers__how-to-join {
  background-color: #ffffff;
}

.page-promotions-limited-time-offers__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-promotions-limited-time-offers__step-item {
  text-align: center;
  padding: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background-color: #fdfdfd;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.page-promotions-limited-time-offers__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #007bff; /* Primary blue */
  color: #ffffff;
  border-radius: 50%;
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-promotions-limited-time-offers__step-title {
  font-size: 1.7em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-promotions-limited-time-offers__step-description {
  color: #666;
  font-size: 0.95em;
}

.page-promotions-limited-time-offers__step-description a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.page-promotions-limited-time-offers__step-description a:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-promotions-limited-time-offers__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-promotions-limited-time-offers__terms-conditions {
  background-color: #f0f8ff;
}

.page-promotions-limited-time-offers__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-limited-time-offers__list li {
  background-color: #ffffff;
  border-left: 5px solid #007bff;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #444;
}

.page-promotions-limited-time-offers__list li strong {
  color: #007bff;
}

.page-promotions-limited-time-offers__text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #555;
}

.page-promotions-limited-time-offers__text a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.page-promotions-limited-time-offers__text a:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-promotions-limited-time-offers__platform-overview {
  background-color: #ffffff;
}

.page-promotions-limited-time-offers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-limited-time-offers__grid-item {
  text-align: center;
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-limited-time-offers__grid-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-promotions-limited-time-offers__grid-image {
  width: 100%;
  max-width: 150px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-promotions-limited-time-offers__grid-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-promotions-limited-time-offers__grid-description {
  color: #666;
  font-size: 0.9em;
}

.page-promotions-limited-time-offers__final-cta {
  text-align: center;
  margin-top: 60px;
  font-size: 1.2em;
  color: #333;
  font-weight: 500;
}

.page-promotions-limited-time-offers__final-cta a {
  color: #ffc107;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.page-promotions-limited-time-offers__final-cta a:hover {
  color: #e0a800;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-limited-time-offers__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-limited-time-offers__hero-description {
    font-size: 1.1em;
  }
  .page-promotions-limited-time-offers__section-title {
    font-size: 2em;
  }
  .page-promotions-limited-time-offers__offer-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-limited-time-offers__hero {
    padding: 80px 0;
  }
  .page-promotions-limited-time-offers__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-limited-time-offers__hero-description {
    font-size: 1em;
  }
  .page-promotions-limited-time-offers__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-limited-time-offers__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-promotions-limited-time-offers__section-title {
    font-size: 1.8em;
  }
  .page-promotions-limited-time-offers__features, 
  .page-promotions-limited-time-offers__offer-grid, 
  .page-promotions-limited-time-offers__steps, 
  .page-promotions-limited-time-offers__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-limited-time-offers__feature-item, 
  .page-promotions-limited-time-offers__offer-card, 
  .page-promotions-limited-time-offers__step-item, 
  .page-promotions-limited-time-offers__grid-item {
    padding: 25px;
  }
  .page-promotions-limited-time-offers__section-intro {
    margin-bottom: 40px;
  }
  .page-promotions-limited-time-offers__list li {
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-limited-time-offers__hero {
    padding: 60px 0;
  }
  .page-promotions-limited-time-offers__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-limited-time-offers__button {
    padding: 12px 20px;
    font-size: 1em;
    width: 90%;
  }
  .page-promotions-limited-time-offers__section-title {
    font-size: 1.5em;
  }
  .page-promotions-limited-time-offers__section-intro {
    font-size: 0.9em;
  }
  .page-promotions-limited-time-offers__feature-title, 
  .page-promotions-limited-time-offers__offer-title, 
  .page-promotions-limited-time-offers__step-title, 
  .page-promotions-limited-time-offers__grid-title {
    font-size: 1.4em;
  }
  .page-promotions-limited-time-offers__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .page-promotions-limited-time-offers__final-cta {
    font-size: 1em;
  }
}