/* style/promo.css */
.page-promo {
  color: #ffffff; /* Light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

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

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding-bottom: 60px; /* Add some padding below content */
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 100px; /* Space from top of hero section */
  padding-bottom: 80px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E3B505; /* Auxiliary color for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-promo__button--primary {
  background-color: #E3B505; /* Auxiliary color */
  color: #0A2463; /* Primary color */
  border: 2px solid #E3B505;
}

.page-promo__button--primary:hover {
  background-color: #ffc81a;
  transform: translateY(-2px);
}

.page-promo__button--secondary {
  background-color: transparent;
  color: #E3B505;
  border: 2px solid #E3B505;
}

.page-promo__button--secondary:hover {
  background-color: rgba(227, 181, 5, 0.2);
  transform: translateY(-2px);
}

/* Section Titles and Intros */
.page-promo__section-title {
  font-size: 2.8em;
  color: #E3B505; /* Auxiliary color */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-promo__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #f0f0f0;
}

/* Bonus Card */
.page-promo__welcome-bonus-section,
.page-promo__vip-section {
  padding: 80px 0;
  background-color: #0A2463; /* Primary color as background */
  margin-top: 40px;
}

.page-promo__bonus-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter background for card */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promo__bonus-details {
  flex: 1;
  padding: 40px;
  min-width: 300px;
}

.page-promo__bonus-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promo__bonus-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promo__card-title {
  font-size: 2em;
  color: #E3B505;
  margin-bottom: 15px;
}

.page-promo__card-description {
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-promo__bonus-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promo__bonus-features li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #ffffff;
}

.page-promo__feature-icon {
  color: #E3B505;
  margin-right: 10px;
}

/* Ongoing Promos Grid */
.page-promo__ongoing-promos-section {
  padding: 80px 0;
}

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

.page-promo__promo-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-promo__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

.page-promo__promo-card .page-promo__card-title {
  font-size: 1.6em;
  margin-top: 0;
}

.page-promo__promo-card .page-promo__card-description {
  flex-grow: 1;
  margin-bottom: 25px;
  color: #cccccc;
}

/* VIP Section */
.page-promo__vip-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-promo__vip-text {
  flex: 2;
  min-width: 300px;
}

.page-promo__vip-text p {
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-promo__vip-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promo__vip-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

/* How to Claim Section */
.page-promo__how-to-claim-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

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

.page-promo__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__step-icon {
  font-size: 2.5em;
  font-weight: bold;
  color: #E3B505;
  margin-bottom: 15px;
  display: block;
}

.page-promo__step-card .page-promo__card-title {
  font-size: 1.5em;
  color: #ffffff;
}

.page-promo__step-card .page-promo__card-description {
  color: #cccccc;
}

.page-promo__step-card .page-promo__card-description a {
  color: #E3B505;
  text-decoration: none;
}

.page-promo__step-card .page-promo__card-description a:hover {
  text-decoration: underline;
}

.page-promo__claim-cta {
  text-align: center;
  margin-top: 60px;
}

/* Terms Section */
.page-promo__terms-section {
  padding: 80px 0;
  background-color: #0A2463;
}

.page-promo__terms-section p {
  margin-bottom: 20px;
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__terms-section .page-promo__button {
  margin-top: 30px;
  margin-right: 20px;
}

/* FAQ Section */
.page-promo__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-promo__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promo__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__faq-question {
  font-size: 1.4em;
  color: #E3B505;
  margin-bottom: 15px;
}

.page-promo__faq-answer {
  color: #cccccc;
}

.page-promo__faq-cta {
  text-align: center;
  margin-top: 60px;
}

.page-promo__faq-cta .page-promo__button {
  margin-right: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }

  .page-promo__section-title {
    font-size: 2.2em;
  }

  .page-promo__bonus-details,
  .page-promo__vip-text {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-bottom: 40px;
  }

  .page-promo__hero-content {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .page-promo__hero-title {
    font-size: 2.5em;
  }

  .page-promo__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
  }

  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo__button {
    width: 80%;
    max-width: 300px;
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promo__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }

  .page-promo__section-intro {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .page-promo__welcome-bonus-section,
  .page-promo__ongoing-promos-section,
  .page-promo__vip-section,
  .page-promo__how-to-claim-section,
  .page-promo__terms-section,
  .page-promo__faq-section {
    padding: 60px 0;
  }

  .page-promo__bonus-card {
    flex-direction: column;
  }

  .page-promo__bonus-details {
    order: 2;
  }

  .page-promo__bonus-image-wrapper {
    order: 1;
    min-width: unset;
  }

  .page-promo__vip-content {
    flex-direction: column;
  }

  .page-promo__vip-image-wrapper {
    min-width: unset;
  }

  .page-promo__promo-image,
  .page-promo__bonus-image,
  .page-promo__vip-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for mobile images */
    min-height: 200px;
  }

  .page-promo__faq-cta .page-promo__button {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-promo__terms-section .page-promo__button {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

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

  .page-promo__hero-description {
    font-size: 1em;
  }

  .page-promo__section-title {
    font-size: 1.6em;
  }

  .page-promo__card-title {
    font-size: 1.5em;
  }

  .page-promo__promo-card,
  .page-promo__step-card,
  .page-promo__faq-item {
    padding: 20px;
  }

  .page-promo__promo-image,
  .page-promo__bonus-image,
  .page-promo__vip-image {
    min-width: 200px; /* Enforce minimum size for smaller mobile images */
    min-height: 200px;
  }
}