:root {
  --page-promotions-daily-check-in-rebate-primary-color: #FFD700; /* Gold */
  --page-promotions-daily-check-in-rebate-secondary-color: #00BFFF; /* Deep Sky Blue */
  --page-promotions-daily-check-in-rebate-dark-text: #333333;
  --page-promotions-daily-check-in-rebate-light-text: #FFFFFF;
  --page-promotions-daily-check-in-rebate-background-dark: #1A2A40; /* Dark Blue-Gray */
  --page-promotions-daily-check-in-rebate-background-light: #F0F2F5; /* Light Gray */
  --page-promotions-daily-check-in-rebate-accent-dark: #998100; /* Darker Gold for contrast */
  --page-promotions-daily-check-in-rebate-accent-light: #4DD2FF; /* Lighter Blue for contrast */
}

.page-promotions-daily-check-in-rebate {
  font-family: 'Arial', sans-serif;
  color: var(--page-promotions-daily-check-in-rebate-dark-text);
  line-height: 1.6;
  background-color: var(--page-promotions-daily-check-in-rebate-background-light);
}

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

.page-promotions-daily-check-in-rebate__hero {
  background: linear-gradient(135deg, var(--page-promotions-daily-check-in-rebate-background-dark), var(--page-promotions-daily-check-in-rebate-secondary-color));
  color: var(--page-promotions-daily-check-in-rebate-light-text);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-daily-check-in-rebate__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--page-promotions-daily-check-in-rebate-primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-check-in-rebate__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--page-promotions-daily-check-in-rebate-light-text);
}

.page-promotions-daily-check-in-rebate__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

.page-promotions-daily-check-in-rebate__section {
  padding: 60px 0;
}

.page-promotions-daily-check-in-rebate__section:nth-of-type(odd) {
  background-color: var(--page-promotions-daily-check-in-rebate-background-light);
  color: var(--page-promotions-daily-check-in-rebate-dark-text);
}

.page-promotions-daily-check-in-rebate__section:nth-of-type(even) {
  background-color: var(--page-promotions-daily-check-in-rebate-background-dark);
  color: var(--page-promotions-daily-check-in-rebate-light-text);
}

.page-promotions-daily-check-in-rebate__section:nth-of-type(even) .page-promotions-daily-check-in-rebate__section-title,
.page-promotions-daily-check-in-rebate__section:nth-of-type(even) h3 {
  color: var(--page-promotions-daily-check-in-rebate-primary-color);
}

.page-promotions-daily-check-in-rebate__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--page-promotions-daily-check-in-rebate-accent-dark);
}

.page-promotions-daily-check-in-rebate__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-promotions-daily-check-in-rebate__keyword {
  font-weight: bold;
  color: var(--page-promotions-daily-check-in-rebate-primary-color);
}

.page-promotions-daily-check-in-rebate__link--inline {
  color: var(--page-promotions-daily-check-in-rebate-secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-daily-check-in-rebate__link--inline:hover {
  text-decoration: underline;
  color: var(--page-promotions-daily-check-in-rebate-accent-light);
}

.page-promotions-daily-check-in-rebate__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.page-promotions-daily-check-in-rebate__content-grid--reverse {
  grid-template-columns: 1fr 1fr;
}

.page-promotions-daily-check-in-rebate__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-check-in-rebate__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-promotions-daily-check-in-rebate__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-promotions-daily-check-in-rebate__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--page-promotions-daily-check-in-rebate-primary-color);
  font-weight: bold;
}

.page-promotions-daily-check-in-rebate__list--benefits li::before {
  content: '⭐';
}

.page-promotions-daily-check-in-rebate__list--reasons li::before {
  content: '✅';
}

.page-promotions-daily-check-in-rebate__terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.page-promotions-daily-check-in-rebate__terms-block {
  background-color: rgba(0, 191, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--page-promotions-daily-check-in-rebate-secondary-color);
}

.page-promotions-daily-check-in-rebate__terms-block h3 {
  color: var(--page-promotions-daily-check-in-rebate-primary-color);
  margin-top: 0;
  font-size: 1.5em;
}

.page-promotions-daily-check-in-rebate__how-to-join {
  text-align: center;
}

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

.page-promotions-daily-check-in-rebate__step-card {
  background-color: var(--page-promotions-daily-check-in-rebate-background-light);
  color: var(--page-promotions-daily-check-in-rebate-dark-text);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-daily-check-in-rebate__section:nth-of-type(even) .page-promotions-daily-check-in-rebate__step-card {
    background-color: var(--page-promotions-daily-check-in-rebate-background-dark);
    color: var(--page-promotions-daily-check-in-rebate-light-text);
    border: 1px solid var(--page-promotions-daily-check-in-rebate-secondary-color);
}
.page-promotions-daily-check-in-rebate__section:nth-of-type(even) .page-promotions-daily-check-in-rebate__step-card h3 {
    color: var(--page-promotions-daily-check-in-rebate-primary-color);
}

.page-promotions-daily-check-in-rebate__step-number {
  font-size: 3em;
  font-weight: bold;
  color: var(--page-promotions-daily-check-in-rebate-primary-color);
  position: absolute;
  top: 15px;
  right: 15px;
  opacity: 0.2;
  line-height: 1;
}

.page-promotions-daily-check-in-rebate__step-card h3 {
  font-size: 1.8em;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--page-promotions-daily-check-in-rebate-secondary-color);
}

