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

/* Body background is dark from shared.css, so use light text */
.page-promotions-welcome-bonus {
  color: #F2FFF6; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions-welcome-bonus__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0A4B2C; /* Deep Green for contrast */
  text-align: center;
}

.page-promotions-welcome-bonus__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions-welcome-bonus__hero-video-link {
  display: block;
  width: 100%;
  height: auto;
}

.page-promotions-welcome-bonus__hero-video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.page-promotions-welcome-bonus__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-welcome-bonus__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size */
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-promotions-welcome-bonus__description {
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
}

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

.page-promotions-welcome-bonus__btn-primary,
.page-promotions-welcome-bonus__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-promotions-welcome-bonus__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-promotions-welcome-bonus__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E;
}

.page-promotions-welcome-bonus__btn-secondary:hover {
  background-color: rgba(242, 193, 78, 0.1);
  color: #F2C14E;
}

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

.page-promotions-welcome-bonus__content-section {
  padding: 80px 20px;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-promotions-welcome-bonus__dark-section {
  background-color: #11271B; /* Card BG */
}

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

.page-promotions-welcome-bonus__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-promotions-welcome-bonus__text-block {
  font-size: 1.05em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-promotions-welcome-bonus__card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border */
  padding-bottom: 20px;
}

.page-promotions-welcome-bonus__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-promotions-welcome-bonus__card-title {
  font-size: 1.4em;
  color: #57E38D; /* Glow */
  margin: 0 20px 15px;
  font-weight: 600;
}

.page-promotions-welcome-bonus__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-promotions-welcome-bonus__card-title a:hover {
  text-decoration: underline;
}

.page-promotions-welcome-bonus__card-text {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  margin: 0 20px 25px;
  flex-grow: 1;
  text-align: justify;
}

.page-promotions-welcome-bonus__card .page-promotions-welcome-bonus__btn-primary {
  align-self: center;
  margin-top: auto; /* Push button to bottom */
}

.page-promotions-welcome-bonus__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-promotions-welcome-bonus__list-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__list-title {
  font-size: 1.3em;
  color: #57E38D; /* Glow */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions-welcome-bonus__list-item p {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: justify;
}

.page-promotions-welcome-bonus__term-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  margin-bottom: 40px;
}

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

.page-promotions-welcome-bonus__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-welcome-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none; /* Hide default marker for details summary */
}

.page-promotions-welcome-bonus__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions-welcome-bonus__faq-qtext {
  flex-grow: 1;
}

.page-promotions-welcome-bonus__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
  transition: transform 0.3s ease;
}

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

.page-promotions-welcome-bonus__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: justify;
}

.page-promotions-welcome-bonus__faq-answer p {
  margin-bottom: 0;
}

.page-promotions-welcome-bonus__cta-section {
  padding: 80px 20px;
  background-color: #0A4B2C; /* Deep Green */
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions-welcome-bonus__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }
  .page-promotions-welcome-bonus__content-section,
  .page-promotions-welcome-bonus__cta-section {
    padding: 60px 15px;
  }
  .page-promotions-welcome-bonus__main-title {
    font-size: clamp(1.8em, 5vw, 2.8em);
  }
  .page-promotions-welcome-bonus__section-title {
    font-size: clamp(1.6em, 4vw, 2.2em);
  }
  .page-promotions-welcome-bonus__card-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-promotions-welcome-bonus__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }
  .page-promotions-welcome-bonus__content-section,
  .page-promotions-welcome-bonus__cta-section {
    padding: 40px 15px;
  }
  .page-promotions-welcome-bonus__main-title {
    font-size: clamp(1.6em, 6vw, 2.5em);
  }
  .page-promotions-welcome-bonus__description {
    font-size: 1em;
  }
  .page-promotions-welcome-bonus__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-welcome-bonus__btn-primary,
  .page-promotions-welcome-bonus__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  /* 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__hero-image-wrapper,
  .page-promotions-welcome-bonus__card,
  .page-promotions-welcome-bonus__container,
  .page-promotions-welcome-bonus__list-item,
  .page-promotions-welcome-bonus__faq-item,
  .page-promotions-welcome-bonus__cta-buttons,
  .page-promotions-welcome-bonus__card-grid {
    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__card-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-welcome-bonus__card-image {
    height: auto;
  }
  .page-promotions-welcome-bonus__hero-video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-welcome-bonus__hero-video-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions-welcome-bonus__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-promotions-welcome-bonus__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-welcome-bonus__hero-section {
    padding: 20px 10px;
    padding-top: 10px;
  }
  .page-promotions-welcome-bonus__content-section,
  .page-promotions-welcome-bonus__cta-section {
    padding: 30px 10px;
  }
  .page-promotions-welcome-bonus__main-title {
    font-size: clamp(1.4em, 7vw, 2.2em);
  }
  .page-promotions-welcome-bonus__section-title {
    font-size: clamp(1.4em, 5vw, 2em);
  }
  .page-promotions-welcome-bonus__description {
    font-size: 0.9em;
  }
  .page-promotions-welcome-bonus__list-item,
  .page-promotions-welcome-bonus__faq-item {
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-promotions-welcome-bonus__faq-question {
    padding: 12px 15px;
  }
  .page-promotions-welcome-bonus__faq-answer {
    padding: 0 15px 12px;
  }
  .page-promotions-welcome-bonus__container,
  .page-promotions-welcome-bonus__card,
  .page-promotions-welcome-bonus__list-item,
  .page-promotions-welcome-bonus__faq-item,
  .page-promotions-welcome-bonus__cta-buttons {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Ensure no filter is used on images */
.page-promotions-welcome-bonus img {
  filter: none !important;
}