/* style/promotions-daily-cashback.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A202C; /* Midnight Blue */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #0a0a0a;
  --bg-light-card: rgba(255, 255, 255, 0.1);
}

.page-promotions-daily-cashback {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Inherited from shared.css, just for clarity */
}

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

.page-promotions-daily-cashback__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-promotions-daily-cashback__description,
.page-promotions-daily-cashback__text-block {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: center;
  color: var(--text-light);
}

/* Hero Section */
.page-promotions-daily-cashback__hero-section {
  padding: 120px 0 80px; /* Padding for fixed header */
  background: linear-gradient(135deg, var(--secondary-color) 0%, #000000 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-daily-cashback__main-title {
  font-size: 52px;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-promotions-daily-cashback__hero-section .page-promotions-daily-cashback__description {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
  font-size: 20px;
}

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

.page-promotions-daily-cashback__cta-button {
  display: inline-block;
  padding: 16px 35px;
  border-radius: 50px;
  font-size: 19px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-promotions-daily-cashback__btn-primary {
  background: var(--primary-color);
  color: var(--secondary-color);
}

.page-promotions-daily-cashback__btn-primary:hover {
  background: #ffc400;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions-daily-cashback__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-promotions-daily-cashback__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* How It Works Section */
.page-promotions-daily-cashback__how-it-works-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
}

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

.page-promotions-daily-cashback__card {
  background: var(--bg-light-card);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-light);
}

.page-promotions-daily-cashback__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-cashback__card-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions-daily-cashback__card-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions-daily-cashback__card-text {
  font-size: 16px;
  color: #cccccc;
}

/* Benefits Section */
.page-promotions-daily-cashback__benefits-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #000000 0%, var(--secondary-color) 100%);
}

.page-promotions-daily-cashback__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-daily-cashback__list-item {
  background: var(--bg-light-card);
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  font-size: 17px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  color: #e0e0e0;
}

.page-promotions-daily-cashback__list-item::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 15px;
  font-size: 20px;
}

/* Terms & Conditions Section */
.page-promotions-daily-cashback__terms-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
}

.page-promotions-daily-cashback__terms-list {
  list-style: decimal;
  padding-left: 25px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #cccccc;
}

.page-promotions-daily-cashback__terms-list .page-promotions-daily-cashback__list-item {
  background: none;
  box-shadow: none;
  padding: 10px 0;
  margin-bottom: 10px;
  font-size: 16px;
  color: #cccccc;
  display: list-item;
}

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

/* FAQ Section */
.page-promotions-daily-cashback__faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #000000 100%);
}

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

.page-promotions-daily-cashback__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-cashback__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: var(--bg-light-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-light);
}

.page-promotions-daily-cashback__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.page-promotions-daily-cashback__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--primary-color);
}

.page-promotions-daily-cashback__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-promotions-daily-cashback__faq-item.active .page-promotions-daily-cashback__faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.page-promotions-daily-cashback__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.05);
  color: #e0e0e0;
}

.page-promotions-daily-cashback__faq-item.active .page-promotions-daily-cashback__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
}

.page-promotions-daily-cashback__faq-answer p {
  margin: 0;
  font-size: 16px;
  text-align: left;
  color: #e0e0e0;
}

/* Final CTA Section */
.page-promotions-daily-cashback__cta-final-section {
  padding: 80px 0 100px;
  background-color: var(--bg-dark);
  text-align: center;
}

.page-promotions-daily-cashback__cta-final-section .page-promotions-daily-cashback__section-title {
  color: var(--primary-color);
}

.page-promotions-daily-cashback__cta-final-section .page-promotions-daily-cashback__description {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-daily-cashback__main-title {
    font-size: 44px;
  }
  .page-promotions-daily-cashback__section-title {
    font-size: 32px;
  }
  .page-promotions-daily-cashback__description,
  .page-promotions-daily-cashback__text-block {
    font-size: 17px;
  }
  .page-promotions-daily-cashback__cta-button {
    padding: 14px 30px;
    font-size: 17px;
  }
  .page-promotions-daily-cashback__card-title {
    font-size: 22px;
  }
  .page-promotions-daily-cashback__list-item {
    font-size: 16px;
  }
  .page-promotions-daily-cashback__faq-question h3 {
    font-size: 17px;
  }
  .page-promotions-daily-cashback__faq-answer p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-cashback__hero-section {
    padding: 100px 0 60px !important; /* Mobile padding for fixed header */
  }
  .page-promotions-daily-cashback__container {
    padding: 0 15px;
  }
  .page-promotions-daily-cashback__main-title {
    font-size: 36px;
  }
  .page-promotions-daily-cashback__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-promotions-daily-cashback__description,
  .page-promotions-daily-cashback__text-block {
    font-size: 16px;
    text-align: left;
  }
  .page-promotions-daily-cashback__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-daily-cashback__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 14px 25px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions-daily-cashback__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-daily-cashback__card {
    padding: 25px;
  }
  .page-promotions-daily-cashback__card-image {
    max-width: 200px;
  }
  .page-promotions-daily-cashback__card-title {
    font-size: 20px;
  }
  .page-promotions-daily-cashback__list-item {
    font-size: 15px;
    padding: 15px 20px;
  }
  .page-promotions-daily-cashback__faq-question {
    padding: 18px 20px;
  }
  .page-promotions-daily-cashback__faq-question h3 {
    font-size: 16px;
  }
  .page-promotions-daily-cashback__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-promotions-daily-cashback__faq-answer {
    padding: 0 20px;
  }
  .page-promotions-daily-cashback__faq-item.active .page-promotions-daily-cashback__faq-answer {
    padding: 18px 20px !important;
  }
  .page-promotions-daily-cashback__faq-answer p {
    font-size: 14px;
  }

  /* Responsive images and containers for all images */
  .page-promotions-daily-cashback img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-daily-cashback__hero-section,
  .page-promotions-daily-cashback__how-it-works-section,
  .page-promotions-daily-cashback__benefits-section,
  .page-promotions-daily-cashback__terms-section,
  .page-promotions-daily-cashback__faq-section,
  .page-promotions-daily-cashback__cta-final-section,
  .page-promotions-daily-cashback__container,
  .page-promotions-daily-cashback__grid,
  .page-promotions-daily-cashback__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-promotions-daily-cashback__hero-section, .page-promotions-daily-cashback__how-it-works-section, .page-promotions-daily-cashback__benefits-section, .page-promotions-daily-cashback__terms-section, .page-promotions-daily-cashback__faq-section, .page-promotions-daily-cashback__cta-final-section {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .page-promotions-daily-cashback__main-title {
    font-size: 30px;
  }
  .page-promotions-daily-cashback__section-title {
    font-size: 24px;
  }
  .page-promotions-daily-cashback__description,
  .page-promotions-daily-cashback__text-block {
    font-size: 15px;
  }
  .page-promotions-daily-cashback__cta-button {
    font-size: 15px !important;
    padding: 12px 20px !important;
  }
  .page-promotions-daily-cashback__card-title {
    font-size: 18px;
  }
  .page-promotions-daily-cashback__faq-question h3 {
    font-size: 15px;
  }
  .page-promotions-daily-cashback__faq-toggle {
    font-size: 22px;
    width: 26px;
    height: 26px;
  }
}