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

.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, #003366 0%, #004d99 100%); /* Dark blue gradient */
  color: #fff;
  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: url('[GALLERY:bg:abstract,geometric,patterns,dark_blue_gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions-first-deposit-bonus__hero-section > .page-promotions-first-deposit-bonus__container {
  position: relative;
  z-index: 1;
}

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

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

.page-promotions-first-deposit-bonus__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-promotions-first-deposit-bonus__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #003366; /* Deep blue text */
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit-bonus__btn--lg {
  padding: 18px 40px;
  font-size: 1.4em;
}

.page-promotions-first-deposit-bonus__content-section {
  padding: 60px 0;
  color: #003366; /* Default text color for light backgrounds */
}

.page-promotions-first-deposit-bonus__bg--light-blue {
  background-color: #e6f2ff; /* Very light blue for contrast */
  color: #003366;
}

.page-promotions-first-deposit-bonus__bg--dark-blue {
  background-color: #003366; /* Deep blue background */
  color: #fff; /* White text on dark blue */
}

.page-promotions-first-deposit-bonus__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #003366;
}

.page-promotions-first-deposit-bonus__section-title--gold {
  color: #FFD700; /* Gold title on dark blue background */
}

.page-promotions-first-deposit-bonus__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-first-deposit-bonus__keyword {
  font-weight: bold;
  color: #FFD700; /* Gold for keywords on dark backgrounds */
}

.page-promotions-first-deposit-bonus__bg--light-blue .page-promotions-first-deposit-bonus__keyword {
  color: #003366; /* Deep blue for keywords on light backgrounds */
}

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

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

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

.page-promotions-first-deposit-bonus__grid-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD700; /* Gold title */
}

.page-promotions-first-deposit-bonus__grid-text {
  font-size: 1em;
  color: #e0e0e0;
}

.page-promotions-first-deposit-bonus__image-wrapper {
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
}

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

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

.page-promotions-first-deposit-bonus__step-list li {
  background-color: #fff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-promotions-first-deposit-bonus__step-list li:last-child {
  margin-bottom: 0;
}

.page-promotions-first-deposit-bonus__step-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #003366;
  margin-bottom: 10px;
}

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

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

.page-promotions-first-deposit-bonus__step-list p {
  font-size: 1em;
  color: #555;
  text-align: justify;
}

.page-promotions-first-deposit-bonus__cta-block {
  text-align: center;
  background-color: #004d99;
  padding: 40px;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.page-promotions-first-deposit-bonus__cta-text {
  font-size: 1.4em;
  margin-bottom: 25px;
  font-weight: 500;
  color: #FFD700;
}

.page-promotions-first-deposit-bonus__terms-list, .page-promotions-first-deposit-bonus__tip-list, .page-promotions-first-deposit-bonus__reason-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-promotions-first-deposit-bonus__terms-list li, .page-promotions-first-deposit-bonus__tip-list li, .page-promotions-first-deposit-bonus__reason-list li {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions-first-deposit-bonus__terms-title, .page-promotions-first-deposit-bonus__tip-title, .page-promotions-first-deposit-bonus__reason-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions-first-deposit-bonus__terms-list p, .page-promotions-first-deposit-bonus__tip-list p, .page-promotions-first-deposit-bonus__reason-list p {
  font-size: 1em;
  color: #e0e0e0;
  text-align: justify;
}

.page-promotions-first-deposit-bonus__faq-list {
  margin-top: 30px;
}

.page-promotions-first-deposit-bonus__faq-item {
  background-color: #fff;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-promotions-first-deposit-bonus__faq-question {
  font-size: 1.3em;
  font-weight: bold;
  color: #003366;
  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.2em;
  transition: transform 0.3s ease;
}

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

.page-promotions-first-deposit-bonus__faq-answer {
  font-size: 1em;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding-left: 10px;
  text-align: justify;
}

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

.page-promotions-first-deposit-bonus__final-cta-section {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-first-deposit-bonus__final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,patterns,dark_blue_gold]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-promotions-first-deposit-bonus__final-cta-section > .page-promotions-first-deposit-bonus__container {
  position: relative;
  z-index: 1;
}

.page-promotions-first-deposit-bonus__final-cta-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-first-deposit-bonus__final-cta-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-promotions-first-deposit-bonus__download-app {
  margin-top: 25px;
  font-size: 1.1em;
  color: #fff;
}

.page-promotions-first-deposit-bonus__download-app .page-promotions-first-deposit-bonus__link {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
}

.page-promotions-first-deposit-bonus__download-app .page-promotions-first-deposit-bonus__link:hover {
  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: 2em;
  }

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

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

  .page-promotions-first-deposit-bonus__step-list li {
    padding: 20px;
  }

  .page-promotions-first-deposit-bonus__step-title {
    font-size: 1.3em;
  }

  .page-promotions-first-deposit-bonus__cta-text {
    font-size: 1.2em;
  }

  .page-promotions-first-deposit-bonus__terms-title, .page-promotions-first-deposit-bonus__tip-title, .page-promotions-first-deposit-bonus__reason-title {
    font-size: 1.2em;
  }

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

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

  .page-promotions-first-deposit-bonus__btn--lg {
    padding: 15px 30px;
    font-size: 1.2em;
  }
}

@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__section-title {
    font-size: 1.8em;
  }

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

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

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

  .page-promotions-first-deposit-bonus__final-cta-subtitle {
    font-size: 0.95em;
  }

  .page-promotions-first-deposit-bonus__btn--lg {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}