/* style/promo-deposit-bonus.css */
.page-promo-deposit-bonus {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-promo-deposit-bonus__hero-section {
  position: relative;
  text-align: center;
  color: #ffffff;
  padding: 80px 20px;
  overflow: hidden;
  background-color: #0A2342;
}

.page-promo-deposit-bonus__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}

.page-promo-deposit-bonus__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-promo-deposit-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #F2C94C; /* Accent color for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-promo-deposit-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo-deposit-bonus__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;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
  color: #0A2342; /* Dark text on light button */
  background-color: #F2C94C; /* Accent color for buttons */
  border: 2px solid #F2C94C;
}

.page-promo-deposit-bonus__button--primary {
  background-color: #F2C94C;
  color: #0A2342;
  border: none;
}

.page-promo-deposit-bonus__button--primary:hover {
  background-color: #e0b83b;
  transform: translateY(-2px);
}

.page-promo-deposit-bonus__button--secondary {
  background-color: transparent;
  color: #F2C94C;
  border: 2px solid #F2C94C;
}

.page-promo-deposit-bonus__button--secondary:hover {
  background-color: rgba(242, 201, 76, 0.1);
  transform: translateY(-2px);
}

.page-promo-deposit-bonus__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  min-width: unset;
}

.page-promo-deposit-bonus__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  min-width: 250px;
}

.page-promo-deposit-bonus__section-title {
  font-size: 2.8em;
  color: #0A2342; /* Main color for section titles */
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
}

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

.page-promo-deposit-bonus__features-section,
.page-promo-deposit-bonus__how-it-works-section,
.page-promo-deposit-bonus__terms-section,
.page-promo-deposit-bonus__faq-section,
.page-promo-deposit-bonus__cta-section {
  padding: 60px 0;
}

.page-promo-deposit-bonus__features-section {
  background-color: #f9f9f9;
}

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

.page-promo-deposit-bonus__feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo-deposit-bonus__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-promo-deposit-bonus__feature-image {
  width: 100%;
  max-width: 400px; /* Constrain image width within card */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-promo-deposit-bonus__feature-title {
  font-size: 1.8em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-promo-deposit-bonus__feature-text {
  font-size: 1em;
  color: #666666;
}

.page-promo-deposit-bonus__how-it-works-section {
  background-color: #0A2342;
  color: #ffffff;
}

.page-promo-deposit-bonus__how-it-works-section .page-promo-deposit-bonus__section-title,
.page-promo-deposit-bonus__how-it-works-section .page-promo-deposit-bonus__section-intro {
  color: #ffffff;
}

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

.page-promo-deposit-bonus__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.page-promo-deposit-bonus__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #F2C94C;
  margin-bottom: 15px;
  border: 3px solid #F2C94C;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promo-deposit-bonus__step-title {
  font-size: 1.5em;
  color: #F2C94C;
  margin-bottom: 15px;
}

.page-promo-deposit-bonus__step-text {
  font-size: 1em;
  color: #cccccc;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-promo-deposit-bonus__terms-section {
  background-color: #f0f0f0;
}

.page-promo-deposit-bonus__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promo-deposit-bonus__term-item {
  background-color: #ffffff;
  border-left: 5px solid #0A2342;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-promo-deposit-bonus__term-item strong {
  color: #0A2342;
}

.page-promo-deposit-bonus__terms-note {
  font-style: italic;
  text-align: center;
  margin-top: 30px;
  color: #666666;
}

.page-promo-deposit-bonus__faq-section {
  background-color: #ffffff;
}

.page-promo-deposit-bonus__faq-accordion {
  margin-top: 40px;
}

.page-promo-deposit-bonus__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promo-deposit-bonus__faq-question {
  font-size: 1.3em;
  color: #0A2342;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f2f2f2;
  border-bottom: 1px solid #e0e0e0;
}

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

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

.page-promo-deposit-bonus__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  color: #555555;
}

.page-promo-deposit-bonus__faq-answer p {
  padding-bottom: 20px;
  margin: 0;
}

.page-promo-deposit-bonus__cta-section {
  background-color: #F2C94C;
  color: #0A2342;
  text-align: center;
  padding: 80px 20px;
}

.page-promo-deposit-bonus__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #0A2342;
}

.page-promo-deposit-bonus__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #333333;
}

.page-promo-deposit-bonus__call-to-action {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo-deposit-bonus__hero-title {
    font-size: 3em;
  }
  .page-promo-deposit-bonus__section-title {
    font-size: 2.2em;
  }
  .page-promo-deposit-bonus__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promo-deposit-bonus__hero-section {
    padding: 60px 15px;
  }
  .page-promo-deposit-bonus__hero-title {
    font-size: 2.5em;
  }
  .page-promo-deposit-bonus__hero-description {
    font-size: 1.1em;
  }
  .page-promo-deposit-bonus__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo-deposit-bonus__button {
    min-width: unset;
    width: 100%;
  }
  .page-promo-deposit-bonus__section-title {
    font-size: 1.8em;
    margin-top: 40px;
  }
  .page-promo-deposit-bonus__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promo-deposit-bonus__feature-grid, .page-promo-deposit-bonus__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo-deposit-bonus__feature-card,
  .page-promo-deposit-bonus__step-card {
    padding: 25px;
  }
  .page-promo-deposit-bonus__feature-image {
    max-width: 100%;
  }
  .page-promo-deposit-bonus__cta-title {
    font-size: 2em;
  }
  .page-promo-deposit-bonus__cta-description {
    font-size: 1.1em;
  }
  .page-promo-deposit-bonus__call-to-action {
    flex-direction: column;
    gap: 15px;
  }
  /* Ensure images in content area do not overflow */
  .page-promo-deposit-bonus img {
    max-width: 100%;
    height: auto;
  }
  /* Specific rule for content area images to prevent small sizes */
  .page-promo-deposit-bonus__feature-image,
  .page-promo-deposit-bonus__hero-image {
    min-width: 200px;
    min-height: 200px;
  }
}