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

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

.page-promotions-first-deposit-bonus-hero {
  background: linear-gradient(135deg, #1A2B3C 0%, #3A5C7E 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions-first-deposit-bonus-hero-content {
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

.page-promotions-first-deposit-bonus-hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-promotions-first-deposit-bonus-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transform: scale(1.1);
}

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

.page-promotions-first-deposit-bonus-section:nth-of-type(even) {
  background-color: #152535;
}

.page-promotions-first-deposit-bonus-heading {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-first-deposit-bonus-heading::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-overview p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-promotions-first-deposit-bonus-step-item {
  background-color: #152535;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions-first-deposit-bonus-step-item:hover {
  transform: translateY(-10px);
  background-color: #2a415a;
}

.page-promotions-first-deposit-bonus-step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

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

.page-promotions-first-deposit-bonus-note {
  text-align: center;
  font-style: italic;
  margin-top: 40px;
  font-size: 1.1em;
  color: #FFD700;
}

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

.page-promotions-first-deposit-bonus-terms .page-promotions-first-deposit-bonus-list li {
  background-color: #152535;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 40px;
}

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

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

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

.page-promotions-first-deposit-bonus-feature-item:hover {
  transform: translateY(-10px);
}

.page-promotions-first-deposit-bonus-feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

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

.page-promotions-first-deposit-bonus-faq-items {
  margin-top: 40px;
}

.page-promotions-first-deposit-bonus-faq-item {
  background-color: #152535;
  margin-bottom: 15px;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus-faq-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions-first-deposit-bonus-faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-first-deposit-bonus-faq-item.active h3::after {
  transform: translateY(-50%) rotate(45deg);
}

.page-promotions-first-deposit-bonus-faq-item p {
  color: #C0C0C0;
  font-size: 1em;
  display: none;
  margin-top: 15px;
}

.page-promotions-first-deposit-bonus-faq-item.active p {
  display: block;
}

.page-promotions-first-deposit-bonus-cta-final {
  background-color: #FFD700;
  padding: 80px 0;
  text-align: center;
  color: #1A2B3C;
}

.page-promotions-first-deposit-bonus-cta-final .page-promotions-first-deposit-bonus-heading {
  color: #1A2B3C;
}

.page-promotions-first-deposit-bonus-cta-final .page-promotions-first-deposit-bonus-heading::after {
  background-color: #1A2B3C;
}

.page-promotions-first-deposit-bonus-cta-final p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #333;
}

.page-promotions-first-deposit-bonus-btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
}

.page-promotions-first-deposit-bonus-btn.primary-btn {
  background-color: #FFD700;
  color: #1A2B3C;
  border: 2px solid #FFD700;
}

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

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

.page-promotions-first-deposit-bonus-btn.secondary-btn:hover {
  background-color: #FFD700;
  color: #1A2B3C;
  transform: translateY(-3px);
}

.page-promotions-first-deposit-bonus-btn.large-btn {
  padding: 18px 45px;
  font-size: 1.3em;
}

.page-promotions-first-deposit-bonus-contact-info {
  margin-top: 30px;
  font-size: 1em;
  color: #333;
}

.page-promotions-first-deposit-bonus-contact-link {
  color: #1A2B3C;
  text-decoration: underline;
  font-weight: bold;
}

.page-promotions-first-deposit-bonus-contact-link:hover {
  color: #0d1a26;
}

.page-promotions-first-deposit-bonus .highlight {
  color: #FFD700;
}

.page-promotions-first-deposit-bonus-cta-final .highlight {
  color: #1A2B3C;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-first-deposit-bonus-title {
    font-size: 2.8em;
  }
  .page-promotions-first-deposit-bonus-subtitle {
    font-size: 1.2em;
  }
  .page-promotions-first-deposit-bonus-heading {
    font-size: 2em;
  }
  .page-promotions-first-deposit-bonus-steps,
  .page-promotions-first-deposit-bonus-features {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-first-deposit-bonus-hero {
    padding: 80px 0;
  }
  .page-promotions-first-deposit-bonus-title {
    font-size: 2.2em;
  }
  .page-promotions-first-deposit-bonus-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-first-deposit-bonus-heading {
    font-size: 1.8em;
  }
  .page-promotions-first-deposit-bonus-btn.large-btn {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-promotions-first-deposit-bonus-step-item h3,
  .page-promotions-first-deposit-bonus-feature-item h3,
  .page-promotions-first-deposit-bonus-faq-item h3 {
    font-size: 1.3em;
  }
}

@media (max-width: 576px) {
  .page-promotions-first-deposit-bonus-hero {
    padding: 60px 0;
  }
  .page-promotions-first-deposit-bonus-title {
    font-size: 1.8em;
  }
  .page-promotions-first-deposit-bonus-subtitle {
    font-size: 1em;
  }
  .page-promotions-first-deposit-bonus-heading {
    font-size: 1.5em;
  }
  .page-promotions-first-deposit-bonus-steps,
  .page-promotions-first-deposit-bonus-features {
    grid-template-columns: 1fr;
  }
  .page-promotions-first-deposit-bonus-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-first-deposit-bonus-terms .page-promotions-first-deposit-bonus-list li {
    padding-left: 15px;
  }
  .page-promotions-first-deposit-bonus-terms .page-promotions-first-deposit-bonus-list li::before {
    display: none;
  }
}