/* style/promo-welcome-bonus.css */
.page-promo-welcome-bonus {
  color: #333333; /* Dark text for light body background */
}

.page-promo-welcome-bonus__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  padding-bottom: 60px;
  text-align: center;
  background-color: #1A237E; /* Primary color background */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promo-welcome-bonus__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  color: #ffffff;
}

.page-promo-welcome-bonus__hero-title {
  font-size: 3.5em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Auxiliary color for emphasis */
}

.page-promo-welcome-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promo-welcome-bonus__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for button */
  color: #1A237E; /* Primary color for button text */
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-promo-welcome-bonus__hero-button:hover {
  background-color: #e5c000;
  transform: translateY(-3px);
}

.page-promo-welcome-bonus__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-promo-welcome-bonus__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-promo-welcome-bonus__section {
  padding: 60px 20px;
  background-color: #f8f8f8; /* Light background for sections */
}

.page-promo-welcome-bonus__section:nth-of-type(odd) {
  background-color: #f0f0f0;
}

.page-promo-welcome-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-promo-welcome-bonus__heading {
  font-size: 2.8em;
  font-weight: 700;
  color: #1A237E; /* Primary color for headings */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promo-welcome-bonus__heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background-color: #FFD700; /* Auxiliary color for underline */
  margin: 15px auto 0;
  border-radius: 3px;
}

.page-promo-welcome-bonus__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promo-welcome-bonus__button {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  background-color: #1A237E; /* Primary color for buttons */
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1em;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.page-promo-welcome-bonus__button:hover {
  background-color: #0e166a;
}

.page-promo-welcome-bonus__button--center {
  margin-left: auto;
  margin-right: auto;
}

.page-promo-welcome-bonus__button--large {
  padding: 18px 50px;
  font-size: 1.3em;
  border-radius: 50px;
  background-color: #FFD700;
  color: #1A237E;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-promo-welcome-bonus__button--large:hover {
  background-color: #e5c000;
}

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

.page-promo-welcome-bonus__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-promo-welcome-bonus__step-title {
  font-size: 1.5em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-promo-welcome-bonus__step-description {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-promo-welcome-bonus__image-container {
  margin: 50px auto;
  text-align: center;
  max-width: 1000px; /* Constrain image width */
}

.page-promo-welcome-bonus__image-container img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  margin: 0 auto; /* Center image */
  min-width: 200px;
  min-height: 200px;
}

.page-promo-welcome-bonus__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promo-welcome-bonus__list-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.page-promo-welcome-bonus__list-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-promo-welcome-bonus__list-item-title {
  font-size: 1.4em;
  color: #1A237E;
  margin-bottom: 10px;
}

.page-promo-welcome-bonus__list-item-description {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

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

.page-promo-welcome-bonus__game-card {
  background-color: #1A237E;
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-promo-welcome-bonus__game-card:hover {
  background-color: #2a358f;
}

.page-promo-welcome-bonus__game-card-title {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-promo-welcome-bonus__game-card-title a {
  color: #FFD700; /* Auxiliary color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo-welcome-bonus__game-card-title a:hover {
  color: #ffffff;
}

.page-promo-welcome-bonus__game-card-description {
  font-size: 1em;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-promo-welcome-bonus__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-promo-welcome-bonus__benefit-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-promo-welcome-bonus__benefit-title {
  font-size: 1.5em;
  color: #1A237E;
  margin-bottom: 10px;
}

.page-promo-welcome-bonus__benefit-description {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-promo-welcome-bonus__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promo-welcome-bonus__tip-item {
  background-color: #ffffff;
  padding: 25px;
  border-left: 5px solid #FFD700; /* Accent with auxiliary color */
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.page-promo-welcome-bonus__tip-title {
  font-size: 1.4em;
  color: #1A237E;
  margin-bottom: 10px;
}

.page-promo-welcome-bonus__tip-description {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-promo-welcome-bonus__faq-item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promo-welcome-bonus__faq-question {
  font-size: 1.3em;
  color: #1A237E;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo-welcome-bonus__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-promo-welcome-bonus__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promo-welcome-bonus__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding-top: 0;
}

.page-promo-welcome-bonus__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content length */
  padding-top: 15px;
}

.page-promo-welcome-bonus__container--cta {
  text-align: center;
  background-color: #1A237E; /* Primary color background */
  color: #ffffff;
  padding: 60px 20px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.page-promo-welcome-bonus__container--cta .page-promo-welcome-bonus__heading {
  color: #FFD700;
}

.page-promo-welcome-bonus__container--cta .page-promo-welcome-bonus__heading::after {
  background-color: #ffffff;
}

.page-promo-welcome-bonus__container--cta .page-promo-welcome-bonus__paragraph {
  color: #f0f0f0;
}

.page-promo-welcome-bonus__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: brightness(0.4);
}

.page-promo-welcome-bonus__cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-promo-welcome-bonus__container--cta .page-promo-welcome-bonus__heading,
.page-promo-welcome-bonus__container--cta .page-promo-welcome-bonus__paragraph,
.page-promo-welcome-bonus__container--cta .page-promo-welcome-bonus__button {
  position: relative;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo-welcome-bonus__hero-title {
    font-size: 3em;
  }

  .page-promo-welcome-bonus__hero-description {
    font-size: 1.2em;
  }

  .page-promo-welcome-bonus__heading {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promo-welcome-bonus__hero-section {
    padding-top: var(--header-offset, 120px);
    padding: 40px 15px;
  }

  .page-promo-welcome-bonus__hero-title {
    font-size: 2.5em;
  }

  .page-promo-welcome-bonus__hero-description {
    font-size: 1em;
  }

  .page-promo-welcome-bonus__hero-button {
    padding: 12px 30px;
    font-size: 1em;
  }

  .page-promo-welcome-bonus__section {
    padding: 40px 15px;
  }

  .page-promo-welcome-bonus__heading {
    font-size: 1.8em;
  }

  .page-promo-welcome-bonus__paragraph {
    font-size: 0.95em;
  }

  .page-promo-welcome-bonus__steps-grid,
  .page-promo-welcome-bonus__game-cards-grid,
  .page-promo-welcome-bonus__benefits-list {
    grid-template-columns: 1fr;
  }

  .page-promo-welcome-bonus__step-card,
  .page-promo-welcome-bonus__list-item,
  .page-promo-welcome-bonus__game-card,
  .page-promo-welcome-bonus__benefit-item,
  .page-promo-welcome-bonus__tip-item,
  .page-promo-welcome-bonus__faq-item {
    padding: 20px;
  }

  .page-promo-welcome-bonus__step-title,
  .page-promo-welcome-bonus__list-item-title,
  .page-promo-welcome-bonus__game-card-title,
  .page-promo-welcome-bonus__benefit-title,
  .page-promo-welcome-bonus__tip-title,
  .page-promo-welcome-bonus__faq-question {
    font-size: 1.2em;
  }

  /* Ensure content area images are responsive and don't overflow */
  .page-promo-welcome-bonus__image-container img,
  .page-promo-welcome-bonus__cta-image img,
  .page-promo-welcome-bonus__hero-image img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-promo-welcome-bonus__hero-title {
    font-size: 2em;
  }

  .page-promo-welcome-bonus__hero-description {
    font-size: 0.9em;
  }

  .page-promo-welcome-bonus__heading {
    font-size: 1.5em;
  }

  .page-promo-welcome-bonus__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}