.page-promotions-daily-bonuses {
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 40px; /* Add some padding at the bottom */
}

.page-promotions-daily-bonuses__hero-section {
  display: flex;
  flex-direction: column; /* Image on top, text below */
  align-items: center;
  text-align: center;
  background-color: #FFFFFF; /* Card B G */
  padding: 10px 0 40px; /* Small top padding, more bottom padding */
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #D6E2FF; /* Border */
}

.page-promotions-daily-bonuses__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-bottom: 20px;
}

.page-promotions-daily-bonuses__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions-daily-bonuses__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-promotions-daily-bonuses__main-title {
  font-weight: bold;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
  /* Using clamp for responsive font size, ensuring it's not too large */
  font-size: clamp(2rem, 4vw + 1rem, 3.2rem); 
}

.page-promotions-daily-bonuses__description {
  font-size: 1.1rem;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-daily-bonuses__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
  color: #000000; /* Changed to #000000 for WCAG AA contrast on blue gradient */
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-promotions-daily-bonuses__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
  color: #000000; /* Keep text color same on hover */
}

.page-promotions-daily-bonuses__section-title {
  font-size: clamp(1.8rem, 3vw + 1rem, 2.5rem);
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  padding-top: 40px;
}

.page-promotions-daily-bonuses__text-content {
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-align: center;
  font-size: 1rem;
  color: #1F2D3D; /* Text Main */
  padding: 0 20px;
}

.page-promotions-daily-bonuses__bonuses-overview,
.page-promotions-daily-bonuses__how-to-claim,
.page-promotions-daily-bonuses__terms-conditions,
.page-promotions-daily-bonuses__cta-section {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
  background-color: #FFFFFF; /* Card B G */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF; /* Border */
}

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

.page-promotions-daily-bonuses__bonus-card {
  background-color: #F4F7FB; /* Background */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF; /* Border */
  transition: transform 0.2s ease-in-out;
}

.page-promotions-daily-bonuses__bonus-card:hover {
  transform: translateY(-5px);
}

.page-promotions-daily-bonuses__card-title {
  font-size: 1.3rem;
  color: #2F6BFF; /* Main color for emphasis */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-daily-bonuses__card-text {
  font-size: 0.95rem;
  color: #1F2D3D; /* Text Main */
}

.page-promotions-daily-bonuses__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
  /* Ensure minimum display size */
  min-width: 200px; 
  min-height: 200px;
}

.page-promotions-daily-bonuses__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 40px;
}

.page-promotions-daily-bonuses__step-item {
  background-color: #F4F7FB; /* Background */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF; /* Border */
}

.page-promotions-daily-bonuses__step-title {
  font-size: 1.2rem;
  color: #2F6BFF; /* Main color for emphasis */
  margin-bottom: 8px;
  font-weight: bold;
}

.page-promotions-daily-bonuses__step-description {
  font-size: 0.95rem;
  color: #1F2D3D; /* Text Main */
}

.page-promotions-daily-bonuses__step-description a {
  color: #000000; /* Custom Color_1776249996415, black for better contrast */
  text-decoration: underline;
}

.page-promotions-daily-bonuses__step-description a:hover {
  color: #1F2D3D; /* Text Main for hover */
}

.page-promotions-daily-bonuses__list {
  list-style: disc;
  margin-left: 25px;
  margin-top: 20px;
  margin-bottom: 40px;
  color: #1F2D3D; /* Text Main */
  padding: 0 20px;
}

.page-promotions-daily-bonuses__list-item {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-promotions-daily-bonuses__link {
  display: inline-block;
  color: #000000; /* Custom Color_1776249996415, black for better contrast */
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 20px; /* Align with list content */
}

.page-promotions-daily-bonuses__link:hover {
  color: #1F2D3D; /* Text Main for hover */
  text-decoration: underline;
}

.page-promotions-daily-bonuses__cta-section {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-daily-bonuses__cta-content {
  max-width: 700px;
  margin-bottom: 30px;
}

.page-promotions-daily-bonuses__cta-title {
  font-size: clamp(1.8rem, 3vw + 1rem, 2.5rem);
  color: #1F2D3D; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-daily-bonuses__cta-description {
  font-size: 1.1rem;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
}

.page-promotions-daily-bonuses__cta-button--large {
  padding: 16px 35px;
  font-size: 1.1rem;
}

.page-promotions-daily-bonuses__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  margin-top: 30px;
  /* Ensure minimum display size */
  min-width: 200px; 
  min-height: 200px;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions-daily-bonuses__main-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .page-promotions-daily-bonuses__description,
  .page-promotions-daily-bonuses__cta-description {
    font-size: 1rem;
  }

  .page-promotions-daily-bonuses__section-title,
  .page-promotions-daily-bonuses__cta-title {
    font-size: clamp(1.5rem, 4.5vw, 2rem);
  }

  .page-promotions-daily-bonuses__bonuses-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile content image constraint */
  .page-promotions-daily-bonuses__hero-image,
  .page-promotions-daily-bonuses__content-image,
  .page-promotions-daily-bonuses__cta-image {
    max-width: 100%;
    height: auto;
  }
}