.page-promo-daily-rewards {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-promo-daily-rewards__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0d0d0d; /* Dark background for hero content area behind image */
  color: #ffffff;
  padding: 0;
  min-height: 500px; /* Ensure hero section has a minimum height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promo-daily-rewards__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-promo-daily-rewards__hero-content {
  position: relative; /* Changed from absolute to relative to be within flex context, but still positioned over image */
  text-align: center;
  max-width: 800px;
  padding: 30px 40px;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background for text readability */
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

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

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

.page-promo-daily-rewards__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Deep red text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-promo-daily-rewards__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Deep red for section titles */
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  position: relative;
}

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

.page-promo-daily-rewards__text-content {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-promo-daily-rewards__text-content a {
  color: #8B0000;
  text-decoration: underline;
}

.page-promo-daily-rewards__benefits-grid,
.page-promo-daily-rewards__reward-cards-grid,
.page-promo-daily-rewards__games-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__reward-card,
.page-promo-daily-rewards__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.page-promo-daily-rewards__benefit-card:hover,
.page-promo-daily-rewards__reward-card:hover,
.page-promo-daily-rewards__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.page-promo-daily-rewards__benefit-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  object-fit: contain;
  min-width: 100px; /* Enforce minimum size */
  min-height: 100px;
}

.page-promo-daily-rewards__benefit-title,
.page-promo-daily-rewards__reward-title,
.page-promo-daily-rewards__game-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-promo-daily-rewards__benefit-title a,
.page-promo-daily-rewards__reward-title a,
.page-promo-daily-rewards__game-title a {
  color: #8B0000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo-daily-rewards__benefit-title a:hover,
.page-promo-daily-rewards__reward-title a:hover,
.page-promo-daily-rewards__game-title a:hover {
  color: #FFD700;
}

.page-promo-daily-rewards__reward-image,
.page-promo-daily-rewards__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
}

.page-promo-daily-rewards__game-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-promo-daily-rewards__game-button:hover {
  background-color: #e6c200;
}

.page-promo-daily-rewards__how-to-claim-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.page-promo-daily-rewards__steps-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px;
  max-width: 800px;
}

.page-promo-daily-rewards__step-item {
  background-color: #ffffff;
  border-left: 5px solid #FFD700;
  padding: 20px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  line-height: 1.5;
}

.page-promo-daily-rewards__step-item strong {
  color: #8B0000;
  font-size: 1.2em;
}

.page-promo-daily-rewards__cta-button--secondary {
  background-color: #8B0000;
  color: #FFD700;
}

.page-promo-daily-rewards__cta-button--secondary:hover {
  background-color: #6a0000;
}

.page-promo-daily-rewards__tips-list {
  list-style: disc;
  text-align: left;
  max-width: 900px;
  margin: 0 auto 50px;
  padding-left: 40px;
  font-size: 1.1em;
}

.page-promo-daily-rewards__tip-item {
  margin-bottom: 15px;
}

.page-promo-daily-rewards__faq-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.page-promo-daily-rewards__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-promo-daily-rewards__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-promo-daily-rewards__faq-question {
  font-size: 1.3em;
  color: #8B0000;
  padding: 20px 30px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promo-daily-rewards__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promo-daily-rewards__faq-question.active::after {
  transform: rotate(45deg);
}

.page-promo-daily-rewards__faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promo-daily-rewards__faq-answer p {
  padding-bottom: 20px;
  margin: 0;
  font-size: 1em;
}

.page-promo-daily-rewards__cta-final-section {
  background-color: #8B0000;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-promo-daily-rewards__cta-final-section .page-promo-daily-rewards__section-title {
  color: #FFD700;
}

.page-promo-daily-rewards__cta-final-section .page-promo-daily-rewards__section-title::after {
  background-color: #ffffff;
}

.page-promo-daily-rewards__cta-final-section .page-promo-daily-rewards__text-content {
  color: #f0f0f0;
}

.page-promo-daily-rewards__cta-button--large {
  padding: 20px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

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

@media (max-width: 768px) {
  .page-promo-daily-rewards__hero-section {
    min-height: 400px;
  }
  .page-promo-daily-rewards__hero-content {
    max-width: 90%;
    padding: 25px 30px;
  }
  .page-promo-daily-rewards__hero-title {
    font-size: 2.2em;
  }
  .page-promo-daily-rewards__hero-description {
    font-size: 1em;
  }
  .page-promo-daily-rewards__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo-daily-rewards__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .page-promo-daily-rewards__text-content {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promo-daily-rewards__benefits-grid,
  .page-promo-daily-rewards__reward-cards-grid,
  .page-promo-daily-rewards__games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promo-daily-rewards__benefit-card,
  .page-promo-daily-rewards__reward-card,
  .page-promo-daily-rewards__game-card {
    padding: 25px;
  }
  .page-promo-daily-rewards__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promo-daily-rewards__faq-answer p {
    padding-bottom: 15px;
  }
  .page-promo-daily-rewards__cta-final-section {
    padding: 60px 20px;
  }
  .page-promo-daily-rewards__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-promo-daily-rewards__hero-image,
  .page-promo-daily-rewards__reward-image,
  .page-promo-daily-rewards__game-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }
  .page-promo-daily-rewards__benefit-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
  }
  /* Ensure no horizontal scrolling */
  .page-promo-daily-rewards {
    overflow-x: hidden;
  }
  .page-promo-daily-rewards__container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-promo-daily-rewards__hero-title {
    font-size: 1.8em;
  }
  .page-promo-daily-rewards__hero-description {
    font-size: 0.9em;
  }
  .page-promo-daily-rewards__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promo-daily-rewards__section-title {
    font-size: 1.5em;
  }
  .page-promo-daily-rewards__text-content {
    font-size: 0.9em;
  }
  .page-promo-daily-rewards__step-item {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-promo-daily-rewards__tips-list {
    font-size: 1em;
    padding-left: 20px;
  }
  .page-promo-daily-rewards__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-promo-daily-rewards__cta-button--large {
    padding: 12px 25px;
    font-size: 1em;
  }
}