.page-promo-welcome-bonus {
  color: #333333; /* Dark text on default light body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-promo-welcome-bonus__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  background-color: #0A2463; /* Dark blue background for hero */
  color: #ffffff;
  text-align: center;
  padding-bottom: 80px;
  overflow: hidden;
}

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

.page-promo-welcome-bonus__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E3B23C;
  font-weight: 700;
  line-height: 1.2;
}

.page-promo-welcome-bonus__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo-welcome-bonus__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promo-welcome-bonus__button {
  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.2s ease;
  min-width: 200px;
  text-align: center;
  cursor: pointer;
}

.page-promo-welcome-bonus__button--primary {
  background-color: #E3B23C;
  color: #0A2463;
  border: 2px solid #E3B23C;
}

.page-promo-welcome-bonus__button--primary:hover {
  background-color: #f5c765;
  transform: translateY(-3px);
}

.page-promo-welcome-bonus__button--secondary {
  background-color: transparent;
  color: #E3B23C;
  border: 2px solid #E3B23C;
}

.page-promo-welcome-bonus__button--secondary:hover {
  background-color: #E3B23C;
  color: #0A2463;
  transform: translateY(-3px);
}

.page-promo-welcome-bonus__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1600px;
  height: auto;
  z-index: 1;
  opacity: 0.2;
}

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

.page-promo-welcome-bonus__details-section,
.page-promo-welcome-bonus__why-choose-section,
.page-promo-welcome-bonus__games-showcase-section,
.page-promo-welcome-bonus__responsible-gaming-section,
.page-promo-welcome-bonus__cta-section,
.page-promo-welcome-bonus__faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.page-promo-welcome-bonus__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-promo-welcome-bonus__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555555;
}

.page-promo-welcome-bonus__details-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-promo-welcome-bonus__details-content {
  flex: 2;
}

.page-promo-welcome-bonus__details-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-promo-welcome-bonus__details-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-promo-welcome-bonus__details-subtitle {
  font-size: 1.8em;
  color: #0A2463;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promo-welcome-bonus__ordered-list,
.page-promo-welcome-bonus__unordered-list {
  list-style-position: inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-promo-welcome-bonus__list-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #555555;
}

.page-promo-welcome-bonus__list-item strong {
  color: #0A2463;
}

.page-promo-welcome-bonus__link {
  color: #0A2463;
  text-decoration: underline;
  font-weight: bold;
}

.page-promo-welcome-bonus__link:hover {
  color: #E3B23C;
}

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

.page-promo-welcome-bonus__feature-card {
  background-color: #f0f4f8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo-welcome-bonus__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-promo-welcome-bonus__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin: 0 auto 20px auto;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
  border-radius: 8px;
  object-fit: cover;
}

.page-promo-welcome-bonus__feature-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promo-welcome-bonus__feature-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo-welcome-bonus__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  min-width: 150px; /* Adjusted for smaller button, still > 200px image size */
}

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

.page-promo-welcome-bonus__category-card {
  background-color: #0A2463;
  color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-promo-welcome-bonus__category-card:hover {
  transform: translateY(-5px);
  background-color: #1a3a7a;
}

.page-promo-welcome-bonus__category-title {
  font-size: 1.8em;
  color: #E3B23C;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-promo-welcome-bonus__category-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-promo-welcome-bonus__cta-section {
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promo-welcome-bonus__cta-section .page-promo-welcome-bonus__section-title {
  color: #E3B23C;
}

.page-promo-welcome-bonus__cta-section .page-promo-welcome-bonus__paragraph {
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo-welcome-bonus__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.page-promo-welcome-bonus__cta-image-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1600px;
  height: auto;
  z-index: 1;
  opacity: 0.15;
}

.page-promo-welcome-bonus__cta-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promo-welcome-bonus__faq-item {
  background-color: #f0f4f8;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 25px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-promo-welcome-bonus__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
  font-weight: 600;
  cursor: pointer;
}

.page-promo-welcome-bonus__faq-question--active {
  color: #E3B23C;
}

.page-promo-welcome-bonus__faq-answer {
  font-size: 1.05em;
  color: #555555;
}

/* Mobile responsiveness */
@media (max-width: 992px) {
  .page-promo-welcome-bonus__hero-title {
    font-size: 2.5em;
  }
  .page-promo-welcome-bonus__section-title {
    font-size: 2em;
  }
  .page-promo-welcome-bonus__details-grid {
    flex-direction: column;
  }
  .page-promo-welcome-bonus__details-image-wrapper {
    order: -1; /* Image above content on mobile */
    margin-bottom: 30px;
  }
  .page-promo-welcome-bonus__hero-image-wrapper,
  .page-promo-welcome-bonus__cta-image-wrapper {
    opacity: 0.1;
  }
}

@media (max-width: 768px) {
  .page-promo-welcome-bonus__hero-title {
    font-size: 2em;
  }
  .page-promo-welcome-bonus__hero-description {
    font-size: 1em;
  }
  .page-promo-welcome-bonus__button {
    padding: 12px 25px;
    font-size: 1em;
    min-width: unset;
    width: 100%;
  }
  .page-promo-welcome-bonus__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo-welcome-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promo-welcome-bonus__paragraph,
  .page-promo-welcome-bonus__list-item,
  .page-promo-welcome-bonus__feature-description,
  .page-promo-welcome-bonus__category-description,
  .page-promo-welcome-bonus__faq-answer {
    font-size: 0.95em;
  }
  .page-promo-welcome-bonus__feature-card,
  .page-promo-welcome-bonus__category-card {
    padding: 20px;
  }
  .page-promo-welcome-bonus__feature-icon,
  .page-promo-welcome-bonus__details-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensures images are not too small */
    min-height: 200px;
  }
  /* Enforce max-width: 100% for all images in content area */
  .page-promo-welcome-bonus img {
    max-width: 100%;
    height: auto;
  }
  .page-promo-welcome-bonus__feature-icon,
  .page-promo-welcome-bonus__details-image,
  .page-promo-welcome-bonus__cta-image {
    width: 100%; /* Ensure images fill their container */
    height: auto;
  }
  .page-promo-welcome-bonus__hero-section,
  .page-promo-welcome-bonus__details-section,
  .page-promo-welcome-bonus__why-choose-section,
  .page-promo-welcome-bonus__games-showcase-section,
  .page-promo-welcome-bonus__responsible-gaming-section,
  .page-promo-welcome-bonus__cta-section,
  .page-promo-welcome-bonus__faq-section {
    padding: 30px 15px;
  }
}

@media (max-width: 480px) {
  .page-promo-welcome-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promo-welcome-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promo-welcome-bonus__button {
    font-size: 0.95em;
    padding: 10px 20px;
  }
  .page-promo-welcome-bonus__details-subtitle,
  .page-promo-welcome-bonus__feature-title,
  .page-promo-welcome-bonus__category-title,
  .page-promo-welcome-bonus__faq-question {
    font-size: 1.2em;
  }
}