/* style/blog-1bwm-latest-promotions.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --body-bg: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-blog-1bwm-latest-promotions {
  background-color: var(--body-bg);
  color: var(--text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-1bwm-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 40px 0; /* body handles top padding, this is decorative */
  overflow: hidden;
  background-color: var(--deep-green);
}

.page-blog-1bwm-latest-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height for aesthetic */
  z-index: 1;
}

.page-blog-1bwm-latest-promotions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 20px;
  margin-top: -100px; /* Overlap slightly for visual flow */
  background-color: rgba(8, 22, 15, 0.85); /* Semi-transparent background for text readability */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-1bwm-latest-promotions__main-title {
  color: var(--gold-color);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.6);
}

.page-blog-1bwm-latest-promotions__hero-description {
  color: var(--text-main);
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-1bwm-latest-promotions__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-1bwm-latest-promotions__btn-primary,
.page-blog-1bwm-latest-promotions__btn-secondary {
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-1bwm-latest-promotions__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid var(--glow-color);
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.5);
}

.page-blog-1bwm-latest-promotions__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(87, 227, 141, 0.8);
}

.page-blog-1bwm-latest-promotions__btn-secondary {
  background-color: transparent;
  color: var(--glow-color);
  border: 2px solid var(--glow-color);
}

.page-blog-1bwm-latest-promotions__btn-secondary:hover {
  background-color: var(--glow-color);
  color: var(--body-bg);
  transform: translateY(-3px);
}

.page-blog-1bwm-latest-promotions__section {
  padding: 60px 0;
  background-color: var(--body-bg);
}

.page-blog-1bwm-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-1bwm-latest-promotions__section-title {
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5em;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(242, 193, 78, 0.4);
}

.page-blog-1bwm-latest-promotions__about-1bwm .page-blog-1bwm-latest-promotions__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-blog-1bwm-latest-promotions__text-block {
  flex: 1;
}

.page-blog-1bwm-latest-promotions__text-block p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.05em;
}

.page-blog-1bwm-latest-promotions__image-right {
  flex: 0 0 400px;
  width: 400px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-1bwm-latest-promotions__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-1bwm-latest-promotions__promotion-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog-1bwm-latest-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-blog-1bwm-latest-promotions__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-blog-1bwm-latest-promotions__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog-1bwm-latest-promotions__card-title {
  color: var(--gold-color);
  font-size: 1.4em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-blog-1bwm-latest-promotions__card-description {
  color: var(--text-secondary);
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-1bwm-latest-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: var(--button-gradient);
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background 0.3s ease;
  align-self: flex-start;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-1bwm-latest-promotions__card-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-blog-1bwm-latest-promotions__how-to-participate .page-blog-1bwm-latest-promotions__subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1em;
  margin-bottom: 40px;
}

.page-blog-1bwm-latest-promotions__steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-1bwm-latest-promotions__step-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  counter-increment: step-counter;
  position: relative;
}

.page-blog-1bwm-latest-promotions__step-item::before {
  content: "0" counter(step-counter);
  position: absolute;
  top: -15px;
  left: 30px;
  font-size: 2.5em;
  font-weight: bold;
  color: var(--glow-color);
  opacity: 0.2;
  z-index: 0;
}

.page-blog-1bwm-latest-promotions__step-title {
  color: var(--gold-color);
  font-size: 1.3em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.page-blog-1bwm-latest-promotions__step-description {
  color: var(--text-secondary);
  font-size: 0.95em;
  position: relative;
  z-index: 1;
}

.page-blog-1bwm-latest-promotions__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-blog-1bwm-latest-promotions__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-1bwm-latest-promotions__faq-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-blog-1bwm-latest-promotions__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: var(--text-main);
  font-weight: bold;
  font-size: 1.1em;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-blog-1bwm-latest-promotions__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-1bwm-latest-promotions__faq-item summary:hover {
  background-color: var(--deep-green);
}

.page-blog-1bwm-latest-promotions__faq-qtext {
  color: var(--text-main);
}

.page-blog-1bwm-latest-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--glow-color);
  transition: transform 0.3s ease;
}

.page-blog-1bwm-latest-promotions__faq-item[open] .page-blog-1bwm-latest-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-1bwm-latest-promotions__faq-answer {
  padding: 0 25px 20px 25px;
  color: var(--text-secondary);
  font-size: 0.95em;
  line-height: 1.5;
}

.page-blog-1bwm-latest-promotions__faq-answer p {
  margin-bottom: 0;
}

