/* style/promotions-cashback-rules.css */
.page-promotions-cashback-rules {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A202C; /* Main dark blue background */
}

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

.page-promotions-cashback-rules__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a4a6e 100%); /* Dark blue gradient */
  padding: 100px 0 60px;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-promotions-cashback-rules__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  opacity: 0.3;
  animation: page-promotions-cashback-rules__pulse 10s infinite alternate;
}

@keyframes page-promotions-cashback-rules__pulse {
  0% { transform: scale(0.8); opacity: 0.2; }
  100% { transform: scale(1.2); opacity: 0.4; }
}

.page-promotions-cashback-rules__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for H1 */
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-promotions-cashback-rules__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E0E0E0; /* Light gray for subtitle */
  position: relative;
  z-index: 1;
}

.page-promotions-cashback-rules__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  border: none;
  position: relative;
  z-index: 1;
}

.page-promotions-cashback-rules__button--primary {
  background-color: #FFD700; /* Gold background */
  color: #1A202C; /* Dark blue text */
}

.page-promotions-cashback-rules__button--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-cashback-rules__button--secondary {
  background-color: #3a4a6e; /* Darker blue background */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-promotions-cashback-rules__button--secondary:hover {
  background-color: #4a5a7e; /* Lighter dark blue on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(58, 74, 110, 0.4);
}

.page-promotions-cashback-rules__content-section {
  padding: 60px 0;
  background-color: #1A202C;
}

.page-promotions-cashback-rules__intro-text {
  margin-bottom: 40px;
  text-align: justify;
}

.page-promotions-cashback-rules__intro-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-promotions-cashback-rules__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for H2 */
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.page-promotions-cashback-rules__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions-cashback-rules__sub-section-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for H3 */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-promotions-cashback-rules__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-promotions-cashback-rules__list li {
  background-color: #2A3342; /* Slightly lighter dark blue for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-promotions-cashback-rules__list li::before {
  content: '✔️';
  color: #FFD700;
  margin-right: 10px;
  font-size: 1.2em;
  line-height: 1;
}

.page-promotions-cashback-rules__blockquote {
  background-color: #2A3342; /* Slightly lighter dark blue */
  border-left: 5px solid #FFD700;
  padding: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #FFD700; /* Gold for blockquote text */
  font-size: 1.2em;
  border-radius: 5px;
}

.page-promotions-cashback-rules__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback-rules__link {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions-cashback-rules__link:hover {
  color: #e6c200; /* Darker gold on hover */
  text-decoration: underline;
}

.page-promotions-cashback-rules__faq-item {
  background-color: #2A3342;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback-rules__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions-cashback-rules__faq-answer {
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-promotions-cashback-rules__cta-banner {
  background: linear-gradient(90deg, #FFD700, #e6c200);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback-rules__cta-text {
  font-size: 1.8em;
  color: #1A202C;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-promotions-cashback-rules__cta-banner .page-promotions-cashback-rules__button {
  background-color: #1A202C;
  color: #FFD700;
  padding: 18px 40px;
  font-size: 1.2em;
  border: 2px solid #1A202C;
}

.page-promotions-cashback-rules__cta-banner .page-promotions-cashback-rules__button:hover {
  background-color: #3a4a6e;
  color: #FFD700;
  border-color: #3a4a6e;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-cashback-rules__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-cashback-rules__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-cashback-rules__section-title {
    font-size: 2em;
  }
  .page-promotions-cashback-rules__sub-section-title {
    font-size: 1.5em;
  }
  .page-promotions-cashback-rules__cta-text {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-promotions-cashback-rules__hero-section {
    padding: 80px 0 40px;
  }
  .page-promotions-cashback-rules__hero-title {
    font-size: 2em;
  }
  .page-promotions-cashback-rules__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-cashback-rules__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-cashback-rules__section-title {
    font-size: 1.8em;
  }
  .page-promotions-cashback-rules__sub-section-title {
    font-size: 1.3em;
  }
  .page-promotions-cashback-rules__cta-text {
    font-size: 1.3em;
  }
}

@media (max-width: 576px) {
  .page-promotions-cashback-rules__hero-section {
    padding: 60px 0 30px;
  }
  .page-promotions-cashback-rules__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-cashback-rules__hero-subtitle {
    font-size: 0.9em;
  }
  .page-promotions-cashback-rules__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promotions-cashback-rules__section-title {
    font-size: 1.5em;
  }
  .page-promotions-cashback-rules__sub-section-title {
    font-size: 1.2em;
  }
  .page-promotions-cashback-rules__list li {
    font-size: 0.95em;
  }
  .page-promotions-cashback-rules__blockquote {
    font-size: 1.1em;
  }
  .page-promotions-cashback-rules__faq-question {
    font-size: 1.1em;
  }
  .page-promotions-cashback-rules__faq-answer {
    font-size: 0.95em;
  }
  .page-promotions-cashback-rules__cta-text {
    font-size: 1.1em;
  }
  .page-promotions-cashback-rules__cta-banner .page-promotions-cashback-rules__button {
    padding: 15px 30px;
    font-size: 1em;
  }
}