/* style/promotions-welcome-bonus.css */

/* General Styles for the promotions-welcome-bonus page */
.page-promotions-welcome-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a2e; /* Body background color */
}

.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; /* Brand primary color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-welcome-bonus__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Light text for readability on dark background */
}

.page-promotions-welcome-bonus__highlight {
  color: #26A9E0;
  font-weight: bold;
}

/* Hero Section */
.page-promotions-welcome-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0;
  min-height: 600px;
  overflow: hidden;
  color: #ffffff;
  background-color: #1a1a2e; /* Ensure dark background for hero */
}

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

.page-promotions-welcome-bonus__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-promotions-welcome-bonus__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  color: #f0f0f0;
}

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

/* Buttons */
.page-promotions-welcome-bonus__btn-primary,
.page-promotions-welcome-bonus__btn-secondary {
  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;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-welcome-bonus__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-promotions-welcome-bonus__btn-primary:hover {
  background-color: #1e87b8;
  border-color: #1e87b8;
}

.page-promotions-welcome-bonus__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-promotions-welcome-bonus__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
}

.page-promotions-welcome-bonus__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promotions-welcome-bonus__btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-promotions-welcome-bonus__btn-center {
  display: block;
  margin: 30px auto;
  max-width: 300px;
}

.page-promotions-welcome-bonus__center-cta {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Video Section */
.page-promotions-welcome-bonus__video-section {
  background-color: #1a1a2e;
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
}

.page-promotions-welcome-bonus__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 0 auto 30px;
  border-radius: 10px;
}

.page-promotions-welcome-bonus__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.page-promotions-welcome-bonus__video-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
  color: #f0f0f0;
}

/* Content Area */
.page-promotions-welcome-bonus__content-area {
  padding: 60px 0;
}

.page-promotions-welcome-bonus__light-bg {
  background-color: #FFFFFF;
  color: #333333; /* Dark text for light background */
}

.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__section-title,
.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__highlight {
  color: #26A9E0;
}

.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__text-block,
.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__terms-heading,
.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__terms-text,
.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__faq-heading,
.page-promotions-welcome-bonus__light-bg .page-promotions-welcome-bonus__faq-answer p {
  color: #333333;
}

.page-promotions-welcome-bonus__dark-bg {
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-promotions-welcome-bonus__dark-bg .page-promotions-welcome-bonus__section-title,
.page-promotions-welcome-bonus__dark-bg .page-promotions-welcome-bonus__highlight {
  color: #26A9E0;
}

.page-promotions-welcome-bonus__dark-bg .page-promotions-welcome-bonus__text-block,
.page-promotions-welcome-bonus__dark-bg .page-promotions-welcome-bonus__terms-heading,
.page-promotions-welcome-bonus__dark-bg .page-promotions-welcome-bonus__terms-text,
.page-promotions-welcome-bonus__dark-bg .page-promotions-welcome-bonus__faq-heading,
.page-promotions-welcome-bonus__dark-bg .page-promotions-welcome-bonus__faq-answer p {
  color: #f0f0f0;
}

.page-promotions-welcome-bonus__image-full-width {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  min-width: 200px; /* Enforce min image width */
  min-height: 200px; /* Enforce min image height */
}

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

.page-promotions-welcome-bonus__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-welcome-bonus__card-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-welcome-bonus__card-text {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
  color: #f0f0f0;
}

.page-promotions-welcome-bonus__card-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
  color: #f0f0f0;
}

.page-promotions-welcome-bonus__card-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.page-promotions-welcome-bonus__card-list li::before {
  content: '✔';
  color: #26A9E0;
  position: absolute;
  left: 0;
  top: 0;
}

/* Terms & Conditions */
.page-promotions-welcome-bonus__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions-welcome-bonus__terms-item {
  background-color: #f8f8f8;
  border-left: 5px solid #26A9E0;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.page-promotions-welcome-bonus__terms-heading {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-promotions-welcome-bonus__terms-text {
  font-size: 1em;
  color: #333333;
}

/* Step-by-Step Guide */
.page-promotions-welcome-bonus__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-welcome-bonus__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  position: relative;
}

.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: 15px;
  border: 3px solid #FFFFFF;
}

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

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

/* FAQ Section */
.page-promotions-welcome-bonus__faq-section {
  padding: 60px 0;
}

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

.page-promotions-welcome-bonus__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.page-promotions-welcome-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #FFFFFF;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  color: #333333;
}

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

.page-promotions-welcome-bonus__faq-heading {
  font-size: 1.2em;
  margin: 0;
  color: #26A9E0;
}

.page-promotions-welcome-bonus__faq-toggle {
  font-size: 1.8em;
  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 20px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: #FFFFFF;
}

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

.page-promotions-welcome-bonus__faq-answer p {
  margin: 0;
  color: #333333;
}

/* CTA Section */
.page-promotions-welcome-bonus__cta-section {
  padding: 80px 0;
  text-align: center;
}

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

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

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

@media (max-width: 768px) {
  .page-promotions-welcome-bonus__hero-section {
    padding: 80px 0;
  }

  .page-promotions-welcome-bonus__hero-title {
    font-size: 2.5em;
  }

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

  .page-promotions-welcome-bonus__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-welcome-bonus__btn-primary,
  .page-promotions-welcome-bonus__btn-secondary,
  .page-promotions-welcome-bonus a[class*="button"],
  .page-promotions-welcome-bonus a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-welcome-bonus__cta-buttons,
  .page-promotions-welcome-bonus__button-group,
  .page-promotions-welcome-bonus__btn-container,
  .page-promotions-welcome-bonus__hero-cta-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-promotions-welcome-bonus__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-promotions-welcome-bonus video,
  .page-promotions-welcome-bonus__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions-welcome-bonus__video-section,
  .page-promotions-welcome-bonus__video-container,
  .page-promotions-welcome-bonus__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 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: unset !important; /* Allow images to shrink below 200px on mobile */
    min-height: unset !important;
  }
  
  .page-promotions-welcome-bonus__section,
  .page-promotions-welcome-bonus__card,
  .page-promotions-welcome-bonus__container,
  .page-promotions-welcome-bonus__step-item,
  .page-promotions-welcome-bonus__promo-card,
  .page-promotions-welcome-bonus__terms-item,
  .page-promotions-welcome-bonus__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-welcome-bonus__promo-grid,
  .page-promotions-welcome-bonus__step-by-step {
    grid-template-columns: 1fr;
  }

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

  .page-promotions-welcome-bonus__text-block {
    font-size: 1em;
  }
}

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

  .page-promotions-welcome-bonus__hero-description {
    font-size: 0.9em;
  }

  .page-promotions-welcome-bonus__btn-primary,
  .page-promotions-welcome-bonus__btn-secondary {
    font-size: 1em;
    padding: 12px 20px;
  }

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