/* style/promotions-first-deposit-bonus.css */
.page-promotions-first-deposit-bonus {
  font-family: 'Arial', sans-serif;
  color: #1A2E47; /* Main text color for contrast on light backgrounds */
  line-height: 1.6;
}

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

/* Hero Section */
.page-promotions-first-deposit-bonus__hero-section {
  background: linear-gradient(135deg, #1A2E47 0%, #3a5c8a 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-promotions-first-deposit-bonus__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-promotions-first-deposit-bonus__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2E47; /* Dark blue text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-promotions-first-deposit-bonus__hero-image {
  max-width: 90%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Content Section */
.page-promotions-first-deposit-bonus__content-section {
  padding: 60px 0;
  background-color: #f8f9fa; /* Light background for readability */
}

.page-promotions-first-deposit-bonus__section-title {
  font-size: 2.2em;
  color: #1A2E47;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

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

.page-promotions-first-deposit-bonus__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333;
  text-align: justify;
}

.page-promotions-first-deposit-bonus__paragraph a {
  color: #1A2E47;
  font-weight: bold;
  text-decoration: underline;
}

.page-promotions-first-deposit-bonus__paragraph a:hover {
  color: #FFD700;
}

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

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

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

.page-promotions-first-deposit-bonus__detail-title {
  font-size: 1.6em;
  color: #1A2E47;
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

.page-promotions-first-deposit-bonus__list li strong {
  color: #1A2E47;
}

.page-promotions-first-deposit-bonus__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-first-deposit-bonus__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions-first-deposit-bonus__steps-list li {
  background-color: #ffffff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  padding-left: 80px;
}

.page-promotions-first-deposit-bonus__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 25px;
  top: 25px;
  background-color: #FFD700;
  color: #1A2E47;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.5em;
}

.page-promotions-first-deposit-bonus__step-title {
  font-size: 1.4em;
  color: #1A2E47;
  margin-bottom: 10px;
}

.page-promotions-first-deposit-bonus__inline-button {
  display: inline-block;
  background-color: #1A2E47;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.page-promotions-first-deposit-bonus__inline-button:hover {
  background-color: #0d1e33;
}

.page-promotions-first-deposit-bonus__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-promotions-first-deposit-bonus__faq-question {
  font-size: 1.3em;
  color: #1A2E47;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions-first-deposit-bonus__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promotions-first-deposit-bonus__faq-question.active::after {
  transform: rotate(45deg);
}

.page-promotions-first-deposit-bonus__faq-answer {
  font-size: 1.05em;
  color: #555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-promotions-first-deposit-bonus__faq-answer.active {
  display: block;
}

.page-promotions-first-deposit-bonus__cta-buttons-group {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-promotions-first-deposit-bonus__cta-button--primary {
  background-color: #FFD700;
  color: #1A2E47;
}

.page-promotions-first-deposit-bonus__cta-button--primary:hover {
  background-color: #e6c200;
}

.page-promotions-first-deposit-bonus__cta-button--secondary {
  background-color: #1A2E47;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions-first-deposit-bonus__cta-button--secondary:hover {
  background-color: #0d1e33;
  border-color: #e6c200;
}

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

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

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

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

  .page-promotions-first-deposit-bonus__steps-list li {
    padding-left: 60px;
  }

  .page-promotions-first-deposit-bonus__steps-list li::before {
    width: 30px;
    height: 30px;
    font-size: 1.2em;
    left: 15px;
    top: 20px;
  }

  .page-promotions-first-deposit-bonus__faq-question {
    font-size: 1.1em;
  }
}

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

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

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

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

  .page-promotions-first-deposit-bonus__paragraph,
  .page-promotions-first-deposit-bonus__list li,
  .page-promotions-first-deposit-bonus__faq-answer {
    font-size: 0.95em;
  }

  .page-promotions-first-deposit-bonus__detail-item {
    padding: 20px;
  }

  .page-promotions-first-deposit-bonus__cta-buttons-group {
    flex-direction: column;
  }
}