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

@media (max-width: 768px) {
  .page-promo-daily-bonus {
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
  }
}

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

.page-promo-daily-bonus__hero-section {
  position: relative;
  text-align: center;
  color: #FFFFFF; /* White text on hero for contrast with potentially dark image */
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
}

.page-promo-daily-bonus__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-promo-daily-bonus__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay for text readability */
  padding: 30px;
  border-radius: 10px;
}

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

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

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

.page-promo-daily-bonus__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  text-align: center;
}

.page-promo-daily-bonus__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-promo-daily-bonus__button--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-promo-daily-bonus__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo-daily-bonus__button--login:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

.page-promo-daily-bonus__about-bonus-section,
.page-promo-daily-bonus__how-to-claim-section,
.page-promo-daily-bonus__bonus-highlights-section,
.page-promo-daily-bonus__terms-section,
.page-promo-daily-bonus__faq-section,
.page-promo-daily-bonus__call-to-action-bottom {
  padding: 60px 0;
  text-align: center;
}

.page-promo-daily-bonus__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 20px;
}

.page-promo-daily-bonus__section-description {
  font-size: 1.1em;
  color: #555555;
  max-width: 900px;
  margin: 0 auto 40px auto;
  padding: 0 15px;
}

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

.page-promo-daily-bonus__step-card {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo-daily-bonus__step-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

.page-promo-daily-bonus__step-description {
  font-size: 1em;
  color: #666666;
  text-align: center;
}

.page-promo-daily-bonus__cta-area {
  margin-top: 50px;
}

.page-promo-daily-bonus__button--claim,
.page-promo-daily-bonus__button--explore,
.page-promo-daily-bonus__button--support,
.page-promo-daily-bonus__button--register-large,
.page-promo-daily-bonus__button--login-large {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-promo-daily-bonus__button--claim:hover,
.page-promo-daily-bonus__button--explore:hover,
.page-promo-daily-bonus__button--support:hover,
.page-promo-daily-bonus__button--register-large:hover,
.page-promo-daily-bonus__button--login-large:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

.page-promo-daily-bonus__benefit-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
  margin-top: 40px;
  padding: 0 20px;
}

.page-promo-daily-bonus__benefit-item {
  background-color: #F8F8F8;
  border-left: 5px solid #FCBC45;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promo-daily-bonus__benefit-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-promo-daily-bonus__benefit-description {
  font-size: 1em;
  color: #666666;
}

.page-promo-daily-bonus__terms-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

.page-promo-daily-bonus__terms-item {
  background-color: #F8F8F8;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 1em;
  color: #333333;
  line-height: 1.8;
}

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

.page-promo-daily-bonus__faq-list {
  max-width: 900px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
  text-align: left;
}

.page-promo-daily-bonus__faq-item {
  background-color: #F8F8F8;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.page-promo-daily-bonus__faq-answer {
  font-size: 1em;
  color: #666666;
}

.page-promo-daily-bonus__bottom-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

@media (min-width: 769px) {
  .page-promo-daily-bonus__bottom-actions {
    flex-direction: row;
  }
}

@media (max-width: 1024px) {
  .page-promo-daily-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promo-daily-bonus__section-title {
    font-size: 2em;
  }
  .page-promo-daily-bonus__hero-content {
    padding: 20px;
  }
  .page-promo-daily-bonus__steps-grid,
  .page-promo-daily-bonus__benefit-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promo-daily-bonus__hero-title {
    font-size: 2em;
  }
  .page-promo-daily-bonus__hero-description {
    font-size: 1em;
  }
  .page-promo-daily-bonus__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo-daily-bonus__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-promo-daily-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promo-daily-bonus__steps-grid,
  .page-promo-daily-bonus__benefit-list {
    grid-template-columns: 1fr;
  }
  .page-promo-daily-bonus__step-card,
  .page-promo-daily-bonus__benefit-item,
  .page-promo-daily-bonus__terms-item,
  .page-promo-daily-bonus__faq-item {
    padding: 20px;
  }
  .page-promo-daily-bonus__section-description {
    font-size: 1em;
  }
  /* CRITICAL: Mobile images must be responsive and not overflow */
  .page-promo-daily-bonus img {
    max-width: 100%;
    height: auto;
    object-fit: cover; /* Ensure images fill their space nicely */
  }
  .page-promo-daily-bonus__hero-image {
    max-width: 100%; /* Override hero image specific width if needed */
  }
}

/* Ensure all content images within .page-promo-daily-bonus are at least 200px wide/high */
.page-promo-daily-bonus img {
  min-width: 200px;
  min-height: 200px;
}

/* CSS for buttons with specific colors */
.page-promo-daily-bonus__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-promo-daily-bonus__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-promo-daily-bonus__button--claim,
.page-promo-daily-bonus__button--explore,
.page-promo-daily-bonus__button--support,
.page-promo-daily-bonus__button--register-large,
.page-promo-daily-bonus__button--login-large {
  background-color: #FCBC45;
  color: #000000;
}