/* style/promotions-deposit-bonus.css */
.page-promotions-deposit-bonus {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for readability on dark background */
  background-color: #0A192F; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-promotions-deposit-bonus__hero-section {
  background: linear-gradient(135deg, #0A192F, #2c3e50); /* Dark blue to slightly lighter dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  border-bottom: 2px solid #FFD700; /* Gold accent */
}

.page-promotions-deposit-bonus__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
}

.page-promotions-deposit-bonus__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #cccccc;
}

.page-promotions-deposit-bonus__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  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: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-promotions-deposit-bonus__cta-button--inline {
  margin-top: 30px;
  margin-bottom: 30px;
}

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

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

.page-promotions-deposit-bonus__article {
  background-color: #1a2a40; /* Slightly lighter dark blue for article background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-promotions-deposit-bonus__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid #334a6d; /* Subtle separator */
  padding-bottom: 10px;
}

.page-promotions-deposit-bonus__section-title:first-of-type {
  margin-top: 0;
}

.page-promotions-deposit-bonus__subsection-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold for sub-section titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promotions-deposit-bonus p {
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-promotions-deposit-bonus strong {
  color: #FFD700;
}

.page-promotions-deposit-bonus__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-promotions-deposit-bonus__faq-item {
  background-color: #2c3e50; /* Slightly different dark blue for FAQ items */
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700; /* Gold accent for FAQ */
}

.page-promotions-deposit-bonus__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions-deposit-bonus__faq-answer {
  color: #e0e0e0;
}

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

  .page-promotions-deposit-bonus__hero-subtitle {
    font-size: 1.2em;
  }

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

  .page-promotions-deposit-bonus__subsection-title {
    font-size: 1.4em;
  }

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

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

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

  .page-promotions-deposit-bonus__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }

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

  .page-promotions-deposit-bonus__subsection-title {
    font-size: 1.2em;
  }

  .page-promotions-deposit-bonus__list {
    margin-left: 15px;
  }
}