:root {
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

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

.page-promotions-new-user-bonus__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--background-color);
  text-align: center;
}

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

.page-promotions-new-user-bonus__hero-content {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-main);
}

.page-promotions-new-user-bonus__main-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-main);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

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

.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"] {
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-user-bonus__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

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

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

.page-promotions-new-user-bonus__btn-secondary:hover {
  background-color: var(--deep-green);
  color: var(--text-main);
  border-color: var(--glow-color);
}

.page-promotions-new-user-bonus__large-button {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-promotions-new-user-bonus__section {
  padding: 80px 20px;
  text-align: center;
}

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

.page-promotions-new-user-bonus__dark-bg {
  background-color: var(--background-color);
  color: var(--text-main);
}

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

.page-promotions-new-user-bonus__section-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 40px;
  color: inherit;
}

.page-promotions-new-user-bonus__text-block {
  font-size: 1.05em;
  margin-bottom: 30px;
  line-height: 1.7;
}

.page-promotions-new-user-bonus__text-main {
  color: var(--text-main);
}

.page-promotions-new-user-bonus__text-secondary {
  color: var(--text-secondary);
}

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

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

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

.page-promotions-new-user-bonus__card-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
  min-height: 200px; /* Enforce min size */
}

.page-promotions-new-user-bonus__card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-main);
}

.page-promotions-new-user-bonus__card-text {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
  color: var(--text-secondary);
}

.page-promotions-new-user-bonus__card-button {
  width: auto;
  align-self: flex-start;
  margin-top: auto; /* Pushes button to bottom */
}

.page-promotions-new-user-bonus__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-promotions-new-user-bonus__list-item {
  background-color: #ffffff;
  color: #333333;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__list-item:hover {
  transform: translateY(-5px);
}

.page-promotions-new-user-bonus__list-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #11A84E; /* Using brand color for titles in light section */
}

.page-promotions-new-user-bonus__list-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-promotions-new-user-bonus__list-item .page-promotions-new-user-bonus__btn-primary {
  margin-top: 20px;
}

.page-promotions-new-user-bonus__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-promotions-new-user-bonus__terms-list .page-promotions-new-user-bonus__list-item {
  background-color: var(--card-bg);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.page-promotions-new-user-bonus__terms-list .page-promotions-new-user-bonus__list-title {
  color: var(--text-main);
}

.page-promotions-new-user-bonus__terms-list .page-promotions-new-user-bonus__list-text {
  color: var(--text-secondary);
}

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

.page-promotions-new-user-bonus__feature-item {
  background-color: #ffffff;
  color: #333333;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-promotions-new-user-bonus__feature-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions-new-user-bonus__feature-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #11A84E;
}

.page-promotions-new-user-bonus__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-promotions-new-user-bonus__faq-list {
  margin-top: 40px;
  text-align: left;
}

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

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-main);
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--divider-color);
  list-style: none;
}

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

.page-promotions-new-user-bonus__faq-question:hover {
  background-color: rgba(var(--deep-green), 0.8);
}

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow-color);
}

.page-promotions-new-user-bonus__faq-answer {
  padding: 20px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-secondary);
}

.page-promotions-new-user-bonus__final-cta {
  padding: 100px 20px;
  background-color: var(--deep-green);
}

.page-promotions-new-user-bonus__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__main-title {
    font-size: 2.4em;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-new-user-bonus__hero-section,
  .page-promotions-new-user-bonus__section {
    padding: 60px 15px;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__main-title {
    font-size: 2em;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 1em;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 1.8em;
  }
  .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,
  .page-promotions-new-user-bonus a[class*="button"],
  .page-promotions-new-user-bonus a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-new-user-bonus__grid-cards {
    grid-template-columns: 1fr;
  }
  .page-promotions-new-user-bonus__features-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile image responsiveness */
  .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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-promotions-new-user-bonus__video-section { /* Added for general video rules, though no video currently */
    padding-top: 10px !important; 
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus__main-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 1.6em;
  }
  .page-promotions-new-user-bonus__hero-section,
  .page-promotions-new-user-bonus__section {
    padding: 40px 10px;
  }
  .page-promotions-new-user-bonus__card,
  .page-promotions-new-user-bonus__feature-item,
  .page-promotions-new-user-bonus__list-item {
    padding: 20px;
  }
  .page-promotions-new-user-bonus__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-promotions-new-user-bonus__faq-answer {
    padding: 15px;
  }
}