.page-resources-new-user-registration-and-bonuses {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-resources-new-user-registration-and-bonuses__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  text-align: center;
  background-color: #017439; /* Primary brand color for hero background */
  color: #ffffff;
  overflow: hidden;
}

.page-resources-new-user-registration-and-bonuses__hero-content {
  max-width: 900px;
  margin-bottom: 30px;
  z-index: 1;
}

.page-resources-new-user-registration-and-bonuses__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-resources-new-user-registration-and-bonuses__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-resources-new-user-registration-and-bonuses__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-new-user-registration-and-bonuses__btn-register,
.page-resources-new-user-registration-and-bonuses__btn-login {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-new-user-registration-and-bonuses__btn-register {
  background-color: #C30808; /* Custom color for Register */
  color: #FFFF00; /* Custom font color for Register */
  border: 2px solid #C30808;
}

.page-resources-new-user-registration-and-bonuses__btn-register:hover {
  background-color: #a30606;
  transform: translateY(-2px);
}

.page-resources-new-user-registration-and-bonuses__btn-login {
  background-color: #C30808; /* Custom color for Login */
  color: #FFFF00; /* Custom font color for Login */
  border: 2px solid #C30808;
}

.page-resources-new-user-registration-and-bonuses__btn-login:hover {
  background-color: #a30606;
  transform: translateY(-2px);
}

.page-resources-new-user-registration-and-bonuses__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  z-index: 0;
}

.page-resources-new-user-registration-and-bonuses__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-new-user-registration-and-bonuses__content-area,
.page-resources-new-user-registration-and-bonuses__registration-guide,
.page-resources-new-user-registration-and-bonuses__bonus-section,
.page-resources-new-user-registration-and-bonuses__video-section,
.page-resources-new-user-registration-and-bonuses__faq-section,
.page-resources-new-user-registration-and-bonuses__cta-final {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  box-sizing: border-box;
}

.page-resources-new-user-registration-and-bonuses__light-bg {
  background-color: #ffffff;
  color: #333333; /* Deep text for light background */
}

.page-resources-new-user-registration-and-bonuses__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter than body background for contrast */
  color: #ffffff;
}

.page-resources-new-user-registration-and-bonuses__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align: center;
  color: inherit;
}

.page-resources-new-user-registration-and-bonuses__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

.page-resources-new-user-registration-and-bonuses__features-grid,
.page-resources-new-user-registration-and-bonuses__guide-steps,
.page-resources-new-user-registration-and-bonuses__bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-new-user-registration-and-bonuses__feature-item,
.page-resources-new-user-registration-and-bonuses__step-item,
.page-resources-new-user-registration-and-bonuses__bonus-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for dark sections */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-new-user-registration-and-bonuses__light-bg .page-resources-new-user-registration-and-bonuses__feature-item,
.page-resources-new-user-registration-and-bonuses__light-bg .page-resources-new-user-registration-and-bonuses__bonus-card {
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  color: #333333;
}

.page-resources-new-user-registration-and-bonuses__feature-icon,
.page-resources-new-user-registration-and-bonuses__step-image,
.page-resources-new-user-registration-and-bonuses__bonus-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Constrain max width for images in cards/steps */
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
}

.page-resources-new-user-registration-and-bonuses__feature-title,
.page-resources-new-user-registration-and-bonuses__step-title,
.page-resources-new-user-registration-and-bonuses__bonus-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: inherit;
}

.page-resources-new-user-registration-and-bonuses__feature-text,
.page-resources-new-user-registration-and-bonuses__step-text,
.page-resources-new-user-registration-and-bonuses__bonus-text {
  font-size: 1em;
  color: inherit;
}

.page-resources-new-user-registration-and-bonuses__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-resources-new-user-registration-and-bonuses__btn-primary,
.page-resources-new-user-registration-and-bonuses__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-new-user-registration-and-bonuses__btn-primary {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
}

.page-resources-new-user-registration-and-bonuses__btn-primary:hover {
  background-color: #005a2d;
  transform: translateY(-2px);
}

.page-resources-new-user-registration-and-bonuses__btn-secondary {
  background-color: transparent;
  color: #017439;
  border: 2px solid #017439;
}

.page-resources-new-user-registration-and-bonuses__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-resources-new-user-registration-and-bonuses__video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 40px auto 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-new-user-registration-and-bonuses__video-link-wrapper {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
}

.page-resources-new-user-registration-and-bonuses__video {
  width: 100%;
  height: auto;
  display: block;
}

.page-resources-new-user-registration-and-bonuses__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-new-user-registration-and-bonuses__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  color: #333333;
}

