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

.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, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFC107;
}

.page-promotions-first-deposit-bonus__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  animation: page-promotions-first-deposit-bonus__pulse 15s infinite ease-in-out;
}

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

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

.page-promotions-first-deposit-bonus__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}

.page-promotions-first-deposit-bonus__hero-cta-button {
  display: inline-block;
  background-color: #FFC107;
  color: #000;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFC107;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__hero-cta-button:hover {
  background-color: #e6b000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit-bonus__content-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-promotions-first-deposit-bonus__section-title {
  font-size: 2.5em;
  color: #007BFF;
  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: #FFC107;
  border-radius: 2px;
}

.page-promotions-first-deposit-bonus__sub-title {
  font-size: 1.8em;
  color: #0056b3;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

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

.page-promotions-first-deposit-bonus__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-promotions-first-deposit-bonus__step-list li {
  background-color: #e9f5ff;
  border-left: 5px solid #007BFF;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.page-promotions-first-deposit-bonus__step-list li:hover {
  transform: translateX(5px);
}

.page-promotions-first-deposit-bonus__step-list strong {
  color: #0056b3;
  font-size: 1.2em;
}

.page-promotions-first-deposit-bonus__terms-list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 40px;
}

.page-promotions-first-deposit-bonus__terms-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #555;
}

.page-promotions-first-deposit-bonus__terms-list strong {
  color: #007BFF;
}

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

.page-promotions-first-deposit-bonus__feature-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-first-deposit-bonus__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions-first-deposit-bonus__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-promotions-first-deposit-bonus__feature-title {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus__feature-description {
  font-size: 1em;
  color: #666;
}

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

.page-promotions-first-deposit-bonus__faq-item {
  background-color: #fefefe;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-first-deposit-bonus__faq-question {
  font-size: 1.2em;
  color: #0056b3;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  background-color: #e9f5ff;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions-first-deposit-bonus__faq-question:hover {
  background-color: #d6ecff;
}

.page-promotions-first-deposit-bonus__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #FFC107;
}

.page-promotions-first-deposit-bonus__faq-question.active::after {
  content: '-';
}

.page-promotions-first-deposit-bonus__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions-first-deposit-bonus__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 20px;
}

.page-promotions-first-deposit-bonus__faq-answer p {
  margin: 0;
  color: #666;
}

.page-promotions-first-deposit-bonus__cta-banner {
  background: linear-gradient(90deg, #007BFF, #4da3ff);
  color: #fff;
  padding: 50px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  border: 2px solid #FFC107;
}

.page-promotions-first-deposit-bonus__cta-title {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #FFC107;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__cta-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-promotions-first-deposit-bonus__cta-button {
  display: inline-block;
  background-color: #FFC107;
  color: #000;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__cta-button:hover {
  background-color: #e6b000;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

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

  .page-promotions-first-deposit-bonus__feature-item {
    padding: 25px;
  }

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

  .page-promotions-first-deposit-bonus__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-promotions-first-deposit-bonus__hero-section {
    padding: 60px 0;
  }

  .page-promotions-first-deposit-bonus__hero-title {
    font-size: 2.2em;
  }

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

  .page-promotions-first-deposit-bonus__hero-cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }

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

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

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

  .page-promotions-first-deposit-bonus__text-block, .page-promotions-first-deposit-bonus__step-list li, .page-promotions-first-deposit-bonus__terms-list li, .page-promotions-first-deposit-bonus__feature-description, .page-promotions-first-deposit-bonus__faq-question, .page-promotions-first-deposit-bonus__faq-answer p {
    font-size: 1em;
  }

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

  .page-promotions-first-deposit-bonus__cta-banner {
    padding: 40px;
  }

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

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

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

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

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

  .page-promotions-first-deposit-bonus__hero-cta-button {
    padding: 10px 20px;
    font-size: 1em;
  }

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

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

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

  .page-promotions-first-deposit-bonus__cta-description {
    font-size: 0.9em;
  }

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