/* style/promotions-new-user-details.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

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

.page-promotions-new-user-details__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, body handles header offset */
  background-color: var(--deep-green);
}

.page-promotions-new-user-details__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-promotions-new-user-details__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promotions-new-user-details__hero-content-wrapper {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Adjust to slightly overlap the image, creating a cohesive look */
  background-color: var(--deep-green);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
}

.page-promotions-new-user-details__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions-new-user-details__intro-text {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-promotions-new-user-details__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-promotions-new-user-details__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-promotions-new-user-details__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

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

.page-promotions-new-user-details__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-new-user-details__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-promotions-new-user-details__offers-grid,
.page-promotions-new-user-details__guide-steps,
.page-promotions-new-user-details__why-choose-us {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-promotions-new-user-details__offer-card,
.page-promotions-new-user-details__step-item,
.page-promotions-new-user-details__reason-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-promotions-new-user-details__offer-card:hover,
.page-promotions-new-user-details__step-item:hover,
.page-promotions-new-user-details__reason-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-details__offer-card-image,
.page-promotions-new-user-details__step-image,
.page-promotions-new-user-details__reason-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-promotions-new-user-details__offer-card-title,
.page-promotions-new-user-details__step-title,
.page-promotions-new-user-details__reason-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-details__offer-card-description,
.page-promotions-new-user-details__step-description,
.page-promotions-new-user-details__reason-description,
.page-promotions-new-user-details__term-description,
.page-promotions-new-user-details__conclusion-text {
  color: var(--text-secondary);
  font-size: 1em;
}

.page-promotions-new-user-details__terms-conditions {
  margin-bottom: 60px;
}

.page-promotions-new-user-details__term-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}
}