:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-btn-bg: #C30808;
  --register-btn-text: #FFFF00;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #ffffff;
  --background-dark: #017439; /* Using primary color for dark background sections */
  --border-color-light: #e0e0e0;
}

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

.page-promotions-new-user-bonus__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-promotions-new-user-bonus__section-title {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__text-content {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-promotions-new-user-bonus__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-promotions-new-user-bonus__dark-bg .page-promotions-new-user-bonus__section-title {
  color: var(--secondary-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;
  background: linear-gradient(135deg, var(--primary-color) 0%, #017439aa 50%, var(--secondary-color) 100%);
  padding-top: 0;
}

.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;
  width: 100%;
}

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.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;
  min-height: 200px;
}

.page-promotions-new-user-bonus__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--text-color-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus__main-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--text-color-light);
  font-weight: 800;
}

.page-promotions-new-user-bonus__intro-text {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--text-color-light);
}

.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--register-btn-bg);
  color: var(--register-btn-text);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

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

.page-promotions-new-user-bonus__introduction .page-promotions-new-user-bonus__image-wrapper {
  margin: 40px auto;
  max-width: 800px;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus__introduction .page-promotions-new-user-bonus__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions-new-user-bonus__how-to-claim {
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-promotions-new-user-bonus__how-to-claim .page-promotions-new-user-bonus__section-title {
  color: var(--secondary-color);
}

.page-promotions-new-user-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-promotions-new-user-bonus__step-item {
  background-color: var(--secondary-color);
  color: var(--text-color-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__step-item:hover {
  transform: translateY(-5px);
}

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

.page-promotions-new-user-bonus__step-description {
  font-size: 16px;
}

.page-promotions-new-user-bonus__terms-conditions {
  background-color: var(--background-light);
}

.page-promotions-new-user-bonus__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-promotions-new-user-bonus__terms-item {
  background-color: #f9f9f9;
  border: 1px solid var(--border-color-light);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__terms-sub-title {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions-new-user-bonus__why-choose {
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-promotions-new-user-bonus__why-choose .page-promotions-new-user-bonus__section-title {
  color: var(--secondary-color);
}

.page-promotions-new-user-bonus__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__feature-card {
  background-color: var(--secondary-color);
  color: var(--text-color-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__feature-card:hover {
  transform: translateY(-5px);
}

.page-promotions-new-user-bonus__feature-card img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions-new-user-bonus__feature-title {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__feature-description {
  font-size: 16px;
}

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

.page-promotions-new-user-bonus__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  text-align: left;
}

.page-promotions-new-user-bonus__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-promotions-new-user-bonus__faq-item.active .page-promotions-new-user-bonus__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}