.page-promotions-first-deposit-bonus {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

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

.page-promotions-first-deposit-bonus__hero-section {
  background: linear-gradient(135deg, #007BFF, #4da3ff); /* Sử dụng biến thể sáng hơn của màu chủ đạo */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

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

.page-promotions-first-deposit-bonus__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-first-deposit-bonus__section-title {
  font-size: 2.5em;
  color: #0056b3; /* Biến thể tối của màu chủ đạo */
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.page-promotions-first-deposit-bonus__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFC107;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions-first-deposit-bonus__sub-section-title {
  font-size: 1.8em;
  color: #007BFF;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFC107;
  padding-left: 15px;
}

.page-promotions-first-deposit-bonus__content-section {
  padding: 40px 0;
}

.page-promotions-first-deposit-bonus p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

.page-promotions-first-deposit-bonus__list,
.page-promotions-first-deposit-bonus__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #444;
}

.page-promotions-first-deposit-bonus__ordered-list {
  list-style-type: decimal;
}

.page-promotions-first-deposit-bonus__list li,
.page-promotions-first-deposit-bonus__ordered-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

.page-promotions-first-deposit-bonus__button--primary {
  background-color: #FFC107;
  color: #0056b3; /* Tối hơn của màu chủ đạo để có độ tương phản tốt */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit-bonus__button--accent {
  background-color: #007BFF;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__button--accent:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit-bonus__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-first-deposit-bonus__image--large {
  max-height: 400px;
  object-fit: cover;
  width: 100%;
}

.page-promotions-first-deposit-bonus__text-center {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-promotions-first-deposit-bonus__faq {
  margin-top: 40px;
}

.page-promotions-first-deposit-bonus__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-promotions-first-deposit-bonus__faq-answer {
  font-size: 1.0em;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions-first-deposit-bonus__hero-title {
    font-size: 2.5em;
  }

  .page-promotions-first-deposit-bonus__section-title {
    font-size: 2em;
  }

  .page-promotions-first-deposit-bonus__sub-section-title {
    font-size: 1.5em;
  }

  .page-promotions-first-deposit-bonus__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-first-deposit-bonus__hero-title {
    font-size: 2em;
  }

  .page-promotions-first-deposit-bonus__hero-description {
    font-size: 1em;
  }

  .page-promotions-first-deposit-bonus__section-title {
    font-size: 1.8em;
  }

  .page-promotions-first-deposit-bonus__sub-section-title {
    font-size: 1.3em;
  }

  .page-promotions-first-deposit-bonus__list,
  .page-promotions-first-deposit-bonus__ordered-list {
    margin-left: 15px;
  }

  .page-promotions-first-deposit-bonus__list li,
  .page-promotions-first-deposit-bonus__ordered-list li {
    font-size: 0.95em;
  }

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