.page-promo-daily-cashback {
  color: #f0f0f0; /* Light text for dark background */
  background-color: #1A202C; /* Primary dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

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

.page-promo-daily-cashback__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding-bottom: 60px;
  text-align: center;
}

.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 */
}

.page-promo-daily-cashback__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  padding: 30px;
  border-radius: 10px;
}

.page-promo-daily-cashback__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFD700;
  font-weight: bold;
}

.page-promo-daily-cashback__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-promo-daily-cashback__hero-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo-daily-cashback__hero-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promo-daily-cashback__section-title {
  font-size: 2.2em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: bold;
}

.page-promo-daily-cashback__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-promo-daily-cashback__text-content a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promo-daily-cashback__text-content a:hover {
  text-decoration: underline;
}

.page-promo-daily-cashback__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px 0;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-promo-daily-cashback__image-centered {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-promo-daily-cashback__how-to-claim-section {
  background-color: #212836;
  padding: 60px 0;
}

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

.page-promo-daily-cashback__list-item {
  background-color: #2c3545;
  border-left: 5px solid #FFD700;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.page-promo-daily-cashback__list-item:hover {
  transform: translateY(-5px);
}

.page-promo-daily-cashback__list-title {
  color: #FFD700;
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promo-daily-cashback__list-description {
  color: #e0e0e0;
  font-size: 1.05em;
}

.page-promo-daily-cashback__list-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promo-daily-cashback__list-description a:hover {
  text-decoration: underline;
}

.page-promo-daily-cashback__button-primary {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo-daily-cashback__button-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promo-daily-cashback__button-secondary {
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promo-daily-cashback__button-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-promo-daily-cashback__benefits-section {
  padding: 60px 0;
}

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

.page-promo-daily-cashback__benefit-card {
  background-color: #2c3545;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-promo-daily-cashback__benefit-card:hover {
  transform: translateY(-5px);
}

.page-promo-daily-cashback__benefit-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promo-daily-cashback__benefit-title {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-promo-daily-cashback__benefit-description {
  color: #e0e0e0;
  font-size: 0.95em;
}

.page-promo-daily-cashback__terms-section {
  background-color: #212836;
  padding: 60px 0;
}

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

.page-promo-daily-cashback__terms-card {
  background-color: #2c3545;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promo-daily-cashback__terms-title {
  color: #FFD700;
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 20px;
}

.page-promo-daily-cashback__terms-list {
  list-style: disc;
  margin-left: 20px;
  color: #e0e0e0;
}

.page-promo-daily-cashback__terms-list strong {
  color: #FFD700;
}

.page-promo-daily-cashback__terms-list a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promo-daily-cashback__terms-list a:hover {
  text-decoration: underline;
}

.page-promo-daily-cashback__maximization-section {
  padding: 60px 0;
}

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

.page-promo-daily-cashback__tips-list .page-promo-daily-cashback__list-item {
  background-color: #2c3545;
  border-left: 5px solid #FFD700;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-promo-daily-cashback__tips-list .page-promo-daily-cashback__list-item strong {
  color: #FFD700;
}

.page-promo-daily-cashback__tips-list .page-promo-daily-cashback__list-item a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promo-daily-cashback__tips-list .page-promo-daily-cashback__list-item a:hover {
  text-decoration: underline;
}

.page-promo-daily-cashback__why-choose-section {
  background-color: #212836;
  padding: 60px 0;
}

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

.page-promo-daily-cashback__feature-card {
  background-color: #2c3545;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-promo-daily-cashback__feature-card:hover {
  transform: translateY(-5px);
}

.page-promo-daily-cashback__feature-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-promo-daily-cashback__feature-title {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-promo-daily-cashback__feature-description {
  color: #e0e0e0;
  font-size: 0.95em;
}

.page-promo-daily-cashback__responsible-gaming-section {
  padding: 60px 0;
  text-align: center;
}

.page-promo-daily-cashback__faq-section {
  background-color: #212836;
  padding: 60px 0;
}

.page-promo-daily-cashback__faq-accordion {
  margin-top: 30px;
}

.page-promo-daily-cashback__accordion-item {
  background-color: #2c3545;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promo-daily-cashback__accordion-title {
  color: #FFD700;
  font-size: 1.3em;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promo-daily-cashback__accordion-title::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promo-daily-cashback__accordion-title.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promo-daily-cashback__accordion-title:hover {
  background-color: #3a455a;
}

.page-promo-daily-cashback__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  color: #e0e0e0;
}

.page-promo-daily-cashback__accordion-content p {
  padding-bottom: 20px;
  margin: 0;
}

.page-promo-daily-cashback__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #1A202C;
}

.page-promo-daily-cashback__cta-button-large {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo-daily-cashback__cta-button-large:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-promo-daily-cashback__hero-title {
    font-size: 2.4em;
  }
  .page-promo-daily-cashback__hero-description {
    font-size: 1.1em;
  }
  .page-promo-daily-cashback__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo-daily-cashback__hero-content {
    padding: 20px;
  }
  .page-promo-daily-cashback__hero-title {
    font-size: 2em;
  }
  .page-promo-daily-cashback__hero-description {
    font-size: 1em;
  }
  .page-promo-daily-cashback__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo-daily-cashback__section-title {
    font-size: 1.8em;
  }
  .page-promo-daily-cashback__text-content {
    font-size: 1em;
  }
  .page-promo-daily-cashback__benefits-grid, .page-promo-daily-cashback__terms-grid, .page-promo-daily-cashback__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-promo-daily-cashback__benefit-icon, .page-promo-daily-cashback__feature-image, .page-promo-daily-cashback__image-full-width, .page-promo-daily-cashback__image-centered {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  /* Ensure all content area images are responsive and don't overflow */
  .page-promo-daily-cashback img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-promo-daily-cashback__cta-button-large {
    font-size: 1.2em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-promo-daily-cashback__hero-title {
    font-size: 1.6em;
  }
  .page-promo-daily-cashback__hero-description {
    font-size: 0.9em;
  }
  .page-promo-daily-cashback__hero-cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promo-daily-cashback__section-title {
    font-size: 1.5em;
  }
  .page-promo-daily-cashback__list-title {
    font-size: 1.4em;
  }
  .page-promo-daily-cashback__cta-button-large {
    font-size: 1em;
    padding: 12px 25px;
  }
}