/* style/promotions-daily-bonus-details.css */
.page-promotions-daily-bonus-details {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff; /* Default body background */
}

.page-promotions-daily-bonus-details__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Color Contrast Safeguards */
.page-promotions-daily-bonus-details__dark-bg {
  background-color: #017439;
  color: #ffffff; /* Deep green background with white text */
}

.page-promotions-daily-bonus-details__light-bg {
  background-color: #ffffff;
  color: #333333; /* White background with dark text */
}

.page-promotions-daily-bonus-details__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: inherit; /* Inherit color from parent section (dark/light bg) */
}

.page-promotions-daily-bonus-details__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 600px;
}

.page-promotions-daily-bonus-details__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-promotions-daily-bonus-details__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-promotions-daily-bonus-details__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  color: #ffffff; /* Ensure white text on hero image background */
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-promotions-daily-bonus-details__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions-daily-bonus-details__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.page-promotions-daily-bonus-details__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-promotions-daily-bonus-details__btn-primary,
.page-promotions-daily-bonus-details__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%; /* Button responsive */
  box-sizing: border-box; /* Button responsive */
  white-space: normal; /* Button text wrap */
  word-wrap: break-word; /* Button text wrap */
}

.page-promotions-daily-bonus-details__btn-primary {
  background-color: #017439; /* Main brand color */
  color: #ffffff; /* White text for contrast */
  border: 2px solid #017439;
}

.page-promotions-daily-bonus-details__btn-primary:hover {
  background-color: #005a2c;
  border-color: #005a2c;
}

.page-promotions-daily-bonus-details__btn-secondary {
  background-color: #ffffff;
  color: #017439; /* Brand color text on white */
  border: 2px solid #017439;
}

.page-promotions-daily-bonus-details__btn-secondary:hover {
  background-color: #f0f0f0;
}

.page-promotions-daily-bonus-details__introduction,
.page-promotions-daily-bonus-details__promotion-highlights,
.page-promotions-daily-bonus-details__how-to-claim,
.page-promotions-daily-bonus-details__terms-conditions,
.page-promotions-daily-bonus-details__benefits,
.page-promotions-daily-bonus-details__other-promotions,
.page-promotions-daily-bonus-details__faq-section,
.page-promotions-daily-bonus-details__cta-final {
  padding: 60px 0;
}

.page-promotions-daily-bonus-details__introduction p,
.page-promotions-daily-bonus-details__how-to-claim p,
.page-promotions-daily-bonus-details__terms-conditions p,
.page-promotions-daily-bonus-details__benefits p,
.page-promotions-daily-bonus-details__other-promotions p,
.page-promotions-daily-bonus-details__cta-final p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-promotions-daily-bonus-details__highlight-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-daily-bonus-details__highlight-item .page-promotions-daily-bonus-details__highlight-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-daily-bonus-details__highlight-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  font-weight: bold;
  color: inherit;
}

.page-promotions-daily-bonus-details__claim-steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-promotions-daily-bonus-details__claim-steps li {
  counter-increment: step-counter;
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
  font-size: 1.1em;
}

.page-promotions-daily-bonus-details__claim-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #017439;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-promotions-daily-bonus-details__guide-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
}

.page-promotions-daily-bonus-details__terms-list,
.page-promotions-daily-bonus-details__benefits-list {
  list-style: disc;
  margin-left: 20px;
  font-size: 1.1em;
}

.page-promotions-daily-bonus-details__terms-list li,
.page-promotions-daily-bonus-details__benefits-list li {
  margin-bottom: 10px;
}

.page-promotions-daily-bonus-details__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-daily-bonus-details__card {
  background-color: #ffffff;
  color: #333333;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.page-promotions-daily-bonus-details__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-promotions-daily-bonus-details__card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-promotions-daily-bonus-details__card-title a {
  color: #017439;
  text-decoration: none;
}

.page-promotions-daily-bonus-details__card-title a:hover {
  text-decoration: underline;
}

.page-promotions-daily-bonus-details__card p {
  padding: 0 15px;
  font-size: 1em;
  text-align: justify;
}

.page-promotions-daily-bonus-details__cta-buttons--center {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-promotions-daily-bonus-details__faq-list {
  margin-top: 40px;
}

.page-promotions-daily-bonus-details__faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 10px;
}

.page-promotions-daily-bonus-details__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #333333;
  transition: color 0.3s ease;
}

.page-promotions-daily-bonus-details__faq-question:hover {
  color: #017439;
}

.page-promotions-daily-bonus-details__faq-toggle {
  font-size: 1.5em;
  font-weight: normal;
  transition: transform 0.3s ease;
}

.page-promotions-daily-bonus-details__faq-item.active .page-promotions-daily-bonus-details__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
}

.page-promotions-daily-bonus-details__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-promotions-daily-bonus-details__faq-item.active .page-promotions-daily-bonus-details__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px;
}

.page-promotions-daily-bonus-details__faq-answer p {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Footer specific styles to ensure text color */
.page-promotions-daily-bonus-details__footer-text {
  color: #ffffff;
}

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

  .page-promotions-daily-bonus-details__section-title {
    font-size: 2em;
  }

  .page-promotions-daily-bonus-details__hero-content {
    padding: 15px;
  }

  .page-promotions-daily-bonus-details__highlight-item,
  .page-promotions-daily-bonus-details__card {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-bonus-details__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    padding-bottom: 40px;
    min-height: 450px;
  }

  .page-promotions-daily-bonus-details__hero-content {
    padding: 10px;
  }

  .page-promotions-daily-bonus-details__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-promotions-daily-bonus-details__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-promotions-daily-bonus-details__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-daily-bonus-details__btn-primary,
  .page-promotions-daily-bonus-details__btn-secondary {
    padding: 12px 20px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-daily-bonus-details__introduction,
  .page-promotions-daily-bonus-details__promotion-highlights,
  .page-promotions-daily-bonus-details__how-to-claim,
  .page-promotions-daily-bonus-details__terms-conditions,
  .page-promotions-daily-bonus-details__benefits,
  .page-promotions-daily-bonus-details__other-promotions,
  .page-promotions-daily-bonus-details__faq-section,
  .page-promotions-daily-bonus-details__cta-final {
    padding: 40px 0;
  }

  .page-promotions-daily-bonus-details__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions-daily-bonus-details__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions-daily-bonus-details__highlights-grid,
  .page-promotions-daily-bonus-details__promo-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Mobile image responsiveness */
  .page-promotions-daily-bonus-details img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Mobile video responsiveness - no videos on this page, but keeping for general compliance */
  .page-promotions-daily-bonus-details video,
  .page-promotions-daily-bonus-details__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-daily-bonus-details__video-section,
  .page-promotions-daily-bonus-details__video-container,
  .page-promotions-daily-bonus-details__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-daily-bonus-details__cta-buttons--center {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-daily-bonus-details__faq-question {
    font-size: 1.1em;
    padding: 12px 0;
  }

  .page-promotions-daily-bonus-details__faq-answer {
    padding: 10px 15px;
  }
}

/* Ensure no image filters */
.page-promotions-daily-bonus-details img {
  filter: none !important;
}