/* style/promotions-deposit-bonus.css */
.page-promotions-deposit-bonus {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f8f8f8;
}

.page-promotions-deposit-bonus__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #0A2463 50%, #E3B505 100%);
  color: #ffffff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  gap: 30px;
}

.page-promotions-deposit-bonus__hero-content {
  max-width: 800px;
  z-index: 10;
}

.page-promotions-deposit-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #E3B505;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-deposit-bonus__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-promotions-deposit-bonus__cta-button {
  display: inline-block;
  background-color: #E3B505;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-deposit-bonus__cta-button:hover {
  background-color: #f0c20a;
  transform: translateY(-3px);
}

.page-promotions-deposit-bonus__hero-image-wrapper {
  position: absolute;
  bottom: -50px;
  right: -50px;
  opacity: 0.2;
  z-index: 5;
}

.page-promotions-deposit-bonus__hero-image {
  width: 400px;
  height: auto;
  transform: rotate(15deg);
}

.page-promotions-deposit-bonus__section {
  padding: 60px 20px;
}

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

.page-promotions-deposit-bonus__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-promotions-deposit-bonus__introduction p,
.page-promotions-deposit-bonus__terms p {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 20px;
}

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

.page-promotions-deposit-bonus__bonus-card,
.page-promotions-deposit-bonus__advantage-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #E3B505;
}

.page-promotions-deposit-bonus__bonus-card:hover,
.page-promotions-deposit-bonus__advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.page-promotions-deposit-bonus__card-icon,
.page-promotions-deposit-bonus__advantage-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-promotions-deposit-bonus__card-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-deposit-bonus__bonus-card p,
.page-promotions-deposit-bonus__advantage-card p {
  font-size: 1em;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

.page-promotions-deposit-bonus__card-button {
  display: inline-block;
  background-color: #0A2463;
  color: #E3B505;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions-deposit-bonus__card-button:hover {
  background-color: #1a3c7a;
  color: #f0c20a;
}

.page-promotions-deposit-bonus__how-to-claim {
  background-color: #eef4f9;
}

.page-promotions-deposit-bonus__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-promotions-deposit-bonus__steps-list li {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.page-promotions-deposit-bonus__step-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #E3B505;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions-deposit-bonus__step-icon img {
  width: 35px;
  height: 35px;
  filter: invert(10%) sepia(90%) saturate(600%) hue-rotate(190deg) brightness(90%) contrast(90%); /* Dark blue tint */
}

.page-promotions-deposit-bonus__steps-list li p {
  margin: 0;
  font-size: 1.1em;
  color: #333;
}

.page-promotions-deposit-bonus__steps-list li p strong {
  color: #0A2463;
}

.page-promotions-deposit-bonus__steps-list li a {
  color: #0A2463;
  font-weight: bold;
  text-decoration: none;
}

.page-promotions-deposit-bonus__steps-list li a:hover {
  text-decoration: underline;
  color: #E3B505;
}

.page-promotions-deposit-bonus__note {
  font-style: italic;
  color: #777;
  text-align: center;
  margin-top: 30px;
}

.page-promotions-deposit-bonus__center-button {
  text-align: center;
  margin-top: 40px;
}

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

.page-promotions-deposit-bonus__terms-list li {
  background-color: #fcfcfc;
  border-left: 5px solid #0A2463;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  font-size: 1em;
  line-height: 1.7;
  color: #444;
}

.page-promotions-deposit-bonus__terms-list li strong {
  color: #0A2463;
}

.page-promotions-deposit-bonus__faq {
  background-color: #eef4f9;
}

.page-promotions-deposit-bonus__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-promotions-deposit-bonus__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-deposit-bonus__faq-answer {
  font-size: 1.05em;
  line-height: 1.7;
  color: #555;
}

.page-promotions-deposit-bonus__final-cta {
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-promotions-deposit-bonus__final-cta .page-promotions-deposit-bonus__section-title {
  color: #E3B505;
}

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

.page-promotions-deposit-bonus__final-cta p {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-promotions-deposit-bonus__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-promotions-deposit-bonus__center-content {
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-deposit-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-deposit-bonus__hero-description {
    font-size: 1.2em;
  }
  .page-promotions-deposit-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-deposit-bonus__bonus-grid,
  .page-promotions-deposit-bonus__advantage-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-promotions-deposit-bonus__hero-image-wrapper {
    display: none;
  }
}

@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__section-title {
    font-size: 1.8em;
  }
  .page-promotions-deposit-bonus__steps-list li {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions-deposit-bonus__step-icon {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .page-promotions-deposit-bonus__hero-section {
    padding: 60px 15px;
  }
  .page-promotions-deposit-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-deposit-bonus__hero-description {
    font-size: 1em;
  }
  .page-promotions-deposit-bonus__section {
    padding: 40px 15px;
  }
  .page-promotions-deposit-bonus__section-title {
    font-size: 1.6em;
  }
  .page-promotions-deposit-bonus__bonus-grid,
  .page-promotions-deposit-bonus__advantage-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-deposit-bonus__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-promotions-deposit-bonus__card-title {
    font-size: 1.3em;
  }
  .page-promotions-deposit-bonus__faq-question {
    font-size: 1.1em;
  }
  .page-promotions-deposit-bonus__final-cta p {
    font-size: 1em;
  }
  .page-promotions-deposit-bonus__cta-button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}