.page-promotions {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
}

.page-promotions__hero-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for first section */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-image {
  margin-bottom: 20px;
}

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions__main-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: #8B0000; /* Auxiliary color */
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 30px;
}

.page-promotions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Primary color */
  color: #8B0000; /* Auxiliary color for contrast */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions__featured-bonuses,
.page-promotions__how-to-claim,
.page-promotions__terms-section,
.page-promotions__download-app {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__section-title {
  font-size: 2rem;
  color: #8B0000; /* Auxiliary color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-promotions__section-description {
  font-size: 1rem;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-promotions__bonus-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__bonus-card img {
  width: 100%;
  height: auto;
  min-width: 200px; /* Min image size for content */
  min-height: 200px;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions__card-title {
  font-size: 1.4rem;
  color: #8B0000; /* Auxiliary color */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__card-text {
  font-size: 0.95rem;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  background-color: #FFD700; /* Primary color */
  color: #8B0000; /* Auxiliary color */
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.page-promotions__card-button:hover {
  background-color: #e6c200;
}

.page-promotions__how-to-claim {
  background-color: #f0f0f0;
  border-radius: 12px;
  padding: 60px 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-promotions__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.page-promotions__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions__step-icon {
  background-color: #8B0000; /* Auxiliary color */
  color: #FFD700; /* Primary color */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-promotions__step-title {
  font-size: 1.25rem;
  color: #8B0000;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__step-text {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__step-button {
  display: inline-block;
  background-color: #FFD700; /* Primary color */
  color: #8B0000; /* Auxiliary color */
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push button to bottom */
}

.page-promotions__step-button:hover {
  background-color: #e6c200;
}

.page-promotions__terms-section {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 40px 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

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

.page-promotions__term-item {
  font-size: 0.95rem;
  color: #444444;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-promotions__term-item::before {
  content: '✔';
  color: #8B0000; /* Auxiliary color */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions__read-more-link {
  display: block;
  text-align: center;
  color: #8B0000; /* Auxiliary color */
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.page-promotions__read-more-link:hover {
  color: #FFD700; /* Primary color */
}

.page-promotions__download-app {
  background-color: #FFD700; /* Primary color */
  color: #8B0000; /* Auxiliary color for text */
  text-align: center;
  padding: 50px 20px;
  border-radius: 12px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-promotions__download-app .page-promotions__section-title {
  color: #8B0000; /* Auxiliary color */
}

.page-promotions__download-app .page-promotions__section-description {
  color: #8B0000; /* Auxiliary color */
  margin-bottom: 30px;
}

.page-promotions__app-download-button {
  display: inline-block;
  background-color: #8B0000; /* Auxiliary color */
  color: #FFD700; /* Primary color */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__app-download-button:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .page-promotions__hero-description {
    font-size: 1rem;
  }

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-promotions__section-title {
    font-size: 1.7rem;
  }

  .page-promotions__bonus-grid,
  .page-promotions__steps {
    grid-template-columns: 1fr;
  }

  .page-promotions__bonus-card,
  .page-promotions__step-item {
    padding: 20px;
  }

  .page-promotions__bonus-card img,
  .page-promotions__step-item img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }

  .page-promotions__download-app .page-promotions__app-download-button {
    font-size: 1rem;
    padding: 12px 25px;
  }

  /* Mobile content area images must be responsive */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: clamp(1.2rem, 10vw, 1.8rem);
  }

  .page-promotions__hero-description {
    font-size: 0.9rem;
  }

  .page-promotions__cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .page-promotions__section-title {
    font-size: 1.5rem;
  }

  .page-promotions__app-download-button {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}