/* style/promotions-first-deposit-bonus.css */
.page-promotions-first-deposit-bonus {
  color: #ffffff; /* Body background is dark #0a0a0a, so text must be light */
  background-color: #0a0a0a;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions-first-deposit-bonus__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding for content separation */
  background-color: #0a0a0a;
}

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

.page-promotions-first-deposit-bonus__hero-content {
  max-width: 900px;
  width: 100%;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  margin-top: -80px; /* Overlap slightly with the image for design, but text is below image in DOM */
  border-radius: 8px;
  z-index: 1;
}

.page-promotions-first-deposit-bonus__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-promotions-first-deposit-bonus__btn-primary {
  display: inline-block;
  background: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-promotions-first-deposit-bonus__btn-primary:hover {
  background-color: #1e87b8;
}

.page-promotions-first-deposit-bonus__section {
  padding: 60px 20px;
  background-color: #0a0a0a;
  text-align: center;
}

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

.page-promotions-first-deposit-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-promotions-first-deposit-bonus__heading {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #26A9E0;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-promotions-first-deposit-bonus__text {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  text-align: left;
}

.page-promotions-first-deposit-bonus__list,
.page-promotions-first-deposit-bonus__steps-list,
.page-promotions-first-deposit-bonus__terms-list,
.page-promotions-first-deposit-bonus__tips-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.page-promotions-first-deposit-bonus__list-item,
.page-promotions-first-deposit-bonus__step-item,
.page-promotions-first-deposit-bonus__terms-item,
.page-promotions-first-deposit-bonus__tips-item {
  background-color: #1a1a1a;
  border-left: 5px solid #26A9E0;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__step-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions-first-deposit-bonus__step-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-promotions-first-deposit-bonus__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  max-width: 800px;
  object-fit: cover;
}

.page-promotions-first-deposit-bonus__faq-list {
  margin-top: 30px;
  text-align: left;
}

.page-promotions-first-deposit-bonus__faq-item {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-first-deposit-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  color: #26A9E0;
  background-color: #2a2a2a;
  border-bottom: 1px solid #333;
  list-style: none; /* For details/summary */
}

.page-promotions-first-deposit-bonus__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions-first-deposit-bonus__faq-qtext {
  flex-grow: 1;
}

.page-promotions-first-deposit-bonus__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #ffffff;
}

.page-promotions-first-deposit-bonus__faq-answer {
  padding: 20px;
  background-color: #1a1a1a;
  color: #f0f0f0;
  font-size: 1em;
}

.page-promotions-first-deposit-bonus__cta-final {
  background: linear-gradient(90deg, #26A9E0, #1e87b8);
  padding: 80px 20px;
}

.page-promotions-first-deposit-bonus__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-first-deposit-bonus__cta-content .page-promotions-first-deposit-bonus__heading {
  color: #ffffff;
}

.page-promotions-first-deposit-bonus__cta-content .page-promotions-first-deposit-bonus__text {
  color: #ffffff;
  font-size: 1.2em;
  text-align: center;
}

.page-promotions-first-deposit-bonus__highlight {
  color: #EA7C07;
  font-weight: bold;
}

.page-promotions-first-deposit-bonus a {
  color: #EA7C07;
  text-decoration: underline;
}

.page-promotions-first-deposit-bonus a:hover {
  color: #f0a050;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-promotions-first-deposit-bonus {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions-first-deposit-bonus__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-promotions-first-deposit-bonus__hero-content {
    padding: 20px;
    margin-top: -60px;
  }

  .page-promotions-first-deposit-bonus__main-title {
    font-size: 2em;
  }

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

  .page-promotions-first-deposit-bonus__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px !important;
    font-size: 1em;
  }

  .page-promotions-first-deposit-bonus__section {
    padding: 40px 15px;
  }

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

  .page-promotions-first-deposit-bonus__text {
    font-size: 0.95em;
  }

  .page-promotions-first-deposit-bonus__image-content,
  .page-promotions-first-deposit-bonus__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-first-deposit-bonus__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  
  .page-promotions-first-deposit-bonus__list-item,
  .page-promotions-first-deposit-bonus__step-item,
  .page-promotions-first-deposit-bonus__terms-item,
  .page-promotions-first-deposit-bonus__tips-item,
  .page-promotions-first-deposit-bonus__faq-item {
    padding: 15px;
  }

  .page-promotions-first-deposit-bonus__step-title {
    font-size: 1.2em;
  }

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

  .page-promotions-first-deposit-bonus__faq-answer {
    padding: 15px;
  }

  .page-promotions-first-deposit-bonus__cta-final {
    padding: 60px 15px;
  }

  .page-promotions-first-deposit-bonus__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-promotions-first-deposit-bonus__video-container,
  .page-promotions-first-deposit-bonus__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-promotions-first-deposit-bonus video,
  .page-promotions-first-deposit-bonus__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}