/* style/promotions-new-user-benefits.css */

/* Base styles for the page */
.page-promotions-new-user-benefits {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

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

.page-promotions-new-user-benefits__section--dark {
  background-color: #0A4B2C; /* Deep Green for dark sections */
}

.page-promotions-new-user-benefits__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions-new-user-benefits__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #A7D9B8; /* Text Secondary */
}

/* Hero Section */
.page-promotions-new-user-benefits__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-promotions-new-user-benefits__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-promotions-new-user-benefits__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  background: rgba(17, 39, 27, 0.85); /* Card B G with opacity */
  border-radius: 10px;
  margin-top: -100px; /* Overlap slightly for visual effect */
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-benefits__main-title {
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-promotions-new-user-benefits__intro-text {
  font-size: 1.15em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
}

.page-promotions-new-user-benefits__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions-new-user-benefits__btn-primary,
.page-promotions-new-user-benefits__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-promotions-new-user-benefits__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-new-user-benefits__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E; /* Gold */
}

.page-promotions-new-user-benefits__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  transform: translateY(-3px);
}

.page-promotions-new-user-benefits__btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
}

/* Promotion Grid Section */
.page-promotions-new-user-benefits__promotion-grid .page-promotions-new-user-benefits__section-title,
.page-promotions-new-user-benefits__promotion-grid .page-promotions-new-user-benefits__text-block {
  color: #F2FFF6;
}

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

.page-promotions-new-user-benefits__card {
  background-color: #11271B; /* Card B G */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-new-user-benefits__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-promotions-new-user-benefits__card-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-benefits__card-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-promotions-new-user-benefits__step-card {
  background-color: #11271B; /* Card B G */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-new-user-benefits__step-icon {
  font-size: 2em;
  color: #F2C14E; /* Gold */
  background: #0A4B2C; /* Deep Green */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border: 2px solid #F2C14E;
}

.page-promotions-new-user-benefits__step-title {
  font-size: 1.3em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-benefits__step-description {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-new-user-benefits__step-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
  max-width: 100%;
  display: block;
}

/* Game Showcase */
.page-promotions-new-user-benefits__game-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  align-items: center;
}

.page-promotions-new-user-benefits__game-image {
  flex: 1 1 500px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
  display: block;
}

.page-promotions-new-user-benefits__game-list {
  flex: 1 1 400px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promotions-new-user-benefits__game-list li {
  background-color: #11271B; /* Card B G */
  border-left: 5px solid #F2C14E; /* Gold */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-benefits__game-list li h3 {
  color: #F2C14E; /* Gold */
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions-new-user-benefits__game-list li p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  margin-bottom: 10px;
}

.page-promotions-new-user-benefits__link-text {
  color: #2AD16F; /* Lighter green for links */
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-new-user-benefits__link-text:hover {
  text-decoration: underline;
  color: #57E38D; /* Glow */
}

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

.page-promotions-new-user-benefits__benefit-item {
  background-color: #11271B; /* Card B G */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-new-user-benefits__benefit-title {
  font-size: 1.3em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-benefits__benefit-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  flex-grow: 1;
}

.page-promotions-new-user-benefits__benefit-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
  max-width: 100%;
  display: block;
}

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

.page-promotions-new-user-benefits__faq-item {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-promotions-new-user-benefits__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A; /* Divider */
  list-style: none;
  outline: none;
}

.page-promotions-new-user-benefits__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions-new-user-benefits__faq-question:hover {
  background-color: #13994A;
}

.page-promotions-new-user-benefits__faq-qtext {
  flex-grow: 1;
}

.page-promotions-new-user-benefits__faq-toggle {
  margin-left: 15px;
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #F2FFF6;
}

.page-promotions-new-user-benefits__faq-item[open] .page-promotions-new-user-benefits__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-new-user-benefits__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-new-user-benefits__main-title {
    font-size: 2.2em;
  }
  .page-promotions-new-user-benefits__section-title {
    font-size: 2em;
  }
  .page-promotions-new-user-benefits__hero-content {
    margin-top: -80px;
  }
  .page-promotions-new-user-benefits__game-showcase {
    flex-direction: column;
  }
  .page-promotions-new-user-benefits__game-image {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-benefits__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-new-user-benefits__hero-section {
    padding-bottom: 40px;
  }
  .page-promotions-new-user-benefits__hero-content {
    padding: 30px 15px;
    margin-top: -60px;
  }
  .page-promotions-new-user-benefits__main-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-benefits__intro-text {
    font-size: 1em;
  }
  .page-promotions-new-user-benefits__section-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-benefits__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .page-promotions-new-user-benefits__btn-primary,
  .page-promotions-new-user-benefits__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Mobile image responsiveness */
  .page-promotions-new-user-benefits img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions-new-user-benefits__section,
  .page-promotions-new-user-benefits__card,
  .page-promotions-new-user-benefits__container,
  .page-promotions-new-user-benefits__hero-image-wrapper,
  .page-promotions-new-user-benefits__hero-content,
  .page-promotions-new-user-benefits__steps-wrapper,
  .page-promotions-new-user-benefits__game-showcase,
  .page-promotions-new-user-benefits__game-image,
  .page-promotions-new-user-benefits__game-list,
  .page-promotions-new-user-benefits__benefits-grid,
  .page-promotions-new-user-benefits__benefit-item,
  .page-promotions-new-user-benefits__faq-list,
  .page-promotions-new-user-benefits__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }

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

  .page-promotions-new-user-benefits__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, this is decorative */
  }

  .page-promotions-new-user-benefits__promotion-grid .page-promotions-new-user-benefits__cards-wrapper {
    grid-template-columns: 1fr;
  }

  .page-promotions-new-user-benefits__steps-wrapper {
    grid-template-columns: 1fr;
  }

  .page-promotions-new-user-benefits__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-new-user-benefits__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-promotions-new-user-benefits__faq-answer {
    font-size: 0.9em;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-benefits__main-title {
    font-size: 1.5em;
  }
  .page-promotions-new-user-benefits__section-title {
    font-size: 1.5em;
  }
  .page-promotions-new-user-benefits__hero-content {
    margin-top: -40px;
    padding: 20px 10px;
  }
  .page-promotions-new-user-benefits__btn-primary,
  .page-promotions-new-user-benefits__btn-secondary {
    font-size: 0.95em;
    padding: 10px 15px;
  }
  .page-promotions-new-user-benefits__card-title,
  .page-promotions-new-user-benefits__step-title,
  .page-promotions-new-user-benefits__benefit-title {
    font-size: 1.2em;
  }
}