.page-resources-new-user-registration-and-bonuses__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
  color: #333333;
}

.page-resources-new-user-registration-and-bonuses__faq-question:hover {
  background-color: #f0f0f0;
}

.page-resources-new-user-registration-and-bonuses__faq-question h3 {
  margin: 0;
  color: inherit;
}

.page-resources-new-user-registration-and-bonuses__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #017439;
}

.page-resources-new-user-registration-and-bonuses__faq-item.active .page-resources-new-user-registration-and-bonuses__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-new-user-registration-and-bonuses__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: #f8f8f8;
  color: #555555;
}

.page-resources-new-user-registration-and-bonuses__faq-item.active .page-resources-new-user-registration-and-bonuses__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 20px 25px;
}

.page-resources-new-user-registration-and-bonuses__faq-answer p {
  margin: 0;
  color: inherit;
}

.page-resources-new-user-registration-and-bonuses__cta-final {
  background-color: #017439;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.page-resources-new-user-registration-and-bonuses__cta-final .page-resources-new-user-registration-and-bonuses__section-title,
.page-resources-new-user-registration-and-bonuses__cta-final .page-resources-new-user-registration-and-bonuses__section-description {
  color: #ffffff;
}

.page-resources-new-user-registration-and-bonuses__cta-final .page-resources-new-user-registration-and-bonuses__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-resources-new-user-registration-and-bonuses__cta-final .page-resources-new-user-registration-and-bonuses__btn-register {
  background-color: #C30808;
  color: #FFFF00;
  border: 2px solid #C30808;
}

.page-resources-new-user-registration-and-bonuses__cta-final .page-resources-new-user-registration-and-bonuses__btn-register:hover {
  background-color: #a30606;
}

.page-resources-new-user-registration-and-bonuses__cta-final .page-resources-new-user-registration-and-bonuses__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border: 2px solid #ffffff;
}

.page-resources-new-user-registration-and-bonuses__cta-final .page-resources-new-user-registration-and-bonuses__btn-secondary:hover {
  background-color: #f0f0f0;
}

/* General image responsiveness */
.page-resources-new-user-registration-and-bonuses img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Content area image CSS size lower bound */
.page-resources-new-user-registration-and-bonuses__feature-icon,
.page-resources-new-user-registration-and-bonuses__step-image,
.page-resources-new-user-registration-and-bonuses__bonus-image {
  min-width: 200px;
  min-height: 200px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-resources-new-user-registration-and-bonuses {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-new-user-registration-and-bonuses__hero-title {
    font-size: 2.2em;
  }

  .page-resources-new-user-registration-and-bonuses__hero-description {
    font-size: 1em;
  }

  .page-resources-new-user-registration-and-bonuses__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-new-user-registration-and-bonuses__btn-register,
  .page-resources-new-user-registration-and-bonuses__btn-login,
  .page-resources-new-user-registration-and-bonuses__btn-primary,
  .page-resources-new-user-registration-and-bonuses__btn-secondary,
  .page-resources-new-user-registration-and-bonuses a[class*="button"],
  .page-resources-new-user-registration-and-bonuses 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-resources-new-user-registration-and-bonuses__hero-section,
  .page-resources-new-user-registration-and-bonuses__content-area,
  .page-resources-new-user-registration-and-bonuses__registration-guide,
  .page-resources-new-user-registration-and-bonuses__bonus-section,
  .page-resources-new-user-registration-and-bonuses__faq-section,
  .page-resources-new-user-registration-and-bonuses__cta-final {
    padding: 40px 15px;
  }

  .page-resources-new-user-registration-and-bonuses__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }

  .page-resources-new-user-registration-and-bonuses__section-title {
    font-size: 1.8em;
  }

  .page-resources-new-user-registration-and-bonuses__section-description {
    font-size: 0.95em;
  }

  .page-resources-new-user-registration-and-bonuses__features-grid,
  .page-resources-new-user-registration-and-bonuses__guide-steps,
  .page-resources-new-user-registration-and-bonuses__bonus-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-new-user-registration-and-bonuses img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-new-user-registration-and-bonuses__section,
  .page-resources-new-user-registration-and-bonuses__card,
  .page-resources-new-user-registration-and-bonuses__container,
  .page-resources-new-user-registration-and-bonuses__video-section,
  .page-resources-new-user-registration-and-bonuses__video-container,
  .page-resources-new-user-registration-and-bonuses__video-wrapper,
  .page-resources-new-user-registration-and-bonuses__cta-buttons,
  .page-resources-new-user-registration-and-bonuses__button-group,
  .page-resources-new-user-registration-and-bonuses__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-resources-new-user-registration-and-bonuses__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}