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

:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-dark: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
  --body-text-color: #F2FFF6; /* Default text color for dark body background */
  --light-text-color: #333333; /* For light background sections */
  --section-padding-y: 60px;
  --container-max-width: 1200px;
}

/* Base styles for the page content */
.page-promotions-new-user-bonus {
  background-color: var(--background-dark); /* Body background from shared, but sections can override */
  color: var(--body-text-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions-new-user-bonus__section {
  padding: var(--section-padding-y) 20px;
  text-align: center;
}

.page-promotions-new-user-bonus__content-area {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 15px; /* Add some horizontal padding */
  box-sizing: border-box;
}

.page-promotions-new-user-bonus__heading {
  font-size: 2.8em;
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions-new-user-bonus__text-block {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Color Contrast Sections */
.page-promotions-new-user-bonus__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-main);
}

.page-promotions-new-user-bonus__light-bg {
  background-color: #f5f5f5; /* Using a light background for contrast */
  color: var(--light-text-color);
}

.page-promotions-new-user-bonus__light-bg .page-promotions-new-user-bonus__heading {
  color: var(--deep-green); /* Darker heading for light background */
}

.page-promotions-new-user-bonus__light-bg .page-promotions-new-user-bonus__text-block {
  color: #555555;
}

.page-promotions-new-user-bonus__card {
  background-color: var(--card-bg);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-promotions-new-user-bonus__card img {
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%;
  height: auto;
  display: block;
}

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

.page-promotions-new-user-bonus__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 40px;
}

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

.page-promotions-new-user-bonus__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  text-align: center;
}

.page-promotions-new-user-bonus__main-title {
  font-size: clamp(2.5em, 5vw, 3.8em); /* Responsive font size for H1 */
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.4);
}

.page-promotions-new-user-bonus__description {
  font-size: 1.2em;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons */
.page-promotions-new-user-bonus__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions-new-user-bonus__cta-buttons--center {
  margin-top: 40px;
}

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%; /* Ensure responsiveness */
  white-space: normal;
  word-wrap: break-word;
}

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

.page-promotions-new-user-bonus__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-promotions-new-user-bonus__btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  box-shadow: 0 2px 10px rgba(34, 199, 104, 0.2);
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background: rgba(34, 199, 104, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

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

.page-promotions-new-user-bonus__step-card {
  padding: 40px;
  align-items: center;
  text-align: center;
}

.page-promotions-new-user-bonus__step-icon {
  width: 100%;
  max-width: 250px; /* Adjust size for step icons */
  height: auto;
  margin-bottom: 25px;
}

.page-promotions-new-user-bonus__step-title {
  font-size: 1.6em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__step-description {
  font-size: 1em;
  color: var(--text-secondary);
}

/* Bonus Types Grid */
.page-promotions-new-user-bonus__bonus-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-new-user-bonus__bonus-card {
  padding: 40px;
  align-items: center;
  text-align: center;
}

.page-promotions-new-user-bonus__bonus-icon {
  width: 100%;
  max-width: 250px; /* Adjust size for bonus icons */
  height: auto;
  margin-bottom: 25px;
}

.page-promotions-new-user-bonus__bonus-title {
  font-size: 1.6em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__bonus-description {
  font-size: 1em;
  color: var(--text-secondary);
}

/* Terms List */
.page-promotions-new-user-bonus__terms-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-new-user-bonus__term-item {
  padding: 40px;
  align-items: flex-start;
  text-align: left;
}

.page-promotions-new-user-bonus__term-icon {
  width: 100%;
  max-width: 150px; /* Smaller icons for terms */
  height: auto;
  margin-bottom: 25px;
}

.page-promotions-new-user-bonus__term-title {
  font-size: 1.6em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__term-description {
  font-size: 1em;
  color: var(--text-secondary);
}

/* Advantages Grid */
.page-promotions-new-user-bonus__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-new-user-bonus__advantage-card {
  padding: 40px;
  align-items: center;
  text-align: center;
}

.page-promotions-new-user-bonus__advantage-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 25px;
}

.page-promotions-new-user-bonus__advantage-title {
  font-size: 1.6em;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__advantage-description {
  font-size: 1em;
  color: var(--text-secondary);
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__light-bg .page-promotions-new-user-bonus__faq-item {
  background-color: #ffffff;
  color: var(--light-text-color);
  border-color: #e0e0e0;
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: var(--card-bg);
  color: var(--gold-color);
  border-bottom: 1px solid var(--border-color);
  list-style: none; /* For details/summary */
}

.page-promotions-new-user-bonus__light-bg .page-promotions-new-user-bonus__faq-question {
  background-color: #f9f9f9;
  color: var(--deep-green);
  border-bottom: 1px solid #e0e0e0;
}

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

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  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: 20px 25px;
  font-size: 1em;
  color: var(--text-secondary);
  background-color: var(--card-bg);
}

.page-promotions-new-user-bonus__light-bg .page-promotions-new-user-bonus__faq-answer {
  background-color: #ffffff;
  color: #555555;
}

/* General image styles */
.page-promotions-new-user-bonus img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__heading {
    font-size: 2.2em;
  }

  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(2em, 4vw, 3em);
  }

  .page-promotions-new-user-bonus__hero-content {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__section {
    padding: 40px 15px;
  }

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

  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em); /* Further adjust for mobile */
  }

  .page-promotions-new-user-bonus__description {
    font-size: 1em;
  }

  .page-promotions-new-user-bonus__heading {
    font-size: 1.8em;
  }

  .page-promotions-new-user-bonus__text-block {
    font-size: 0.95em;
  }

  .page-promotions-new-user-bonus__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-new-user-bonus__btn-primary,
  .page-promotions-new-user-bonus__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-new-user-bonus__content-area,
  .page-promotions-new-user-bonus__hero-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

  .page-promotions-new-user-bonus__hero-image-wrapper,
  .page-promotions-new-user-bonus__steps-grid,
  .page-promotions-new-user-bonus__bonus-types-grid,
  .page-promotions-new-user-bonus__terms-list,
  .page-promotions-new-user-bonus__advantages-grid,
  .page-promotions-new-user-bonus__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

  .page-promotions-new-user-bonus__step-card,
  .page-promotions-new-user-bonus__bonus-card,
  .page-promotions-new-user-bonus__term-item,
  .page-promotions-new-user-bonus__advantage-card {
    padding: 25px;
  }

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

  .page-promotions-new-user-bonus__hero-section {
    padding-top: 10px !important; /* body already handles header offset */
  }

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