/* style/index-latest-promotions.css */
.page-index-latest-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-index-latest-promotions strong {
  color: #0A6847;
}

.page-index-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-latest-promotions__hero-section {
  background: linear-gradient(135deg, #0A6847, #1A9267);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-promotions__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,gaming,subtle_texture]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-latest-promotions__hero-section .page-index-latest-promotions__container {
  position: relative;
  z-index: 1;
}

.page-index-latest-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  border: none;
}

.page-index-latest-promotions__btn--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #0A6847; /* Main color for text */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #0A6847;
  color: #fff;
  border: 1px solid #0A6847;
}

.page-index-latest-promotions__btn--small:hover {
  background-color: #074a33;
  border-color: #074a33;
  transform: translateY(-1px);
}

.page-index-latest-promotions__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.page-index-latest-promotions__section:nth-of-type(odd) {
  background-color: #fcfcfc;
}

.page-index-latest-promotions__section-title {
  font-size: 2.5em;
  color: #0A6847;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-index-latest-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-index-latest-promotions__why-choose .page-index-latest-promotions__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-index-latest-promotions__feature-item {
  background-color: #f4fcf7; /* Light variant of main color */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-index-latest-promotions__feature-item:hover {
  transform: translateY(-5px);
}

.page-index-latest-promotions__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-index-latest-promotions__feature-title {
  font-size: 1.5em;
  color: #0A6847;
  margin-bottom: 15px;
}

.page-index-latest-promotions__promotions-list .page-index-latest-promotions__promo-card {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 30px;
}

.page-index-latest-promotions__promotions-list .page-index-latest-promotions__promo-card--reverse {
  flex-direction: row-reverse;
}

.page-index-latest-promotions__promo-image {
  flex: 1;
  max-width: 45%;
  border-radius: 8px;
  object-fit: cover;
  height: 300px;
}

.page-index-latest-promotions__promo-content {
  flex: 1;
  max-width: 55%;
}

.page-index-latest-promotions__promo-title {
  font-size: 2em;
  color: #0A6847;
  margin-bottom: 15px;
}

.page-index-latest-promotions__promo-description {
  margin-bottom: 20px;
  color: #555;
}

.page-index-latest-promotions__promo-details {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  color: #444;
}

.page-index-latest-promotions__promo-details li {
  margin-bottom: 8px;
}

.page-index-latest-promotions__how-to-claim .page-index-latest-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-index-latest-promotions__step-item {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions__step-number {
  width: 60px;
  height: 60px;
  background-color: #0A6847;
  color: #FFD700;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index-latest-promotions__step-title {
  font-size: 1.8em;
  color: #0A6847;
  margin-bottom: 15px;
}

.page-index-latest-promotions__terms-conditions {
  background-color: #f4fcf7; /* Light variant of main color */
  border-top: 5px solid #0A6847;
}

.page-index-latest-promotions__text-content {
  margin-bottom: 20px;
  color: #555;
}

.page-index-latest-promotions__terms-list {
  list-style-type: decimal;
  margin-left: 25px;
  color: #444;
}

.page-index-latest-promotions__terms-list li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.page-index-latest-promotions__faq .page-index-latest-promotions__faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-index-latest-promotions__faq-question {
  font-size: 1.4em;
  color: #0A6847;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-latest-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
}

.page-index-latest-promotions__faq-question.active::after {
  content: '-';
}

.page-index-latest-promotions__faq-answer {
  color: #666;
  display: none;
  padding-top: 10px;
  border-top: 1px dashed #eee;
  margin-top: 10px;
}

.page-index-latest-promotions__faq-answer.active {
  display: block;
}

.page-index-latest-promotions__cta-section {
  background-color: #0A6847;
  color: #fff;
  padding: 70px 0;
  text-align: center;
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-index-latest-promotions__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-latest-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-index-latest-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 2em;
  }
  .page-index-latest-promotions__promotions-list .page-index-latest-promotions__promo-card,
  .page-index-latest-promotions__promotions-list .page-index-latest-promotions__promo-card--reverse {
    flex-direction: column;
    text-align: center;
  }
  .page-index-latest-promotions__promo-image {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .page-index-latest-promotions__promo-content {
    max-width: 100%;
  }
  .page-index-latest-promotions__promo-details {
    text-align: left;
  }
  .page-index-latest-promotions__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions__hero-title {
    font-size: 2em;
  }
  .page-index-latest-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__promo-title {
    font-size: 1.6em;
  }
  .page-index-latest-promotions__feature-title,
  .page-index-latest-promotions__step-title {
    font-size: 1.3em;
  }
  .page-index-latest-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-latest-promotions__btn--small {
    padding: 8px 15px;
    font-size: 0.85em;
  }
  .page-index-latest-promotions__cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions__hero-section {
    padding: 50px 0;
  }
  .page-index-latest-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__section {
    padding: 40px 0;
  }
  .page-index-latest-promotions__promo-card {
    padding: 20px;
  }
  .page-index-latest-promotions__promo-image {
    height: 200px;
  }
  .page-index-latest-promotions__cta-section {
    padding: 50px 0;
  }
}