/* style/promotions-welcome-bonus.css */
.page-promotions-welcome-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: var(--background-color, #ffffff); /* Inherit from shared, fallback to white */
}

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

.page-promotions-welcome-bonus__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-welcome-bonus__text-block {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-welcome-bonus__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, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.page-promotions-welcome-bonus__cta-button--primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-promotions-welcome-bonus__cta-button--primary:hover {
  background-color: #1a7bb0;
  border-color: #1a7bb0;
}

.page-promotions-welcome-bonus__cta-button--secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-promotions-welcome-bonus__cta-button--secondary:hover {
  background-color: #f0f8ff;
  color: #1a7bb0;
  border-color: #1a7bb0;
}

.page-promotions-welcome-bonus__hero-section {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
}

.page-promotions-welcome-bonus__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-promotions-welcome-bonus__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.page-promotions-welcome-bonus__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-promotions-welcome-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions-welcome-bonus__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions-welcome-bonus__introduction-section,
.page-promotions-welcome-bonus__how-to-claim-section,
.page-promotions-welcome-bonus__faq-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-promotions-welcome-bonus__benefits-section,
.page-promotions-welcome-bonus__terms-section,
.page-promotions-welcome-bonus__cta-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #ffffff;
}

.page-promotions-welcome-bonus__benefits-section .page-promotions-welcome-bonus__section-title,
.page-promotions-welcome-bonus__terms-section .page-promotions-welcome-bonus__section-title,
.page-promotions-welcome-bonus__cta-section .page-promotions-welcome-bonus__section-title {
  color: #ffffff;
}

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

.page-promotions-welcome-bonus__benefit-card {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-welcome-bonus__benefit-card .page-promotions-welcome-bonus__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-promotions-welcome-bonus__benefit-card .page-promotions-welcome-bonus__card-text {
  font-size: 1em;
  color: #f0f0f0;
}

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

.page-promotions-welcome-bonus__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

.page-promotions-welcome-bonus__step-card .page-promotions-welcome-bonus__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-promotions-welcome-bonus__step-card .page-promotions-welcome-bonus__card-text {
  font-size: 1em;
  color: #555555;
}

.page-promotions-welcome-bonus__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #26A9E0;
  color: #ffffff;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(38, 169, 224, 0.3);
}

.page-promotions-welcome-bonus__terms-list {
  list-style: disc;
  max-width: 800px;
  margin: 40px auto;
  padding-left: 20px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-promotions-welcome-bonus__terms-item {
  margin-bottom: 10px;
}

.page-promotions-welcome-bonus__terms-section a {
  color: #ffffff;
  text-decoration: underline;
}

.page-promotions-welcome-bonus__terms-section a:hover {
  color: #f0f8ff;
}

.page-promotions-welcome-bonus__faq-list {
  max-width: 900px;
  margin: 40px auto;
}

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

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

.page-promotions-welcome-bonus__faq-question:hover {
  background-color: #f0f0f0;
}

.page-promotions-welcome-bonus__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-promotions-welcome-bonus__faq-item.active .page-promotions-welcome-bonus__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-welcome-bonus__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
  font-size: 1.05em;
}

.page-promotions-welcome-bonus__faq-item.active .page-promotions-welcome-bonus__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-promotions-welcome-bonus__faq-answer p {
  margin-bottom: 1em;
  text-align: left;
}

.page-promotions-welcome-bonus__faq-answer a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-promotions-welcome-bonus__faq-answer a:hover {
  color: #1a7bb0;
}

.page-promotions-welcome-bonus__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-welcome-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-welcome-bonus__hero-description {
    font-size: 1.2em;
  }
  .page-promotions-welcome-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-welcome-bonus__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-promotions-welcome-bonus {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions-welcome-bonus__hero-section {
    height: 60vh;
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .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;
    margin-bottom: 30px;
  }
  .page-promotions-welcome-bonus__text-block {
    font-size: 1em;
    padding: 0 15px;
  }
  .page-promotions-welcome-bonus__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-promotions-welcome-bonus__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 20px;
  }
  .page-promotions-welcome-bonus__introduction-section,
  .page-promotions-welcome-bonus__benefits-section,
  .page-promotions-welcome-bonus__how-to-claim-section,
  .page-promotions-welcome-bonus__terms-section,
  .page-promotions-welcome-bonus__faq-section,
  .page-promotions-welcome-bonus__cta-section {
    padding: 50px 0;
  }
  .page-promotions-welcome-bonus__benefits-grid,
  .page-promotions-welcome-bonus__steps-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
  .page-promotions-welcome-bonus__benefit-card,
  .page-promotions-welcome-bonus__step-card {
    padding: 25px;
  }
  .page-promotions-welcome-bonus__terms-list {
    padding-left: 35px;
    margin: 30px auto;
  }
  .page-promotions-welcome-bonus__faq-list {
    padding: 0 15px;
  }
  .page-promotions-welcome-bonus__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-promotions-welcome-bonus__faq-answer {
    padding: 0 20px;
  }
  .page-promotions-welcome-bonus__faq-item.active .page-promotions-welcome-bonus__faq-answer {
    padding: 10px 20px;
  }
  /* Mobile image responsiveness */
  .page-promotions-welcome-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-welcome-bonus__section,
  .page-promotions-welcome-bonus__card,
  .page-promotions-welcome-bonus__container,
  .page-promotions-welcome-bonus__benefits-grid,
  .page-promotions-welcome-bonus__steps-grid,
  .page-promotions-welcome-bonus__faq-list,
  .page-promotions-welcome-bonus__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
  .page-promotions-welcome-bonus__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Consistent with common */
  }
}