/* style/promotions-welcome-bonus-details.css */
.page-promotions-welcome-bonus-details {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

.page-promotions-welcome-bonus-details__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-welcome-bonus-details__hero {
  background: linear-gradient(135deg, #003366 0%, #004080 100%); /* Deeper blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-promotions-welcome-bonus-details__hero-image-wrapper {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  opacity: 0.8;
  z-index: 0;
}

.page-promotions-welcome-bonus-details__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-promotions-welcome-bonus-details__hero .page-promotions-welcome-bonus-details__container {
  position: relative;
  z-index: 1;
}

.page-promotions-welcome-bonus-details__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-promotions-welcome-bonus-details__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-promotions-welcome-bonus-details__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-welcome-bonus-details__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions-welcome-bonus-details__cta-button--large {
  padding: 20px 40px;
  font-size: 1.5em;
}

.page-promotions-welcome-bonus-details__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-welcome-bonus-details__section:nth-of-type(even) {
  background-color: #fcfcfc;
}

.page-promotions-welcome-bonus-details__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-welcome-bonus-details__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-promotions-welcome-bonus-details__sub-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus-details__what-is-bonus p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-promotions-welcome-bonus-details__image-text-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-promotions-welcome-bonus-details__image-text-layout .page-promotions-welcome-bonus-details__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-promotions-welcome-bonus-details__image-left {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-welcome-bonus-details__text-content {
  flex: 2;
  min-width: 300px;
}

.page-promotions-welcome-bonus-details__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promotions-welcome-bonus-details__list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #444;
}

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

.page-promotions-welcome-bonus-details__step-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.page-promotions-welcome-bonus-details__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions-welcome-bonus-details__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #003366;
  color: #FFD700;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-welcome-bonus-details__step-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus-details__step-item p {
  color: #666;
  font-size: 1em;
}

.page-promotions-welcome-bonus-details__inline-cta {
  display: inline-block;
  margin-top: 15px;
  color: #003366;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-promotions-welcome-bonus-details__inline-cta:hover {
  color: #FFD700;
  border-color: #003366;
}

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

.page-promotions-welcome-bonus-details__image-full-width {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.page-promotions-welcome-bonus-details__term-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #003366;
}

.page-promotions-welcome-bonus-details__term-item h3 {
  font-size: 1.5em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus-details__term-item p {
  color: #555;
  font-size: 1em;
}

.page-promotions-welcome-bonus-details__emphasis {
  font-weight: bold;
  color: #003366;
  text-align: center;
  margin-top: 40px;
  font-size: 1.2em;
}

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

.page-promotions-welcome-bonus-details__feature-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.page-promotions-welcome-bonus-details__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions-welcome-bonus-details__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-promotions-welcome-bonus-details__feature-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus-details__feature-item p {
  color: #666;
  font-size: 1em;
}

.page-promotions-welcome-bonus-details__responsible-gambling p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-promotions-welcome-bonus-details__responsible-gambling .page-promotions-welcome-bonus-details__list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23003366"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #444;
}

.page-promotions-welcome-bonus-details__accordion {
  margin-top: 40px;
}

.page-promotions-welcome-bonus-details__accordion-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-welcome-bonus-details__accordion-header {
  background-color: #003366;
  color: #ffffff;
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions-welcome-bonus-details__accordion-header:hover {
  background-color: #004080;
}

.page-promotions-welcome-bonus-details__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-welcome-bonus-details__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-welcome-bonus-details__accordion-content {
  padding: 0 25px;
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-welcome-bonus-details__accordion-content.open {
  max-height: 300px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-promotions-welcome-bonus-details__accordion-content p {
  color: #555;
  font-size: 1em;
  margin-bottom: 0;
}

.page-promotions-welcome-bonus-details__final-cta {
  background-color: #003366;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  border-top: 5px solid #FFD700;
}

.page-promotions-welcome-bonus-details__final-cta .page-promotions-welcome-bonus-details__section-title {
  color: #FFD700;
  margin-bottom: 30px;
}

.page-promotions-welcome-bonus-details__final-cta p {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-welcome-bonus-details__title {
    font-size: 2.5em;
  }
  .page-promotions-welcome-bonus-details__section-title {
    font-size: 2em;
  }
  .page-promotions-welcome-bonus-details__sub-title {
    font-size: 1.6em;
  }
  .page-promotions-welcome-bonus-details__image-text-layout {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions-welcome-bonus-details__image-text-layout .page-promotions-welcome-bonus-details__image-wrapper {
    order: -1; /* Image appears above text on mobile */
  }
}

@media (max-width: 768px) {
  .page-promotions-welcome-bonus-details__hero {
    padding: 60px 0;
  }
  .page-promotions-welcome-bonus-details__title {
    font-size: 2em;
  }
  .page-promotions-welcome-bonus-details__subtitle {
    font-size: 1em;
  }
  .page-promotions-welcome-bonus-details__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-promotions-welcome-bonus-details__section {
    padding: 40px 0;
  }
  .page-promotions-welcome-bonus-details__section-title {
    font-size: 1.8em;
  }
  .page-promotions-welcome-bonus-details__steps-grid, 
  .page-promotions-welcome-bonus-details__terms-grid, 
  .page-promotions-welcome-bonus-details__features-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-welcome-bonus-details__hero-image-wrapper {
    bottom: -30px;
    max-width: 500px;
  }
  .page-promotions-welcome-bonus-details__final-cta {
    padding: 60px 0;
  }
  .page-promotions-welcome-bonus-details__final-cta .page-promotions-welcome-bonus-details__section-title {
    font-size: 2em;
  }
  .page-promotions-welcome-bonus-details__final-cta p {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-welcome-bonus-details__title {
    font-size: 1.8em;
  }
  .page-promotions-welcome-bonus-details__section-title {
    font-size: 1.6em;
  }
  .page-promotions-welcome-bonus-details__sub-title {
    font-size: 1.4em;
  }
  .page-promotions-welcome-bonus-details__cta-button--large {
    padding: 15px 30px;
    font-size: 1.2em;
  }
  .page-promotions-welcome-bonus-details__hero-image-wrapper {
    bottom: -10px;
    max-width: 350px;
  }
  .page-promotions-welcome-bonus-details__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions-welcome-bonus-details__accordion-content.open {
    padding: 15px 20px;
  }
}