/* style/promotions-deposit-bonus.css */
.page-promotions-deposit-bonus {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-promotions-deposit-bonus__hero {
  background: linear-gradient(135deg, #007bff, #28a745);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-deposit-bonus__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  animation: page-promotions-deposit-bonus__pulse 15s infinite alternate;
}

@keyframes page-promotions-deposit-bonus__pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0.8; }
}

.page-promotions-deposit-bonus__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  color: #ffffff; /* Đảm bảo độ tương phản */
}

.page-promotions-deposit-bonus__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  color: #e0e0e0; /* Đảm bảo độ tương phản */
}

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

.page-promotions-deposit-bonus__section:nth-child(even) {
  background-color: #e9ecef;
}

.page-promotions-deposit-bonus__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-promotions-deposit-bonus__sub-title {
  font-size: 1.8em;
  color: #28a745;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-promotions-deposit-bonus__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-promotions-deposit-bonus__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-promotions-deposit-bonus__text-content {
  flex: 1;
}

.page-promotions-deposit-bonus__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-promotions-deposit-bonus__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-deposit-bonus__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #495057;
}

.page-promotions-deposit-bonus__list li {
  margin-bottom: 10px;
}

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

.page-promotions-deposit-bonus__ordered-list {
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #495057;
}

.page-promotions-deposit-bonus__ordered-list li {
  margin-bottom: 10px;
}

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

.page-promotions-deposit-bonus__btn--primary {
  background-color: #28a745;
  color: #ffffff; /* Đảm bảo độ tương phản */
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.page-promotions-deposit-bonus__btn--primary:hover {
  background-color: #218838;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.6);
}

.page-promotions-deposit-bonus__btn--secondary {
  background-color: #007bff;
  color: #ffffff; /* Đảm bảo độ tương phản */
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.page-promotions-deposit-bonus__btn--secondary:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.6);
}

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

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

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

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

.page-promotions-deposit-bonus__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-promotions-deposit-bonus__step-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-promotions-deposit-bonus__faq-question {
  font-size: 1.2em;
  color: #007bff;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  background-color: #f1f7ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.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;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  color: #495057;
}

.page-promotions-deposit-bonus__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-promotions-deposit-bonus__call-to-action {
  background: linear-gradient(45deg, #007bff, #28a745);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  border-radius: 10px;
  margin: 60px auto;
  max-width: 1000px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonus__call-to-action .page-promotions-deposit-bonus__section-title {
  color: #ffffff; /* Đảm bảo độ tương phản */
  margin-bottom: 25px;
}

.page-promotions-deposit-bonus__call-to-action p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0; /* Đảm bảo độ tương phản */
}

.page-promotions-deposit-bonus__disclaimer {
  font-size: 0.9em;
  color: #c0c0c0; /* Đảm bảo độ tương phản */
  margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-deposit-bonus__title {
    font-size: 2.5em;
  }
  .page-promotions-deposit-bonus__subtitle {
    font-size: 1.1em;
  }
  .page-promotions-deposit-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-deposit-bonus__content-grid {
    flex-direction: column;
  }
  .page-promotions-deposit-bonus__content-grid--reverse {
    flex-direction: column;
  }
  .page-promotions-deposit-bonus__image-wrapper {
    order: -1; /* Image comes first on smaller screens */
    margin-bottom: 30px;
  }
  .page-promotions-deposit-bonus__steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .page-promotions-deposit-bonus__title {
    font-size: 2em;
  }
  .page-promotions-deposit-bonus__subtitle {
    font-size: 1em;
  }
  .page-promotions-deposit-bonus__section {
    padding: 40px 0;
  }
  .page-promotions-deposit-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promotions-deposit-bonus__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-deposit-bonus__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-promotions-deposit-bonus__hero {
    padding: 80px 0;
  }
  .page-promotions-deposit-bonus__call-to-action {
    padding: 60px 20px;
    margin: 40px 20px;
  }
  .page-promotions-deposit-bonus__faq-question,
  .page-promotions-deposit-bonus__faq-answer {
    padding: 15px 20px;
  }
}