.page-promotions-daily-check-in-rebate__step-card p {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-daily-check-in-rebate__faq-item {
  background-color: var(--page-promotions-daily-check-in-rebate-background-light);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 15px;
  border-left: 5px solid var(--page-promotions-daily-check-in-rebate-primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-daily-check-in-rebate__section:nth-of-type(even) .page-promotions-daily-check-in-rebate__faq-item {
  background-color: var(--page-promotions-daily-check-in-rebate-background-dark);
  border-left-color: var(--page-promotions-daily-check-in-rebate-secondary-color);
  color: var(--page-promotions-daily-check-in-rebate-light-text);
}

.page-promotions-daily-check-in-rebate__faq-question {
  font-size: 1.3em;
  color: var(--page-promotions-daily-check-in-rebate-secondary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions-daily-check-in-rebate__section:nth-of-type(even) .page-promotions-daily-check-in-rebate__faq-question {
  color: var(--page-promotions-daily-check-in-rebate-primary-color);
}

.page-promotions-daily-check-in-rebate__faq-answer {
  font-size: 1em;
}

.page-promotions-daily-check-in-rebate__cta-final {
  background: linear-gradient(45deg, var(--page-promotions-daily-check-in-rebate-primary-color), var(--page-promotions-daily-check-in-rebate-accent-dark));
  color: var(--page-promotions-daily-check-in-rebate-dark-text);
  padding: 80px 0;
  text-align: center;
}

.page-promotions-daily-check-in-rebate__cta-title {
  font-size: 3em;
  color: var(--page-promotions-daily-check-in-rebate-background-dark);
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.page-promotions-daily-check-in-rebate__cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: var(--page-promotions-daily-check-in-rebate-dark-text);
}

.page-promotions-daily-check-in-rebate__cta-buttons {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions-daily-check-in-rebate__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.page-promotions-daily-check-in-rebate__btn--primary {
  background-color: var(--page-promotions-daily-check-in-rebate-background-dark);
  color: var(--page-promotions-daily-check-in-rebate-primary-color);
  border-color: var(--page-promotions-daily-check-in-rebate-background-dark);
}

.page-promotions-daily-check-in-rebate__btn--primary:hover {
  background-color: var(--page-promotions-daily-check-in-rebate-secondary-color);
  color: var(--page-promotions-daily-check-in-rebate-light-text);
  border-color: var(--page-promotions-daily-check-in-rebate-secondary-color);
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4);
}

.page-promotions-daily-check-in-rebate__btn--secondary {
  background-color: var(--page-promotions-daily-check-in-rebate-secondary-color);
  color: var(--page-promotions-daily-check-in-rebate-light-text);
  border-color: var(--page-promotions-daily-check-in-rebate-secondary-color);
}

.page-promotions-daily-check-in-rebate__btn--secondary:hover {
  background-color: var(--page-promotions-daily-check-in-rebate-background-dark);
  color: var(--page-promotions-daily-check-in-rebate-secondary-color);
  border-color: var(--page-promotions-daily-check-in-rebate-background-dark);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-promotions-daily-check-in-rebate__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 30px;
}

.page-promotions-daily-check-in-rebate__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-daily-check-in-rebate__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-daily-check-in-rebate__section-title {
    font-size: 2em;
  }
  .page-promotions-daily-check-in-rebate__content-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-daily-check-in-rebate__content-grid--reverse {
    grid-template-columns: 1fr;
  }
  .page-promotions-daily-check-in-rebate__image-block {
    order: -1; /* Image first on mobile */
  }
  .page-promotions-daily-check-in-rebate__terms-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-daily-check-in-rebate__cta-title {
    font-size: 2.2em;
  }
  .page-promotions-daily-check-in-rebate__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-check-in-rebate__hero {
    padding: 60px 0;
  }
  .page-promotions-daily-check-in-rebate__hero-title {
    font-size: 2em;
  }
  .page-promotions-daily-check-in-rebate__section {
    padding: 40px 0;
  }
  .page-promotions-daily-check-in-rebate__section-title {
    font-size: 1.8em;
  }
  .page-promotions-daily-check-in-rebate__paragraph,
  .page-promotions-daily-check-in-rebate__list li,
  .page-promotions-daily-check-in-rebate__faq-answer {
    font-size: 0.95em;
  }
  .page-promotions-daily-check-in-rebate__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-daily-check-in-rebate__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-daily-check-in-rebate__hero-description {
    font-size: 1em;
  }
  .page-promotions-daily-check-in-rebate__section-title {
    font-size: 1.6em;
  }
  .page-promotions-daily-check-in-rebate__step-card h3 {
    font-size: 1.4em;
  }
  .page-promotions-daily-check-in-rebate__faq-question {
    font-size: 1.1em;
  }
  .page-promotions-daily-check-in-rebate__cta-title {
    font-size: 1.8em;
  }
  .page-promotions-daily-check-in-rebate__cta-description {
    font-size: 0.95em;
  }
  .page-promotions-daily-check-in-rebate__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-daily-check-in-rebate__btn {
    width: 80%;
    max-width: 280px;
  }
}