/* style/promotions-first-deposit.css */
.page-promotions-first-deposit {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light text on dark background for good contrast */
  background-color: #0A192F; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-promotions-first-deposit__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a2a47 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-promotions-first-deposit__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA */
  color: #0A192F; /* Dark blue text on gold */
  padding: 15px 35px;
  border-radius: 50px;
  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(255, 215, 0, 0.4);
}

.page-promotions-first-deposit__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-promotions-first-deposit__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 50px;
  padding-top: 60px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit__introduction-section,
.page-promotions-first-deposit__details-section,
.page-promotions-first-deposit__how-to-claim-section,
.page-promotions-first-deposit__why-choose-section,
.page-promotions-first-deposit__faq-section,
.page-promotions-first-deposit__final-cta-section {
  padding: 60px 0;
}

.page-promotions-first-deposit__text-content {
  font-size: 1.1em;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-first-deposit__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-promotions-first-deposit__image-fullwidth {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-promotions-first-deposit__grid-item {
  background-color: #1a2a47; /* Darker blue background for cards */
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

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

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

.page-promotions-first-deposit__note {
  text-align: center;
  font-style: italic;
  font-size: 0.95em;
  margin-top: 40px;
  color: #b0b0b0;
}

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

.page-promotions-first-deposit__step-item {
  background-color: #1a2a47;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit__step-number {
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #0A192F;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

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

.page-promotions-first-deposit__step-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-promotions-first-deposit__cta-button--large {
  padding: 18px 45px;
  font-size: 1.4em;
}

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

.page-promotions-first-deposit__feature-item {
  background-color: #1a2a47;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
}

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

.page-promotions-first-deposit__faq-item {
  background-color: #1a2a47;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-promotions-first-deposit__faq-question a {
  color: #FFD700; /* Ensure link color is gold */
  text-decoration: underline;
}

.page-promotions-first-deposit__faq-answer {
  font-size: 1.05em;
  color: #ffffff;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  margin-top: 15px;
}

.page-promotions-first-deposit__cta-button--final {
  background-color: #FFD700;
  color: #0A192F;
  padding: 20px 50px;
  font-size: 1.6em;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.page-promotions-first-deposit__cta-button--final:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-first-deposit__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-first-deposit__hero-subtitle {
    font-size: 1.2em;
  }
  .page-promotions-first-deposit__section-title {
    font-size: 2em;
  }
  .page-promotions-first-deposit__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-promotions-first-deposit__steps {
    flex-direction: column;
    align-items: center;
  }
  .page-promotions-first-deposit__step-item {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-promotions-first-deposit__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-first-deposit__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-first-deposit__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-first-deposit__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions-first-deposit__introduction-section,
  .page-promotions-first-deposit__details-section,
  .page-promotions-first-deposit__how-to-claim-section,
  .page-promotions-first-deposit__why-choose-section,
  .page-promotions-first-deposit__faq-section,
  .page-promotions-first-deposit__final-cta-section {
    padding: 40px 0;
  }
  .page-promotions-first-deposit__text-content {
    font-size: 1em;
  }
  .page-promotions-first-deposit__grid-item,
  .page-promotions-first-deposit__feature-item {
    padding: 20px;
  }
  .page-promotions-first-deposit__item-title,
  .page-promotions-first-deposit__feature-title {
    font-size: 1.4em;
  }
  .page-promotions-first-deposit__step-title {
    font-size: 1.5em;
  }
  .page-promotions-first-deposit__cta-button--large {
    font-size: 1.2em;
    padding: 15px 30px;
  }
  .page-promotions-first-deposit__cta-button--final {
    font-size: 1.3em;
    padding: 18px 40px;
  }
  .page-promotions-first-deposit__faq-question {
    font-size: 1.1em;
  }
  .page-promotions-first-deposit__faq-answer {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-promotions-first-deposit__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-first-deposit__hero-subtitle {
    font-size: 0.9em;
  }
  .page-promotions-first-deposit__section-title {
    font-size: 1.5em;
  }
  .page-promotions-first-deposit__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promotions-first-deposit__grid,
  .page-promotions-first-deposit__features-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-first-deposit__step-item {
    max-width: 100%;
  }
  .page-promotions-first-deposit__cta-button--large {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-promotions-first-deposit__cta-button--final {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}