/* style/promotions-first-deposit-bonus.css */
.page-promotions-first-deposit-bonus {
  font-family: 'Arial', sans-serif;
  color: #F0F0F0; /* Light text for dark backgrounds */
  background-color: #0A2342; /* Main dark background */
  line-height: 1.6;
}

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

.page-promotions-first-deposit-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A2342 0%, #1A3F6D 100%); /* Dark blue gradient */
  overflow: hidden;
  min-height: 450px;
}

.page-promotions-first-deposit-bonus__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

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

.page-promotions-first-deposit-bonus__hero-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

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

.page-promotions-first-deposit-bonus__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-promotions-first-deposit-bonus__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-first-deposit-bonus__section:nth-of-type(even) {
  background-color: #0F2D52; /* Slightly lighter dark blue */
}

.page-promotions-first-deposit-bonus__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit-bonus__section-intro {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #C0C0C0;
}

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

.page-promotions-first-deposit-bonus__detail-item {
  background-color: #1A3F6D; /* Dark blue for item background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-promotions-first-deposit-bonus__detail-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for sub-titles */
  margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus__detail-text {
  color: #E0E0E0;
}

.page-promotions-first-deposit-bonus__section-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit-bonus__how-to-claim .page-promotions-first-deposit-bonus__section-intro {
  margin-bottom: 50px;
}

.page-promotions-first-deposit-bonus__steps-list {
  list-style: none;
  padding: 0;
  text-align: left;
  counter-reset: step-counter;
  margin-bottom: 40px;
}

.page-promotions-first-deposit-bonus__steps-list li {
  position: relative;
  padding-left: 70px;
  margin-bottom: 30px;
}

.page-promotions-first-deposit-bonus__steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700; /* Gold for step numbers */
  color: #0A2342; /* Dark blue for text on gold */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit-bonus__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions-first-deposit-bonus__step-text {
  color: #E0E0E0;
}

.page-promotions-first-deposit-bonus__terms-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 40px;
}

.page-promotions-first-deposit-bonus__terms-list li {
  background-color: #1A3F6D;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__term-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions-first-deposit-bonus__term-text {
  color: #E0E0E0;
}

.page-promotions-first-deposit-bonus__text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions-first-deposit-bonus__text-link:hover {
  color: #FFF;
  text-decoration: underline;
}

.page-promotions-first-deposit-bonus__why-choose {
  background-color: #0A2342;
}

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

.page-promotions-first-deposit-bonus__feature-item {
  background-color: #1A3F6D;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-promotions-first-deposit-bonus__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-promotions-first-deposit-bonus__feature-text {
  color: #E0E0E0;
}

.page-promotions-first-deposit-bonus__faq-section {
  background-color: #0F2D52;
}

.page-promotions-first-deposit-bonus__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-promotions-first-deposit-bonus__faq-item {
  background-color: #1A3F6D;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  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: #2A538C;
}

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

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

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

.page-promotions-first-deposit-bonus__faq-item.active .page-promotions-first-deposit-bonus__faq-answer {
  max-height: 200px; /* Adjust based on content */
  padding: 0 25px 20px;
}

.page-promotions-first-deposit-bonus__cta-section {
  position: relative;
  padding: 80px 20px;
  background-color: #0A2342;
  overflow: hidden;
}

.page-promotions-first-deposit-bonus__cta-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  z-index: 1;
}

.page-promotions-first-deposit-bonus__cta-section .page-promotions-first-deposit-bonus__container {
  position: relative;
  z-index: 2;
}

.page-promotions-first-deposit-bonus__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions-first-deposit-bonus__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__cta-button--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text on gold */
}

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

.page-promotions-first-deposit-bonus__cta-button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary */
  border: 2px solid #FFD700;
}

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

.page-promotions-first-deposit-bonus__related-links {
  padding: 40px 0;
  background-color: #0A2342;
  text-align: center;
}

.page-promotions-first-deposit-bonus__links-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.page-promotions-first-deposit-bonus__links-list a {
  color: #FFD700;
  text-decoration: none;
  font-size: 1.1em;
  padding: 10px 15px;
  border: 1px solid #FFD700;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.page-promotions-first-deposit-bonus__links-list a:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-first-deposit-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-first-deposit-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-first-deposit-bonus__steps-list li {
    padding-left: 60px;
  }
  .page-promotions-first-deposit-bonus__steps-list li::before {
    width: 45px;
    height: 45px;
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-promotions-first-deposit-bonus__hero-section {
    padding: 60px 15px;
  }
  .page-promotions-first-deposit-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-first-deposit-bonus__hero-description {
    font-size: 1em;
  }
  .page-promotions-first-deposit-bonus__section {
    padding: 40px 0;
  }
  .page-promotions-first-deposit-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promotions-first-deposit-bonus__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-promotions-first-deposit-bonus__details-grid, 
  .page-promotions-first-deposit-bonus__features-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-first-deposit-bonus__detail-item, 
  .page-promotions-first-deposit-bonus__feature-item {
    padding: 25px;
  }
  .page-promotions-first-deposit-bonus__step-title, 
  .page-promotions-first-deposit-bonus__term-title, 
  .page-promotions-first-deposit-bonus__feature-title, 
  .page-promotions-first-deposit-bonus__faq-question {
    font-size: 1.2em;
  }
  .page-promotions-first-deposit-bonus__steps-list li {
    padding-left: 50px;
  }
  .page-promotions-first-deposit-bonus__steps-list li::before {
    width: 40px;
    height: 40px;
    font-size: 1.4em;
  }
  .page-promotions-first-deposit-bonus__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-first-deposit-bonus__links-list {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-first-deposit-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-first-deposit-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promotions-first-deposit-bonus__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}