/* style/promotions-first-deposit-bonus.css */

.page-promotions-first-deposit-bonus {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Default text color for dark background */
  background-color: #0d1a2b; /* Darker background for contrast with #003366 */
  line-height: 1.6;
}

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

.page-promotions-first-deposit-bonus__hero-section {
  background: linear-gradient(135deg, #003366 0%, #0a2d52 100%); /* Deeper blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
  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,subtle_pattern]') no-repeat center center / cover;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions-first-deposit-bonus__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #FFCC00; /* Accent color for title */
  position: relative;
  z-index: 1;
}

.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;
  position: relative;
  z-index: 1;
}

.page-promotions-first-deposit-bonus__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

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

.page-promotions-first-deposit-bonus__button--primary {
  background-color: #FFCC00; /* Accent color */
  color: #003366; /* Main color for text */
}

.page-promotions-first-deposit-bonus__button--primary:hover {
  background-color: #e6b800; /* Slightly darker gold */
  transform: translateY(-2px);
}

.page-promotions-first-deposit-bonus__button--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-promotions-first-deposit-bonus__button--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
}

.page-promotions-first-deposit-bonus__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

.page-promotions-first-deposit-bonus__content-section {
  padding: 60px 0;
  background-color: #1a3a5e; /* Slightly lighter blue for content */
  border-radius: 10px;
  margin-top: -40px; /* Overlap with hero section */
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit-bonus__section-title {
  font-size: 2.5em;
  color: #FFCC00; /* Accent for section titles */
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.page-promotions-first-deposit-bonus__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #d0d0d0;
}

.page-promotions-first-deposit-bonus__list,
.page-promotions-first-deposit-bonus__numbered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #d0d0d0;
}

.page-promotions-first-deposit-bonus__numbered-list {
  list-style-type: decimal;
}

.page-promotions-first-deposit-bonus__list li,
.page-promotions-first-deposit-bonus__numbered-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-promotions-first-deposit-bonus__list li strong {
  color: #FFCC00;
}

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

.page-promotions-first-deposit-bonus__image--large {
  max-width: 900px;
}

.page-promotions-first-deposit-bonus__image--medium {
  max-width: 700px;
}

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

.page-promotions-first-deposit-bonus__card {
  background-color: #003366; /* Main color for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions-first-deposit-bonus__card:hover {
  transform: translateY(-5px);
  background-color: #0a4073; /* Slightly lighter on hover */
}

.page-promotions-first-deposit-bonus__card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.5)); /* Gold glow */
}

.page-promotions-first-deposit-bonus__card-title {
  font-size: 1.6em;
  color: #FFCC00;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-first-deposit-bonus__card p {
  color: #c0c0c0;
  font-size: 1em;
}

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

.page-promotions-first-deposit-bonus__benefit-item {
  background-color: #0a4073; /* Darker blue for benefit items */
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-first-deposit-bonus__benefit-item h3 {
  font-size: 1.4em;
  color: #FFCC00;
  margin-bottom: 10px;
}

.page-promotions-first-deposit-bonus__benefit-item p {
  color: #c0c0c0;
}

.page-promotions-first-deposit-bonus__benefit-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: brightness(1.2);
}

.page-promotions-first-deposit-bonus__faq-container {
  margin-top: 40px;
}

.page-promotions-first-deposit-bonus__faq-item {
  background-color: #003366; /* Main color for FAQ items */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-first-deposit-bonus__faq-question {
  padding: 20px 25px;
  font-size: 1.2em;
  color: #FFCC00;
  cursor: pointer;
  position: relative;
  margin: 0;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promotions-first-deposit-bonus__faq-question::after {
  content: '+';
  font-size: 1.5em;
  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 {
  padding: 0 25px 20px;
  font-size: 1.05em;
  color: #d0d0d0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

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

.page-promotions-first-deposit-bonus__final-cta {
  text-align: center;
  padding: 50px 0;
  background-color: #0a2d52; /* Dark blue for final CTA */
  border-radius: 10px;
  margin-top: 50px;
}

.page-promotions-first-deposit-bonus__final-cta .page-promotions-first-deposit-bonus__section-title {
  margin-bottom: 25px;
  color: #FFCC00;
}

.page-promotions-first-deposit-bonus__final-cta .page-promotions-first-deposit-bonus__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  color: #e0e0e0;
}

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-first-deposit-bonus__hero-title {
    font-size: 2.8em;
  }

  .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__card-grid,
  .page-promotions-first-deposit-bonus__benefits {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-first-deposit-bonus__hero-title {
    font-size: 2.2em;
  }

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

  .page-promotions-first-deposit-bonus__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-first-deposit-bonus__button {
    width: 80%;
    margin: 0 auto;
  }

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

  .page-promotions-first-deposit-bonus__text-block,
  .page-promotions-first-deposit-bonus__list li,
  .page-promotions-first-deposit-bonus__numbered-list li,
  .page-promotions-first-deposit-bonus__card p,
  .page-promotions-first-deposit-bonus__benefit-item p,
  .page-promotions-first-deposit-bonus__faq-answer {
    font-size: 0.95em;
  }

  .page-promotions-first-deposit-bonus__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions-first-deposit-bonus__hero-title {
    font-size: 1.8em;
  }

  .page-promotions-first-deposit-bonus__hero-subtitle {
    font-size: 0.9em;
  }

  .page-promotions-first-deposit-bonus__button {
    width: 90%;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-promotions-first-deposit-bonus__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-promotions-first-deposit-bonus__section-title {
    font-size: 1.5em;
  }

  .page-promotions-first-deposit-bonus__card-grid,
  .page-promotions-first-deposit-bonus__benefits {
    grid-template-columns: 1fr;
  }
}