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

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

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

.page-promotions-daily-checkin-bonus__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:ocean,fish,bubbles]') no-repeat center center/cover;
  opacity: 0.2;
  z-index: 0;
}

.page-promotions-daily-checkin-bonus__hero .page-promotions-daily-checkin-bonus__container {
  position: relative;
  z-index: 1;
}

.page-promotions-daily-checkin-bonus__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFC107;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-checkin-bonus__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-daily-checkin-bonus__section {
  padding: 60px 0;
}

.page-promotions-daily-checkin-bonus__section--benefits {
  background-color: #ffffff;
}

.page-promotions-daily-checkin-bonus__section--how-to {
  background-color: #e9ecef;
}

.page-promotions-daily-checkin-bonus__section--rewards {
  background-color: #ffffff;
}

.page-promotions-daily-checkin-bonus__section--optimize {
  background-color: #e9ecef;
}

.page-promotions-daily-checkin-bonus__section--platform {
  background-color: #ffffff;
}

.page-promotions-daily-checkin-bonus__section--faq {
  background-color: #f8f9fa;
}

.page-promotions-daily-checkin-bonus__section--conclusion {
  background-color: #007BFF;
  color: #ffffff;
  text-align: center;
}

.page-promotions-daily-checkin-bonus__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.page-promotions-daily-checkin-bonus__section--conclusion .page-promotions-daily-checkin-bonus__section-title {
  color: #FFC107;
}

.page-promotions-daily-checkin-bonus__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

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

.page-promotions-daily-checkin-bonus__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-checkin-bonus__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}

.page-promotions-daily-checkin-bonus__card-title {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-daily-checkin-bonus__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-promotions-daily-checkin-bonus__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  max-width: 350px;
  position: relative;
}

.page-promotions-daily-checkin-bonus__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #FFC107;
  color: #007BFF;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-daily-checkin-bonus__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promotions-daily-checkin-bonus__list li {
  background-color: #f8f9fa;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
}

.page-promotions-daily-checkin-bonus__list li::before {
  content: '⚡'; /* Unicode lightning bolt */
  color: #FFC107;
  font-size: 1.5em;
  margin-right: 15px;
  line-height: 1;
}

.page-promotions-daily-checkin-bonus__list-title {
  font-size: 1.2em;
  color: #333;
  margin: 0;
  flex-grow: 1;
}

.page-promotions-daily-checkin-bonus__bullet-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promotions-daily-checkin-bonus__bullet-list li {
  background-color: #f8f9fa;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-left: 5px solid #007BFF;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.page-promotions-daily-checkin-bonus__bullet-list li:last-child {
  margin-bottom: 0;
}

.page-promotions-daily-checkin-bonus__bullet-list .page-promotions-daily-checkin-bonus__list-title {
  font-size: 1.2em;
  color: #007BFF;
  margin-bottom: 5px;
}

.page-promotions-daily-checkin-bonus__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  border-left: 4px solid #FFC107;
}

.page-promotions-daily-checkin-bonus__faq-question {
  font-size: 1.4em;
  color: #007BFF;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-daily-checkin-bonus__faq-answer {
  font-size: 1.1em;
  color: #555;
}

.page-promotions-daily-checkin-bonus__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.page-promotions-daily-checkin-bonus__button--primary {
  background-color: #FFC107;
  color: #007BFF;
  border: 2px solid #FFC107;
}

.page-promotions-daily-checkin-bonus__button--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #0056b3;
  transform: translateY(-2px);
}

.page-promotions-daily-checkin-bonus__button--secondary {
  background-color: #007BFF;
  color: #ffffff;
  border: 2px solid #007BFF;
}

.page-promotions-daily-checkin-bonus__button--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-promotions-daily-checkin-bonus__cta-text {
  text-align: center;
  font-size: 1.2em;
  margin-top: 40px;
  color: #333;
}

.page-promotions-daily-checkin-bonus__section--conclusion .page-promotions-daily-checkin-bonus__cta-text {
  color: #ffffff;
}

.page-promotions-daily-checkin-bonus__section--conclusion p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-promotions-daily-checkin-bonus__keyword {
  color: #007BFF;
  font-weight: bold;
}

.page-promotions-daily-checkin-bonus__section--conclusion .page-promotions-daily-checkin-bonus__keyword {
  color: #FFC107;
}

.page-promotions-daily-checkin-bonus a {
  color: #007BFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-daily-checkin-bonus__title {
    font-size: 2.5em;
  }
  .page-promotions-daily-checkin-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-daily-checkin-bonus__grid,
  .page-promotions-daily-checkin-bonus__steps {
    grid-template-columns: 1fr;
  }
  .page-promotions-daily-checkin-bonus__step-item {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-checkin-bonus__hero {
    padding: 60px 0;
  }
  .page-promotions-daily-checkin-bonus__title {
    font-size: 2em;
  }
  .page-promotions-daily-checkin-bonus__subtitle {
    font-size: 1.1em;
  }
  .page-promotions-daily-checkin-bonus__section {
    padding: 40px 0;
  }
  .page-promotions-daily-checkin-bonus__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions-daily-checkin-bonus__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-daily-checkin-bonus__list li,
  .page-promotions-daily-checkin-bonus__bullet-list li,
  .page-promotions-daily-checkin-bonus__faq-item {
    padding: 15px 20px;
  }
  .page-promotions-daily-checkin-bonus__card-title,
  .page-promotions-daily-checkin-bonus__step-title,
  .page-promotions-daily-checkin-bonus__list-title {
    font-size: 1.3em;
  }
  .page-promotions-daily-checkin-bonus__faq-question {
    font-size: 1.2em;
  }
}