/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main dark blue background */
  line-height: 1.6;
}

.page-promotions-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0A192F 0%, #1a3a61 100%); /* Dark blue gradient */
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #FFD700;
}

.page-promotions-hero-content {
  max-width: 900px;
  z-index: 10;
}

.page-promotions-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background-size: cover;
  background-position: center;
}

.page-promotions-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold accent for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-subtitle {
  font-size: 1.4em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-promotions-btn-primary {
  display: inline-block;
  background-color: #FFD700; /* Gold for primary button */
  color: #0A192F; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-btn-primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-promotions-img-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-promotions-section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold accent for section titles */
  text-align: center;
  margin: 60px 0 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-promotions-overview, .page-promotions-detail-sections, .page-promotions-how-to-claim, .page-promotions-more-details, .page-promotions-faq, .page-promotions-final-cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-promotions-text-block {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #d0d0d0;
}

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

.page-promotions-promo-item {
  background-color: #1a2a47; /* Slightly lighter dark blue */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #FFD70030;
}

.page-promotions-promo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-promotions-promo-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-promotions-promo-item h3 {
  font-size: 1.5em;
  color: #FFD700; /* Gold for promo item titles */
  margin-bottom: 15px;
}

.page-promotions-promo-item p {
  color: #c0c0c0;
  margin-bottom: 25px;
  font-size: 1em;
}

.page-promotions-btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions-btn-secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-promotions-promo-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #1a2a47;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
  padding: 30px;
  gap: 30px;
  border: 1px solid #FFD70030;
}

.page-promotions-promo-card.page-promotions-reverse-layout {
  flex-direction: row-reverse;
}

.page-promotions-card-image {
  flex: 1;
  max-width: 45%;
  border-radius: 8px;
  height: auto;
  object-fit: cover;
  filter: brightness(0.9) saturate(1.1);
}

.page-promotions-card-content {
  flex: 1;
  max-width: 55%;
}

.page-promotions-card-content h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-card-content p {
  color: #c0c0c0;
  margin-bottom: 25px;
  font-size: 1.05em;
}

.page-promotions-btn-tertiary {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
}

.page-promotions-btn-tertiary:hover {
  background-color: #e6c200;
  transform: translateY(-1px);
}

.page-promotions-how-to-claim {
  background-color: #0A192F;
  padding: 60px 20px;
  border-top: 2px solid #FFD700;
}

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

.page-promotions-step-item {
  background-color: #1a2a47;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD70030;
}

.page-promotions-step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: brightness(1.2) drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions-step-item h3 {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions-step-item p {
  color: #c0c0c0;
  font-size: 0.95em;
}

.page-promotions-step-item a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions-step-item a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-promotions-cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-promotions-cta-bottom p {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-promotions-detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-detail-item {
  background-color: #1a2a47;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD70030;
}

.page-promotions-detail-item h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-promotions-detail-item h3 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions-detail-item h3 a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-promotions-detail-item p {
  color: #c0c0c0;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-promotions-btn-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 3px;
  transition: all 0.3s ease;
}

.page-promotions-btn-link:hover {
  color: #e6c200;
  border-color: #e6c200;
  padding-bottom: 5px;
}

.page-promotions-faq-item {
  background-color: #1a2a47;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD70030;
}

.page-promotions-faq-item h3 {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions-faq-item p {
  color: #c0c0c0;
  font-size: 1em;
}

.page-promotions-final-cta {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(45deg, #0A192F, #334a6d);
  border-top: 2px solid #FFD700;
}

.page-promotions-final-cta .page-promotions-section-title {
  margin-top: 0;
  margin-bottom: 20px;
}

.page-promotions-final-cta p {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-promotions-final-cta .page-promotions-btn-primary {
  margin-right: 20px;
}

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

  .page-promotions-subtitle {
    font-size: 1.2em;
  }

  .page-promotions-section-title {
    font-size: 2em;
  }

  .page-promotions-promo-card {
    flex-direction: column;
    text-align: center;
  }

  .page-promotions-promo-card.page-promotions-reverse-layout {
    flex-direction: column;
  }

  .page-promotions-card-image {
    max-width: 80%;
    margin-bottom: 20px;
  }

  .page-promotions-card-content {
    max-width: 100%;
  }

  .page-promotions-final-cta .page-promotions-btn-primary {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions-title {
    font-size: 2em;
  }

  .page-promotions-subtitle {
    font-size: 1em;
  }

  .page-promotions-promo-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-steps-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-detail-list {
    grid-template-columns: 1fr;
  }

  .page-promotions-final-cta .page-promotions-btn-secondary {
    display: block;
    width: 100%;
  }
}