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

/* Base styles for the page */
.page-promotions-new-user-bonus {
  font-family: 'Arial', sans-serif;
  color: #A7D9B8; /* Text Secondary - Light green for main body text on dark background */
  background-color: #08160F; /* Background color */
  line-height: 1.6;
}

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

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding for first section */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for aesthetic */
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image to make text pop */
}

.page-promotions-new-user-bonus__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-top: -150px; /* Overlap slightly with the image for visual flow */
  background-color: #11271B; /* Card BG */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-promotions-new-user-bonus__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.1rem;
  color: #A7D9B8;
  margin-bottom: 30px;
}

/* General Section Styles */
.page-promotions-new-user-bonus__section {
  padding: 60px 0;
}

.page-promotions-new-user-bonus__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__section-title--white {
  color: #F2FFF6;
}

.page-promotions-new-user-bonus__section-text {
  font-size: 1rem;
  color: #A7D9B8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-new-user-bonus__section-text--white {
  color: #F2FFF6;
}

.page-promotions-new-user-bonus__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  border: 1px solid #2E7A4E;
}

/* Feature Grid */
.page-promotions-new-user-bonus__feature-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: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border: 1px solid #2E7A4E;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-new-user-bonus__feature-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__feature-description {
  font-size: 0.95rem;
  color: #A7D9B8;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* How-to-claim Steps */
.page-promotions-new-user-bonus__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__step-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #2E7A4E;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.page-promotions-new-user-bonus__step-title {
  font-size: 1.6rem;
  color: #57E38D; /* Glow */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__step-description {
  font-size: 1rem;
  color: #A7D9B8;
}

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

.page-promotions-new-user-bonus__benefit-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #2E7A4E;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promotions-new-user-bonus__benefit-description {
  font-size: 1rem;
  color: #A7D9B8;
  flex-grow: 1;
}

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

.page-promotions-new-user-bonus__game-card {
  background-color: #11271B; /* Card BG */
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border: 1px solid #2E7A4E;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-new-user-bonus__game-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid #1E3A2A; /* Divider */
}

.page-promotions-new-user-bonus__game-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__game-description {
  font-size: 0.95rem;
  color: #A7D9B8;
  margin-bottom: 15px;
  flex-grow: 1;
}

/* Terms & Conditions List */
.page-promotions-new-user-bonus__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__term-item {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #1E3A2A; /* Divider */
}

.page-promotions-new-user-bonus__term-title {
  font-size: 1.3rem;
  color: #57E38D; /* Glow */
  margin-bottom: 8px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__term-description {
  font-size: 0.95rem;
  color: #A7D9B8;
}

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

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

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-promotions-new-user-bonus__faq-item[open] .page-promotions-new-user-bonus__faq-toggle {
  content: '−';
}

.page-promotions-new-user-bonus__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions-new-user-bonus__faq-item[open] .page-promotions-new-user-bonus__faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 0 25px 20px;
}

.page-promotions-new-user-bonus__faq-item details > summary::-webkit-details-marker {
  display: none;
}

/* CTA Section */
.page-promotions-new-user-bonus__cta-section .page-promotions-new-user-bonus__container {
  background-color: #11271B; /* Card BG */
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #2E7A4E;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

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

.page-promotions-new-user-bonus__cta-button--primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-user-bonus__cta-button--secondary {
  background-color: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
}

.page-promotions-new-user-bonus__cta-button--secondary:hover {
  background-color: #57E38D;
  color: #11271B; /* Card BG */
  box-shadow: 0 3px 10px rgba(87, 227, 141, 0.4);
}

.page-promotions-new-user-bonus__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 15px;
  transition: background-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-promotions-new-user-bonus__btn-primary:hover {
  filter: brightness(1.1);
}

.page-promotions-new-user-bonus__btn-secondary {
  background-color: transparent;
  color: #57E38D;
  border: 2px solid #57E38D;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 15px;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background-color: #57E38D;
  color: #11271B;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__hero-content {
    margin-top: -100px;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions-new-user-bonus__container {
    padding: 0 15px;
  }

  .page-promotions-new-user-bonus__hero-section {
    padding-bottom: 40px;
  }

  .page-promotions-new-user-bonus__hero-image-wrapper {
    max-height: 300px;
  }

  .page-promotions-new-user-bonus__hero-content {
    margin-top: -80px;
    padding: 25px;
  }

  .page-promotions-new-user-bonus__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-promotions-new-user-bonus__hero-description {
    font-size: 1rem;
  }

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

  .page-promotions-new-user-bonus__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-promotions-new-user-bonus__feature-grid,
  .page-promotions-new-user-bonus__benefits-list,
  .page-promotions-new-user-bonus__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-new-user-bonus__cta-button,
  .page-promotions-new-user-bonus__btn-primary,
  .page-promotions-new-user-bonus__btn-secondary,
  .page-promotions-new-user-bonus a[class*="button"],
  .page-promotions-new-user-bonus a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-new-user-bonus__cta-section .page-promotions-new-user-bonus__container {
    padding: 30px;
  }

  /* Image and video responsive for mobile */
  .page-promotions-new-user-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-new-user-bonus__section,
  .page-promotions-new-user-bonus__card,
  .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__hero-section,
  .page-promotions-new-user-bonus__hero-image-wrapper,
  .page-promotions-new-user-bonus__hero-content,
  .page-promotions-new-user-bonus__feature-card,
  .page-promotions-new-user-bonus__step-item,
  .page-promotions-new-user-bonus__benefit-item,
  .page-promotions-new-user-bonus__game-card,
  .page-promotions-new-user-bonus__term-item,
  .page-promotions-new-user-bonus__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-promotions-new-user-bonus__hero-section { padding-left: 0; padding-right: 0; }
  .page-promotions-new-user-bonus__hero-image-wrapper { padding-left: 0; padding-right: 0; }

  .page-promotions-new-user-bonus__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-promotions-new-user-bonus__faq-answer {
    padding: 0 20px 15px;
  }

  .page-promotions-new-user-bonus__video-section { /* No video section in this page, but keeping the rule for completeness */
    padding-top: 10px !important;
  }
}

/* Ensure color contrast on dark backgrounds */
.page-promotions-new-user-bonus__dark-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-promotions-new-user-bonus__dark-bg h1, .page-promotions-new-user-bonus__dark-bg h2, .page-promotions-new-user-bonus__dark-bg h3, .page-promotions-new-user-bonus__dark-bg h4 {
  color: #F2FFF6;
}

.page-promotions-new-user-bonus__dark-bg p, .page-promotions-new-user-bonus__dark-bg li {
  color: #A7D9B8;
}

.page-promotions-new-user-bonus__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}