/* style/promotions-daily-cashback.css */
.page-promotions-daily-cashback {
  font-family: Arial, sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-promotions-daily-cashback__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 60px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
}

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

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

.page-promotions-daily-cashback__hero-content {
  max-width: 900px;
  padding: 20px;
  margin-top: 40px;
}

.page-promotions-daily-cashback__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  color: #F2FFF6;
  margin-bottom: 20px;
}

.page-promotions-daily-cashback__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions-daily-cashback__btn-primary,
.page-promotions-daily-cashback__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
}

.page-promotions-daily-cashback__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6;
  border: none;
}

.page-promotions-daily-cashback__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-promotions-daily-cashback__btn-secondary {
  background: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-promotions-daily-cashback__btn-secondary:hover {
  background: #2E7A4E; /* Border */
  color: #F2FFF6;
  transform: translateY(-2px);
}

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

.page-promotions-daily-cashback__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-promotions-daily-cashback__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #F2FFF6;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-promotions-daily-cashback__text-block {
  font-size: 1em;
  line-height: 1.7;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-daily-cashback__text-block a {
  color: #2AD16F;
  text-decoration: underline;
}

.page-promotions-daily-cashback__text-block a:hover {
  color: #57E38D;
}

.page-promotions-daily-cashback__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 900px;
  text-align: left;
}

.page-promotions-daily-cashback__list-item {
  font-size: 1em;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.page-promotions-daily-cashback__list-item::before {
  content: '•';
  color: #2AD16F;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-promotions-daily-cashback__numbered-list {
  list-style: decimal;
  padding-left: 20px;
  margin: 0 auto 30px auto;
  max-width: 900px;
  text-align: left;
}

.page-promotions-daily-cashback__numbered-list .page-promotions-daily-cashback__list-item {
  padding-left: 10px;
  color: #A7D9B8;
}

.page-promotions-daily-cashback__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce min size */
  min-height: 200px;
}

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

.page-promotions-daily-cashback__card {
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-cashback__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-cashback__card-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-daily-cashback__card-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

.page-promotions-daily-cashback__list--icons {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 900px;
  text-align: left;
}

.page-promotions-daily-cashback__list--icons .page-promotions-daily-cashback__list-item {
  display: flex;
  align-items: flex-start;
  padding-left: 0;
}

.page-promotions-daily-cashback__list--icons .page-promotions-daily-cashback__list-item::before {
  content: none;
}

.page-promotions-daily-cashback__icon {
  font-size: 1.5em;
  color: #57E38D; /* Glow */
  margin-right: 15px;
  flex-shrink: 0;
}

.page-promotions-daily-cashback__icon-text {
  font-size: 1em;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

.page-promotions-daily-cashback__icon-text strong {
  color: #F2FFF6; /* Text Main */
}

.page-promotions-daily-cashback__faq-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 20px;
}

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

.page-promotions-daily-cashback__faq-item {
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-daily-cashback__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  font-weight: 600;
  background: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-promotions-daily-cashback__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-promotions-daily-cashback__faq-toggle {
  font-size: 1.5em;
  color: #57E38D; /* Glow */
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-promotions-daily-cashback__faq-item[open] .page-promotions-daily-cashback__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-daily-cashback__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-promotions-daily-cashback__faq-item.active .page-promotions-daily-cashback__faq-answer {
  max-height: 2000px; /* Arbitrarily large value for smooth expansion */
  transition: max-height 0.5s ease-in;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-promotions-daily-cashback__hero-section {
    padding: 40px 15px 30px 15px;
    padding-top: 10px !important;
  }

  .page-promotions-daily-cashback__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-promotions-daily-cashback__description {
    font-size: 0.95em;
  }

  .page-promotions-daily-cashback__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-daily-cashback__btn-primary,
  .page-promotions-daily-cashback__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-daily-cashback__section,
  .page-promotions-daily-cashback__faq-section {
    padding: 40px 15px;
  }

  .page-promotions-daily-cashback__container {
    padding: 0;
  }

  .page-promotions-daily-cashback__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 20px;
  }

  .page-promotions-daily-cashback__text-block,
  .page-promotions-daily-cashback__list-item,
  .page-promotions-daily-cashback__card-text,
  .page-promotions-daily-cashback__icon-text,
  .page-promotions-daily-cashback__faq-question,
  .page-promotions-daily-cashback__faq-answer p {
    font-size: 0.9em;
  }

  .page-promotions-daily-cashback__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-daily-cashback__cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-daily-cashback__card {
    padding: 20px;
  }

  .page-promotions-daily-cashback__list--icons .page-promotions-daily-cashback__list-item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .page-promotions-daily-cashback__icon {
    margin-bottom: 10px;
  }

  .page-promotions-daily-cashback__faq-question {
    padding: 15px;
  }

  .page-promotions-daily-cashback__faq-answer {
    padding: 0 15px 15px 15px;
  }
}