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

/* Variables */
:root {
  --primary-color: #0A2463;
  --secondary-color: #E3B505;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark-1: #0d0d0d; /* Assuming from shared.css */
  --bg-light-1: #f8f8f8;
  --border-color: #e0e0e0;
}

/* Base styles for the page content, ensuring contrast with body background */
.page-promotions-welcome-bonus {
  background-color: var(--bg-dark-1); /* Inherit or explicitly set dark background */
  color: var(--text-light); /* Light text for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 120px; /* Desktop: Ensure content is not hidden by fixed header */
}

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

/* Section styles */
.page-promotions-welcome-bonus__hero-section,
.page-promotions-welcome-bonus__info-section,
.page-promotions-welcome-bonus__guide-section,
.page-promotions-welcome-bonus__terms-section,
.page-promotions-welcome-bonus__why-choose-section,
.page-promotions-welcome-bonus__download-cta-section {
  padding: 60px 0;
  text-align: center;
}

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

.page-promotions-welcome-bonus__hero-section {
  padding-top: 120px; /* Ensure content is not hidden by fixed header */
  background-image: url('[GALLERY:hero:app mb66,welcome bonus,background]');
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.page-promotions-welcome-bonus__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.page-promotions-welcome-bonus__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions-welcome-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.page-promotions-welcome-bonus__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

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

.page-promotions-welcome-bonus__guide-section {
  background-color: var(--primary-color);
  color: var(--text-light);
}

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

.page-promotions-welcome-bonus__why-choose-section {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-promotions-welcome-bonus__download-cta-section {
  background-color: var(--bg-dark-1);
  color: var(--text-light);
}

/* CTA Buttons */
.page-promotions-welcome-bonus__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-promotions-welcome-bonus__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-promotions-welcome-bonus__btn-primary:hover {
  background: #c7a104;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-welcome-bonus__btn-secondary:hover {
  background: #071a44;
  border-color: #c7a104;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Content Grid */
.page-promotions-welcome-bonus__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-promotions-welcome-bonus__content-grid:nth-child(even) {
  flex-direction: row-reverse;
}

.page-promotions-welcome-bonus__content-text {
  flex: 1;
}

.page-promotions-welcome-bonus__content-text p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-promotions-welcome-bonus__content-image {
  flex: 1;
  min-width: 300px;
}

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

/* Steps Grid */
.page-promotions-welcome-bonus__steps-grid {
  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);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%; /* Ensure equal height */
  color: var(--text-light);
}

.page-promotions-welcome-bonus__step-item img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  max-width: 100%;
  height: auto;
  display: block;
}

.page-promotions-welcome-bonus__step-item h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-promotions-welcome-bonus__step-item p {
  margin-bottom: 20px;
  flex-grow: 1;
  color: var(--text-light);
}

/* Terms Section */
.page-promotions-welcome-bonus__text-block {
  max-width: 900px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
  color: var(--text-light);
}

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

.page-promotions-welcome-bonus__term-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);
  color: var(--text-light);
}

.page-promotions-welcome-bonus__term-item h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-promotions-welcome-bonus__term-item p {
  color: var(--text-light);
}

.page-promotions-welcome-bonus__button-container {
  margin-top: 40px;
}

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

.page-promotions-welcome-bonus__why-choose-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--text-light);
}

.page-promotions-welcome-bonus__why-choose-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-welcome-bonus__why-choose-item h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.page-promotions-welcome-bonus__why-choose-item p {
  color: var(--text-light);
}

/* Image responsive base */
.page-promotions-welcome-bonus img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .page-promotions-welcome-bonus {
    padding-top: 100px; /* Mobile: Adjust for fixed header */
    font-size: 15px;
    line-height: 1.5;
  }

  .page-promotions-welcome-bonus__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions-welcome-bonus__hero-section,
  .page-promotions-welcome-bonus__info-section,
  .page-promotions-welcome-bonus__guide-section,
  .page-promotions-welcome-bonus__terms-section,
  .page-promotions-welcome-bonus__why-choose-section,
  .page-promotions-welcome-bonus__download-cta-section {
    padding: 40px 0;
  }

  .page-promotions-welcome-bonus__hero-section {
    padding-top: 100px !important; /* Mobile: Ensure content is not hidden by fixed header */
  }

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

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

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

  .page-promotions-welcome-bonus__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions-welcome-bonus__cta-button {
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-welcome-bonus__content-grid {
    flex-direction: column;
    gap: 30px;
  }

  .page-promotions-welcome-bonus__content-grid:nth-child(even) {
    flex-direction: column;
  }

  .page-promotions-welcome-bonus__content-text,
  .page-promotions-welcome-bonus__content-image {
    flex: none;
    width: 100%;
    min-width: unset;
  }

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

  .page-promotions-welcome-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions-welcome-bonus__content-image,
  .page-promotions-welcome-bonus__step-item img,
  .page-promotions-welcome-bonus__why-choose-item img {
    max-width: 100% !important;
    width: auto !important; /* Allow auto width for smaller images to center */
    height: auto !important;
  }
}