/* style/promotions-phdream-daily-rewards.css */
.page-promotions-phdream-daily-rewards {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
}

.page-promotions-phdream-daily-rewards__hero-section {
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for first section */
  text-align: center;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions-phdream-daily-rewards__hero-image {
  width: 100%;
  max-width: 1920px; /* Ensure image container doesn't overflow */
  margin-bottom: 20px;
}

.page-promotions-phdream-daily-rewards__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-phdream-daily-rewards__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-phdream-daily-rewards__main-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: #000000;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-promotions-phdream-daily-rewards__hero-description {
  font-size: 1.15rem;
  color: #555555;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-phdream-daily-rewards__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

.page-promotions-phdream-daily-rewards__button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  text-align: center;
}

.page-promotions-phdream-daily-rewards__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
}

.page-promotions-phdream-daily-rewards__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.page-promotions-phdream-daily-rewards__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promotions-phdream-daily-rewards__button--login:hover {
  background-color: #e0a53c;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.page-promotions-phdream-daily-rewards__button--download,
.page-promotions-phdream-daily-rewards__button--explore,
.page-promotions-phdream-daily-rewards__button--register-final {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-promotions-phdream-daily-rewards__button--download:hover,
.page-promotions-phdream-daily-rewards__button--explore:hover,
.page-promotions-phdream-daily-rewards__button--register-final:hover {
  background-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions-phdream-daily-rewards__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
}

.page-promotions-phdream-daily-rewards__section-title {
  font-size: 2rem;
  color: #000000;
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.page-promotions-phdream-daily-rewards__content-area p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #444444;
  text-align: justify;
}

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

.page-promotions-phdream-daily-rewards__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
  display: block;
  margin: 0 auto;
}

.page-promotions-phdream-daily-rewards__steps-list,
.page-promotions-phdream-daily-rewards__rewards-list,
.page-promotions-phdream-daily-rewards__tips-list {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #444444;
}

.page-promotions-phdream-daily-rewards__rewards-list {
  list-style-type: disc;
}

.page-promotions-phdream-daily-rewards__steps-list li,
.page-promotions-phdream-daily-rewards__rewards-list li,
.page-promotions-phdream-daily-rewards__tips-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.5;
}

.page-promotions-phdream-daily-rewards__steps-list li strong,
.page-promotions-phdream-daily-rewards__rewards-list li strong,
.page-promotions-phdream-daily-rewards__tips-list li strong {
  color: #000000;
}

.page-promotions-phdream-daily-rewards__cta-buttons--final {
  margin-top: 50px;
}

@media (max-width: 768px) {
  .page-promotions-phdream-daily-rewards__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .page-promotions-phdream-daily-rewards__hero-description,
  .page-promotions-phdream-daily-rewards__content-area p,
  .page-promotions-phdream-daily-rewards__steps-list li,
  .page-promotions-phdream-daily-rewards__rewards-list li,
  .page-promotions-phdream-daily-rewards__tips-list li {
    font-size: 1rem;
  }

  .page-promotions-phdream-daily-rewards__section-title {
    font-size: 1.7rem;
  }

  .page-promotions-phdream-daily-rewards__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-promotions-phdream-daily-rewards__button {
    width: 80%;
    max-width: 300px;
  }

  /* Ensure content images do not overflow */
  .page-promotions-phdream-daily-rewards__image-wrapper img {
    max-width: 100% !important;
    height: auto !important;
  }
}