/* style/promotions-welcome-bonus-details.css */
.page-promotions-welcome-bonus-details {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

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

.page-promotions-welcome-bonus-details__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  box-sizing: border-box;
}

.page-promotions-welcome-bonus-details__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-promotions-welcome-bonus-details__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

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

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

.page-promotions-welcome-bonus-details__cta-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.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-promotions-welcome-bonus-details__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #000080; /* Navy Blue for contrast */
  border: 2px solid #FFD700;
}

.page-promotions-welcome-bonus-details__btn-primary:hover {
  background-color: #e0b800;
  transform: translateY(-2px);
}

.page-promotions-welcome-bonus-details__btn-secondary {
  background-color: #000080; /* Navy Blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-promotions-welcome-bonus-details__btn-secondary:hover {
  background-color: #000066;
  transform: translateY(-2px);
}

.page-promotions-welcome-bonus-details__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text for light background */
  padding: 60px 0;
}

.page-promotions-welcome-bonus-details__dark-bg {
  background-color: #000080; /* Navy Blue */
  color: #ffffff; /* White text for dark background */
  padding: 60px 0;
}

.page-promotions-welcome-bonus-details__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 30px;
  color: inherit; /* Inherit color from parent section */
}

.page-promotions-welcome-bonus-details__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: inherit;
}

.page-promotions-welcome-bonus-details__text-highlight {
  color: #FFD700; /* Gold for highlights */
  font-weight: bold;
}

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

.page-promotions-welcome-bonus-details__benefit-card,
.page-promotions-welcome-bonus-details__step-card,
.page-promotions-welcome-bonus-details__tip-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-welcome-bonus-details__light-bg .page-promotions-welcome-bonus-details__benefit-card,
.page-promotions-welcome-bonus-details__light-bg .page-promotions-welcome-bonus-details__step-card,
.page-promotions-welcome-bonus-details__light-bg .page-promotions-welcome-bonus-details__tip-card {
  background-color: #f9f9f9;
  color: #333333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions-welcome-bonus-details__benefit-card:hover,
.page-promotions-welcome-bonus-details__step-card:hover,
.page-promotions-welcome-bonus-details__tip-card:hover {
  transform: translateY(-5px);
}

.page-promotions-welcome-bonus-details__benefit-card img,
.page-promotions-welcome-bonus-details__step-card img,
.page-promotions-welcome-bonus-details__tip-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block; /* Ensure it's not inline */
  object-fit: cover;
  width: 100%;
  min-height: 200px; /* Enforce minimum height */
}

.page-promotions-welcome-bonus-details__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-welcome-bonus-details__light-bg .page-promotions-welcome-bonus-details__card-title {
  color: #000080;
}

.page-promotions-welcome-bonus-details__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-welcome-bonus-details__terms-list li {
  background-color: #f0f0f0;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333333;
}

.page-promotions-welcome-bonus-details__terms-list li strong {
  color: #000080;
}

.page-promotions-welcome-bonus-details__dark-bg .page-promotions-welcome-bonus-details__terms-list li {
  background-color: rgba(255, 255, 255, 0.08);
  border-left-color: #FFD700;
  color: #ffffff;
}

.page-promotions-welcome-bonus-details__dark-bg .page-promotions-welcome-bonus-details__terms-list li strong {
  color: #FFD700;
}

.page-promotions-welcome-bonus-details__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions-welcome-bonus-details__dark-bg .page-promotions-welcome-bonus-details__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-promotions-welcome-bonus-details__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #f0f0f0;
  color: #000080;
  transition: background-color 0.3s ease;
}

.page-promotions-welcome-bonus-details__dark-bg .page-promotions-welcome-bonus-details__faq-question {
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFD700;
}

.page-promotions-welcome-bonus-details__faq-question:hover {
  background-color: #e6e6e6;
}

.page-promotions-welcome-bonus-details__dark-bg .page-promotions-welcome-bonus-details__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.page-promotions-welcome-bonus-details__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: inherit;
}

.page-promotions-welcome-bonus-details__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.page-promotions-welcome-bonus-details__dark-bg .page-promotions-welcome-bonus-details__faq-toggle {
  color: #FFD700;
}

.page-promotions-welcome-bonus-details__faq-item.active .page-promotions-welcome-bonus-details__faq-toggle {
  transform: rotate(45deg); /* Change to X or rotate for active state */
}

.page-promotions-welcome-bonus-details__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-promotions-welcome-bonus-details__faq-item.active .page-promotions-welcome-bonus-details__faq-answer {
  max-height: 1000px !important; /* Ensure it expands sufficiently */
  padding: 15px 20px;
}

.page-promotions-welcome-bonus-details__faq-answer p {
  margin: 0;
  color: inherit;
}

.page-promotions-welcome-bonus-details__conclusion-section {
  text-align: center;
}

.page-promotions-welcome-bonus-details__conclusion-section .page-promotions-welcome-bonus-details__cta-button {
  margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-welcome-bonus-details__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-welcome-bonus-details__section-title {
    font-size: 2em;
  }
  .page-promotions-welcome-bonus-details__hero-section {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .page-promotions-welcome-bonus-details__hero-section {
    height: 400px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-promotions-welcome-bonus-details__hero-title {
    font-size: 2em;
  }
  .page-promotions-welcome-bonus-details__hero-description {
    font-size: 1em;
  }
  .page-promotions-welcome-bonus-details__section-title {
    font-size: 1.8em;
  }
  .page-promotions-welcome-bonus-details__section-intro {
    font-size: 0.95em;
  }
  .page-promotions-welcome-bonus-details__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions-welcome-bonus-details__benefits-grid,
  .page-promotions-welcome-bonus-details__steps-grid,
  .page-promotions-welcome-bonus-details__tips-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-welcome-bonus-details__container,
  .page-promotions-welcome-bonus-details__section,
  .page-promotions-welcome-bonus-details__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-welcome-bonus-details img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-height: 200px !important; /* Ensure min height on mobile as well */
  }
  .page-promotions-welcome-bonus-details video,
  .page-promotions-welcome-bonus-details__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-welcome-bonus-details__video-section,
  .page-promotions-welcome-bonus-details__video-container,
  .page-promotions-welcome-bonus-details__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-promotions-welcome-bonus-details__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-promotions-welcome-bonus-details__faq-answer {
    padding: 0 15px;
  }
  .page-promotions-welcome-bonus-details__faq-item.active .page-promotions-welcome-bonus-details__faq-answer {
    padding: 10px 15px;
  }
  .page-promotions-welcome-bonus-details__terms-list li {
    font-size: 1em;
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-welcome-bonus-details__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-welcome-bonus-details__hero-description {
    font-size: 0.9em;
  }
  .page-promotions-welcome-bonus-details__section-title {
    font-size: 1.5em;
  }
  .page-promotions-welcome-bonus-details__cta-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}