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

.page-blog-uwin71-promotions-analysis {
  color: var(--uwin71-text-main); /* Body background is dark, so text is light */
  background-color: var(--uwin71-background);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-uwin71-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding for content below */
}

.page-blog-uwin71-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
  opacity: 0.3; /* Slightly dim the image for text readability */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.page-blog-uwin71-promotions-analysis__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-blog-uwin71-promotions-analysis__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--uwin71-text-main);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-uwin71-promotions-analysis__description {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: var(--uwin71-text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
}

.page-blog-uwin71-promotions-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-blog-uwin71-promotions-analysis__section-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-uwin71-promotions-analysis__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--uwin71-text-main);
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.page-blog-uwin71-promotions-analysis__text-block {
  font-size: 1.1rem;
  color: var(--uwin71-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-uwin71-promotions-analysis__text-block a {
  color: var(--uwin71-secondary);
  text-decoration: underline;
}

.page-blog-uwin71-promotions-analysis__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

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

.page-blog-uwin71-promotions-analysis__card {
  background-color: var(--uwin71-card-bg);
  color: var(--uwin71-text-main);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--uwin71-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-uwin71-promotions-analysis__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-blog-uwin71-promotions-analysis__card-title {
  font-size: 1.4rem;
  color: var(--uwin71-gold);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-uwin71-promotions-analysis__card-text {
  font-size: 1rem;
  color: var(--uwin71-text-secondary);
}

.page-blog-uwin71-promotions-analysis__ordered-list,
.page-blog-uwin71-promotions-analysis__unordered-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-blog-uwin71-promotions-analysis__list-item {
  font-size: 1.1rem;
  color: var(--uwin71-text-secondary);
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-blog-uwin71-promotions-analysis__ordered-list .page-blog-uwin71-promotions-analysis__list-item::before {
  content: counter(list-item) ". ";
  counter-increment: list-item;
  color: var(--uwin71-gold);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.page-blog-uwin71-promotions-analysis__unordered-list .page-blog-uwin71-promotions-analysis__list-item::before {
  content: "\2022"; /* Bullet point */
  color: var(--uwin71-secondary);
  font-size: 1.5em;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0;
}

.page-blog-uwin71-promotions-analysis__feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.page-blog-uwin71-promotions-analysis__faq-list {
  margin-top: 40px;
  margin-bottom: 50px;
}

.page-blog-uwin71-promotions-analysis__faq-item {
  background-color: var(--uwin71-card-bg);
  border: 1px solid var(--uwin71-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.page-blog-uwin71-promotions-analysis__faq-item:hover {
  background-color: var(--uwin71-deep-green);
}

.page-blog-uwin71-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--uwin71-text-main);
  font-weight: 600;
  list-style: none; /* Remove default marker for details summary */
}

.page-blog-uwin71-promotions-analysis__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-uwin71-promotions-analysis__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--uwin71-secondary);
  transition: transform 0.3s ease;
}

.page-blog-uwin71-promotions-analysis__faq-item[open] .page-blog-uwin71-promotions-analysis__faq-toggle {
  transform: rotate(45deg); /* Rotate to form an 'x' or 'minus' */
}

.page-blog-uwin71-promotions-analysis__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: var(--uwin71-text-secondary);
  line-height: 1.8;
}

.page-blog-uwin71-promotions-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 60px;
  width: 100%;
  box-sizing: border-box;
}

.page-blog-uwin71-promotions-analysis__btn-primary,
.page-blog-uwin71-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-uwin71-promotions-analysis__btn-primary {
  background: var(--uwin71-button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-uwin71-promotions-analysis__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-uwin71-promotions-analysis__btn-secondary {
  background-color: transparent;
  color: var(--uwin71-secondary);
  border: 2px solid var(--uwin71-secondary);
}

.page-blog-uwin71-promotions-analysis__btn-secondary:hover {
  background-color: var(--uwin71-secondary);
  color: var(--uwin71-background);
  transform: translateY(-2px);
}

.page-blog-uwin71-promotions-analysis__cta-banner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
  background-color: var(--uwin71-deep-green);
}

.page-blog-uwin71-promotions-analysis__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 1;
}

.page-blog-uwin71-promotions-analysis__cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-blog-uwin71-promotions-analysis__cta-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--uwin71-text-main);
  margin-bottom: 20px;
  font-weight: 700;
}

.page-blog-uwin71-promotions-analysis__cta-text {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--uwin71-text-secondary);
  margin-bottom: 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-uwin71-promotions-analysis__hero-content {
    padding: 15px;
  }

  .page-blog-uwin71-promotions-analysis__content-area {
    padding: 30px 15px;
  }
}

@media (max-width: 768px) {
  .page-blog-uwin71-promotions-analysis__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-blog-uwin71-promotions-analysis__main-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }

  .page-blog-uwin71-promotions-analysis__description {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }

  .page-blog-uwin71-promotions-analysis__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-uwin71-promotions-analysis__text-block,
  .page-blog-uwin71-promotions-analysis__list-item,
  .page-blog-uwin71-promotions-analysis__card-text {
    font-size: 1rem;
  }

  .page-blog-uwin71-promotions-analysis__card-grid,
  .page-blog-uwin71-promotions-analysis__feature-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-uwin71-promotions-analysis__card {
    padding: 25px;
  }

  .page-blog-uwin71-promotions-analysis__card-title {
    font-size: 1.3rem;
  }

  .page-blog-uwin71-promotions-analysis__faq-question {
    font-size: 1.1rem;
    padding: 18px 20px;
  }

  .page-blog-uwin71-promotions-analysis__faq-answer {
    padding: 0 20px 18px 20px;
  }

  .page-blog-uwin71-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-uwin71-promotions-analysis__btn-primary,
  .page-blog-uwin71-promotions-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-uwin71-promotions-analysis__image-full-width,
  .page-blog-uwin71-promotions-analysis__hero-image,
  .page-blog-uwin71-promotions-analysis__cta-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-uwin71-promotions-analysis__section,
  .page-blog-uwin71-promotions-analysis__card,
  .page-blog-uwin71-promotions-analysis__container,
  .page-blog-uwin71-promotions-analysis__cta-banner {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-uwin71-promotions-analysis__cta-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .page-blog-uwin71-promotions-analysis__cta-text {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
  }
}

@media (max-width: 480px) {
  .page-blog-uwin71-promotions-analysis__hero-content {
    padding: 10px;
  }

  .page-blog-uwin71-promotions-analysis__main-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

  .page-blog-uwin71-promotions-analysis__description {
    font-size: clamp(0.85rem, 3vw, 1rem);
  }

  .page-blog-uwin71-promotions-analysis__card-title {
    font-size: 1.2rem;
  }

  .page-blog-uwin71-promotions-analysis__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-blog-uwin71-promotions-analysis__faq-answer {
    padding: 0 15px 15px 15px;
  }

  .page-blog-uwin71-promotions-analysis__cta-banner {
    padding: 60px 15px;
  }
}