/* style/promo-welcome-bonus-details.css */
.page-promo-welcome-bonus-details {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: transparent; /* Body background from shared.css */
}

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

.page-promo-welcome-bonus-details__hero-section {
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  padding-top: var(--header-offset, 120px); /* Fixed header spacing for desktop */
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promo-welcome-bonus-details__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
  margin-bottom: 30px;
}

.page-promo-welcome-bonus-details__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promo-welcome-bonus-details__hero-title {
  font-size: clamp(2.5em, 4vw, 3.5em);
  color: #0A0A0A; /* Dark text for light background */
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-promo-welcome-bonus-details__hero-description {
  font-size: clamp(1em, 1.5vw, 1.25em);
  color: #111111;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo-welcome-bonus-details__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promo-welcome-bonus-details__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promo-welcome-bonus-details__section-title {
  font-size: 2.2em;
  color: #F2C14E; /* Primary color for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: 700;
}

.page-promo-welcome-bonus-details__intro-section,
.page-promo-welcome-bonus-details__why-choose {
  background-color: #111111; /* Card BG */
  padding: 60px 0;
  margin-bottom: 30px;
}

.page-promo-welcome-bonus-details__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
  text-align: justify;
}

.page-promo-welcome-bonus-details__how-to-claim {
  padding: 60px 0;
  margin-bottom: 30px;
}

.page-promo-welcome-bonus-details__steps-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.page-promo-welcome-bonus-details__steps-list {
  flex: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promo-welcome-bonus-details__step-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-left: 5px solid #F2C14E;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-promo-welcome-bonus-details__step-item:hover {
  transform: translateY(-5px);
}

.page-promo-welcome-bonus-details__step-title {
  color: #FFD36B; /* Glow color */
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promo-welcome-bonus-details__step-description {
  font-size: 1em;
  color: #FFF6D6;
}

.page-promo-welcome-bonus-details__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-promo-welcome-bonus-details__illustration-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-promo-welcome-bonus-details__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promo-welcome-bonus-details__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.page-promo-welcome-bonus-details__terms-conditions,
.page-promo-welcome-bonus-details__faq-section {
  background-color: #0A0A0A; /* Background */
  padding: 60px 0;
  margin-bottom: 30px;
}

.page-promo-welcome-bonus-details__dark-section .page-promo-welcome-bonus-details__section-title {
  color: #FFD36B;
}

.page-promo-welcome-bonus-details__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promo-welcome-bonus-details__list-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #FFF6D6;
  font-size: 1.05em;
  line-height: 1.5;
}

.page-promo-welcome-bonus-details__list-item strong {
  color: #F2C14E;
}

.page-promo-welcome-bonus-details__why-choose .page-promo-welcome-bonus-details__section-title {
  color: #F2C14E;
}

.page-promo-welcome-bonus-details__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo-welcome-bonus-details__reason-item {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-promo-welcome-bonus-details__reason-item:hover {
  transform: translateY(-5px);
}

.page-promo-welcome-bonus-details__reason-title {
  color: #FFD36B;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-promo-welcome-bonus-details__reason-description {
  color: #FFF6D6;
  font-size: 1em;
}

.page-promo-welcome-bonus-details__image-bottom {
  margin-top: 40px;
}

.page-promo-welcome-bonus-details__maximize-bonus {
  padding: 60px 0;
  margin-bottom: 30px;
}

.page-promo-welcome-bonus-details__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promo-welcome-bonus-details__faq-list {
  margin-top: 30px;
}

.page-promo-welcome-bonus-details__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promo-welcome-bonus-details__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: #F2C14E;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo-welcome-bonus-details__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-promo-welcome-bonus-details__faq-question h3 {
  margin: 0;
  color: #F2C14E;
  font-size: 1em; /* Adjust to fit parent font-size */
}

.page-promo-welcome-bonus-details__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD36B;
}

.page-promo-welcome-bonus-details__faq-item.active .page-promo-welcome-bonus-details__faq-toggle {
  transform: rotate(45deg);
}

.page-promo-welcome-bonus-details__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
}

.page-promo-welcome-bonus-details__faq-item.active .page-promo-welcome-bonus-details__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 20px;
}

.page-promo-welcome-bonus-details__faq-answer p {
  margin-top: 0;
  margin-bottom: 10px;
  color: #FFF6D6;
}

.page-promo-welcome-bonus-details__cta-section {
  padding: 60px 0 80px 0;
  text-align: center;
}

.page-promo-welcome-bonus-details__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  margin-top: 30px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promo-welcome-bonus-details__hero-title {
    font-size: 3em;
  }
  .page-promo-welcome-bonus-details__section-title {
    font-size: 2em;
  }
  .page-promo-welcome-bonus-details__step-title {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-promo-welcome-bonus-details__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header spacing */
    padding-bottom: 40px;
  }
  .page-promo-welcome-bonus-details__hero-title {
    font-size: 2.2em;
  }
  .page-promo-welcome-bonus-details__hero-description {
    font-size: 1em;
  }
  .page-promo-welcome-bonus-details__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo-welcome-bonus-details__section-title {
    font-size: 1.8em;
    padding-top: 30px;
  }
  .page-promo-welcome-bonus-details__intro-section,
  .page-promo-welcome-bonus-details__how-to-claim,
  .page-promo-welcome-bonus-details__terms-conditions,
  .page-promo-welcome-bonus-details__why-choose,
  .page-promo-welcome-bonus-details__maximize-bonus,
  .page-promo-welcome-bonus-details__faq-section,
  .page-promo-welcome-bonus-details__cta-section {
    padding: 40px 0;
  }
  .page-promo-welcome-bonus-details__steps-wrapper {
    flex-direction: column;
  }
  .page-promo-welcome-bonus-details__image-wrapper {
    min-width: unset;
    width: 100%;
  }
  .page-promo-welcome-bonus-details__content-grid {
    grid-template-columns: 1fr;
  }
  .page-promo-welcome-bonus-details img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promo-welcome-bonus-details__section,
  .page-promo-welcome-bonus-details__card,
  .page-promo-welcome-bonus-details__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promo-welcome-bonus-details__cta-button,
  .page-promo-welcome-bonus-details__btn-primary,
  .page-promo-welcome-bonus-details__btn-secondary,
  .page-promo-welcome-bonus-details a[class*="button"],
  .page-promo-welcome-bonus-details 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-promo-welcome-bonus-details__cta-buttons,
  .page-promo-welcome-bonus-details__button-group,
  .page-promo-welcome-bonus-details__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;
  }
  .page-promo-welcome-bonus-details__cta-buttons {
    display: flex;
    flex-direction: column; 
  }
}

@media (max-width: 480px) {
  .page-promo-welcome-bonus-details__hero-title {
    font-size: 1.8em;
  }
  .page-promo-welcome-bonus-details__section-title {
    font-size: 1.5em;
  }
  .page-promo-welcome-bonus-details__cta-button--large {
    padding: 15px 25px;
    font-size: 1.1em;
  }
}