/* style/promotions-daily-checkin.css */
.page-promotions-daily-checkin {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-promotions-daily-checkin__hero {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-daily-checkin__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-checkin__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-daily-checkin__hero-image {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 400px;
  height: auto;
  opacity: 0.2;
  transform: rotate(15deg);
  z-index: 0;
}

.page-promotions-daily-checkin__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-daily-checkin__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFC107;
  border-radius: 2px;
}

.page-promotions-daily-checkin__intro,
.page-promotions-daily-checkin__how-it-works,
.page-promotions-daily-checkin__rewards,
.page-promotions-daily-checkin__benefits,
.page-promotions-daily-checkin__rules,
.page-promotions-daily-checkin__faq {
  padding: 80px 0;
}

.page-promotions-daily-checkin__intro p,
.page-promotions-daily-checkin__rules p,
.page-promotions-daily-checkin__faq p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-daily-checkin__how-it-works {
  background-color: #e9ecef;
}

.page-promotions-daily-checkin__steps {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}

.page-promotions-daily-checkin__step {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex: 1 1 calc(33% - 60px);
  min-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-checkin__step:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-checkin__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 5px rgba(0, 123, 255, 0.3));
}

.page-promotions-daily-checkin__step h3 {
  font-size: 1.6em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-promotions-daily-checkin__step p {
  font-size: 1em;
  color: #555555;
}

.page-promotions-daily-checkin__cta-inline {
  text-align: center;
  margin-top: 60px;
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-daily-checkin__cta-inline p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #333333;
}

.page-promotions-daily-checkin__reward-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-daily-checkin__reward-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-daily-checkin__reward-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-checkin__reward-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 5px rgba(255, 193, 7, 0.4));
}

.page-promotions-daily-checkin__reward-item h3 {
  font-size: 1.5em;
  color: #FFC107;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-promotions-daily-checkin__reward-item p {
  font-size: 1em;
  color: #555555;
}

.page-promotions-daily-checkin__note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #6c757d;
  font-size: 1.1em;
}

.page-promotions-daily-checkin__section--bg-dark {
  background-color: #007BFF;
  color: #FFFFFF;
}

.page-promotions-daily-checkin__section--bg-dark .page-promotions-daily-checkin__section-title {
  color: #FFC107;
}

.page-promotions-daily-checkin__section--bg-dark .page-promotions-daily-checkin__section-title::after {
  background-color: #FFFFFF;
}

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

.page-promotions-daily-checkin__benefit-list li {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.1em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-daily-checkin__benefit-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 3px rgba(255, 193, 7, 0.5));
}

.page-promotions-daily-checkin__benefit-list li strong {
  color: #FFC107;
}

.page-promotions-daily-checkin__cta-banner {
  background-color: #FFC107;
  padding: 80px 0;
  text-align: center;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-promotions-daily-checkin__cta-image {
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-checkin__cta-content {
  max-width: 600px;
  text-align: left;
}

.page-promotions-daily-checkin__cta-title {
  font-size: 2.8em;
  color: #007BFF;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-daily-checkin__cta-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #495057;
}

.page-promotions-daily-checkin__rules ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #555555;
}

.page-promotions-daily-checkin__rules li {
  margin-bottom: 10px;
}

.page-promotions-daily-checkin__subsection-title {
  font-size: 1.8em;
  color: #007BFF;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

.page-promotions-daily-checkin__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-daily-checkin__faq-question {
  font-size: 1.4em;
  color: #007BFF;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

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

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

.page-promotions-daily-checkin__faq-answer {
  font-size: 1.1em;
  color: #555555;
  display: none;
  margin-top: 15px;
  padding-left: 15px;
  border-left: 3px solid #FFC107;
}

.page-promotions-daily-checkin__faq-answer.active {
  display: block;
}

.page-promotions-daily-checkin__final-cta {
  background: linear-gradient(45deg, #0056b3, #007BFF);
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
}

.page-promotions-daily-checkin__final-cta .page-promotions-daily-checkin__cta-title {
  color: #FFC107;
  font-size: 3em;
  margin-bottom: 25px;
}

.page-promotions-daily-checkin__final-cta .page-promotions-daily-checkin__cta-text {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions-daily-checkin__cta-small-text {
  margin-top: 40px;
  font-size: 1em;
  opacity: 0.8;
}

.page-promotions-daily-checkin__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-promotions-daily-checkin__btn--primary {
  background-color: #FFC107;
  color: #0056b3;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-promotions-daily-checkin__btn--primary:hover {
  background-color: #e0a800;
  color: #003e80;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-promotions-daily-checkin__btn--secondary {
  background-color: #FFFFFF;
  color: #007BFF;
  border: 2px solid #007BFF;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.page-promotions-daily-checkin__btn--secondary:hover {
  background-color: #007BFF;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.page-promotions-daily-checkin__link {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions-daily-checkin__link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-promotions-daily-checkin .highlight {
  color: #FFC107;
}

.page-promotions-daily-checkin__section--bg-light {
  background-color: #e9ecef;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-daily-checkin__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-daily-checkin__hero-subtitle {
    font-size: 1.3em;
  }
  .page-promotions-daily-checkin__section-title {
    font-size: 2em;
  }
  .page-promotions-daily-checkin__steps {
    flex-direction: column;
    align-items: center;
  }
  .page-promotions-daily-checkin__step {
    flex: 1 1 90%;
  }
  .page-promotions-daily-checkin__cta-banner {
    flex-direction: column;
    gap: 30px;
  }
  .page-promotions-daily-checkin__cta-content {
    text-align: center;
  }
  .page-promotions-daily-checkin__cta-title {
    font-size: 2.2em;
  }
  .page-promotions-daily-checkin__cta-text {
    font-size: 1.1em;
  }
  .page-promotions-daily-checkin__final-cta .page-promotions-daily-checkin__cta-title {
    font-size: 2.5em;
  }
  .page-promotions-daily-checkin__final-cta .page-promotions-daily-checkin__cta-text {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-checkin__hero {
    padding: 80px 0;
  }
  .page-promotions-daily-checkin__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-daily-checkin__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-daily-checkin__section-title {
    font-size: 1.8em;
  }
  .page-promotions-daily-checkin__intro,
  .page-promotions-daily-checkin__how-it-works,
  .page-promotions-daily-checkin__rewards,
  .page-promotions-daily-checkin__benefits,
  .page-promotions-daily-checkin__rules,
  .page-promotions-daily-checkin__faq {
    padding: 60px 0;
  }
  .page-promotions-daily-checkin__reward-grid,
  .page-promotions-daily-checkin__benefit-list {
    grid-template-columns: 1fr;
  }
  .page-promotions-daily-checkin__hero-image {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-promotions-daily-checkin__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-daily-checkin__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-daily-checkin__btn {
    width: 100%;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-daily-checkin__cta-buttons {
    flex-direction: column;
  }
  .page-promotions-daily-checkin__cta-title {
    font-size: 1.8em;
  }
  .page-promotions-daily-checkin__final-cta .page-promotions-daily-checkin__cta-title {
    font-size: 2em;
  }
  .page-promotions-daily-checkin__final-cta .page-promotions-daily-checkin__cta-text {
    font-size: 1em;
  }
}