/* style/promotions-deposit-bonus.css */

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

.page-promotions-deposit-bonus .highlight {
  color: #007BFF; /* Main brand color for emphasis */
  font-weight: bold;
}

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

.page-promotions-deposit-bonus__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-deposit-bonus__section:nth-of-type(even) {
  background-color: #e9ecef; /* Slightly darker background for alternating sections */
}

.page-promotions-deposit-bonus__section-title {
  font-size: 2.5em;
  color: #007BFF; /* Main brand color */
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-promotions-deposit-bonus__section-intro {
  font-size: 1.1em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Hero Section */
.page-promotions-deposit-bonus__hero-section {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Darker blue gradient */
  color: #fff;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.page-promotions-deposit-bonus__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-promotions-deposit-bonus__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-promotions-deposit-bonus__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-promotions-deposit-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions-deposit-bonus__hero-title .highlight {
  color: #FFD700; /* Gold for highlight in hero */
}

.page-promotions-deposit-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-promotions-deposit-bonus__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-promotions-deposit-bonus__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0056b3; /* Darker blue for text on gold */
}

.page-promotions-deposit-bonus__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

.page-promotions-deposit-bonus__btn--secondary:hover {
  background-color: #FFD700;
  color: #0056b3;
  transform: translateY(-3px);
}

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

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

/* Why Choose Section */
.page-promotions-deposit-bonus__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

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

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

.page-promotions-deposit-bonus__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  color: #007BFF; /* Icon color */
}

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

.page-promotions-deposit-bonus__feature-description {
  color: #666;
}

/* Bonus Types Section */
.page-promotions-deposit-bonus__bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-deposit-bonus__bonus-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-deposit-bonus__bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-promotions-deposit-bonus__bonus-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-promotions-deposit-bonus__bonus-card-title {
  font-size: 1.3em;
  color: #007BFF;
  padding: 20px 20px 10px;
}

.page-promotions-deposit-bonus__bonus-card-description {
  color: #666;
  padding: 0 20px 20px;
  font-size: 0.95em;
}

.page-promotions-deposit-bonus__bonus-card .page-promotions-deposit-bonus__btn {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  background-color: #007BFF;
  color: #fff;
}

.page-promotions-deposit-bonus__bonus-card .page-promotions-deposit-bonus__btn:hover {
  background-color: #0056b3;
}

/* Terms Section */
.page-promotions-deposit-bonus__terms .page-promotions-deposit-bonus__container {
  text-align: left;
}

.page-promotions-deposit-bonus__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-promotions-deposit-bonus__image-left {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.page-promotions-deposit-bonus__text-right {
  flex: 2;
  min-width: 300px;
}

.page-promotions-deposit-bonus__text-right p {
  margin-bottom: 15px;
  color: #444;
}

.page-promotions-deposit-bonus__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions-deposit-bonus__list li {
  background-color: #f0f0f0;
  margin-bottom: 10px;
  padding: 10px 15px;
  border-left: 5px solid #FFD700; /* Gold accent */
  border-radius: 5px;
  color: #333;
}

.page-promotions-deposit-bonus__list li strong {
  color: #007BFF;
}

/* How to Claim Section */
.page-promotions-deposit-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-deposit-bonus__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  text-align: center;
}

.page-promotions-deposit-bonus__step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700; /* Gold */
  color: #0056b3; /* Darker blue */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  border: 3px solid #fff;
}

.page-promotions-deposit-bonus__step-icon {
  width: 80px;
  height: 80px;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #007BFF;
}

.page-promotions-deposit-bonus__step-title {
  font-size: 1.4em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-promotions-deposit-bonus__step-description {
  color: #666;
}

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

.page-promotions-deposit-bonus__text-link:hover {
  text-decoration: underline;
}

.page-promotions-deposit-bonus__cta-bottom {
  margin-top: 50px;
}

/* FAQ Section */
.page-promotions-deposit-bonus__faq-items {
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-deposit-bonus__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-deposit-bonus__faq-question {
  font-size: 1.2em;
  color: #007BFF;
  padding: 18px 25px;
  cursor: pointer;
  margin: 0;
  background-color: #f0f8ff; /* Light blue background for question */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-promotions-deposit-bonus__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-promotions-deposit-bonus__faq-answer {
  padding: 0 25px 18px;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions-deposit-bonus__faq-question.active + .page-promotions-deposit-bonus__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  padding: 15px 25px;
}

/* Final CTA Section */
.page-promotions-deposit-bonus__final-cta {
  background: linear-gradient(45deg, #007BFF, #0056b3);
  color: #fff;
  padding: 80px 0;
}

.page-promotions-deposit-bonus__final-cta .page-promotions-deposit-bonus__section-title {
  color: #FFD700; /* Gold title on dark blue background */
}

.page-promotions-deposit-bonus__final-cta .page-promotions-deposit-bonus__section-title::after {
  background-color: #fff;
}

.page-promotions-deposit-bonus__final-cta .page-promotions-deposit-bonus__section-intro {
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-deposit-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-deposit-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-deposit-bonus__content-wrapper {
    flex-direction: column;
  }
  .page-promotions-deposit-bonus__image-left {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promotions-deposit-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-deposit-bonus__hero-description {
    font-size: 1.1em;
  }
  .page-promotions-deposit-bonus__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-deposit-bonus__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-promotions-deposit-bonus__section {
    padding: 40px 0;
  }
  .page-promotions-deposit-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promotions-deposit-bonus__feature-item, .page-promotions-deposit-bonus__bonus-card, .page-promotions-deposit-bonus__step-item {
    padding: 20px;
  }
  .page-promotions-deposit-bonus__bonus-card .page-promotions-deposit-bonus__btn {
    width: calc(100% - 40px);
  }
}

@media (max-width: 576px) {
  .page-promotions-deposit-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-deposit-bonus__hero-description {
    font-size: 1em;
  }
  .page-promotions-deposit-bonus__btn {
    width: 90%;
  }
  .page-promotions-deposit-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promotions-deposit-bonus__section-intro {
    font-size: 0.95em;
  }
  .page-promotions-deposit-bonus__feature-item, .page-promotions-deposit-bonus__bonus-card, .page-promotions-deposit-bonus__step-item {
    margin-left: 10px;
    margin-right: 10px;
  }
}