/* style/promotions-birthday-bonus.css */
.page-promotions-birthday-bonus {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

/* Hero Section */
.page-promotions-birthday-bonus__hero-section {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Darker blue for background */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-birthday-bonus__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:birthday_celebration_pattern,abstract_confetti,festive_background]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions-birthday-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 1;
}

.page-promotions-birthday-bonus__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

.page-promotions-birthday-bonus__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* Buttons */
.page-promotions-birthday-bonus__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  text-align: center;
}

.page-promotions-birthday-bonus__btn--primary {
  background-color: #FFC107; /* Auxiliary color for primary action */
  color: #000; /* Ensure high contrast with #FFC107 */
  border: 2px solid #FFC107;
}

.page-promotions-birthday-bonus__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
}

.page-promotions-birthday-bonus__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-promotions-birthday-bonus__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-promotions-birthday-bonus__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promotions-birthday-bonus__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* General Section Styling */
.page-promotions-birthday-bonus__about-section,
.page-promotions-birthday-bonus__details-section,
.page-promotions-birthday-bonus__how-to-claim-section,
.page-promotions-birthday-bonus__terms-section,
.page-promotions-birthday-bonus__why-choose-section,
.page-promotions-birthday-bonus__faq-section,
.page-promotions-birthday-bonus__cta-section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions-birthday-bonus__about-section {
  background-color: #e3f2fd; /* Light blue background */
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-promotions-birthday-bonus__section-title {
  font-size: 2.5em;
  color: #007BFF; /* Main brand color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-birthday-bonus__sub-title {
  font-size: 1.8em;
  color: #0056b3;
  margin-top: 30px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFC107;
  padding-bottom: 10px;
}

.page-promotions-birthday-bonus__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #495057;
  text-align: justify;
}

.page-promotions-birthday-bonus__text-content .keyword {
  font-weight: bold;
  color: #007BFF;
}

.page-promotions-birthday-bonus__text-content .highlight-text {
  color: #FFC107;
}

.page-promotions-birthday-bonus__inline-link {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-birthday-bonus__inline-link:hover {
  text-decoration: underline;
  color: #0056b3;
}

/* Image Styling */
.page-promotions-birthday-bonus__image-full-width {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-promotions-birthday-bonus__image-responsive {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Lists */
.page-promotions-birthday-bonus__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-promotions-birthday-bonus__list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1em;
  color: #495057;
}

.page-promotions-birthday-bonus__list .list-icon {
  color: #007BFF; /* Main color for checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
  top: 0;
}

.page-promotions-birthday-bonus__list--styled li .list-icon {
  color: #FFC107; /* Auxiliary color for warning/important lists */
}

/* How-To-Claim Steps */
.page-promotions-birthday-bonus__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-birthday-bonus__step-item {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-promotions-birthday-bonus__step-item:hover {
  transform: translateY(-5px);
}

.page-promotions-birthday-bonus__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #007BFF;
  margin-bottom: 15px;
  display: inline-block;
  background-color: #e0f2f7;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}

.page-promotions-birthday-bonus__step-title {
  font-size: 1.4em;
  color: #0056b3;
  margin-bottom: 15px;
}

.page-promotions-birthday-bonus__step-description {
  font-size: 1em;
  color: #6c757d;
  margin-bottom: 20px;
}

.page-promotions-birthday-bonus__image-step {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Why Choose Section */
.page-promotions-birthday-bonus__why-choose-section {
  background-color: #f0f8ff;
}

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

.page-promotions-birthday-bonus__feature-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-birthday-bonus__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-promotions-birthday-bonus__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.2));
}

.page-promotions-birthday-bonus__feature-title {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-promotions-birthday-bonus__feature-description {
  font-size: 1em;
  color: #6c757d;
  text-align: justify;
}

/* FAQ Section */
.page-promotions-birthday-bonus__faq-section {
  background-color: #fff;
}

.page-promotions-birthday-bonus__faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.page-promotions-birthday-bonus__faq-question {
  font-size: 1.2em;
  color: #0056b3;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions-birthday-bonus__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFC107;
  transition: transform 0.3s ease;
}

.page-promotions-birthday-bonus__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-birthday-bonus__faq-answer {
  font-size: 1.05em;
  color: #6c757d;
  padding-top: 10px;
  display: none; /* Hidden by default, toggled by JS */
}

.page-promotions-birthday-bonus__faq-question.active + .page-promotions-birthday-bonus__faq-answer {
  display: block;
}

/* CTA Section */
.page-promotions-birthday-bonus__cta-section {
  background: linear-gradient(90deg, #007BFF, #0056b3);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-birthday-bonus__cta-section .page-promotions-birthday-bonus__section-title {
  color: #fff;
}

.page-promotions-birthday-bonus__cta-section .page-promotions-birthday-bonus__text-content {
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-promotions-birthday-bonus__cta-section .page-promotions-birthday-bonus__btn--primary {
  background-color: #FFC107;
  color: #000;
  border-color: #FFC107;
}

.page-promotions-birthday-bonus__cta-section .page-promotions-birthday-bonus__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-birthday-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-birthday-bonus__hero-subtitle {
    font-size: 1.2em;
  }
  .page-promotions-birthday-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-birthday-bonus__step-by-step,
  .page-promotions-birthday-bonus__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-birthday-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-birthday-bonus__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-birthday-bonus__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-birthday-bonus__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-promotions-birthday-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promotions-birthday-bonus__sub-title {
    font-size: 1.5em;
  }
  .page-promotions-birthday-bonus__text-content,
  .page-promotions-birthday-bonus__list li,
  .page-promotions-birthday-bonus__faq-answer {
    font-size: 0.95em;
  }
  .page-promotions-birthday-bonus__image-responsive {
    max-width: 95%;
  }
}

@media (max-width: 576px) {
  .page-promotions-birthday-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-birthday-bonus__hero-subtitle {
    font-size: 0.9em;
  }
  .page-promotions-birthday-bonus__btn {
    width: 90%;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-birthday-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promotions-birthday-bonus__sub-title {
    font-size: 1.3em;
  }
  .page-promotions-birthday-bonus__step-item,
  .page-promotions-birthday-bonus__feature-item {
    padding: 20px;
  }
  .page-promotions-birthday-bonus__faq-question {
    font-size: 1.1em;
  }
}