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

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #FFFFFF;
  --background-light: #FFFFFF;
  --background-dark: #26A9E0;
  --button-login-color: #EA7C07;
}

.page-promotions-welcome-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light background sections */
  background-color: var(--background-light);
}

/* Hero Section */
.page-promotions-welcome-bonus__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure visibility */
  padding: 10px 20px 60px; /* Small top padding, more bottom padding for content */
  background-color: var(--background-dark);
  color: var(--text-light);
  overflow: hidden;
  box-sizing: border-box;
}

.page-promotions-welcome-bonus__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-promotions-welcome-bonus__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.3; /* Make image subtle under text for contrast */
}

.page-promotions-welcome-bonus__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-promotions-welcome-bonus__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-promotions-welcome-bonus__intro-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

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

.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;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-promotions-welcome-bonus__btn-primary {
  background-color: var(--button-login-color); /* Custom login color */
  color: var(--text-light);
  border: 2px solid var(--button-login-color);
}

.page-promotions-welcome-bonus__btn-primary:hover {
  background-color: #cc6a00; /* Darkened version of #EA7C07 */
  border-color: #cc6a00;
}

.page-promotions-welcome-bonus__btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.page-promotions-welcome-bonus__btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
}

/* General Section Styling */
.page-promotions-welcome-bonus__section-title {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.page-promotions-welcome-bonus__overview-section .page-promotions-welcome-bonus__section-title,
.page-promotions-welcome-bonus__terms-section .page-promotions-welcome-bonus__section-title,
.page-promotions-welcome-bonus__other-promotions .page-promotions-welcome-bonus__section-title,
.page-promotions-welcome-bonus__cta-bottom-section .page-promotions-welcome-bonus__section-title {
  color: var(--primary-color);
}

.page-promotions-welcome-bonus__claim-guide-section .page-promotions-welcome-bonus__section-title,
.page-promotions-welcome-bonus__why-choose-us .page-promotions-welcome-bonus__section-title,
.page-promotions-welcome-bonus__faq-section .page-promotions-welcome-bonus__section-title {
  color: var(--text-light);
}

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

.page-promotions-welcome-bonus__light-bg {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-promotions-welcome-bonus__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-promotions-welcome-bonus__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-align: justify;
}

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

/* Claim Guide Section */
.page-promotions-welcome-bonus__steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-promotions-welcome-bonus__step-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-promotions-welcome-bonus__step-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Terms Section */
.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__term-card {
  background-color: var(--background-light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

.page-promotions-welcome-bonus__term-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-promotions-welcome-bonus__term-description {
  font-size: 1rem;
  color: var(--text-dark);
}

/* Why Choose Us Section */
.page-promotions-welcome-bonus__advantages-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions-welcome-bonus__advantage-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-welcome-bonus__advantage-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-promotions-welcome-bonus__advantage-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Other Promotions Section */
.page-promotions-welcome-bonus__cta-buttons--center {
  margin-top: 30px;
  margin-bottom: 30px;
}

/* FAQ Section */
.page-promotions-welcome-bonus__faq-list {
  margin-top: 40px;
}

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

.page-promotions-welcome-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  list-style: none; /* For details/summary */
}

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

.page-promotions-welcome-bonus__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

.page-promotions-welcome-bonus__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-welcome-bonus__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-promotions-welcome-bonus__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-promotions-welcome-bonus {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions-welcome-bonus__hero-section {
    padding: 10px 15px 40px;
    min-height: 400px;
  }

  .page-promotions-welcome-bonus__hero-content {
    padding: 15px;
  }

  .page-promotions-welcome-bonus__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-promotions-welcome-bonus__intro-text {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-promotions-welcome-bonus__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-promotions-welcome-bonus__btn-primary,
  .page-promotions-welcome-bonus__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-welcome-bonus__section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .page-promotions-welcome-bonus__container {
    padding: 30px 15px;
  }

  .page-promotions-welcome-bonus__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }

  .page-promotions-welcome-bonus__steps-list,
  .page-promotions-welcome-bonus__terms-grid,
  .page-promotions-welcome-bonus__advantages-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 25px;
  }

  .page-promotions-welcome-bonus__step-item,
  .page-promotions-welcome-bonus__term-card,
  .page-promotions-welcome-bonus__advantage-item {
    padding: 20px;
  }

  .page-promotions-welcome-bonus__step-title,
  .page-promotions-welcome-bonus__term-title,
  .page-promotions-welcome-bonus__advantage-title {
    font-size: 1.2rem;
  }

  .page-promotions-welcome-bonus__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-promotions-welcome-bonus__faq-answer {
    padding: 0 15px 15px;
  }
  
  /* Ensure all containers and images are responsive */
  .page-promotions-welcome-bonus__hero-image-wrapper,
  .page-promotions-welcome-bonus__container,
  .page-promotions-welcome-bonus__overview-section,
  .page-promotions-welcome-bonus__claim-guide-section,
  .page-promotions-welcome-bonus__terms-section,
  .page-promotions-welcome-bonus__why-choose-us,
  .page-promotions-welcome-bonus__other-promotions,
  .page-promotions-welcome-bonus__faq-section,
  .page-promotions-welcome-bonus__cta-bottom-section,
  .page-promotions-welcome-bonus__hero-image,
  .page-promotions-welcome-bonus__content-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

/* Global image size constraint enforcement */
.page-promotions-welcome-bonus img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover; /* Ensures images fill their space without distortion */
}

/* Card layout image requirements */
.page-promotions-welcome-bonus__term-card img,
.page-promotions-welcome-bonus__advantage-item img {
  width: 100%; /* Occupy major visual area */
  height: auto;
  min-width: 200px; /* Enforce min size */
  min-height: 200px;
}

/* No filter on images */
.page-promotions-welcome-bonus img {
  filter: none !important;
}