/* style/promo-exclusive-offers.css */

/* Base Styles */
.page-promo-exclusive-offers {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  overflow-x: hidden;
}

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

.page-promo-exclusive-offers__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Auxiliary color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-promo-exclusive-offers__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-promo-exclusive-offers__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000;
}

.page-promo-exclusive-offers__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.7;
}

.page-promo-exclusive-offers__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 10;
  padding: 20px;
  max-width: 90%;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-promo-exclusive-offers__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Main color */
  margin-bottom: 15px;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-promo-exclusive-offers__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo-exclusive-offers__hero-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promo-exclusive-offers__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo-exclusive-offers__hero-button--primary {
  background-color: #FFD700; /* Main color */
  color: #8B0000; /* Auxiliary color */
  border: 2px solid #FFD700;
}

.page-promo-exclusive-offers__hero-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promo-exclusive-offers__hero-button--secondary {
  background-color: transparent;
  color: #FFD700; /* Main color */
  border: 2px solid #FFD700;
}

.page-promo-exclusive-offers__hero-button--secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
  transform: translateY(-3px);
}

/* Bonus Cards Section */
.page-promo-exclusive-offers__bonuses-section,
.page-promo-exclusive-offers__daily-weekly-section,
.page-promo-exclusive-offers__vip-section,
.page-promo-exclusive-offers__how-to-claim-section,
.page-promo-exclusive-offers__terms-section,
.page-promo-exclusive-offers__final-cta-section {
  padding: 60px 0;
}

.page-promo-exclusive-offers__bonuses-section {
  background-color: #f9f9f9;
}

.page-promo-exclusive-offers__daily-weekly-section {
  background-color: #ffffff;
}

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

.page-promo-exclusive-offers__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  border-top: 5px solid #FFD700;
}

.page-promo-exclusive-offers__card:hover {
  transform: translateY(-5px);
}

.page-promo-exclusive-offers__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promo-exclusive-offers__card-title {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo-exclusive-offers__card-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo-exclusive-offers__card-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FFD700;
  color: #8B0000;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
}

.page-promo-exclusive-offers__card-button:hover {
  background-color: #e6c200;
}

/* VIP Section */
.page-promo-exclusive-offers__vip-section {
  background: linear-gradient(135deg, #8B0000, #5a0000);
  color: #ffffff;
}

.page-promo-exclusive-offers__vip-section .page-promo-exclusive-offers__section-title {
  color: #FFD700;
}

.page-promo-exclusive-offers__vip-section .page-promo-exclusive-offers__section-description {
  color: #f0f0f0;
}

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

.page-promo-exclusive-offers__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-promo-exclusive-offers__feature-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promo-exclusive-offers__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promo-exclusive-offers__feature-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-promo-exclusive-offers__vip-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0 auto;
  padding: 15px 30px;
  background-color: #FFD700;
  color: #8B0000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
}

.page-promo-exclusive-offers__vip-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* How to Claim Section */
.page-promo-exclusive-offers__how-to-claim-section {
  background-color: #f9f9f9;
}

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

.page-promo-exclusive-offers__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  position: relative;
  border-bottom: 5px solid #8B0000;
}

.page-promo-exclusive-offers__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #8B0000;
  color: #FFD700;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid #FFD700;
}

.page-promo-exclusive-offers__step-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promo-exclusive-offers__step-text {
  font-size: 1em;
  color: #555555;
}

.page-promo-exclusive-offers__cta-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0 auto;
  padding: 18px 35px;
  background-color: #8B0000;
  color: #FFD700;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
}

.page-promo-exclusive-offers__cta-button:hover {
  background-color: #5a0000;
  transform: translateY(-3px);
}

/* Terms Section */
.page-promo-exclusive-offers__terms-section {
  background-color: #ffffff;
}

.page-promo-exclusive-offers__terms-link {
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
  color: #8B0000;
  text-decoration: underline;
  font-weight: bold;
  font-size: 1.1em;
}

.page-promo-exclusive-offers__terms-link:hover {
  color: #FFD700;
}

/* Final CTA Section */
.page-promo-exclusive-offers__final-cta-section {
  background: linear-gradient(45deg, #FFD700, #e6c200);
  color: #8B0000;
  padding: 80px 0;
}

.page-promo-exclusive-offers__final-cta-section .page-promo-exclusive-offers__section-title {
  color: #8B0000;
}

.page-promo-exclusive-offers__final-cta-section .page-promo-exclusive-offers__section-description {
  color: #5a0000;
}

.page-promo-exclusive-offers__final-ctas {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-promo-exclusive-offers__final-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo-exclusive-offers__final-button--primary {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #8B0000;
}

.page-promo-exclusive-offers__final-button--primary:hover {
  background-color: #5a0000;
  transform: translateY(-3px);
}

.page-promo-exclusive-offers__final-button--secondary {
  background-color: transparent;
  color: #8B0000;
  border: 2px solid #8B0000;
}

.page-promo-exclusive-offers__final-button--secondary:hover {
  background-color: #8B0000;
  color: #FFD700;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo-exclusive-offers__hero-title {
    font-size: 2.8em;
  }
  .page-promo-exclusive-offers__hero-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-promo-exclusive-offers__section-title {
    font-size: 2em;
  }
  .page-promo-exclusive-offers__hero-title {
    font-size: 2.2em;
  }
  .page-promo-exclusive-offers__hero-description {
    font-size: 1em;
  }
  .page-promo-exclusive-offers__hero-ctas,
  .page-promo-exclusive-offers__final-ctas {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo-exclusive-offers__hero-button,
  .page-promo-exclusive-offers__final-button {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-promo-exclusive-offers__card,
  .page-promo-exclusive-offers__feature-item,
  .page-promo-exclusive-offers__step-item {
    padding: 20px;
  }
  .page-promo-exclusive-offers__hero-image,
  .page-promo-exclusive-offers__hero-image img,
  .page-promo-exclusive-offers__bonuses-section img,
  .page-promo-exclusive-offers__daily-weekly-section img,
  .page-promo-exclusive-offers__vip-section img,
  .page-promo-exclusive-offers__how-to-claim-section img {
    max-width: 100%;
    height: auto;
  }
  .page-promo-exclusive-offers__hero-content {
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .page-promo-exclusive-offers__section-title {
    font-size: 1.8em;
  }
  .page-promo-exclusive-offers__hero-title {
    font-size: 1.8em;
  }
  .page-promo-exclusive-offers__hero-description {
    font-size: 0.9em;
  }
  .page-promo-exclusive-offers__card-title {
    font-size: 1.4em;
  }
  .page-promo-exclusive-offers__feature-title,
  .page-promo-exclusive-offers__step-title {
    font-size: 1.3em;
  }
  .page-promo-exclusive-offers__hero-button,
  .page-promo-exclusive-offers__final-button {
    font-size: 1.1em;
    padding: 12px 20px;
  }
}