.page-blog-1bwm-latest-promotions__why-choose .page-blog-1bwm-latest-promotions__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-1bwm-latest-promotions__feature-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--primary-color);
}

.page-blog-1bwm-latest-promotions__feature-title {
  color: var(--gold-color);
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-blog-1bwm-latest-promotions__feature-description {
  color: var(--text-secondary);
  font-size: 0.95em;
}

.page-blog-1bwm-latest-promotions__cta-bottom {
  margin-top: 60px;
}

.page-blog-1bwm-latest-promotions__conclusion-cta {
  padding: 80px 0;
  background-color: var(--deep-green);
}

.page-blog-1bwm-latest-promotions__conclusion-cta .page-blog-1bwm-latest-promotions__container {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.page-blog-1bwm-latest-promotions__conclusion-cta .page-blog-1bwm-latest-promotions__section-title {
  color: var(--gold-color);
  margin-bottom: 25px;
}

.page-blog-1bwm-latest-promotions__conclusion-text {
  color: var(--text-secondary);
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-1bwm-latest-promotions__conclusion-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-1bwm-latest-promotions__hero-content {
    margin-top: -80px;
  }

  .page-blog-1bwm-latest-promotions__about-1bwm .page-blog-1bwm-latest-promotions__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-blog-1bwm-latest-promotions__image-right {
    flex: none;
    width: 100%;
    max-width: 600px;
  }

  .page-blog-1bwm-latest-promotions__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-1bwm-latest-promotions__hero-section {
    padding: 10px 0 30px 0;
  }
  .page-blog-1bwm-latest-promotions__hero-content {
    margin-top: -60px;
    padding: 15px;
  }

  .page-blog-1bwm-latest-promotions__main-title {
    font-size: clamp(1.8em, 5vw, 2.2em);
  }

  .page-blog-1bwm-latest-promotions__hero-description,
  .page-blog-1bwm-latest-promotions__text-block p,
  .page-blog-1bwm-latest-promotions__subtitle,
  .page-blog-1bwm-latest-promotions__card-description,
  .page-blog-1bwm-latest-promotions__step-description,
  .page-blog-1bwm-latest-promotions__faq-answer p,
  .page-blog-1bwm-latest-promotions__feature-description,
  .page-blog-1bwm-latest-promotions__conclusion-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-1bwm-latest-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-1bwm-latest-promotions__btn-primary,
  .page-blog-1bwm-latest-promotions__btn-secondary,
  .page-blog-1bwm-latest-promotions a[class*="button"],
  .page-blog-1bwm-latest-promotions 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-blog-1bwm-latest-promotions__cta-buttons,
  .page-blog-1bwm-latest-promotions__button-group,
  .page-blog-1bwm-latest-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-blog-1bwm-latest-promotions__section {
    padding: 40px 0;
  }

  .page-blog-1bwm-latest-promotions__container {
    padding: 0 15px;
  }

  .page-blog-1bwm-latest-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  /* Image responsiveness */
  .page-blog-1bwm-latest-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-1bwm-latest-promotions__section,
  .page-blog-1bwm-latest-promotions__card,
  .page-blog-1bwm-latest-promotions__container,
  .page-blog-1bwm-latest-promotions__hero-section,
  .page-blog-1bwm-latest-promotions__promotions-grid,
  .page-blog-1bwm-latest-promotions__steps-list,
  .page-blog-1bwm-latest-promotions__faq-list,
  .page-blog-1bwm-latest-promotions__why-choose .page-blog-1bwm-latest-promotions__features-grid,
  .page-blog-1bwm-latest-promotions__conclusion-cta .page-blog-1bwm-latest-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-blog-1bwm-latest-promotions__card-image {
    height: 180px;
  }

  .page-blog-1bwm-latest-promotions__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-1bwm-latest-promotions__faq-answer {
    padding: 0 20px 15px 20px;
  }

  .page-blog-1bwm-latest-promotions__conclusion-cta .page-blog-1bwm-latest-promotions__container {
    padding: 30px 15px;
  }
  
  .page-blog-1bwm-latest-promotions__video-section { /* If video was present */
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-blog-1bwm-latest-promotions__main-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }

  .page-blog-1bwm-latest-promotions__hero-content {
    margin-top: -40px;
  }

  .page-blog-1bwm-latest-promotions__section-title {
    font-size: 1.5em;
  }

  .page-blog-1bwm-latest-promotions__step-item::before {
    font-size: 2em;
    left: 20px;
  }

  .page-blog-1bwm-latest-promotions__step-item {
    padding: 25px;
  }
}