/* style/promo-new-user-bonus.css */

/* Base styles for the page content, inheriting from shared where appropriate */
.page-promo-new-user-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  padding-top: 0; /* body handles --header-offset */
}

.page-promo-new-user-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Headings */
.page-promo-new-user-bonus__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 */
  font-weight: bold;
  line-height: 1.2;
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 20px;
}

.page-promo-new-user-bonus__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: bold;
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-promo-new-user-bonus__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #FFF6D6; /* Text Main */
}

/* Buttons */
.page-promo-new-user-bonus__btn-primary,
.page-promo-new-user-bonus__btn-secondary,
.page-promo-new-user-bonus__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-promo-new-user-bonus__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text for contrast */
  border: none;
}

.page-promo-new-user-bonus__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-promo-new-user-bonus__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Glow */
  border: 2px solid #FFD36B; /* Glow */
}

.page-promo-new-user-bonus__btn-secondary:hover {
  background: #FFD36B; /* Glow */
  color: #111111; /* Dark text for contrast */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-promo-new-user-bonus__btn-link {
  background: transparent;
  color: #F2C14E; /* Main color */
  border: 1px solid #F2C14E; /* Main color */
  padding: 8px 15px;
  font-size: 0.9rem;
}