.page-promotions-deposit-bonus {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-promotions-deposit-bonus__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.page-promotions-deposit-bonus__hero-content {
  z-index: 10;
  max-width: 800px;
}

.page-promotions-deposit-bonus__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
}

.page-promotions-deposit-bonus__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-promotions-deposit-bonus__hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions-deposit-bonus__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.page-promotions-deposit-bonus__btn--primary {
  background-color: #ffc107;
  color: #000;
  border: 2px solid #ffc107;
}

.page-promotions-deposit-bonus__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
}

.page-promotions-deposit-bonus__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-promotions-deposit-bonus__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-promotions-deposit-bonus__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0.2;
}

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

.page-promotions-deposit-bonus__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions-deposit-bonus__section-title {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-promotions-deposit-bonus__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-deposit-bonus__section-intro {
  text-align: center;
  font-size: 1.1em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-promotions-deposit-bonus__card {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-deposit-bonus__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-deposit-bonus__card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions-deposit-bonus__card-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-promotions-deposit-bonus__card-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
}

.page-promotions-deposit-bonus__card-link {
  color: #ffc107;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions-deposit-bonus__card-link:hover {
  color: #e0a800;
  text-decoration: underline;
}

.page-promotions-deposit-bonus__wagering-requirements .page-promotions-deposit-bonus__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.page-promotions-deposit-bonus__wagering-requirements .page-promotions-deposit-bonus__text-content {
  flex: 2;
  min-width: 300px;
}

.page-promotions-deposit-bonus__wagering-requirements .page-promotions-deposit-bonus__image-wrapper {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.page-promotions-deposit-bonus__illustration-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-deposit-bonus__sub-title {
  font-size: 1.6em;
  color: #007bff;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promotions-deposit-bonus__list {
  list-style: disc;
  margin-left: 20px;
  padding: 0;
  color: #555;
}

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

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

.page-promotions-deposit-bonus__item {
  background-color: #f8f9fa;
  border-left: 5px solid #ffc107;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-promotions-deposit-bonus__item-title {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-promotions-deposit-bonus__how-to-claim .page-promotions-deposit-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-promotions-deposit-bonus__step {
  background-color: #e9f5ff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-deposit-bonus__step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #007bff;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  border: 3px solid #fff;
}

.page-promotions-deposit-bonus__step-title {
  font-size: 1.4em;
  color: #007bff;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-promotions-deposit-bonus__tips {
  background-color: #f0f8ff;
  border-left: 4px solid #007bff;
  padding: 25px;
  border-radius: 8px;
}

.page-promotions-deposit-bonus__why-choose .page-promotions-deposit-bonus__why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-promotions-deposit-bonus__reason {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-deposit-bonus__reason-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-promotions-deposit-bonus__reason-title {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-promotions-deposit-bonus__cta-banner {
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-promotions-deposit-bonus__cta-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.page-promotions-deposit-bonus__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #fff;
}

.page-promotions-deposit-bonus__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-promotions-deposit-bonus__cta-banner .page-promotions-deposit-bonus__btn {
  margin: 0 10px;
  border-color: #fff;
}

.page-promotions-deposit-bonus__cta-banner .page-promotions-deposit-bonus__btn--primary {
  background-color: #ffc107;
  color: #000;
  border-color: #ffc107;
}

.page-promotions-deposit-bonus__cta-banner .page-promotions-deposit-bonus__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

.page-promotions-deposit-bonus__cta-banner .page-promotions-deposit-bonus__btn--secondary {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.page-promotions-deposit-bonus__cta-banner .page-promotions-deposit-bonus__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-promotions-deposit-bonus__cta-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 5;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-deposit-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-deposit-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promotions-deposit-bonus__wagering-requirements .page-promotions-deposit-bonus__content-wrapper {
    flex-direction: column;
  }
  .page-promotions-deposit-bonus__wagering-requirements .page-promotions-deposit-bonus__text-content,
  .page-promotions-deposit-bonus__wagering-requirements .page-promotions-deposit-bonus__image-wrapper {
    flex: none;
    width: 100%;
  }
  .page-promotions-deposit-bonus__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promotions-deposit-bonus__hero {
    padding: 40px 15px;
  }
  .page-promotions-deposit-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-deposit-bonus__hero-description {
    font-size: 1em;
  }
  .page-promotions-deposit-bonus__section {
    padding: 40px 0;
  }
  .page-promotions-deposit-bonus__section-title {
    font-size: 1.6em;
  }
  .page-promotions-deposit-bonus__section-intro {
    font-size: 0.95em;
  }
  .page-promotions-deposit-bonus__grid,
  .page-promotions-deposit-bonus__content-grid,
  .page-promotions-deposit-bonus__steps-grid,
  .page-promotions-deposit-bonus__why-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-deposit-bonus__cta-banner {
    padding: 60px 15px;
  }
  .page-promotions-deposit-bonus__cta-title {
    font-size: 1.8em;
  }
  .page-promotions-deposit-bonus__hero-actions {
    flex-direction: column;
  }
  .page-promotions-deposit-bonus__cta-banner .page-promotions-deposit-bonus__btn {
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-deposit-bonus__hero-title {
    font-size: 1.5em;
  }
  .page-promotions-deposit-bonus__section-title {
    font-size: 1.4em;
  }
  .page-promotions-deposit-bonus__sub-title {
    font-size: 1.3em;
  }
  .page-promotions-deposit-bonus__card-title,
  .page-promotions-deposit-bonus__item-title,
  .page-promotions-deposit-bonus__step-title,
  .page-promotions-deposit-bonus__reason-title {
    font-size: 1.1em;
  }
  .page-promotions-deposit-bonus__btn {
    padding: 10px 20px;
  }
}