/* style/promo-daily-cashback.css */
.page-promo-daily-cashback {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px);
  background-color: #0D0D0D;
}

.page-promo-daily-cashback__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(255, 215, 0, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.page-promo-daily-cashback__hero-content {
  max-width: 900px;
  z-index: 1;
  margin-bottom: 40px;
}

.page-promo-daily-cashback__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-promo-daily-cashback__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promo-daily-cashback__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-promo-daily-cashback__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-promo-daily-cashback__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: grayscale(50%);
}

.page-promo-daily-cashback__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-promo-daily-cashback__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

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

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

.page-promo-daily-cashback__benefit-card {
  background-color: rgba(255, 215, 0, 0.08);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promo-daily-cashback__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.page-promo-daily-cashback__benefit-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
}

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

.page-promo-daily-cashback__card-text {
  font-size: 1.1em;
  color: #e0e0e0;
  line-height: 1.7;
}

.page-promo-daily-cashback__how-it-works {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

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

.page-promo-daily-cashback__step-card {
  background-color: #1A1A1A;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo-daily-cashback__step-number {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-promo-daily-cashback__step-description {
  font-size: 1.1em;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 30px;
  flex-grow: 1;
}

.page-promo-daily-cashback__step-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-promo-daily-cashback__faq-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

.page-promo-daily-cashback__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-promo-daily-cashback__faq-item {
  background-color: rgba(255, 215, 0, 0.05);
  border-radius: 10px;
  padding: 25px;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.page-promo-daily-cashback__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promo-daily-cashback__faq-answer {
  font-size: 1.05em;
  color: #cccccc;
  line-height: 1.6;
}

.page-promo-daily-cashback__cta-section {
  background: linear-gradient(90deg, #1A1A1A 0%, rgba(255, 215, 0, 0.2) 100%);
  padding: 60px 20px;
  text-align: center;
  margin: 80px 0;
  box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-promo-daily-cashback__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-promo-daily-cashback__cta-text {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-promo-daily-cashback__main-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  margin: 0 15px 20px 15px;
}

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

.page-promo-daily-cashback__secondary-cta-button {
  display: inline-block;
  background-color: transparent;
  color: #FFD700;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  border: 2px solid #FFD700;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  margin: 0 15px 20px 15px;
}

.page-promo-daily-cashback__secondary-cta-button:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-4px);
}

.page-promo-daily-cashback__about-us-summary {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.page-promo-daily-cashback__text-block {
  font-size: 1.1em;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: left;
}

.page-promo-daily-cashback__read-more-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.page-promo-daily-cashback__read-more-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .page-promo-daily-cashback__hero-title {
    font-size: 2.8em;
  }
  .page-promo-daily-cashback__section-title {
    font-size: 2.2em;
  }
  .page-promo-daily-cashback__cta-title {
    font-size: 2.5em;
  }
  .page-promo-daily-cashback__benefit-card img,
  .page-promo-daily-cashback__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promo-daily-cashback {
    padding-top: var(--header-offset, 80px);
  }
  .page-promo-daily-cashback__hero-section {
    padding: 40px 15px;
  }
  .page-promo-daily-cashback__hero-title {
    font-size: 2.2em;
  }
  .page-promo-daily-cashback__hero-description {
    font-size: 1em;
  }
  .page-promo-daily-cashback__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo-daily-cashback__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promo-daily-cashback__benefits-grid,
  .page-promo-daily-cashback__steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promo-daily-cashback__benefit-card img,
  .page-promo-daily-cashback__step-card img,
  .page-promo-daily-cashback__faq-item img,
  .page-promo-daily-cashback__hero-image img,
  .page-promo-daily-cashback__benefits-section img,
  .page-promo-daily-cashback__how-it-works img,
  .page-promo-daily-cashback__faq-section img,
  .page-promo-daily-cashback__cta-section img,
  .page-promo-daily-cashback__about-us-summary img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
  .page-promo-daily-cashback__benefit-card img,
  .page-promo-daily-cashback__step-card img {
    height: 200px;
  }
  .page-promo-daily-cashback__cta-title {
    font-size: 2em;
  }
  .page-promo-daily-cashback__cta-text {
    font-size: 1em;
  }
  .page-promo-daily-cashback__main-cta-button,
  .page-promo-daily-cashback__secondary-cta-button {
    font-size: 1.1em;
    padding: 15px 30px;
    margin: 0 10px 15px 10px;
  }
  .page-promo-daily-cashback__main-cta-button {
    margin-bottom: 15px;
  }
  .page-promo-daily-cashback__about-us-summary .page-promo-daily-cashback__text-block {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-promo-daily-cashback__hero-title {
    font-size: 1.8em;
  }
  .page-promo-daily-cashback__cta-title {
    font-size: 1.8em;
  }
  .page-promo-daily-cashback__main-cta-button,
  .page-promo-daily-cashback__secondary-cta-button {
    display: block;
    width: calc(100% - 20px);
    margin: 0 auto 15px auto;
  }
}