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

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

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

.page-promotions-first-deposit-bonus__hero {
  background: linear-gradient(135deg, #0A1931, #2A3B5C);
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.page-promotions-first-deposit-bonus__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions-first-deposit-bonus__hero-subtitle {
  font-size: 1.5em;
  color: #C0C0C0;
  margin-bottom: 40px;
}

.page-promotions-first-deposit-bonus__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-promotions-first-deposit-bonus__hero-image-container {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.3;
  width: 50%;
  max-width: 700px;
  z-index: 0;
}

.page-promotions-first-deposit-bonus__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

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

.page-promotions-first-deposit-bonus__section:nth-of-type(even) {
  background-color: #1A2E47;
}

.page-promotions-first-deposit-bonus__section-title {
  font-size: 2.8em;
  color: #FFFFFF;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.page-promotions-first-deposit-bonus__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions-first-deposit-bonus__section p {
  font-size: 1.1em;
  color: #C0C0C0;
  max-width: 800px;
  margin: 20px auto;
}

.page-promotions-first-deposit-bonus__steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-promotions-first-deposit-bonus__step {
  background-color: #1A2E47;
  border: 1px solid #FFD700;
  border-radius: 15px;
  padding: 30px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-first-deposit-bonus__step:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.2);
}

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

.page-promotions-first-deposit-bonus__step h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus__step p {
  color: #E0E0E0;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-promotions-first-deposit-bonus__button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-promotions-first-deposit-bonus__button:hover {
  background-color: #E0B500;
}

.page-promotions-first-deposit-bonus__process-image {
  max-width: 80%;
  height: auto;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.page-promotions-first-deposit-bonus__detail-card {
  background-color: #1A2E47;
  border-left: 5px solid #FFD700;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-first-deposit-bonus__detail-card p {
  color: #E0E0E0;
  font-size: 1em;
  line-height: 1.8;
  margin: 0;
}

.page-promotions-first-deposit-bonus__note {
  font-style: italic;
  font-size: 0.9em;
  color: #888;
  margin-top: 40px;
}

.page-promotions-first-deposit-bonus__details-image {
  max-width: 70%;
  height: auto;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.page-promotions-first-deposit-bonus__advantage-card {
  background-color: #0A1931;
  border: 1px solid #334766;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.page-promotions-first-deposit-bonus__advantage-card:hover {
  background-color: #1A2E47;
}

.page-promotions-first-deposit-bonus__advantage-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: brightness(1.2) drop-shadow(0 0 5px rgba(255, 215, 0, 0.4));
}

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

.page-promotions-first-deposit-bonus__advantage-card p {
  color: #C0C0C0;
  font-size: 1em;
  margin: 0;
}

.page-promotions-first-deposit-bonus__responsible-image {
  max-width: 60%;
  height: auto;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions-first-deposit-bonus__faq-item {
  background-color: #1A2E47;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

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

.page-promotions-first-deposit-bonus__faq-item p {
  color: #E0E0E0;
  font-size: 1em;
  margin: 0;
  padding-left: 15px;
  border-left: 3px solid #FFD700;
  display: none;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  max-height: 0;
}

.page-promotions-first-deposit-bonus__faq-item.active p {
  max-height: 200px; /* Adjust as needed */
  display: block;
}

.page-promotions-first-deposit-bonus__faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

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

.page-promotions-first-deposit-bonus__call-to-action {
  background: linear-gradient(90deg, #0A1931, #2A3B5C);
  padding: 80px 0;
}

.page-promotions-first-deposit-bonus__call-to-action .page-promotions-first-deposit-bonus__section-title {
  color: #FFFFFF;
}

.page-promotions-first-deposit-bonus__cta-button--large {
  padding: 18px 45px;
  font-size: 1.4em;
  margin-top: 30px;
}

.page-promotions-first-deposit-bonus__disclaimer {
  font-size: 0.85em;
  color: #999;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .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: 2.2em;
  }
  .page-promotions-first-deposit-bonus__process-image,
  .page-promotions-first-deposit-bonus__details-image,
  .page-promotions-first-deposit-bonus__responsible-image {
    max-width: 90%;
  }
  .page-promotions-first-deposit-bonus__hero-image-container {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .page-promotions-first-deposit-bonus__hero {
    padding: 80px 0 120px 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__section-title {
    font-size: 1.8em;
  }
  .page-promotions-first-deposit-bonus__steps {
    flex-direction: column;
    align-items: center;
  }
  .page-promotions-first-deposit-bonus__step {
    max-width: 90%;
  }
  .page-promotions-first-deposit-bonus__hero-image-container {
    width: 100%;
    right: -20%;
    bottom: -50px;
  }
  .page-promotions-first-deposit-bonus__cta-button--large {
    font-size: 1.2em;
    padding: 15px 35px;
  }
}

@media (max-width: 480px) {
  .page-promotions-first-deposit-bonus__hero {
    padding: 60px 0 100px 0;
  }
  .page-promotions-first-deposit-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-first-deposit-bonus__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-first-deposit-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promotions-first-deposit-bonus__section p,
  .page-promotions-first-deposit-bonus__detail-card p,
  .page-promotions-first-deposit-bonus__advantage-card p,
  .page-promotions-first-deposit-bonus__faq-item p {
    font-size: 0.95em;
  }
  .page-promotions-first-deposit-bonus__hero-image-container {
    display: none; /* Hide image on very small screens */
  }
}