/* style/promotions-daily-rewards.css */
.page-promotions-daily-rewards {
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-promotions-daily-rewards__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom padding */
  background: #0a0a0a; /* Ensure a dark background for the hero section */
  overflow: hidden;
}

.page-promotions-daily-rewards__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
  border-radius: 8px;
}

.page-promotions-daily-rewards__hero-content {
  max-width: 900px;
  text-align: center;
  z-index: 1;
  color: #ffffff;
  padding: 0 15px;
}

.page-promotions-daily-rewards__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #26A9E0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-daily-rewards__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions-daily-rewards__btn-primary,
.page-promotions-daily-rewards__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-promotions-daily-rewards__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-promotions-daily-rewards__btn-primary:hover {
  background: #1e87c2;
  transform: translateY(-2px);
}

.page-promotions-daily-rewards__btn-secondary {
  background: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-promotions-daily-rewards__btn-secondary:hover {
  background: #c76706;
  transform: translateY(-2px);
}

.page-promotions-daily-rewards__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #0a0a0a; /* Dark background for content area */
  color: #ffffff; /* Light text for dark background */
}

.page-promotions-daily-rewards__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 20px;
}

.page-promotions-daily-rewards__text-block {
  margin-bottom: 40px;
  padding: 0 15px;
}

.page-promotions-daily-rewards__text-block p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-promotions-daily-rewards__highlight {
  color: #26A9E0;
  font-weight: 700;
}

.page-promotions-daily-rewards__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-rewards__image--center {
  text-align: center;
}

.page-promotions-daily-rewards__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions-daily-rewards__list-item {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  color: #f0f0f0;
}

.page-promotions-daily-rewards__list-item::before {
  content: '✔';
  color: #26A9E0;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-promotions-daily-rewards__numbered-list {
  list-style: none;
  counter-reset: my-counter;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions-daily-rewards__numbered-list .page-promotions-daily-rewards__list-item {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  color: #f0f0f0;
}

.page-promotions-daily-rewards__numbered-list .page-promotions-daily-rewards__list-item::before {
  counter-increment: my-counter;
  content: counter(my-counter) '.';
  color: #EA7C07;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
  flex-shrink: 0;
}

.page-promotions-daily-rewards__cta-buttons--center {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-promotions-daily-rewards__cta-buttons--bottom {
  margin-top: 50px;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-promotions-daily-rewards__faq-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 15px;
}

.page-promotions-daily-rewards__faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  color: #f0f0f0;
}

.page-promotions-daily-rewards__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.page-promotions-daily-rewards__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 1.1em;
  cursor: pointer;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-promotions-daily-rewards__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-promotions-daily-rewards__faq-item[open] > .page-promotions-daily-rewards__faq-question {
  background: #26A9E0;
  color: #ffffff;
}

.page-promotions-daily-rewards__faq-qtext {
  flex-grow: 1;
}

.page-promotions-daily-rewards__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0; /* Default color */
}

.page-promotions-daily-rewards__faq-item[open] > .page-promotions-daily-rewards__faq-question .page-promotions-daily-rewards__faq-toggle {
  color: #ffffff;
}

.page-promotions-daily-rewards__faq-answer {
  padding: 15px 20px 20px;
  background: rgba(255, 255, 255, 0.05);
  color: #f0f0f0;
  font-size: 0.95em;
}

/* Details element specific styling */
details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}

/* Links in content */
.page-promotions-daily-rewards__content-area a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions-daily-rewards__content-area a:hover {
  color: #EA7C07;
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-promotions-daily-rewards__hero-section {
    padding: 10px 15px 40px;
  }

  .page-promotions-daily-rewards__hero-content {
    padding: 0 10px;
  }

  .page-promotions-daily-rewards__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

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

  .page-promotions-daily-rewards__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .page-promotions-daily-rewards__btn-primary,
  .page-promotions-daily-rewards__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-daily-rewards__content-area {
    padding: 30px 15px;
  }

  .page-promotions-daily-rewards__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 20px;
  }

  .page-promotions-daily-rewards__text-block {
    padding: 0 10px;
  }

  .page-promotions-daily-rewards img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto;
    margin-right: auto;
  }
  
  .page-promotions-daily-rewards__section,
  .page-promotions-daily-rewards__card,
  .page-promotions-daily-rewards__container,
  .page-promotions-daily-rewards__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-promotions-daily-rewards__list-item {
    padding: 12px 15px;
    font-size: 0.95em;
  }

  .page-promotions-daily-rewards__numbered-list .page-promotions-daily-rewards__list-item {
    padding: 12px 15px;
    font-size: 0.95em;
  }

  .page-promotions-daily-rewards__faq-question {
    padding: 15px 15px;
    font-size: 1em;
  }

  .page-promotions-daily-rewards__faq-answer {
    padding: 12px 15px 15px;
    font-size: 0.9em;
  }
}