/* Base styles for the page */
.page-promotions-new-user-bonus {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default dark text for light body background */
  background-color: #FFFFFF;
  line-height: 1.6;
}

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

.page-promotions-new-user-bonus__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 20px;
}

.page-promotions-new-user-bonus__main-title {
  font-size: clamp(32px, 4vw, 56px); /* Using clamp for H1 as per instructions */
  font-weight: 800;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__section-description,
.page-promotions-new-user-bonus__hero-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.7;
}

.page-promotions-new-user-bonus__hero-description {
  color: #f0f0f0;
}

.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-user-bonus__cta-button--primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-promotions-new-user-bonus__cta-button--primary:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-promotions-new-user-bonus__cta-button--secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-promotions-new-user-bonus__cta-button--secondary:hover {
  background-color: #f0f0f0;
}

.page-promotions-new-user-bonus__cta-wrapper {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding as per instructions */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #26A9E0, #1a8cc4);
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7); /* Slightly dim the image for text contrast */
}