/* style/promotions-first-deposit-offer.css */
.page-promotions-first-deposit-offer {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A1A2E; /* Primary dark background */
  line-height: 1.6;
}

.page-promotions-first-deposit-offer__hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #301934 50%, #E94560 100%); /* Gradient from primary to secondary */
  padding: 100px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.page-promotions-first-deposit-offer__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 1;
}

.page-promotions-first-deposit-offer__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-promotions-first-deposit-offer__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-first-deposit-offer__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-first-deposit-offer__hero-subtitle {
  font-size: 1.5em;
  color: #F0F0F0;
  margin-bottom: 40px;
}

.page-promotions-first-deposit-offer__button {
  display: inline-block;
  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;
  cursor: pointer;
  border: none;
}

.page-promotions-first-deposit-offer__button--primary {
  background-color: #E94560; /* Secondary color for primary action */
  color: #FFFFFF;
}

.page-promotions-first-deposit-offer__button--primary:hover {
  background-color: #d13a53;
  transform: translateY(-3px);
}

.page-promotions-first-deposit-offer__button--secondary {
  background-color: #3f3f58; /* A lighter shade of primary for secondary actions */
  color: #FFFFFF;
}

.page-promotions-first-deposit-offer__button--secondary:hover {
  background-color: #555570;
  transform: translateY(-3px);
}

.page-promotions-first-deposit-offer__button--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

.page-promotions-first-deposit-offer__section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-promotions-first-deposit-offer__section:nth-of-type(even) {
  background-color: #2A2A3E; /* Slightly lighter dark background for contrast */
}

.page-promotions-first-deposit-offer__section-title {
  font-size: 2.5em;
  color: #E94560; /* Secondary color for section titles */
  margin-bottom: 50px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit-offer__section-title .text-highlight {
  color: #FFFFFF;
}

.page-promotions-first-deposit-offer__content-block {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions-first-deposit-offer__content-block h3 {
  font-size: 1.8em;
  color: #FFFFFF;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-promotions-first-deposit-offer__content-block p,
.page-promotions-first-deposit-offer__content-block li {
  color: #E0E0E0;
  margin-bottom: 15px;
}

.page-promotions-first-deposit-offer__content-block a {
  color: #E94560;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions-first-deposit-offer__content-block a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

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

.page-promotions-first-deposit-offer__feature-item {
  background-color: #3A3A4E; /* Darker shade of primary for feature cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-promotions-first-deposit-offer__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #E94560);
}

.page-promotions-first-deposit-offer__feature-item h3 {
  color: #E94560;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-promotions-first-deposit-offer__feature-item p {
  color: #C0C0C0;
  font-size: 0.95em;
}

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

.page-promotions-first-deposit-offer__steps-list li {
  background-color: #3A3A4E;
  padding: 20px;
  border-left: 5px solid #E94560;
  margin-bottom: 15px;
  border-radius: 5px;
  position: relative;
  padding-left: 40px;
  font-size: 1.1em;
  color: #F0F0F0;
}

.page-promotions-first-deposit-offer__steps-list li strong {
  color: #FFFFFF;
}

.page-promotions-first-deposit-offer__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #E94560;
  color: #FFFFFF;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8em;
}

.page-promotions-first-deposit-offer__faq-accordion {
  max-width: 800px;
  margin: 50px auto 0;
}

.page-promotions-first-deposit-offer__faq-item {
  background-color: #3A3A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-first-deposit-offer__faq-question {
  background-color: #2A2A3E;
  color: #FFFFFF;
  padding: 20px 30px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-promotions-first-deposit-offer__faq-question:hover {
  background-color: #3f3f58;
}

.page-promotions-first-deposit-offer__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-first-deposit-offer__faq-item.active .page-promotions-first-deposit-offer__faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-first-deposit-offer__faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions-first-deposit-offer__faq-item.active .page-promotions-first-deposit-offer__faq-answer {
  max-height: 300px; /* Adjust based on content */
  padding: 20px 30px;
}

.page-promotions-first-deposit-offer__faq-answer p {
  margin-bottom: 0;
  color: #C0C0C0;
}

.page-promotions-first-deposit-offer__cta-final {
  background-color: #E94560;
  color: #FFFFFF;
  padding: 80px 20px;
}

.page-promotions-first-deposit-offer__cta-final .page-promotions-first-deposit-offer__section-title {
  color: #FFFFFF;
  text-shadow: none;
}

.page-promotions-first-deposit-offer__cta-final p {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-first-deposit-offer__cta-final .page-promotions-first-deposit-offer__button--primary {
  background-color: #1A1A2E;
  color: #FFFFFF;
}

.page-promotions-first-deposit-offer__cta-final .page-promotions-first-deposit-offer__button--primary:hover {
  background-color: #3f3f58;
}

.text-highlight {
  color: #E94560;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions-first-deposit-offer__hero {
    padding: 80px 15px;
  }

  .page-promotions-first-deposit-offer__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-promotions-first-deposit-offer__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

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

  .page-promotions-first-deposit-offer__content-block h3 {
    font-size: 1.5em;
  }

  .page-promotions-first-deposit-offer__why-choose .page-promotions-first-deposit-offer__features-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

  .page-promotions-first-deposit-offer__feature-item h3 {
    font-size: 1.4em;
  }

  .page-promotions-first-deposit-offer__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-promotions-first-deposit-offer__faq-answer {
    padding: 15px 20px;
  }
}