/* style/promotions-welcome-bonus.css */
.page-promotions-welcome-bonus {
  font-family: 'Arial', sans-serif;
  color: #e5d1bb; /* Light beige for text on dark background */
  background-color: #1A2E44; /* Main dark background */
  line-height: 1.6;
}

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

.page-promotions-welcome-bonus__hero-section {
  background: linear-gradient(135deg, #1A2E44 0%, #0c1a29 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  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,dark_pattern,ww88]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions-welcome-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-welcome-bonus__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e5d1bb;
  position: relative;
  z-index: 1;
}

.page-promotions-welcome-bonus__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2E44; /* Dark text on gold button */
  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;
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
}

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

.page-promotions-welcome-bonus__cta-button--secondary {
  background-color: #2e4a6a;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-promotions-welcome-bonus__cta-button--secondary:hover {
  background-color: #3f5d81;
  color: #FFD700;
}

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

.page-promotions-welcome-bonus__text-link {
  display: block;
  margin-top: 20px;
  color: #FFD700;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-promotions-welcome-bonus__text-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

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

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

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

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

.page-promotions-welcome-bonus__content-section h3 {
  font-size: 1.8em;
  color: #e5d1bb;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus__content-section p {
  margin-bottom: 20px;
  color: #e5d1bb;
}

.page-promotions-welcome-bonus__content-section ul,
.page-promotions-welcome-bonus__content-section ol {
  margin-bottom: 20px;
  padding-left: 25px;
  color: #e5d1bb;
}

.page-promotions-welcome-bonus__content-section li {
  margin-bottom: 10px;
  color: #e5d1bb;
}

.page-promotions-welcome-bonus__content-section li strong {
  color: #FFD700;
}

.page-promotions-welcome-bonus__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-welcome-bonus__image-content {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__faq-item {
  background-color: #2e4a6a;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-welcome-bonus__faq-item p {
  color: #e5d1bb;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions-welcome-bonus__hero-title {
    font-size: 2.5em;
  }

  .page-promotions-welcome-bonus__hero-subtitle {
    font-size: 1.2em;
  }

  .page-promotions-welcome-bonus__section-title {
    font-size: 2em;
  }

  .page-promotions-welcome-bonus__content-section h3 {
    font-size: 1.5em;
  }

  .page-promotions-welcome-bonus__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-welcome-bonus__cta-button--large {
    padding: 15px 30px;
    font-size: 1.2em;
  }
}

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

  .page-promotions-welcome-bonus__hero-subtitle {
    font-size: 1em;
  }

  .page-promotions-welcome-bonus__section-title {
    font-size: 1.8em;
  }

  .page-promotions-welcome-bonus__content-section h3 {
    font-size: 1.3em;
  }

  .page-promotions-welcome-bonus__hero-section {
    padding: 60px 0;
  }

  .page-promotions-welcome-bonus__content-section {
    padding: 40px 0;
  }
}