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

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

.page-promo-daily-cashback__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text readability, not changing color */
}

.page-promo-daily-cashback__hero-container {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.page-promo-daily-cashback__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  padding: 20px;
  z-index: 1;
}

.page-promo-daily-cashback__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-cashback__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

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

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

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

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

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

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

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

.page-promo-daily-cashback__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 10px auto 0;
}

.page-promo-daily-cashback__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555555;
}

.page-promo-daily-cashback__how-it-works-section,
.page-promo-daily-cashback__benefits-section,
.page-promo-daily-cashback__eligibility-section,
.page-promo-daily-cashback__terms-section,
.page-promo-daily-cashback__faq-section,
.page-promo-daily-cashback__cta-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-promo-daily-cashback__steps-grid,
.page-promo-daily-cashback__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promo-daily-cashback__step-card,
.page-promo-daily-cashback__benefit-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-promo-daily-cashback__step-card:hover,
.page-promo-daily-cashback__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-promo-daily-cashback__step-icon {
  width: 250px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.page-promo-daily-cashback__step-title,
.page-promo-daily-cashback__benefit-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

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

.page-promo-daily-cashback__table-container {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promo-daily-cashback__cashback-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px; /* Ensure table is readable on smaller screens */
}

.page-promo-daily-cashback__cashback-table th,
.page-promo-daily-cashback__cashback-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #eeeeee;
}

.page-promo-daily-cashback__cashback-table th {
  background-color: #000000;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 1.1em;
}

.page-promo-daily-cashback__cashback-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.page-promo-daily-cashback__cashback-table tbody tr:hover {
  background-color: #f0f0f0;
}

.page-promo-daily-cashback__table-note {
  text-align: center;
  font-style: italic;
  margin-top: 20px;
  color: #777777;
}

.page-promo-daily-cashback__button--view-vip {
  display: block;
  margin: 40px auto 0;
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  width: fit-content;
}

.page-promo-daily-cashback__button--view-vip:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-promo-daily-cashback__tabs {
  margin-top: 40px;
}

.page-promo-daily-cashback__tab-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.page-promo-daily-cashback__tab-button {
  background-color: #f0f0f0;
  color: #000000;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promo-daily-cashback__tab-button:hover {
  background-color: #e0e0e0;
}

.page-promo-daily-cashback__tab-button--active {
  background-color: #FCBC45;
  color: #000000;
}

.page-promo-daily-cashback__tab-content {
  display: none;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.page-promo-daily-cashback__tab-content--active {
  display: block;
}

.page-promo-daily-cashback__terms-list {
  list-style: disc;
  padding-left: 25px;
  color: #444444;
}

.page-promo-daily-cashback__terms-list li {
  margin-bottom: 10px;
}

.page-promo-daily-cashback__button--learn-more {
  display: block;
  margin: 40px auto 0;
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  width: fit-content;
}

.page-promo-daily-cashback__button--learn-more:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-promo-daily-cashback__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-promo-daily-cashback__faq-question {
  font-size: 1.4em;
  color: #000000;
  padding: 20px 30px;
  cursor: pointer;
  position: relative;
  margin: 0;
  background-color: #fcfcfc;
  border-bottom: 1px solid #eeeeee;
}

.page-promo-daily-cashback__faq-question::after {
  content: '+';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promo-daily-cashback__faq-question--active::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-promo-daily-cashback__faq-answer {
  padding: 0 30px 20px;
  color: #555555;
  font-size: 1.1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promo-daily-cashback__faq-answer--open {
  max-height: 200px; /* Adjust as needed for content */
  padding: 20px 30px;
}

.page-promo-daily-cashback__button--view-all-faq {
  display: block;
  margin: 40px auto 0;
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  width: fit-content;
}

.page-promo-daily-cashback__button--view-all-faq:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-promo-daily-cashback__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  border-radius: 15px;
  margin-bottom: 80px;
}

.page-promo-daily-cashback__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-promo-daily-cashback__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #F0F0F0;
}

.page-promo-daily-cashback__button--claim-now {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 18px 40px;
  font-size: 1.2em;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo-daily-cashback__hero-title {
    font-size: 2.8em;
  }
  .page-promo-daily-cashback__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-promo-daily-cashback__hero-title {
    font-size: 2.2em;
  }
  .page-promo-daily-cashback__hero-description {
    font-size: 1em;
  }
  .page-promo-daily-cashback__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo-daily-cashback__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-promo-daily-cashback__section-title {
    font-size: 2em;
  }
  .page-promo-daily-cashback__section-intro {
    font-size: 0.95em;
  }
  .page-promo-daily-cashback__steps-grid,
  .page-promo-daily-cashback__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-promo-daily-cashback__step-icon {
    width: 200px; /* Ensure content images are not smaller than 200px */
    height: auto;
  }
  .page-promo-daily-cashback__cta-title {
    font-size: 2.5em;
  }
  .page-promo-daily-cashback__cta-description {
    font-size: 1em;
  }
  .page-promo-daily-cashback__tab-buttons {
    flex-direction: column;
    gap: 8px;
  }
  .page-promo-daily-cashback__tab-button {
    width: 100%;
  }
  /* Mobile content area images must be responsive */
  .page-promo-daily-cashback img {
    max-width: 100%;
    height: auto;
  }
  .page-promo-daily-cashback__table-container {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-promo-daily-cashback__hero-title {
    font-size: 1.8em;
  }
  .page-promo-daily-cashback__hero-description {
    font-size: 0.9em;
  }
  .page-promo-daily-cashback__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promo-daily-cashback__section-title {
    font-size: 1.8em;
  }
  .page-promo-daily-cashback__cta-title {
    font-size: 2em;
  }
}