/* style/promotions-first-deposit-bonus-details.css */
.page-promotions-first-deposit-bonus-details {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for text on dark background */
  background-color: #001F3F;
  line-height: 1.6;
}

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

.page-promotions-first-deposit-bonus-details__hero-section {
  background: linear-gradient(135deg, #001F3F 0%, #0a3a6b 100%); /* Dark blue gradient */
  padding: 80px 0 40px;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-promotions-first-deposit-bonus-details__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: page-promotions-first-deposit-bonus-details__pulse 15s infinite alternate;
  z-index: 0;
}

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

.page-promotions-first-deposit-bonus-details__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold */
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-promotions-first-deposit-bonus-details__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E0E0E0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-promotions-first-deposit-bonus-details__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-promotions-first-deposit-bonus-details__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;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.page-promotions-first-deposit-bonus-details__button--primary {
  background-color: #FFD700; /* Gold */
  color: #001F3F; /* Deep blue */
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-first-deposit-bonus-details__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions-first-deposit-bonus-details__button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
  margin-left: 20px;
}

.page-promotions-first-deposit-bonus-details__button--secondary:hover {
  background-color: #FFD700;
  color: #001F3F;
  transform: translateY(-3px);
}

.page-promotions-first-deposit-bonus-details__content-section {
  padding: 60px 0;
}

.page-promotions-first-deposit-bonus-details__heading {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

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

.page-promotions-first-deposit-bonus-details__sub-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus-details__content-section p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-promotions-first-deposit-bonus-details__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promotions-first-deposit-bonus-details__list li {
  background-color: #002D5C; /* Slightly lighter blue for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  position: relative;
  padding-left: 40px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus-details__list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.page-promotions-first-deposit-bonus-details__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-bottom: 30px;
}

.page-promotions-first-deposit-bonus-details__steps-list li {
  background-color: #002D5C;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  position: relative;
  padding-left: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit-bonus-details__steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  background-color: #FFD700;
  color: #001F3F;
  font-weight: bold;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 15px;
  top: 20px;
  font-size: 1.2em;
}

.page-promotions-first-deposit-bonus-details__steps-list li h3 {
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.4em;
}

.page-promotions-first-deposit-bonus-details__steps-list li p {
  color: #E0E0E0;
  margin-bottom: 0;
}

.page-promotions-first-deposit-bonus-details__steps-image,
.page-promotions-first-deposit-bonus-details__support-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-promotions-first-deposit-bonus-details__feature-item {
  background-color: #002D5C;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-first-deposit-bonus-details__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-first-deposit-bonus-details__feature-icon {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

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

.page-promotions-first-deposit-bonus-details__feature-item p {
  color: #C0C0C0;
  font-size: 1em;
}

.page-promotions-first-deposit-bonus-details__faq-container {
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-promotions-first-deposit-bonus-details__faq-item {
  background-color: #002D5C;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit-bonus-details__faq-question {
  background-color: #003A75; /* Darker blue for question header */
  color: #FFD700;
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions-first-deposit-bonus-details__faq-question:hover {
  background-color: #004F9F;
}

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

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

.page-promotions-first-deposit-bonus-details__faq-answer {
  padding: 0 25px;
  background-color: #002D5C;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-first-deposit-bonus-details__faq-answer p {
  padding-top: 15px;
  padding-bottom: 15px;
  color: #E0E0E0;
  margin-bottom: 0;
}

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

  .page-promotions-first-deposit-bonus-details__subtitle {
    font-size: 1em;
  }

  .page-promotions-first-deposit-bonus-details__heading {
    font-size: 2em;
  }

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

  .page-promotions-first-deposit-bonus-details__button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-promotions-first-deposit-bonus-details__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-first-deposit-bonus-details__list li,
  .page-promotions-first-deposit-bonus-details__steps-list li {
    padding-left: 50px;
  }
}

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

  .page-promotions-first-deposit-bonus-details__subtitle {
    font-size: 0.9em;
  }

  .page-promotions-first-deposit-bonus-details__heading {
    font-size: 1.8em;
  }

  .page-promotions-first-deposit-bonus-details__button {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .page-promotions-first-deposit-bonus-details__button--secondary {
    margin-top: 10px;
  }
}