.page-promotions-daily-checkin {
  font-family: 'Arial', sans-serif;
  background-color: #0A0A0A; /* Dark background */
  color: #F5F5F5; /* Light text for readability */
  line-height: 1.6;
  padding-bottom: 50px; /* Space for footer */
}

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

.page-promotions-daily-checkin__hero {
  background: linear-gradient(135deg, #0A0A0A 0%, #333333 100%); /* Dark gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-daily-checkin__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:onbet,abstract_pattern,geometric_lines,dark_gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions-daily-checkin__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-promotions-daily-checkin__hero-subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-promotions-daily-checkin__btn-primary {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A0A0A; /* Dark text on gold */
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
  position: relative;
  z-index: 1;
}

.page-promotions-daily-checkin__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions-daily-checkin__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #FFD700;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
  margin-top: 20px;
}

.page-promotions-daily-checkin__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A0A0A;
}

.page-promotions-daily-checkin__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  position: relative;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.page-promotions-daily-checkin__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-promotions-daily-checkin__introduction p,
.page-promotions-daily-checkin__how-to-participate p,
.page-promotions-daily-checkin__terms-conditions p,
.page-promotions-daily-checkin__benefits p,
.page-promotions-daily-checkin__faq p,
.page-promotions-daily-checkin__cta p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #D0D0D0;
}

.page-promotions-daily-checkin__image-full-width {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-promotions-daily-checkin__list li {
  background-color: #1A1A1A;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-promotions-daily-checkin__list li strong {
  color: #FFD700;
}

.page-promotions-daily-checkin__list--styled {
  list-style: disc;
  padding-left: 30px;
}

.page-promotions-daily-checkin__list--styled li {
  background-color: transparent;
  border-left: none;
  box-shadow: none;
  padding: 5px 0;
  margin-bottom: 10px;
  color: #D0D0D0;
}

.page-promotions-daily-checkin__list--benefits li {
  background-color: #1A1A1A;
  border-left: 5px solid #FFD700;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.page-promotions-daily-checkin__list--benefits li strong {
  color: #FFD700;
  display: block;
  margin-bottom: 5px;
  font-size: 1.1em;
}

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

.page-promotions-daily-checkin__grid-item {
  background-color: #1A1A1A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid #333;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-promotions-daily-checkin__grid-item:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
}

.page-promotions-daily-checkin__grid-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-promotions-daily-checkin__grid-item p {
  color: #C0C0C0;
  font-size: 0.95em;
}

.page-promotions-daily-checkin__icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions-daily-checkin__faq-item {
  background-color: #1A1A1A;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 4px solid #FFD700;
}

.page-promotions-daily-checkin__faq-item h3 {
  color: #FFD700;
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions-daily-checkin__faq-item p {
  color: #C0C0C0;
  margin-bottom: 0;
}

.page-promotions-daily-checkin__cta {
  text-align: center;
  padding: 80px 0;
  background-color: #1A1A1A;
  margin-top: 60px;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
}

.page-promotions-daily-checkin__cta .page-promotions-daily-checkin__section-title {
  margin-top: 0;
  margin-bottom: 20px;
}

.page-promotions-daily-checkin__btn-large {
  padding: 18px 50px;
  font-size: 1.4em;
  margin-top: 30px;
}

.page-promotions-daily-checkin__disclaimer {
  font-size: 0.9em;
  color: #888;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .page-promotions-daily-checkin__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-daily-checkin__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-daily-checkin__section-title {
    font-size: 2em;
  }
  .page-promotions-daily-checkin__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-daily-checkin__btn-primary,
  .page-promotions-daily-checkin__btn-secondary {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions-daily-checkin__hero-title {
    font-size: 2em;
  }
  .page-promotions-daily-checkin__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-daily-checkin__section-title {
    font-size: 1.8em;
  }
  .page-promotions-daily-checkin__btn-large {
    font-size: 1.2em;
    padding: 15px 30px;
  }
}