/* style/promotions-referral-rewards.css */
.page-promotions-referral-rewards {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F8F8F8; /* Light text on dark background */
  background-color: #1A2E44; /* Main background color */
}

.page-promotions-referral-rewards a {
  color: #E7C200; /* Accent color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions-referral-rewards a:hover {
  color: #FFD700; /* Slightly brighter gold on hover */
  text-decoration: underline;
}

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

.page-promotions-referral-rewards__hero-section {
  background: linear-gradient(135deg, #1A2E44 0%, #304E6B 100%);
  padding: 100px 0;
  text-align: center;
  color: #F8F8F8;
}

.page-promotions-referral-rewards__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E7C200;
  line-height: 1.2;
}

.page-promotions-referral-rewards__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-promotions-referral-rewards__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
}

.page-promotions-referral-rewards__btn--primary {
  background-color: #E7C200;
  color: #1A2E44;
  border: 2px solid #E7C200;
}

.page-promotions-referral-rewards__btn--primary:hover {
  background-color: #FFD700;
  border-color: #FFD700;
  transform: translateY(-2px);
}

.page-promotions-referral-rewards__btn--secondary {
  background-color: transparent;
  color: #E7C200;
  border: 2px solid #E7C200;
}

.page-promotions-referral-rewards__btn--secondary:hover {
  background-color: #E7C200;
  color: #1A2E44;
  transform: translateY(-2px);
}

.page-promotions-referral-rewards__section {
  padding: 80px 0;
}

.page-promotions-referral-rewards__section--how-it-works {
  background-color: #122233;
}

.page-promotions-referral-rewards__section--rewards {
  background-color: #0d1a29;
}

.page-promotions-referral-rewards__section--terms {
  background-color: #122233;
}

.page-promotions-referral-rewards__section--optimize {
  background-color: #0d1a29;
}

.page-promotions-referral-rewards__section--faq {
  background-color: #1A2E44;
}

.page-promotions-referral-rewards__cta-section {
  background: linear-gradient(135deg, #E7C200 0%, #FFD700 100%);
  padding: 80px 0;
  text-align: center;
  color: #1A2E44; /* Dark text on light background */
}

.page-promotions-referral-rewards__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 60px;
  color: #E7C200;
}

.page-promotions-referral-rewards__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: -40px auto 60px auto;
  color: #D0D0D0;
}

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

.page-promotions-referral-rewards__feature-card {
  background-color: #253D5B;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-promotions-referral-rewards__feature-card:hover {
  transform: translateY(-5px);
}

.page-promotions-referral-rewards__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(231, 194, 0, 0.5));
}

.page-promotions-referral-rewards__card-title {
  font-size: 1.5em;
  color: #E7C200;
  margin-bottom: 15px;
}

.page-promotions-referral-rewards__card-text {
  color: #D0D0D0;
}

.page-promotions-referral-rewards__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-promotions-referral-rewards__step-card {
  background-color: #253D5B;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-top: 60px; /* Space for number */
}

.page-promotions-referral-rewards__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E7C200;
  color: #1A2E44;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid #1A2E44;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-referral-rewards__reward-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.page-promotions-referral-rewards__reward-card {
  background-color: #253D5B;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-referral-rewards__reward-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(231, 194, 0, 0.5));
}

.page-promotions-referral-rewards__reward-card ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-promotions-referral-rewards__reward-card li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #D0D0D0;
}

.page-promotions-referral-rewards__reward-card li::before {
  content: '✔';
  color: #E7C200;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions-referral-rewards__note {
  text-align: center;
  font-style: italic;
  margin-top: 40px;
  color: #A0A0A0;
}

.page-promotions-referral-rewards__content-block {
  background-color: #253D5B;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-referral-rewards__block-title {
  font-size: 1.8em;
  color: #E7C200;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promotions-referral-rewards__content-block p {
  margin-bottom: 20px;
  color: #D0D0D0;
}

.page-promotions-referral-rewards__list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-promotions-referral-rewards__list li {
  background-color: #253D5B;
  margin-bottom: 15px;
  padding: 20px 30px;
  border-radius: 8px;
  position: relative;
  padding-left: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #F8F8F8;
}

.page-promotions-referral-rewards__list li::before {
  content: '◆'; /* Diamond bullet */
  color: #E7C200;
  position: absolute;
  left: 20px;
  font-size: 1.5em;
  top: 50%;
  transform: translateY(-50%);
}

.page-promotions-referral-rewards__image-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-promotions-referral-rewards__illustration {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-referral-rewards__faq-item {
  background-color: #253D5B;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-referral-rewards__faq-question {
  font-size: 1.3em;
  color: #E7C200;
  margin-bottom: 10px;
}

.page-promotions-referral-rewards__faq-answer {
  color: #D0D0D0;
}

.page-promotions-referral-rewards__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #1A2E44;
}

.page-promotions-referral-rewards__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #333333;
}

.page-promotions-referral-rewards__cta-description a {
  color: #1A2E44;
  font-weight: bold;
}

.page-promotions-referral-rewards__cta-description a:hover {
  color: #4A6E8A;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-referral-rewards__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-referral-rewards__section-title {
    font-size: 2em;
  }
  .page-promotions-referral-rewards__cta-title {
    font-size: 2.2em;
  }
  .page-promotions-referral-rewards__grid, .page-promotions-referral-rewards__steps-grid, .page-promotions-referral-rewards__reward-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-referral-rewards__hero-section,
  .page-promotions-referral-rewards__section,
  .page-promotions-referral-rewards__cta-section {
    padding: 60px 0;
  }
  .page-promotions-referral-rewards__hero-title {
    font-size: 2em;
  }
  .page-promotions-referral-rewards__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-promotions-referral-rewards__section-subtitle {
    margin-top: -20px;
    margin-bottom: 40px;
  }
  .page-promotions-referral-rewards__cta-title {
    font-size: 1.8em;
  }
  .page-promotions-referral-rewards__feature-card,
  .page-promotions-referral-rewards__step-card,
  .page-promotions-referral-rewards__reward-card {
    padding: 25px;
  }
  .page-promotions-referral-rewards__block-title {
    font-size: 1.5em;
  }
  .page-promotions-referral-rewards__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-referral-rewards__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-referral-rewards__hero-description {
    font-size: 1em;
  }
  .page-promotions-referral-rewards__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-referral-rewards__section-title {
    font-size: 1.5em;
  }
  .page-promotions-referral-rewards__cta-title {
    font-size: 1.6em;
  }
  .page-promotions-referral-rewards__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-referral-rewards__step-card {
    padding-top: 40px;
  }
  .page-promotions-referral-rewards__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
    top: -15px;
  }
  .page-promotions-referral-rewards__reward-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-referral-rewards__list li {
    padding-left: 40px;
  }
  .page-promotions-referral-rewards__list li::before {
    left: 15px;
  }
}