.page-promo-daily-deposit-bonus {
  color: #333333; /* Dark text for default light body background */
}

.page-promo-daily-deposit-bonus__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 600px;
}

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

.page-promo-daily-deposit-bonus__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-promo-daily-deposit-bonus__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promo-daily-deposit-bonus__hero-content {
  text-align: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
  z-index: 1;
}

.page-promo-daily-deposit-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffc107; /* Auxiliary color for emphasis */
  line-height: 1.2;
}

.page-promo-daily-deposit-bonus__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promo-daily-deposit-bonus__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-promo-daily-deposit-bonus__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-promo-daily-deposit-bonus__button--primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #000000;
  border: 2px solid #ffc107;
}

.page-promo-daily-deposit-bonus__button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-promo-daily-deposit-bonus__button--secondary {
  background-color: transparent;
  color: #ffc107; /* Auxiliary color */
  border: 2px solid #ffc107;
}

.page-promo-daily-deposit-bonus__button--secondary:hover {
  background-color: #ffc107;
  color: #000000;
  transform: translateY(-2px);
}

.page-promo-daily-deposit-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-promo-daily-deposit-bonus__heading {
  font-size: 2.5em;
  color: #007bff; /* Primary color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-promo-daily-deposit-bonus__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107; /* Auxiliary color */
  border-radius: 2px;
}

.page-promo-daily-deposit-bonus__paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promo-daily-deposit-bonus__about-section,
.page-promo-daily-deposit-bonus__how-it-works-section,
.page-promo-daily-deposit-bonus__benefits-section,
.page-promo-daily-deposit-bonus__terms-section,
.page-promo-daily-deposit-bonus__games-section,
.page-promo-daily-deposit-bonus__faq-section,
.page-promo-daily-deposit-bonus__cta-section {
  padding: 80px 0;
}

.page-promo-daily-deposit-bonus__about-section {
  background-color: #f8f9fa;
}

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

.page-promo-daily-deposit-bonus__step-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  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-promo-daily-deposit-bonus__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promo-daily-deposit-bonus__step-image {
  width: 100%; /* Ensures image fills card width */
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promo-daily-deposit-bonus__step-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-promo-daily-deposit-bonus__step-description {
  font-size: 1em;
  line-height: 1.6;
}

.page-promo-daily-deposit-bonus__step-description a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-promo-daily-deposit-bonus__step-description a:hover {
  text-decoration: underline;
}

.page-promo-daily-deposit-bonus__action-center {
  text-align: center;
  margin-top: 50px;
}

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

.page-promo-daily-deposit-bonus__benefit-card {
  background-color: #e9ecef;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease;
}

.page-promo-daily-deposit-bonus__benefit-card:hover {
  background-color: #dee2e6;
}

.page-promo-daily-deposit-bonus__benefit-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-promo-daily-deposit-bonus__benefit-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-promo-daily-deposit-bonus__benefit-description {
  font-size: 0.95em;
  line-height: 1.5;
}

.page-promo-daily-deposit-bonus__terms-list {
  list-style: disc;
  margin-left: 20px;
  margin-top: 30px;
  font-size: 1.05em;
  line-height: 1.8;
}

.page-promo-daily-deposit-bonus__list-item {
  margin-bottom: 10px;
}

.page-promo-daily-deposit-bonus__list-item a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-promo-daily-deposit-bonus__list-item a:hover {
  text-decoration: underline;
}

.page-promo-daily-deposit-bonus__games-section {
  background-color: #f8f9fa;
}

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

.page-promo-daily-deposit-bonus__category-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  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-promo-daily-deposit-bonus__category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promo-daily-deposit-bonus__category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-promo-daily-deposit-bonus__category-title {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-promo-daily-deposit-bonus__category-title a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-promo-daily-deposit-bonus__category-title a:hover {
  text-decoration: underline;
}

.page-promo-daily-deposit-bonus__category-description {
  font-size: 0.95em;
  line-height: 1.5;
}

.page-promo-daily-deposit-bonus__faq-accordion {
  margin-top: 40px;
}

.page-promo-daily-deposit-bonus__faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-promo-daily-deposit-bonus__faq-question {
  background-color: #007bff;
  color: #ffffff;
  width: 100%;
  padding: 18px 25px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promo-daily-deposit-bonus__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promo-daily-deposit-bonus__faq-question.active {
  background-color: #0056b3;
}

.page-promo-daily-deposit-bonus__faq-question.active::after {
  transform: rotate(45deg);
}

.page-promo-daily-deposit-bonus__faq-answer {
  padding: 0 25px;
  background-color: #fefefe;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-promo-daily-deposit-bonus__faq-answer p {
  padding: 15px 0;
  margin: 0;
  line-height: 1.6;
}

.page-promo-daily-deposit-bonus__faq-answer a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-promo-daily-deposit-bonus__faq-answer a:hover {
  text-decoration: underline;
}

.page-promo-daily-deposit-bonus__cta-section {
  background-color: #007bff; /* Primary color */
  color: #ffffff;
  text-align: center;
}

.page-promo-daily-deposit-bonus__cta-section .page-promo-daily-deposit-bonus__heading {
  color: #ffc107;
}

.page-promo-daily-deposit-bonus__cta-section .page-promo-daily-deposit-bonus__paragraph {
  color: #ffffff;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo-daily-deposit-bonus__cta-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promo-daily-deposit-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promo-daily-deposit-bonus__heading {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo-daily-deposit-bonus__hero-section {
    min-height: 500px;
  }
  .page-promo-daily-deposit-bonus__hero-content {
    padding: 30px;
  }
  .page-promo-daily-deposit-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promo-daily-deposit-bonus__hero-description {
    font-size: 1em;
  }
  .page-promo-daily-deposit-bonus__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo-daily-deposit-bonus__button {
    width: 100%;
    padding: 12px 25px;
  }
  .page-promo-daily-deposit-bonus__heading {
    font-size: 1.8em;
  }
  .page-promo-daily-deposit-bonus__paragraph {
    font-size: 0.95em;
  }
  .page-promo-daily-deposit-bonus__steps-grid,
  .page-promo-daily-deposit-bonus__benefits-grid,
  .page-promo-daily-deposit-bonus__game-categories {
    grid-template-columns: 1fr;
  }
  .page-promo-daily-deposit-bonus__step-image,
  .page-promo-daily-deposit-bonus__benefit-image,
  .page-promo-daily-deposit-bonus__category-image {
    width: 100%;
    max-width: 100%; /* Ensures images do not overflow */
    height: auto;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
  }
  .page-promo-daily-deposit-bonus__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promo-daily-deposit-bonus__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  /* Ensure all img elements within .page-promo-daily-deposit-bonus do not cause overflow */
  .page-promo-daily-deposit-bonus img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-promo-daily-deposit-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promo-daily-deposit-bonus__hero-content {
    padding: 20px;
  }
  .page-promo-daily-deposit-bonus__heading {
    font-size: 1.5em;
  }
  .page-promo-daily-deposit-bonus__step-title {
    font-size: 1.5em;
  }
  .page-promo-daily-deposit-bonus__benefit-title,
  .page-promo-daily-deposit-bonus__category-title {
    font-size: 1.3em;
  }
}