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

/* Base styles for the page content, ensuring light text on dark background */
.page-promotions-new-user-bonus {
  color: #F2FFF6; /* Text Main */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #08160F; /* Background */
}

/* Headings */
.page-promotions-new-user-bonus h1,
.page-promotions-new-user-bonus h2,
.page-promotions-new-user-bonus h3 {
  color: #F2C14E; /* Gold for emphasis */
  font-weight: bold;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  text-align: center;
  line-height: 1.2;
  color: #F2FFF6; /* Main text color for H1 */
}

.page-promotions-new-user-bonus h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-promotions-new-user-bonus h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 15px;
  color: #57E38D; /* Glow for sub-headings */
}

.page-promotions-new-user-bonus p {
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-promotions-new-user-bonus__section-title {
  color: #F2C14E; /* Gold */
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom */
  overflow: hidden;
  background-color: #08160F;
}

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

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

.page-promotions-new-user-bonus__hero-content-wrapper {
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
  text-align: center;
}

.page-promotions-new-user-bonus__hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

/* General Section Styling */
.page-promotions-new-user-bonus__section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-promotions-new-user-bonus__section:last-of-type {
  border-bottom: none;
}

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

.page-promotions-new-user-bonus__text-block {
  font-size: 1.1rem;
  margin-bottom: 30px;
  text-align: justify;
}

.page-promotions-new-user-bonus__image-content {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* CTA 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;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-promotions-new-user-bonus__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-new-user-bonus__btn-secondary:hover {
  background: #57E38D;
  color: #08160F; /* Background */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-new-user-bonus__card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #F2FFF6; /* Text Main */
}

.page-promotions-new-user-bonus__card p {
  color: #A7D9B8; /* Text Secondary */
}

.page-promotions-new-user-bonus__step-title,
.page-promotions-new-user-bonus__bonus-card-title,
.page-promotions-new-user-bonus__advantage-title {
  color: #F2C14E; /* Gold */
  margin-top: 0;
}

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

.page-promotions-new-user-bonus__terms-item {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  border-left: 5px solid #57E38D; /* Glow */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__terms-heading {
  color: #F2C14E; /* Gold */
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__terms-description {
  color: #A7D9B8; /* Text Secondary */
}

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

.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: 10px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  border-bottom: 1px solid #1E3A2A; /* Divider */
  list-style: none; /* For details/summary */
}

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

.page-promotions-new-user-bonus__faq-qtext {
  color: #F2FFF6; /* Text Main */
}

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #57E38D; /* Glow */
  transition: transform 0.3s ease;
}

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

.page-promotions-new-user-bonus__faq-answer {
  padding: 15px 25px 20px;
  color: #A7D9B8; /* Text Secondary */
  background-color: #0A4B2C; /* Deep Green for answer background */
  font-size: 1rem;
}

.page-promotions-new-user-bonus__faq-answer p {
  margin-bottom: 0;
  color: #A7D9B8; /* Text Secondary */
}

/* Dark section specific */
.page-promotions-new-user-bonus__dark-section h2,
.page-promotions-new-user-bonus__dark-section p {
  color: #F2FFF6; /* Ensure light text on dark background */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-promotions-new-user-bonus h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-promotions-new-user-bonus h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .page-promotions-new-user-bonus h3 {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

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

  .page-promotions-new-user-bonus__hero-content-wrapper {
    margin-top: 20px;
  }

  .page-promotions-new-user-bonus__hero-description {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
  }

  .page-promotions-new-user-bonus__cta-button {
    padding: 12px 20px;
    font-size: 1rem;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: auto;
    margin-right: auto;
  }

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

  .page-promotions-new-user-bonus__container {
    padding: 0 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions-new-user-bonus__steps-grid,
  .page-promotions-new-user-bonus__bonus-types-grid,
  .page-promotions-new-user-bonus__advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-new-user-bonus__card {
    padding: 25px;
  }

  /* Images responsiveness */
  .page-promotions-new-user-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Video responsiveness (if any, though not in this HTML) */
  .page-promotions-new-user-bonus video,
  .page-promotions-new-user-bonus__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-new-user-bonus__video-section,
  .page-promotions-new-user-bonus__video-container,
  .page-promotions-new-user-bonus__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-promotions-new-user-bonus__video-section {
    padding-top: 10px !important;
  }

  /* Button containers mobile adaptation */
  .page-promotions-new-user-bonus__cta-buttons,
  .page-promotions-new-user-bonus__button-group,
  .page-promotions-new-user-bonus__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-promotions-new-user-bonus__hero-content-wrapper .page-promotions-new-user-bonus__cta-button {
    margin: 0 auto;
  }
}