/* style/promotions-welcome-bonus.css */

/* Custom Colors */
:root {
  --page-promotions-welcome-bonus-primary-color: #11A84E;
  --page-promotions-welcome-bonus-secondary-color: #22C768;
  --page-promotions-welcome-bonus-bg-color: #08160F;
  --page-promotions-welcome-bonus-card-bg: #11271B;
  --page-promotions-welcome-bonus-text-main: #F2FFF6;
  --page-promotions-welcome-bonus-text-secondary: #A7D9B8;
  --page-promotions-welcome-bonus-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-promotions-welcome-bonus-border-color: #2E7A4E;
  --page-promotions-welcome-bonus-glow-color: #57E38D;
  --page-promotions-welcome-bonus-gold-color: #F2C14E;
  --page-promotions-welcome-bonus-divider-color: #1E3A2A;
  --page-promotions-welcome-bonus-deep-green: #0A4B2C;
}

.page-promotions-welcome-bonus {
  font-family: Arial, sans-serif;
  color: var(--page-promotions-welcome-bonus-text-main); /* Default text color for dark background */
  background-color: var(--page-promotions-welcome-bonus-bg-color); /* Default background color */
}

.page-promotions-welcome-bonus__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for visual balance, body handles --header-offset */
  background-color: var(--page-promotions-welcome-bonus-deep-green);
  overflow: hidden;
}

.page-promotions-welcome-bonus__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-promotions-welcome-bonus__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions-welcome-bonus__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.page-promotions-welcome-bonus__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  color: var(--page-promotions-welcome-bonus-gold-color);
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-promotions-welcome-bonus__hero-description {
  font-size: clamp(1em, 1.5vw, 1.25em);
  color: var(--page-promotions-welcome-bonus-text-main);
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promotions-welcome-bonus__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: var(--page-promotions-welcome-bonus-button-gradient);
  color: #ffffff; /* White text for button gradient */
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-promotions-welcome-bonus__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

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

.page-promotions-welcome-bonus__card-bg {
  background-color: var(--page-promotions-welcome-bonus-card-bg);
  color: var(--page-promotions-welcome-bonus-text-main);
}

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

.page-promotions-welcome-bonus__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  color: var(--page-promotions-welcome-bonus-primary-color);
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-top: 20px;
}

.page-promotions-welcome-bonus__section-title--gold {
  color: var(--page-promotions-welcome-bonus-gold-color);
}

.page-promotions-welcome-bonus__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 40px;
  color: var(--page-promotions-welcome-bonus-text-secondary);
}

.page-promotions-welcome-bonus__highlight {
  color: var(--page-promotions-welcome-bonus-gold-color);
  font-weight: bold;
}

.page-promotions-welcome-bonus__details-section {
  padding-bottom: 60px;
}

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

.page-promotions-welcome-bonus__card {
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-promotions-welcome-bonus-border-color);
  transition: transform 0.3s ease;
}

.page-promotions-welcome-bonus__card:hover {
  transform: translateY(-5px);
}

.page-promotions-welcome-bonus__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-welcome-bonus__card-title {
  font-size: 1.4em;
  font-weight: 600;
  color: var(--page-promotions-welcome-bonus-text-main);
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-promotions-welcome-bonus__card-text {
  font-size: 1em;
  color: var(--page-promotions-welcome-bonus-text-secondary);
  line-height: 1.7;
}

.page-promotions-welcome-bonus__how-to-claim-section {
  padding-bottom: 60px;
}

.page-promotions-welcome-bonus__steps-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.page-promotions-welcome-bonus__step-item {
  background-color: var(--page-promotions-welcome-bonus-card-bg);
  border: 1px solid var(--page-promotions-welcome-bonus-border-color);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 80px;
}

.page-promotions-welcome-bonus__step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 25px;
  top: 25px;
  background-color: var(--page-promotions-welcome-bonus-primary-color);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: 700;
}

.page-promotions-welcome-bonus__step-title {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--page-promotions-welcome-bonus-text-main);
  margin-bottom: 10px;
}

.page-promotions-welcome-bonus__step-description {
  font-size: 1em;
  color: var(--page-promotions-welcome-bonus-text-secondary);
  line-height: 1.7;
}

.page-promotions-welcome-bonus__btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background: transparent;
  color: var(--page-promotions-welcome-bonus-primary-color);
  border: 2px solid var(--page-promotions-welcome-bonus-primary-color);
  font-size: 0.95em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.page-promotions-welcome-bonus__btn-secondary:hover {
  background: var(--page-promotions-welcome-bonus-primary-color);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(17, 168, 78, 0.4);
}

.page-promotions-welcome-bonus__terms-conditions-section {
  padding-bottom: 60px;
}

.page-promotions-welcome-bonus__terms-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-promotions-welcome-bonus__term-item {
  background-color: var(--page-promotions-welcome-bonus-card-bg);
  border: 1px solid var(--page-promotions-welcome-bonus-border-color);
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-welcome-bonus__term-title {
  font-size: 1.2em;
  font-weight: 600;
  color: var(--page-promotions-welcome-bonus-text-main);
  margin-bottom: 8px;
}

.page-promotions-welcome-bonus__term-description {
  font-size: 0.95em;
  color: var(--page-promotions-welcome-bonus-text-secondary);
  line-height: 1.6;
}

.page-promotions-welcome-bonus__why-choose-section {
  padding-bottom: 60px;
}

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

.page-promotions-welcome-bonus__feature-card {
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-promotions-welcome-bonus-border-color);
  transition: transform 0.3s ease;
}

