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

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

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

.page-promotions-new-user-benefits__section {
  padding: 60px 0;
}

/* HERO Section */
.page-promotions-new-user-benefits__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 60px; /* Add space below content */
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-promotions-new-user-benefits__hero-image-wrapper {
  width: 100%;
  max-height: 70vh; /* Limit height of hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  order: 1; /* Image first */
}

.page-promotions-new-user-benefits__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  min-height: 200px; /* Min size for images */
}

.page-promotions-new-user-benefits__hero-content {
  order: 2; /* Content after image */
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  box-sizing: border-box;
  margin-top: -80px; /* Pull content up slightly over the bottom of the image for visual flow */
  background: var(--win55-bg-color);
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-user-benefits__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--win55-gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-promotions-new-user-benefits__hero-description {
  font-size: 1.15rem;
  color: var(--win55-text-main);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* General Section Styling */
.page-promotions-new-user-benefits__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--win55-secondary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-promotions-new-user-benefits__section-title--gold {
  color: var(--win55-gold-color);
}

.page-promotions-new-user-benefits__text-block {
  font-size: 1rem;
  color: var(--win55-text-main);
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-new-user-benefits__text-block--light {
  color: var(--win55-text-secondary);
}

.page-promotions-new-user-benefits__card {
  background-color: var(--win55-card-bg);
  border: 1px solid var(--win55-border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: var(--win55-text-main);
}

/* Buttons */
.page-promotions-new-user-benefits__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.page-promotions-new-user-benefits__btn-primary {
  background: var(--win55-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions-new-user-benefits__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
}

.page-promotions-new-user-benefits__btn-primary--large {
  font-size: 1.2rem;
  padding: 18px 35px;
}

.page-promotions-new-user-benefits__btn-secondary {
  background-color: transparent;
  color: var(--win55-secondary-color);
  border: 2px solid var(--win55-secondary-color);
}

.page-promotions-new-user-benefits__btn-secondary:hover {
  background-color: var(--win55-secondary-color);
  color: var(--win55-bg-color);
}

/* Guide Section */
.page-promotions-new-user-benefits__guide-section {
  background-color: var(--win55-deep-green);
}

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

.page-promotions-new-user-benefits__step-item {
  text-align: center;
  background-color: var(--win55-card-bg);
  border-color: var(--win55-secondary-color);
}

.page-promotions-new-user-benefits__step-title {
  color: var(--win55-gold-color);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.page-promotions-new-user-benefits__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 40px auto;
  object-fit: cover;
  min-height: 200px; /* Min size for images */
}

.page-promotions-new-user-benefits__image-wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 900px;
}

/* Terms Section */
.page-promotions-new-user-benefits__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions-new-user-benefits__list-item {
  background-color: var(--win55-card-bg);
  border-left: 5px solid var(--win55-primary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: var(--win55-text-main);
  font-size: 1rem;
}

.page-promotions-new-user-benefits__list-item strong {
  color: var(--win55-gold-color);
}

/* Usage Section - Game Showcase */
.page-promotions-new-user-benefits__game-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-new-user-benefits__game-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-promotions-new-user-benefits__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-height: 200px; /* Min size for images */
}

.page-promotions-new-user-benefits__game-title {
  color: var(--win55-secondary-color);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.page-promotions-new-user-benefits__game-item p {
  color: var(--win55-text-secondary);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Benefits Section */
.page-promotions-new-user-benefits__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-promotions-new-user-benefits__benefits-list .page-promotions-new-user-benefits__list-item {
  border-left-color: var(--win55-gold-color);
}

/* FAQ Section */
.page-promotions-new-user-benefits__faq-list {
  margin-top: 40px;
}

.page-promotions-new-user-benefits__faq-item {
  background-color: var(--win55-card-bg);
  border: 1px solid var(--win55-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-new-user-benefits__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  color: var(--win55-text-main);
  font-size: 1.1rem;
  background-color: var(--win55-deep-green);
  border-bottom: 1px solid var(--win55-divider-color);
  transition: background-color 0.3s ease;
}

.page-promotions-new-user-benefits__faq-question:hover {
  background-color: var(--win55-primary-color);
}

.page-promotions-new-user-benefits__faq-item[open] .page-promotions-new-user-benefits__faq-question {
  background-color: var(--win55-primary-color);
  color: #ffffff;
}

.page-promotions-new-user-benefits__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--win55-gold-color);
}

.page-promotions-new-user-benefits__faq-item[open] .page-promotions-new-user-benefits__faq-toggle {
  color: #ffffff;
}

.page-promotions-new-user-benefits__faq-answer {
  padding: 20px 25px;
  color: var(--win55-text-secondary);
  font-size: 0.95rem;
  border-top: 1px solid var(--win55-divider-color);
}

.page-promotions-new-user-benefits__faq-answer p {
  margin-bottom: 10px;
}

/* Final CTA Section */
.page-promotions-new-user-benefits__cta-final-section {
  padding: 80px 0;
  text-align: center;
}
}