.page-promotions-daily-deposit-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Assuming --dark-bg-1 is dark, use light text */
  background-color: transparent; /* Body background is handled by shared.css var(--dark-bg-1) */
}

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

.page-promotions-daily-deposit-bonus__section {
  padding: 80px 0;
  text-align: center;
}

.page-promotions-daily-deposit-bonus__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for titles */
  font-weight: bold;
}

.page-promotions-daily-deposit-bonus__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Hero Section */
.page-promotions-daily-deposit-bonus__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-promotions-daily-deposit-bonus__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-promotions-daily-deposit-bonus__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: -1;
}

.page-promotions-daily-deposit-bonus__hero-content {
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-promotions-daily-deposit-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions-daily-deposit-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Buttons */
.page-promotions-daily-deposit-bonus__btn-primary,
.page-promotions-daily-deposit-bonus__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%; /* For mobile responsiveness */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow long words to break */
}

.page-promotions-daily-deposit-bonus__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-promotions-daily-deposit-bonus__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-promotions-daily-deposit-bonus__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin-top: 15px;
}

.page-promotions-daily-deposit-bonus__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-promotions-daily-deposit-bonus__button-center {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Offer Introduction Section */
.page-promotions-daily-deposit-bonus__offer-introduction {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
}

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

.page-promotions-daily-deposit-bonus__content-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
}

.page-promotions-daily-deposit-bonus__content-card .page-promotions-daily-deposit-bonus__card-title {
  color: #26A9E0;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-promotions-daily-deposit-bonus__content-card p,
.page-promotions-daily-deposit-bonus__list li {
  color: #f0f0f0;
}

.page-promotions-daily-deposit-bonus__list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
}

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

.page-promotions-daily-deposit-bonus__content-card .page-promotions-daily-deposit-bonus__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
}

/* Benefits Section */
.page-promotions-daily-deposit-bonus__dark-bg {
  background-color: #26A9E0; /* Use brand color for dark section */
  color: #ffffff; /* Ensure white text on brand color background */
}

.page-promotions-daily-deposit-bonus__dark-bg .page-promotions-daily-deposit-bonus__section-title {
  color: #ffffff;
}

.page-promotions-daily-deposit-bonus__dark-bg .page-promotions-daily-deposit-bonus__section-description {
  color: #f0f0f0;
}

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

.page-promotions-daily-deposit-bonus__benefit-item {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-promotions-daily-deposit-bonus__benefit-item .page-promotions-daily-deposit-bonus__benefit-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-promotions-daily-deposit-bonus__benefit-item p {
  color: #f0f0f0;
}

.page-promotions-daily-deposit-bonus__benefit-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
}

/* How to Participate Section */
.page-promotions-daily-deposit-bonus__how-to-participate {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-promotions-daily-deposit-bonus__steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  position: relative;
}

.page-promotions-daily-deposit-bonus__step-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: calc(33% - 20px); /* Approx one third */
  min-width: 280px;
  flex-grow: 1;
  color: #ffffff;
}

.page-promotions-daily-deposit-bonus__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #26A9E0;
  color: #ffffff;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-promotions-daily-deposit-bonus__step-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-promotions-daily-deposit-bonus__step-card p {
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-promotions-daily-deposit-bonus__steps-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Terms & Conditions Section */
.page-promotions-daily-deposit-bonus__light-bg {
  background-color: rgba(255, 255, 255, 0.1); /* Lighter background for variety */
}

.page-promotions-daily-deposit-bonus__light-bg .page-promotions-daily-deposit-bonus__section-title {
  color: #26A9E0;
}

.page-promotions-daily-deposit-bonus__light-bg .page-promotions-daily-deposit-bonus__section-description {
  color: #f0f0f0;
}

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

.page-promotions-daily-deposit-bonus__term-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-promotions-daily-deposit-bonus__term-card .page-promotions-daily-deposit-bonus__card-title {
  color: #26A9E0;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-promotions-daily-deposit-bonus__term-card p,
.page-promotions-daily-deposit-bonus__term-card li {
  color: #f0f0f0;
}

/* FAQ Section */
.page-promotions-daily-deposit-bonus__faq-section {
  background-color: rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-deposit-bonus__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-promotions-daily-deposit-bonus__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-promotions-daily-deposit-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-daily-deposit-bonus__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-promotions-daily-deposit-bonus__faq-qtext {
  flex-grow: 1;
  color: #ffffff;
}

.page-promotions-daily-deposit-bonus__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #26A9E0;
}

.page-promotions-daily-deposit-bonus__faq-item[open] > .page-promotions-daily-deposit-bonus__faq-question {
  border-bottom: 1px solid #26A9E0;
}

.page-promotions-daily-deposit-bonus__faq-answer {
  padding: 15px 20px;
  font-size: 1em;
  color: #f0f0f0;
}

/* Hide default details marker */
.page-promotions-daily-deposit-bonus__faq-item summary::-webkit-details-marker {
  display: none;
}
.page-promotions-daily-deposit-bonus__faq-item summary {
  list-style: none;
}

/* CTA Section */
.page-promotions-daily-deposit-bonus__cta-section {
  padding: 100px 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions-daily-deposit-bonus__hero-title {
    font-size: 3em;
  }
  .page-promotions-daily-deposit-bonus__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-deposit-bonus__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-promotions-daily-deposit-bonus__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-daily-deposit-bonus__hero-description {
    font-size: 1.1em;
  }
  .page-promotions-daily-deposit-bonus__section {
    padding: 60px 0;
  }
  .page-promotions-daily-deposit-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promotions-daily-deposit-bonus__section-description {
    font-size: 0.95em;
  }
  .page-promotions-daily-deposit-bonus__content-grid,
  .page-promotions-daily-deposit-bonus__benefits-grid,
  .page-promotions-daily-deposit-bonus__terms-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-daily-deposit-bonus__step-card {
    width: 100%;
    min-width: unset;
  }
  .page-promotions-daily-deposit-bonus__btn-primary,
  .page-promotions-daily-deposit-bonus__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
  }
  .page-promotions-daily-deposit-bonus__button-center {
    width: 100%;
  }
  .page-promotions-daily-deposit-bonus__steps-container,
  .page-promotions-daily-deposit-bonus__cta-section .page-promotions-daily-deposit-bonus__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Mobile image responsiveness */
  .page-promotions-daily-deposit-bonus img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-daily-deposit-bonus__content-card,
  .page-promotions-daily-deposit-bonus__benefit-item,
  .page-promotions-daily-deposit-bonus__step-card,
  .page-promotions-daily-deposit-bonus__term-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-daily-deposit-bonus__hero-title {
    font-size: 2em;
  }
  .page-promotions-daily-deposit-bonus__hero-description {
    font-size: 1em;
  }
  .page-promotions-daily-deposit-bonus__section-title {
    font-size: 1.6em;
  }
  .page-promotions-daily-deposit-bonus__btn-primary,
  .page-promotions-daily-deposit-bonus__btn-secondary {
    font-size: 0.9em;
  }
  .page-promotions-daily-deposit-bonus__faq-question {
    font-size: 1em;
  }
}