.page-promo-daily-rewards {
  color: #ffffff; /* Light text for dark body background */
  background-color: #0F0F0F; /* Ensure consistency, though body background is typically handled by shared.css */
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
  padding-top: var(--header-offset, 120px); /* Fixed header offset for main content */
}

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

.page-promo-daily-rewards__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background-color: #1A1A1A; /* Auxiliary dark color for hero background */
}

.page-promo-daily-rewards__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.page-promo-daily-rewards__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  object-fit: cover;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promo-daily-rewards__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-promo-daily-rewards__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-promo-daily-rewards__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-promo-daily-rewards__hero-button,
.page-promo-daily-rewards__cta-button,
.page-promo-daily-rewards__conclusion-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A1A1A; /* Dark text on gold button for contrast */
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

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

.page-promo-daily-rewards__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

.page-promo-daily-rewards__section-intro {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-promo-daily-rewards__benefits-section,
.page-promo-daily-rewards__types-section,
.page-promo-daily-rewards__how-to-claim-section,
.page-promo-daily-rewards__maximizing-section,
.page-promo-daily-rewards__gaming-destination-section,
.page-promo-daily-rewards__faq-section,
.page-promo-daily-rewards__conclusion-section {
  padding: 60px 0;
  background-color: #1A1A1A; /* Auxiliary dark color for sections */
  margin-bottom: 20px;
  border-radius: 10px;
}

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

.page-promo-daily-rewards__benefit-card,
.page-promo-daily-rewards__type-card,
.page-promo-daily-rewards__feature-card,
.page-promo-daily-rewards__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter dark background for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promo-daily-rewards__benefit-card:hover,
.page-promo-daily-rewards__type-card:hover,
.page-promo-daily-rewards__feature-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.12);
}

.page-promo-daily-rewards__benefit-title,
.page-promo-daily-rewards__type-title,
.page-promo-daily-rewards__feature-title,
.page-promo-daily-rewards__step-title,
.page-promo-daily-rewards__tip-title,
.page-promo-daily-rewards__faq-question {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promo-daily-rewards__benefit-text,
.page-promo-daily-rewards__type-text,
.page-promo-daily-rewards__feature-text,
.page-promo-daily-rewards__step-text,
.page-promo-daily-rewards__tip-text,
.page-promo-daily-rewards__faq-answer {
  font-size: 1em;
  color: #e0e0e0;
}

.page-promo-daily-rewards__image {
  width: 100%;
  height: auto;
  max-width: 800px;
  min-width: 200px;
  display: block;
  border-radius: 15px;
  margin: 50px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.page-promo-daily-rewards__image--center {
  margin-left: auto;
  margin-right: auto;
}

.page-promo-daily-rewards__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promo-daily-rewards__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-left: 5px solid #FFD700;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promo-daily-rewards__step-item a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promo-daily-rewards__step-item a:hover {
  text-decoration: underline;
}

.page-promo-daily-rewards__cta-block {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promo-daily-rewards__cta-block--bottom {
  margin-top: 80px;
}

.page-promo-daily-rewards__cta-text {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-promo-daily-rewards__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promo-daily-rewards__tip-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promo-daily-rewards__faq-items {
  margin-top: 40px;
}

.page-promo-daily-rewards__faq-item {
  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
}

.page-promo-daily-rewards__faq-question {
  cursor: pointer;
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  position: relative;
  padding-right: 30px;
}

.page-promo-daily-rewards__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promo-daily-rewards__faq-question.page-promo-daily-rewards__faq-question--active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promo-daily-rewards__faq-answer {
  display: none;
  font-size: 1em;
  color: #e0e0e0;
  padding-top: 10px;
}

.page-promo-daily-rewards__conclusion-section {
  text-align: center;
  padding: 80px 0;
  background-color: #1A1A1A;
}

.page-promo-daily-rewards__conclusion-button {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo-daily-rewards__hero-title {
    font-size: 2.8em;
  }

  .page-promo-daily-rewards__section-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-promo-daily-rewards {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }

  .page-promo-daily-rewards__hero-section {
    padding: 60px 0;
  }

  .page-promo-daily-rewards__hero-title {
    font-size: 2.2em;
  }

  .page-promo-daily-rewards__hero-description {
    font-size: 1em;
  }

  .page-promo-daily-rewards__hero-button,
  .page-promo-daily-rewards__cta-button,
  .page-promo-daily-rewards__conclusion-button {
    padding: 15px 30px;
    font-size: 1em;
  }

  .page-promo-daily-rewards__section-title {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-promo-daily-rewards__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-promo-daily-rewards__benefits-grid,
  .page-promo-daily-rewards__types-grid,
  .page-promo-daily-rewards__features-grid,
  .page-promo-daily-rewards__tips-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promo-daily-rewards__benefit-card,
  .page-promo-daily-rewards__type-card,
  .page-promo-daily-rewards__feature-card,
  .page-promo-daily-rewards__tip-item,
  .page-promo-daily-rewards__faq-item {
    padding: 20px;
  }

  .page-promo-daily-rewards__benefit-title,
  .page-promo-daily-rewards__type-title,
  .page-promo-daily-rewards__feature-title,
  .page-promo-daily-rewards__step-title,
  .page-promo-daily-rewards__tip-title,
  .page-promo-daily-rewards__faq-question {
    font-size: 1.4em;
  }

  .page-promo-daily-rewards__image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    margin: 30px auto;
  }

  .page-promo-daily-rewards__cta-block {
    padding: 30px;
  }

  .page-promo-daily-rewards__cta-text {
    font-size: 1.5em;
  }

  /* Ensure content images do not overflow */
  .page-promo-daily-rewards img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo-daily-rewards__hero-title {
    font-size: 1.8em;
  }

  .page-promo-daily-rewards__section-title {
    font-size: 1.6em;
  }

  .page-promo-daily-rewards__hero-button,
  .page-promo-daily-rewards__cta-button,
  .page-promo-daily-rewards__conclusion-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-promo-daily-rewards__benefit-title,
  .page-promo-daily-rewards__type-title,
  .page-promo-daily-rewards__feature-title,
  .page-promo-daily-rewards__step-title,
  .page-promo-daily-rewards__tip-title,
  .page-promo-daily-rewards__faq-question {
    font-size: 1.2em;
  }

  .page-promo-daily-rewards__cta-text {
    font-size: 1.2em;
  }
}