/* style/promotions-new-user-bonus.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-button-color: #EA7C07;
  --background-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --border-color: #e0e0e0;
}

.page-promotions-new-user-bonus {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background-color);
}

.page-promotions-new-user-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #f0f8ff; /* Light background for contrast */
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-promotions-new-user-bonus__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-promotions-new-user-bonus__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-promotions-new-user-bonus__hero-title {
  font-size: 3.2em;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.2em;
  color: var(--text-dark);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-new-user-bonus__cta-button:hover {
  background: #1e88b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__section {
  padding: 60px 20px;
  background-color: var(--background-color);
  color: var(--text-dark);
}

.page-promotions-new-user-bonus__section--intro {
  background-color: #f9f9f9;
}

.page-promotions-new-user-bonus__section--offers {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-promotions-new-user-bonus__section--cta {
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
}

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

.page-promotions-new-user-bonus__container--center {
  text-align: center;
}

.page-promotions-new-user-bonus__section-title {
  font-size: 2.2em;
  margin-bottom: 30px;
  text-align: center;
  color: inherit; /* Inherits color from parent section */
  font-weight: bold;
}

.page-promotions-new-user-bonus__section--offers .page-promotions-new-user-bonus__section-title,
.page-promotions-new-user-bonus__section--cta .page-promotions-new-user-bonus__section-title {
  color: var(--text-light);
}

.page-promotions-new-user-bonus__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.page-promotions-new-user-bonus__text-block--small {
  font-size: 0.9em;
  text-align: center;
  margin-top: 30px;
}

.page-promotions-new-user-bonus__steps-grid,
.page-promotions-new-user-bonus__offers-grid,
.page-promotions-new-user-bonus__benefits-grid,
.page-promotions-new-user-bonus__process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-promotions-new-user-bonus__step-item,
.page-promotions-new-user-bonus__offer-card,
.page-promotions-new-user-bonus__benefit-item,
.page-promotions-new-user-bonus__process-item {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 250px; /* Ensure cards have a minimum height */
}

.page-promotions-new-user-bonus__section--offers .page-promotions-new-user-bonus__offer-card {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
}

.page-promotions-new-user-bonus__step-number {
  font-size: 2.5em;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__step-title,
.page-promotions-new-user-bonus__card-title,
.page-promotions-new-user-bonus__benefit-title,
.page-promotions-new-user-bonus__process-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__section--offers .page-promotions-new-user-bonus__card-title {
  color: var(--text-dark);
}

.page-promotions-new-user-bonus__step-description,
.page-promotions-new-user-bonus__card-description,
.page-promotions-new-user-bonus__benefit-description {
  font-size: 1em;
  color: var(--text-dark);
  line-height: 1.7;
  flex-grow: 1;
}

.page-promotions-new-user-bonus__section--offers .page-promotions-new-user-bonus__card-description {
  color: var(--text-dark);
}

.page-promotions-new-user-bonus__process-item ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
  text-align: left;
  width: 100%;
}

.page-promotions-new-user-bonus__process-item li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.page-promotions-new-user-bonus__process-item li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions-new-user-bonus__image-wrapper {
  margin: 40px auto;
  text-align: center;
  max-width: 1000px;
}

.page-promotions-new-user-bonus__image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: block;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-promotions-new-user-bonus__image-wrapper--wide {
  max-width: 1200px;
}

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 20px;
  border: 2px solid transparent;
  cursor: pointer;
}

.page-promotions-new-user-bonus__btn-primary {
  background: var(--primary-color);
  color: var(--text-light);
}

.page-promotions-new-user-bonus__btn-primary:hover {
  background: #1e88b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-user-bonus__btn-secondary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-user-bonus__btn-primary--center,
.page-promotions-new-user-bonus__btn-secondary--center {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}