/* style/promotions-welcome-bonus.css */
.page-promotions-welcome-bonus {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for main text on dark background */
  background-color: #0A2239; /* Main dark blue background */
}

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

.page-promotions-welcome-bonus__hero-section {
  background: linear-gradient(135deg, #0A2239 0%, #1a3a5a 100%); /* Dark blue gradient */
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-welcome-bonus__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,pattern,dark]') no-repeat center center/cover; /* Abstract pattern */
  opacity: 0.1;
  z-index: 0;
}

.page-promotions-welcome-bonus__main-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-promotions-welcome-bonus__subtitle {
  font-size: 1.4em;
  color: #C0C0C0; /* Lighter gray for subtitle */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-promotions-welcome-bonus__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.page-promotions-welcome-bonus__cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-promotions-welcome-bonus__hero-image {
  max-width: 80%;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-promotions-welcome-bonus__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-welcome-bonus__section:last-of-type {
  border-bottom: none;
}

.page-promotions-welcome-bonus__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promotions-welcome-bonus__text {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-welcome-bonus__text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-welcome-bonus__text a:hover {
  text-decoration: underline;
}

.page-promotions-welcome-bonus__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-welcome-bonus__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-promotions-welcome-bonus__steps-list li {
  background-color: #1a3a5a; /* Slightly lighter dark blue */
  margin-bottom: 25px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-left: 70px; /* Space for step number */
}

.page-promotions-welcome-bonus__steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: #FFD700; /* Gold step number */
  color: #0A2239; /* Dark blue text */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.5em;
}

.page-promotions-welcome-bonus__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions-welcome-bonus__step-description {
  font-size: 1em;
  color: #C0C0C0;
}

.page-promotions-welcome-bonus__list {
  list-style: none;
  padding: 0;
}

.page-promotions-welcome-bonus__list li {
  background-color: #1a3a5a;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-welcome-bonus__list-item-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions-welcome-bonus__list-item-description {
  font-size: 1em;
  color: #C0C0C0;
}

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

.page-promotions-welcome-bonus__feature-item {
  background-color: #1a3a5a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-promotions-welcome-bonus__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus__feature-description {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-promotions-welcome-bonus__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
}

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

.page-promotions-welcome-bonus__accordion-item {
  background-color: #1a3a5a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-welcome-bonus__accordion-header {
  background-color: #0A2239; /* Dark blue header */
  color: #FFD700; /* Gold text */
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  position: relative;
  padding-right: 60px; /* Space for arrow */
}

.page-promotions-welcome-bonus__accordion-header:hover {
  background-color: #1a3a5a; /* Slightly lighter on hover */
}

.page-promotions-welcome-bonus__accordion-header::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-welcome-bonus__accordion-header.active::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg); /* No rotation for minus */
}

.page-promotions-welcome-bonus__accordion-content {
  padding: 0 25px;
  background-color: #1a3a5a;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions-welcome-bonus__accordion-content p {
  color: #C0C0C0;
  padding-bottom: 20px;
  margin-top: 0;
}

.page-promotions-welcome-bonus__accordion-content.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-promotions-welcome-bonus__final-cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(45deg, #0A2239, #2c4a6e);
}

.page-promotions-welcome-bonus__final-cta-content {
  max-width: 900px;
}

.page-promotions-welcome-bonus__button-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions-welcome-bonus__secondary-button {
  display: inline-block;
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions-welcome-bonus__secondary-button:hover {
  background-color: #FFD700;
  color: #0A2239;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-welcome-bonus__main-title {
    font-size: 2.8em;
  }
  .page-promotions-welcome-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-welcome-bonus__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions-welcome-bonus__hero-image {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-promotions-welcome-bonus__hero-section {
    padding: 60px 0 30px;
  }
  .page-promotions-welcome-bonus__main-title {
    font-size: 2.2em;
  }
  .page-promotions-welcome-bonus__subtitle {
    font-size: 1.2em;
  }
  .page-promotions-welcome-bonus__cta-button, .page-promotions-welcome-bonus__secondary-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-welcome-bonus__section {
    padding: 40px 0;
  }
  .page-promotions-welcome-bonus__section-title {
    font-size: 1.8em;
  }
  .page-promotions-welcome-bonus__steps-list li {
    padding-left: 60px;
  }
  .page-promotions-welcome-bonus__steps-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    left: 15px;
    top: 15px;
  }
  .page-promotions-welcome-bonus__step-title {
    font-size: 1.4em;
  }
  .page-promotions-welcome-bonus__feature-title {
    font-size: 1.6em;
  }
  .page-promotions-welcome-bonus__accordion-header {
    font-size: 1.1em;
    padding: 18px 20px;
    padding-right: 50px;
  }
  .page-promotions-welcome-bonus__accordion-header::after {
    right: 20px;
  }
  .page-promotions-welcome-bonus__accordion-content {
    padding: 0 20px;
  }
  .page-promotions-welcome-bonus__button-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-welcome-bonus__main-title {
    font-size: 1.8em;
  }
  .page-promotions-welcome-bonus__subtitle {
    font-size: 1em;
  }
  .page-promotions-welcome-bonus__cta-button, .page-promotions-welcome-bonus__secondary-button {
    width: 100%;
    text-align: center;
    max-width: 300px;
  }
  .page-promotions-welcome-bonus__hero-image {
    max-width: 100%;
  }
  .page-promotions-welcome-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promotions-welcome-bonus__text {
    font-size: 0.95em;
  }
  .page-promotions-welcome-bonus__steps-list li {
    padding-left: 50px;
  }
  .page-promotions-welcome-bonus__steps-list li::before {
    width: 30px;
    height: 30px;
    font-size: 1.2em;
    left: 10px;
    top: 10px;
  }
  .page-promotions-welcome-bonus__step-title {
    font-size: 1.3em;
  }
  .page-promotions-welcome-bonus__feature-title {
    font-size: 1.4em;
  }
  .page-promotions-welcome-bonus__accordion-header {
    font-size: 1em;
    padding: 15px 15px;
    padding-right: 45px;
  }
  .page-promotions-welcome-bonus__accordion-header::after {
    right: 15px;
  }
  .page-promotions-welcome-bonus__accordion-content {
    padding: 0 15px;
  }
}