:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-main: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-promotions-daily-rewards {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color for dark background */
  background-color: var(--background-main); /* Assuming body background is dark */
}

.page-promotions-daily-rewards__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
}

.page-promotions-daily-rewards__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-promotions-daily-rewards__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-promotions-daily-rewards__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: var(--text-main);
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-promotions-daily-rewards__main-title {
  color: var(--gold-color);
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-promotions-daily-rewards__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-promotions-daily-rewards__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: var(--button-gradient);
  color: var(--text-main);
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-promotions-daily-rewards__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-daily-rewards__section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-promotions-daily-rewards__section-title {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2em;
  font-weight: bold;
  border-bottom: 3px solid var(--deep-green);
  padding-bottom: 15px;
}

.page-promotions-daily-rewards__sub-title {
  color: var(--secondary-color);
  font-size: 1.6em;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-daily-rewards__paragraph {
  margin-bottom: 15px;
  color: var(--text-main);
}

.page-promotions-daily-rewards__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 15px;
  color: var(--text-main);
}

.page-promotions-daily-rewards__ordered-list {
  list-style: decimal inside;
  margin-left: 20px;
  margin-bottom: 15px;
  color: var(--text-main);
}

.page-promotions-daily-rewards__list-item {
  margin-bottom: 8px;
  color: var(--text-main);
}

.page-promotions-daily-rewards__image-container {
  margin: 30px 0;
  text-align: center;
}

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

.page-promotions-daily-rewards__link-button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  margin-right: 10px;
  border-radius: 25px;
  background: var(--primary-color);
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.page-promotions-daily-rewards__link-button:hover {
  background-color: var(--secondary-color);
}

.page-promotions-daily-rewards__card-bg {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-promotions-daily-rewards__dark-bg {
  background-color: var(--background-main);
  color: var(--text-main);
}

.page-promotions-daily-rewards__faq-section {
  padding: 60px 20px;
  background-color: var(--deep-green);
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-daily-rewards__faq-list {
  margin-top: 30px;
}

.page-promotions-daily-rewards__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-promotions-daily-rewards__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--border-color);
  list-style: none; /* For details tag */
}

.page-promotions-daily-rewards__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions-daily-rewards__faq-qtext {
  flex-grow: 1;
  color: var(--text-main);
}

.page-promotions-daily-rewards__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-promotions-daily-rewards__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--text-secondary);
}

.page-promotions-daily-rewards__conclusion {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--deep-green);
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
}

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

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

  .page-promotions-daily-rewards__main-title {
    font-size: 1.8em;
  }

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

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

  .page-promotions-daily-rewards__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions-daily-rewards__sub-title {
    font-size: 1.4em;
  }

  /* Images responsiveness */
  .page-promotions-daily-rewards img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containers for images, buttons, and general content */
  .page-promotions-daily-rewards__section,
  .page-promotions-daily-rewards__card-bg,
  .page-promotions-daily-rewards__faq-section,
  .page-promotions-daily-rewards__image-container,
  .page-promotions-daily-rewards__hero-content,
  .page-promotions-daily-rewards__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  /* Buttons responsiveness */
  .page-promotions-daily-rewards__cta-button,
  .page-promotions-daily-rewards__link-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 10px;
  }

  .page-promotions-daily-rewards__link-button {
    margin-right: 0;
  }

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

  .page-promotions-daily-rewards__faq-answer {
    padding: 15px 20px;
  }

  .page-promotions-daily-rewards__list,
  .page-promotions-daily-rewards__ordered-list {
    margin-left: 10px;
  }

  .page-promotions-daily-rewards__hero-image {
    filter: brightness(0.6); /* Slightly less dark for mobile */
  }
}