/* style/promotions-first-deposit-bonus.css */

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

.page-promotions-first-deposit-bonus__bg-light {
  background-color: #f8f9fa;
}

.page-promotions-first-deposit-bonus__hero-section {
  background: linear-gradient(135deg, #0A2463, #3B5998);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-first-deposit-bonus__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract_pattern,geometric,subtle_texture]');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions-first-deposit-bonus__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  color: #FFD700; /* Gold for emphasis */
}

.page-promotions-first-deposit-bonus__hero-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-promotions-first-deposit-bonus__hero-title a:hover {
  text-decoration: underline;
}

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

.page-promotions-first-deposit-bonus__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

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

.page-promotions-first-deposit-bonus__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 50px;
  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__content-section {
  padding: 60px 0;
}

.page-promotions-first-deposit-bonus__subtitle {
  font-size: 1.2em;
  color: #333333;
  text-align: center;
  margin-bottom: 40px;
}

.page-promotions-first-deposit-bonus__text-image-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-promotions-first-deposit-bonus__text-image-wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

.page-promotions-first-deposit-bonus__text-content {
  flex: 1;
  min-width: 300px;
}

.page-promotions-first-deposit-bonus__text-content p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus__text-content p a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-first-deposit-bonus__text-content p a:hover {
  text-decoration: underline;
}

.page-promotions-first-deposit-bonus__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

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

.page-promotions-first-deposit-bonus__step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-first-deposit-bonus__step-list li {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease;
  border-left: 5px solid #0A2463;
}

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

.page-promotions-first-deposit-bonus__step-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #FFD700;
  color: #0A2463;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-first-deposit-bonus__step-list h3 {
  font-size: 1.5em;
  color: #0A2463;
  margin-top: 15px;
  margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus__step-list p {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
}

.page-promotions-first-deposit-bonus__step-list p a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-first-deposit-bonus__step-list p a:hover {
  text-decoration: underline;
}

.page-promotions-first-deposit-bonus__btn {
  display: inline-block;
  background-color: #0A2463;
  color: #FFFFFF;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions-first-deposit-bonus__btn:hover {
  background-color: #1a3a7a;
}

.page-promotions-first-deposit-bonus__btn--secondary {
  background-color: #FFD700;
  color: #0A2463;
}

.page-promotions-first-deposit-bonus__btn--secondary:hover {
  background-color: #e6c200;
}

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

.page-promotions-first-deposit-bonus__note {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  border-left: 5px solid #ffc107;
  padding: 20px;
  border-radius: 8px;
  margin-top: 40px;
  font-size: 1.1em;
}

.page-promotions-first-deposit-bonus__bullet-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-promotions-first-deposit-bonus__bullet-list li {
  background-color: #FFFFFF;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333333;
  position: relative;
  padding-left: 40px;
}

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

.page-promotions-first-deposit-bonus__bullet-list li strong {
  color: #0A2463;
}

.page-promotions-first-deposit-bonus__text-center {
  text-align: center;
  font-size: 1.1em;
  color: #444444;
}

.page-promotions-first-deposit-bonus__text-center a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-first-deposit-bonus__text-center a:hover {
  text-decoration: underline;
}

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

.page-promotions-first-deposit-bonus__grid-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

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

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

.page-promotions-first-deposit-bonus__grid-item h3 {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-promotions-first-deposit-bonus__grid-item p {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
}

.page-promotions-first-deposit-bonus__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
}

.page-promotions-first-deposit-bonus__faq-item h3 {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-promotions-first-deposit-bonus__faq-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-promotions-first-deposit-bonus__faq-item p a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-first-deposit-bonus__faq-item p a:hover {
  text-decoration: underline;
}

.page-promotions-first-deposit-bonus__cta-banner {
  background: linear-gradient(90deg, #0A2463, #3B5998);
  color: #FFFFFF;
  padding: 60px 0;
  text-align: center;
}

.page-promotions-first-deposit-bonus__cta-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-promotions-first-deposit-bonus__cta-text {
  max-width: 800px;
}

.page-promotions-first-deposit-bonus__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus__cta-description {
  font-size: 1.3em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-promotions-first-deposit-bonus__cta-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-first-deposit-bonus__cta-description a:hover {
  text-decoration: underline;
}

.page-promotions-first-deposit-bonus__cta-button--large {
  padding: 20px 50px;
  font-size: 1.5em;
  border-radius: 10px;
}

.page-promotions-first-deposit-bonus__related-articles {
  padding: 60px 0;
}

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

.page-promotions-first-deposit-bonus__article-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-first-deposit-bonus__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.page-promotions-first-deposit-bonus__article-card h3 {
  font-size: 1.3em;
  color: #0A2463;
  margin: 20px 20px 10px 20px;
}

.page-promotions-first-deposit-bonus__article-title a {
  text-decoration: none;
  color: #0A2463;
}

.page-promotions-first-deposit-bonus__article-title a:hover {
  text-decoration: underline;
}

.page-promotions-first-deposit-bonus__article-excerpt {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.6;
  padding: 0 20px 20px 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-first-deposit-bonus__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-first-deposit-bonus__hero-description {
    font-size: 1.1em;
  }
  .page-promotions-first-deposit-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-first-deposit-bonus__text-image-wrapper {
    flex-direction: column;
  }
  .page-promotions-first-deposit-bonus__text-image-wrapper:nth-child(even) {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-promotions-first-deposit-bonus__hero-section {
    padding: 60px 0;
  }
  .page-promotions-first-deposit-bonus__hero-title {
    font-size: 2em;
  }
  .page-promotions-first-deposit-bonus__cta-button {
    font-size: 1.1em;
    padding: 12px 30px;
  }
  .page-promotions-first-deposit-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promotions-first-deposit-bonus__content-section {
    padding: 40px 0;
  }
  .page-promotions-first-deposit-bonus__step-list li {
    padding: 25px;
  }
  .page-promotions-first-deposit-bonus__step-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    top: -10px;
    left: 15px;
  }
  .page-promotions-first-deposit-bonus__grid-item {
    padding: 25px;
  }
  .page-promotions-first-deposit-bonus__icon {
    width: 60px;
    height: 60px;
  }
  .page-promotions-first-deposit-bonus__cta-title {
    font-size: 2.2em;
  }
  .page-promotions-first-deposit-bonus__cta-description {
    font-size: 1.1em;
  }
  .page-promotions-first-deposit-bonus__cta-button--large {
    padding: 15px 35px;
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-promotions-first-deposit-bonus__hero-section {
    padding: 40px 0;
  }
  .page-promotions-first-deposit-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-first-deposit-bonus__hero-description {
    font-size: 1em;
  }
  .page-promotions-first-deposit-bonus__section-title {
    font-size: 1.6em;
  }
  .page-promotions-first-deposit-bonus__cta-button {
    font-size: 1em;
    padding: 10px 25px;
  }
  .page-promotions-first-deposit-bonus__step-list li {
    padding: 20px;
  }
  .page-promotions-first-deposit-bonus__grid-item {
    padding: 20px;
  }
  .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--large {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}