/* style/promo-daily-bonuses.css */
.page-promo-daily-bonuses {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #FFFFFF;
}

.page-promo-daily-bonuses__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-promo-daily-bonuses__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF; /* Light text on dark background */
  padding: 0;
}

.page-promo-daily-bonuses__hero-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px; /* Fixed height for hero section */
  max-width: 1920px; /* Max width for hero content */
  margin: 0 auto;
}

.page-promo-daily-bonuses__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image slightly for text readability */
  z-index: 1;
}

.page-promo-daily-bonuses__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
}

.page-promo-daily-bonuses__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo-daily-bonuses__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-promo-daily-bonuses__hero-cta {
  display: inline-block;
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for login button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo-daily-bonuses__hero-cta:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-promo-daily-bonuses__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-promo-daily-bonuses__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-promo-daily-bonuses__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #333333;
}

.page-promo-daily-bonuses__bonus-grid,
.page-promo-daily-bonuses__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo-daily-bonuses__bonus-card,
.page-promo-daily-bonuses__step-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo-daily-bonuses__bonus-card:hover,
.page-promo-daily-bonuses__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promo-daily-bonuses__card-image,
.page-promo-daily-bonuses__step-image {
  width: 100%; /* Ensure images are not smaller than 200px in display */
  height: 200px; /* Fixed height for consistent card layout */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum display size */
  min-height: 200px; /* Enforce minimum display size */
}

.page-promo-daily-bonuses__card-title,
.page-promo-daily-bonuses__step-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-promo-daily-bonuses__card-description,
.page-promo-daily-bonuses__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo-daily-bonuses__card-cta,
.page-promo-daily-bonuses__step-cta,
.page-promo-daily-bonuses__button--register,
.page-promo-daily-bonuses__button--login,
.page-promo-daily-bonuses__button--claim,
.page-promo-daily-bonuses__button--deposit,
.page-promo-daily-bonuses__button--spins,
.page-promo-daily-bonuses__button--cashback,
.page-promo-daily-bonuses__button--view-promo,
.page-promo-daily-bonuses__button--claim-now,
.page-promo-daily-bonuses__button--learn-more,
.page-promo-daily-bonuses__button--support {
  display: inline-block;
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for buttons */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: auto; /* Push buttons to the bottom of flex container */
}

.page-promo-daily-bonuses__card-cta:hover,
.page-promo-daily-bonuses__step-cta:hover,
.page-promo-daily-bonuses__button--register:hover,
.page-promo-daily-bonuses__button--login:hover,
.page-promo-daily-bonuses__button--claim:hover,
.page-promo-daily-bonuses__button--deposit:hover,
.page-promo-daily-bonuses__button--spins:hover,
.page-promo-daily-bonuses__button--cashback:hover,
.page-promo-daily-bonuses__button--view-promo:hover,
.page-promo-daily-bonuses__button--claim-now:hover,
.page-promo-daily-bonuses__button--learn-more:hover,
.page-promo-daily-bonuses__button--support:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-promo-daily-bonuses__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promo-daily-bonuses__terms-list-item {
  background-color: #f0f0f0;
  margin-bottom: 15px;
  padding: 15px;
  border-left: 5px solid #FCBC45;
  border-radius: 5px;
  font-size: 1.05em;
  color: #333333;
}

.page-promo-daily-bonuses__terms-list-item strong {
  color: #000000;
}

.page-promo-daily-bonuses__faq-items {
  margin-top: 30px;
}

.page-promo-daily-bonuses__faq-item {
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.page-promo-daily-bonuses__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-promo-daily-bonuses__faq-answer {
  font-size: 1.1em;
  color: #555555;
  padding-left: 20px;
}

.page-promo-daily-bonuses__cta-section {
  background-color: #000000; /* Dark background for CTA */
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.page-promo-daily-bonuses__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
  z-index: 1;
}

.page-promo-daily-bonuses__cta-title,
.page-promo-daily-bonuses__cta-description,
.page-promo-daily-bonuses__cta-buttons {
  position: relative;
  z-index: 2;
}

.page-promo-daily-bonuses__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FCBC45;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo-daily-bonuses__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFFFFF;
}

.page-promo-daily-bonuses__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-promo-daily-bonuses__button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text */
}

.page-promo-daily-bonuses__button--primary:hover {
  background-color: #e0a53b;
}

.page-promo-daily-bonuses__button--secondary {
  background-color: #FFFFFF; /* Register color */
  color: #000000; /* Dark text */
  border: 2px solid #FCBC45;
}

.page-promo-daily-bonuses__button--secondary:hover {
  background-color: #f0f0f0;
  border-color: #e0a53b;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo-daily-bonuses__hero-title {
    font-size: 2.8em;
  }
  .page-promo-daily-bonuses__section-title {
    font-size: 2em;
  }
  .page-promo-daily-bonuses__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promo-daily-bonuses__hero-container {
    height: 450px;
  }
  .page-promo-daily-bonuses__hero-title {
    font-size: 2.2em;
  }
  .page-promo-daily-bonuses__hero-description {
    font-size: 1em;
  }
  .page-promo-daily-bonuses__hero-cta {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo-daily-bonuses__content-wrapper {
    padding: 20px 15px;
  }
  .page-promo-daily-bonuses__section-title {
    font-size: 1.8em;
  }
  .page-promo-daily-bonuses__text-content {
    font-size: 0.95em;
  }
  .page-promo-daily-bonuses__bonus-grid,
  .page-promo-daily-bonuses__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo-daily-bonuses__card-title,
  .page-promo-daily-bonuses__step-title {
    font-size: 1.5em;
  }
  .page-promo-daily-bonuses__cta-title {
    font-size: 2em;
  }
  .page-promo-daily-bonuses__cta-description {
    font-size: 1em;
  }
  .page-promo-daily-bonuses__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo-daily-bonuses__card-image,
  .page-promo-daily-bonuses__step-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and do not cause overflow */
    min-width: 200px;
    min-height: 200px;
  }
  /* Enforce minimum display size for all content area images */
  .page-promo-daily-bonuses img {
    min-width: 200px; 
    min-height: 200px; 
    width: 100%; /* Ensure responsiveness */
    height: auto; /* Maintain aspect ratio */
  }
}

@media (max-width: 480px) {
  .page-promo-daily-bonuses__hero-container {
    height: 350px;
  }
  .page-promo-daily-bonuses__hero-title {
    font-size: 1.8em;
  }
  .page-promo-daily-bonuses__section-title {
    font-size: 1.5em;
  }
  .page-promo-daily-bonuses__cta-title {
    font-size: 1.8em;
  }
}