.page-promotions-daily-cashback {
  color: #ffffff; /* Body background is dark, so text should be light */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Rely on body background from shared.css */
}

.page-promotions-daily-cashback__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom for content */
  overflow: hidden;
  color: #ffffff;
}

.page-promotions-daily-cashback__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for hero image */
  overflow: hidden;
}

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

.page-promotions-daily-cashback__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -80px; /* Pull content up slightly over the image for better flow, without overlapping text on image */
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background for readability */
  border-radius: 8px;
}

.page-promotions-daily-cashback__hero-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions-daily-cashback__hero-description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-promotions-daily-cashback__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions-daily-cashback__section {
  padding: 60px 20px;
  text-align: center;
}

.page-promotions-daily-cashback__content-area {
  max-width: 1200px;
  margin: 0 auto;
  color: #ffffff;
  background-color: transparent;
}

.page-promotions-daily-cashback__dark-section {
  background-color: #1a1a1a; /* Slightly lighter dark for contrast with body */
  color: #ffffff;
}

.page-promotions-daily-cashback__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-promotions-daily-cashback__sub-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-promotions-daily-cashback__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-promotions-daily-cashback__image-container {
  margin: 40px auto;
  max-width: 800px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-cashback__content-image {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px; /* Ensure minimum display size */
  min-height: 200px;
}

.page-promotions-daily-cashback__list {
  list-style-type: disc;
  text-align: left;
  max-width: 800px;
  margin: 20px auto 40px;
  padding-left: 40px;
  color: #f0f0f0;
}

.page-promotions-daily-cashback__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-promotions-daily-cashback__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
}

.page-promotions-daily-cashback__card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards on dark background */
  color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-cashback__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-daily-cashback__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-daily-cashback__card-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  margin-bottom: 15px;
  min-width: 200px; /* Ensure minimum display size */
  min-height: 200px;
}

.page-promotions-daily-cashback__card-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-promotions-daily-cashback__faq-list {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-promotions-daily-cashback__faq-item {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for FAQs */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-promotions-daily-cashback__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-daily-cashback__faq-question::-webkit-details-marker, 
.page-promotions-daily-cashback__faq-question::marker {
  display: none;
}

.page-promotions-daily-cashback__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-promotions-daily-cashback__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: #f0f0f0;
  line-height: 1.5;
}

.page-promotions-daily-cashback__faq-item[open] .page-promotions-daily-cashback__faq-question {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.page-promotions-daily-cashback__btn-primary,
.page-promotions-daily-cashback__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-daily-cashback__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-promotions-daily-cashback__btn-primary:hover {
  background-color: #1f8ac9;
  border-color: #1f8ac9;
}

.page-promotions-daily-cashback__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-promotions-daily-cashback__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-promotions-daily-cashback__cta-section {
  padding: 80px 20px;
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-promotions-daily-cashback__cta-section .page-promotions-daily-cashback__section-title {
  color: #FFFFFF;
}

.page-promotions-daily-cashback__cta-section .page-promotions-daily-cashback__cta-buttons {
  margin-top: 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions-daily-cashback__hero-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-promotions-daily-cashback__section-title {
    font-size: 2em;
  }
  .page-promotions-daily-cashback__sub-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-cashback__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-promotions-daily-cashback__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }
  .page-promotions-daily-cashback__hero-title {
    font-size: clamp(1.5em, 7vw, 2.5em);
  }
  .page-promotions-daily-cashback__hero-description,
  .page-promotions-daily-cashback__text-block,
  .page-promotions-daily-cashback__list-item,
  .page-promotions-daily-cashback__card-description,
  .page-promotions-daily-cashback__faq-answer p {
    font-size: 1em;
  }
  .page-promotions-daily-cashback__section {
    padding: 40px 15px;
  }
  .page-promotions-daily-cashback__content-area,
  .page-promotions-daily-cashback__dark-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions-daily-cashback__grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions-daily-cashback__card {
    padding: 20px;
  }
  .page-promotions-daily-cashback__card-title {
    font-size: 1.3em;
  }
  .page-promotions-daily-cashback__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-promotions-daily-cashback__btn-primary,
  .page-promotions-daily-cashback__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    margin-bottom: 10px;
    font-size: 1em;
  }
  .page-promotions-daily-cashback__hero-cta-buttons,
  .page-promotions-daily-cashback__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-promotions-daily-cashback img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-daily-cashback__image-container,
  .page-promotions-daily-cashback__hero-image-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-promotions-daily-cashback__faq-list {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .page-promotions-daily-cashback__section-title {
    font-size: 1.8em;
  }
  .page-promotions-daily-cashback__sub-title {
    font-size: 1.3em;
  }
  .page-promotions-daily-cashback__list {
    padding-left: 20px;
  }
}