/* style/promotions-welcome-bonus.css */
.page-promotions-welcome-bonus {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light gray for general text on dark background */
  background-color: #0A2463; /* Main dark blue 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, #0A2463 0%, #06173d 100%); /* Darker blue gradient */
  padding: 100px 0 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-welcome-bonus .hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.page-promotions-welcome-bonus .hero-content {
  max-width: 800px;
}

.page-promotions-welcome-bonus .hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-welcome-bonus .hero-description {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-promotions-welcome-bonus .hero-image-wrapper {
  max-width: 600px;
  margin-top: 30px;
}

.page-promotions-welcome-bonus .hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-welcome-bonus .introduction-section,
.page-promotions-welcome-bonus .bonus-types-section,
.page-promotions-welcome-bonus .how-to-claim-section,
.page-promotions-welcome-bonus .terms-conditions-section,
.page-promotions-welcome-bonus .why-nohu65-section,
.page-promotions-welcome-bonus .faq-section,
.page-promotions-welcome-bonus .cta-section {
  padding: 60px 0;
  background-color: #0A2463;
}

.page-promotions-welcome-bonus .introduction-section p,
.page-promotions-welcome-bonus .terms-conditions-section p,
.page-promotions-welcome-bonus .why-nohu65-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #F8F8F8;
}

.page-promotions-welcome-bonus .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  border: none;
}

.page-promotions-welcome-bonus .btn-primary {
  background-color: #FFD700; /* Gold primary button */
  color: #0A2463; /* Dark blue text on gold */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-welcome-bonus .btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions-welcome-bonus .btn-secondary {
  background-color: #0A2463;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(10, 36, 99, 0.4);
}

.page-promotions-welcome-bonus .btn-secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions-welcome-bonus .btn-outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions-welcome-bonus .btn-outline:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-3px);
}

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

.page-promotions-welcome-bonus .bonus-card,
.page-promotions-welcome-bonus .feature-card,
.page-promotions-welcome-bonus .term-item {
  background-color: #1a3a7c; /* Slightly lighter dark blue for cards */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-welcome-bonus .bonus-card:hover,
.page-promotions-welcome-bonus .feature-card:hover,
.page-promotions-welcome-bonus .term-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-promotions-welcome-bonus .card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.page-promotions-welcome-bonus .bonus-card .card-title,
.page-promotions-welcome-bonus .feature-card .card-title,
.page-promotions-welcome-bonus .term-item .term-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus .bonus-card p,
.page-promotions-welcome-bonus .feature-card p,
.page-promotions-welcome-bonus .term-item p {
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-promotions-welcome-bonus .how-to-claim-section .steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.page-promotions-welcome-bonus .how-to-claim-section .steps-list li {
  background-color: #1a3a7c;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-welcome-bonus .how-to-claim-section .steps-list li h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus .how-to-claim-section .steps-list li p {
  color: #E0E0E0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions-welcome-bonus .step-icon-wrapper {
  background-color: #FFD700;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.page-promotions-welcome-bonus .step-icon {
  width: 60px;
  height: 60px;
  filter: invert(1) brightness(0.2); /* Make icon dark on gold background */
}

.page-promotions-welcome-bonus .faq-section .faq-item {
  background-color: #1a3a7c;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus .faq-section .faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions-welcome-bonus .faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

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

.page-promotions-welcome-bonus .faq-answer {
  font-size: 1.05em;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding-top 0.5s ease-out;
  padding-top: 0;
}

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

.page-promotions-welcome-bonus .cta-section {
  text-align: center;
  background-color: #06173d; /* Even darker blue */
  padding: 80px 0;
}

.page-promotions-welcome-bonus .cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-promotions-welcome-bonus .btn-large {
  padding: 18px 40px;
  font-size: 1.3em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-welcome-bonus .hero-title {
    font-size: 2.8em;
  }
  .page-promotions-welcome-bonus .hero-description {
    font-size: 1.1em;
  }
  .page-promotions-welcome-bonus .section-title {
    font-size: 2.2em;
  }
  .page-promotions-welcome-bonus .cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promotions-welcome-bonus .hero-section .container {
    flex-direction: column;
  }
  .page-promotions-welcome-bonus .hero-title {
    font-size: 2.2em;
  }
  .page-promotions-welcome-bonus .hero-description {
    font-size: 1em;
  }
  .page-promotions-welcome-bonus .section-title {
    font-size: 1.8em;
  }
  .page-promotions-welcome-bonus .bonus-grid,
  .page-promotions-welcome-bonus .feature-grid,
  .page-promotions-welcome-bonus .terms-grid,
  .page-promotions-welcome-bonus .how-to-claim-section .steps-list {
    grid-template-columns: 1fr;
  }
  .page-promotions-welcome-bonus .cta-title {
    font-size: 2em;
  }
  .page-promotions-welcome-bonus .btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-welcome-bonus .hero-title {
    font-size: 1.8em;
  }
  .page-promotions-welcome-bonus .hero-description {
    font-size: 0.9em;
  }
  .page-promotions-welcome-bonus .section-title {
    font-size: 1.5em;
  }
  .page-promotions-welcome-bonus .bonus-card .card-title,
  .page-promotions-welcome-bonus .feature-card .card-title,
  .page-promotions-welcome-bonus .term-item .term-title,
  .page-promotions-welcome-bonus .how-to-claim-section .steps-list li h3 {
    font-size: 1.4em;
  }
  .page-promotions-welcome-bonus .faq-section .faq-question {
    font-size: 1.2em;
  }
  .page-promotions-welcome-bonus .cta-title {
    font-size: 1.8em;
  }
  .page-promotions-welcome-bonus .btn {
    padding: 12px 20px;
    font-size: 0.9em;
  }
}