.page-promotions-welcome-bonus__feature-card:hover {
  transform: translateY(-5px);
}

.page-promotions-welcome-bonus__feature-icon {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
}

.page-promotions-welcome-bonus__feature-title {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--page-promotions-welcome-bonus-text-main);
  margin-bottom: 10px;
}

.page-promotions-welcome-bonus__feature-description {
  font-size: 0.95em;
  color: var(--page-promotions-welcome-bonus-text-secondary);
  line-height: 1.6;
}

.page-promotions-welcome-bonus__faq-section {
  padding-bottom: 60px;
}

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

.page-promotions-welcome-bonus__faq-item {
  border: 1px solid var(--page-promotions-welcome-bonus-border-color);
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.page-promotions-welcome-bonus__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--page-promotions-welcome-bonus-text-main);
  background-color: var(--page-promotions-welcome-bonus-card-bg);
  list-style: none;
}

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

.page-promotions-welcome-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-promotions-welcome-bonus__faq-qtext {
  flex-grow: 1;
}

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

.page-promotions-welcome-bonus__faq-item[open] .page-promotions-welcome-bonus__faq-toggle {
  content: '−';
}

.page-promotions-welcome-bonus__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--page-promotions-welcome-bonus-text-secondary);
  line-height: 1.7;
  background-color: var(--page-promotions-welcome-bonus-card-bg);
  border-top: 1px solid var(--page-promotions-welcome-bonus-divider-color);
}

.page-promotions-welcome-bonus__final-cta-section {
  padding-top: 50px;
  padding-bottom: 80px;
  text-align: center;
}

.page-promotions-welcome-bonus__final-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions-welcome-bonus__btn-large {
  padding: 18px 40px;
  font-size: 1.25em;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-welcome-bonus__hero-content {
    padding: 0 20px;
  }
  .page-promotions-welcome-bonus__grid,
  .page-promotions-welcome-bonus__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-welcome-bonus {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions-welcome-bonus__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-promotions-welcome-bonus__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-promotions-welcome-bonus__main-title {
    font-size: clamp(2em, 8vw, 2.5em);
    margin-bottom: 10px;
  }

  .page-promotions-welcome-bonus__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-promotions-welcome-bonus__cta-button,
  .page-promotions-welcome-bonus__btn-primary,
  .page-promotions-welcome-bonus__btn-secondary,
  .page-promotions-welcome-bonus a[class*="button"],
  .page-promotions-welcome-bonus 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;
    text-align: center;
  }
  
  .page-promotions-welcome-bonus__cta-button.page-promotions-welcome-bonus__btn-large {
    padding: 15px 25px !important;
    font-size: 1.1em !important;
  }

  .page-promotions-welcome-bonus__content-area {
    padding: 30px 15px;
  }

  .page-promotions-welcome-bonus__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 20px;
  }

  .page-promotions-welcome-bonus__text-block {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-promotions-welcome-bonus__grid,
  .page-promotions-welcome-bonus__features-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-welcome-bonus__card,
  .page-promotions-welcome-bonus__feature-card,
  .page-promotions-welcome-bonus__faq-item,
  .page-promotions-welcome-bonus__step-item,
  .page-promotions-welcome-bonus__term-item {
    padding: 20px;
    margin-bottom: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-promotions-welcome-bonus__step-item {
    padding-left: 70px;
  }

  .page-promotions-welcome-bonus__step-item::before {
    left: 20px;
    top: 20px;
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }

  .page-promotions-welcome-bonus__card-image,
  .page-promotions-welcome-bonus__feature-icon {
    height: 180px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-welcome-bonus__card-title {
    font-size: 1.2em;
  }

  .page-promotions-welcome-bonus__faq-item summary {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-promotions-welcome-bonus__faq-answer {
    padding: 15px 20px;
  }
  
  /* Image and Video responsive overrides */
  .page-promotions-welcome-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-promotions-welcome-bonus__hero-image-wrapper,
  .page-promotions-welcome-bonus__content-area,
  .page-promotions-welcome-bonus__grid,
  .page-promotions-welcome-bonus__features-grid,
  .page-promotions-welcome-bonus__faq-list,
  .page-promotions-welcome-bonus__steps-list,
  .page-promotions-welcome-bonus__terms-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-promotions-welcome-bonus__hero-section,
  .page-promotions-welcome-bonus__introduction-section,
  .page-promotions-welcome-bonus__details-section,
  .page-promotions-welcome-bonus__how-to-claim-section,
  .page-promotions-welcome-bonus__terms-conditions-section,
  .page-promotions-welcome-bonus__why-choose-section,
  .page-promotions-welcome-bonus__faq-section,
  .page-promotions-welcome-bonus__final-cta-section {
    padding-left: 0;
    padding-right: 0;
  }
  
  .page-promotions-welcome-bonus__cta-buttons,
  .page-promotions-welcome-bonus__button-group,
  .page-promotions-welcome-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;
  }
}