:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-btn-bg: #C30808;
  --login-btn-bg: #C30808;
  --register-login-font: #FFFF00;
}

.page-promotions-welcome-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333;
  background: var(--secondary-color);
}

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

.page-promotions-welcome-bonus__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-welcome-bonus__section-title {
  font-size: 3em;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-welcome-bonus__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* HERO Section */
.page-promotions-welcome-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--primary-color);
  color: var(--secondary-color);
  overflow: hidden;
}

.page-promotions-welcome-bonus__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions-welcome-bonus__hero-image-wrapper {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__hero-image-wrapper img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-promotions-welcome-bonus__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-promotions-welcome-bonus__hero-title {
  font-size: clamp(2.5em, 5vw, 3.8em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-promotions-welcome-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--secondary-color);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-welcome-bonus__hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.page-promotions-welcome-bonus__cta-button {
  display: inline-block;
  padding: 18px 45px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.15em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-promotions-welcome-bonus__btn-register {
  background: var(--register-btn-bg);
  color: var(--register-login-font);
  border: 2px solid var(--register-btn-bg);
}

.page-promotions-welcome-bonus__btn-register:hover {
  background: #a30606;
  border-color: #a30606;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__btn-login {
  background: var(--login-btn-bg);
  color: var(--register-login-font);
  border: 2px solid var(--login-btn-bg);
}

.page-promotions-welcome-bonus__btn-login:hover {
  background: #a30606;
  border-color: #a30606;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__btn-primary {
  background: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-promotions-welcome-bonus__btn-primary:hover {
  background: #005a2d;
  border-color: #005a2d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions-welcome-bonus__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

.page-promotions-welcome-bonus__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Image with caption block */
.page-promotions-welcome-bonus__image-content-block {
  margin: 40px auto;
  max-width: 900px;
}

.page-promotions-welcome-bonus__image-content-block img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-welcome-bonus__image-caption {
  font-style: italic;
  font-size: 0.95em;
  color: #666;
  margin-top: 15px;
  text-align: center;
}

/* How to Claim Section */
.page-promotions-welcome-bonus__how-to-claim {
  background-color: #f8f8f8;
}

.page-promotions-welcome-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-welcome-bonus__step-card {
  background: var(--secondary-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-welcome-bonus__step-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
}

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

.page-promotions-welcome-bonus__step-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Benefits Section */
.page-promotions-welcome-bonus__benefits {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-promotions-welcome-bonus__benefits .page-promotions-welcome-bonus__section-title,
.page-promotions-welcome-bonus__benefits .page-promotions-welcome-bonus__text-block {
  color: var(--secondary-color);
}

.page-promotions-welcome-bonus__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-welcome-bonus__benefit-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-welcome-bonus__benefit-card img {
  width: 100%;
  
  height: auto;
  margin-bottom: 20px;
}

.page-promotions-welcome-bonus__benefit-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-welcome-bonus__benefit-description {
  font-size: 0.95em;
  color: #e0e0e0;
}

/* Terms & Conditions Section */
.page-promotions-welcome-bonus__terms {
  background-color: var(--secondary-color);
}

.page-promotions-welcome-bonus__terms-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}

.page-promotions-welcome-bonus__terms-list li {
  background: #f9f9f9;
  border-left: 5px solid var(--primary-color);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.05em;
  line-height: 1.7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-welcome-bonus__terms-list li strong {
  color: var(--primary-color);
}

.page-promotions-welcome-bonus__terms-list li a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-promotions-welcome-bonus__cta-center {
  margin-top: 40px;
  text-align: center;
}

/* FAQ Section */
.page-promotions-welcome-bonus__faq-section {
  background-color: #f0f8f0; /* Light green tint */
  padding-bottom: 80px;
}

.page-promotions-welcome-bonus__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

details.page-promotions-welcome-bonus__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

details.page-promotions-welcome-bonus__faq-item summary.page-promotions-welcome-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

details.page-promotions-welcome-bonus__faq-item summary.page-promotions-welcome-bonus__faq-question:hover {
  background: #f5f5f5;
  color: var(--primary-color);
}

.page-promotions-welcome-bonus__faq-qtext {
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333;
}

details.page-promotions-welcome-bonus__faq-item[open] .page-promotions-welcome-bonus__faq-qtext {
  color: var(--primary-color);
}

.page-promotions-welcome-bonus__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

details.page-promotions-welcome-bonus__faq-item[open] .page-promotions-welcome-bonus__faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.page-promotions-welcome-bonus__faq-answer {
  padding: 0 25px 25px;
  background: #fcfcfc;
  border-top: 1px solid #eee;
  border-radius: 0 0 8px 8px;
  text-align: left;
  font-size: 1em;
  color: #555;
}

.page-promotions-welcome-bonus__faq-answer p {
  margin: 0;
}

/* Final Call to Action Section */
.page-promotions-welcome-bonus__call-to-action-final {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 80px 0;
}

.page-promotions-welcome-bonus__call-to-action-final .page-promotions-welcome-bonus__section-title,
.page-promotions-welcome-bonus__call-to-action-final .page-promotions-welcome-bonus__text-block {
  color: var(--secondary-color);
}

.page-promotions-welcome-bonus__call-to-action-final .page-promotions-welcome-bonus__cta-buttons {
  margin-top: 40px;
}

/* Dark background general styles */
.page-promotions-welcome-bonus__dark-bg {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-promotions-welcome-bonus__dark-bg .page-promotions-welcome-bonus__section-title,
.page-promotions-welcome-bonus__dark-bg .page-promotions-welcome-bonus__text-block {
  color: var(--secondary-color);
}

/* Light background general styles */
.page-promotions-welcome-bonus__light-bg {
  background-color: var(--secondary-color);
  color: #333333;
}

.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__section-title,
.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__text-block {
  color: #333333;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-welcome-bonus__section-title {
    font-size: 2.5em;
  }
  .page-promotions-welcome-bonus__hero-title {
    font-size: clamp(2em, 4.5vw, 3.2em);
  }
  .page-promotions-welcome-bonus__hero-description {
    font-size: 1.1em;
  }
  .page-promotions-welcome-bonus__cta-button {
    padding: 15px 35px;
    font-size: 1.05em;
  }
}

@media (max-width: 768px) {
  .page-promotions-welcome-bonus__hero-section {
    padding-top: 10px !important; /* body handles header offset */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-welcome-bonus__hero-image-wrapper {
    margin-bottom: 20px;
    border-radius: 8px;
  }
  .page-promotions-welcome-bonus__hero-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 15px;
  }
  .page-promotions-welcome-bonus__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-promotions-welcome-bonus__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-welcome-bonus__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 14px 25px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions-welcome-bonus__section {
    padding: 40px 0;
  }
  .page-promotions-welcome-bonus__container {
    padding: 0 15px;
  }
  .page-promotions-welcome-bonus__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-promotions-welcome-bonus__text-block {
    font-size: 0.95em;
  }
  .page-promotions-welcome-bonus__image-content-block {
    margin: 30px auto;
  }
  .page-promotions-welcome-bonus__steps-grid,
  .page-promotions-welcome-bonus__benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-promotions-welcome-bonus__step-card,
  .page-promotions-welcome-bonus__benefit-card {
    padding: 25px;
    border-radius: 10px;
  }
  .page-promotions-welcome-bonus__step-title,
  .page-promotions-welcome-bonus__benefit-title {
    font-size: 1.4em;
  }
  .page-promotions-welcome-bonus__terms-list {
    margin-top: 30px;
  }
  .page-promotions-welcome-bonus__terms-list li {
    padding: 15px;
    font-size: 0.9em;
  }
  .page-promotions-welcome-bonus__faq-section {
    padding-bottom: 60px;
  }
  details.page-promotions-welcome-bonus__faq-item summary.page-promotions-welcome-bonus__faq-question {
    padding: 15px 20px;
  }
  .page-promotions-welcome-bonus__faq-qtext {
    font-size: 1em;
  }
  .page-promotions-welcome-bonus__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
  .page-promotions-welcome-bonus__faq-answer {
    padding: 0 20px 20px;
  }
  .page-promotions-welcome-bonus__call-to-action-final {
    padding: 60px 0;
  }
  .page-promotions-welcome-bonus__call-to-action-final .page-promotions-welcome-bonus__cta-buttons {
    margin-top: 30px;
  }

  .page-promotions-welcome-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-promotions-welcome-bonus__section,
  .page-promotions-welcome-bonus__card,
  .page-promotions-welcome-bonus__container,
  .page-promotions-welcome-bonus__hero-cta-buttons,
  .page-promotions-welcome-bonus__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-welcome-bonus__cta-buttons {
    flex-wrap: wrap !important;
    gap: 15px;
  }
}