/* style/blog-betvnd-promotions-analysis.css */

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

.page-blog-betvnd-promotions-analysis {
  font-family: 'Arial', sans-serif;
  color: var(--betvnd-text-main);
  background-color: var(--betvnd-background); /* Ensure body background is respected by shared.css */
  line-height: 1.6;
}

.page-blog-betvnd-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end; /* Align content to bottom of hero */
  padding-bottom: 60px;
  padding-top: 10px; /* Small top padding for visual spacing, body handles header offset */
  box-sizing: border-box;
  overflow: hidden;
  min-height: 500px;
}

.page-blog-betvnd-promotions-analysis__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-blog-betvnd-promotions-analysis__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-betvnd-promotions-analysis__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  color: var(--betvnd-text-main);
}

.page-blog-betvnd-promotions-analysis__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  color: var(--betvnd-gold);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.page-blog-betvnd-promotions-analysis__description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--betvnd-text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-betvnd-promotions-analysis__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--betvnd-button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-blog-betvnd-promotions-analysis__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-betvnd-promotions-analysis__section {
  padding: 60px 20px;
  box-sizing: border-box;
  position: relative;
}

.page-blog-betvnd-promotions-analysis__dark-bg {
  background-color: var(--betvnd-card-bg);
  color: var(--betvnd-text-main);
}

.page-blog-betvnd-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-betvnd-promotions-analysis__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--betvnd-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.page-blog-betvnd-promotions-analysis__content-block {
  background-color: var(--betvnd-card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  border: 1px solid var(--betvnd-border);
}

.page-blog-betvnd-promotions-analysis__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--betvnd-primary);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-betvnd-promotions-analysis p {
  margin-bottom: 15px;
  color: var(--betvnd-text-secondary);
}

.page-blog-betvnd-promotions-analysis__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: var(--betvnd-text-secondary);
}

.page-blog-betvnd-promotions-analysis__list li {
  margin-bottom: 10px;
}

.page-blog-betvnd-promotions-analysis__list strong {
  color: var(--betvnd-text-main);
}

.page-blog-betvnd-promotions-analysis__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 30px auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--betvnd-border);
}

/* FAQ Section */
.page-blog-betvnd-promotions-analysis__faq-list {
  margin-top: 40px;
}

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

.page-blog-betvnd-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: var(--betvnd-deep-green);
  color: var(--betvnd-text-main);
  font-weight: bold;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--betvnd-divider);
  transition: background-color 0.3s ease;
}

.page-blog-betvnd-promotions-analysis__faq-question:hover {
  background-color: #0A5A35; /* Slightly lighter deep green on hover */
}

.page-blog-betvnd-promotions-analysis__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--betvnd-gold);
}

.page-blog-betvnd-promotions-analysis__faq-item[open] .page-blog-betvnd-promotions-analysis__faq-toggle {
  content: '−';
}

.page-blog-betvnd-promotions-analysis__faq-answer {
  padding: 20px 25px;
  background-color: var(--betvnd-card-bg);
  color: var(--betvnd-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.page-blog-betvnd-promotions-analysis__faq-answer p {
  margin-bottom: 0;
}

/* Remove default marker for details/summary */
.page-blog-betvnd-promotions-analysis__faq-item summary::-webkit-details-marker {
  display: none;
}
.page-blog-betvnd-promotions-analysis__faq-item summary {
  list-style: none;
}

/* Conclusion section specific styling */
.page-blog-betvnd-promotions-analysis__conclusion {
  text-align: center;
  padding-bottom: 80px;
}

.page-blog-betvnd-promotions-analysis__conclusion p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-blog-betvnd-promotions-analysis__hero-section {
    padding-bottom: 40px;
    min-height: 400px;
  }

  .page-blog-betvnd-promotions-analysis__main-title {
    font-size: 2.2rem;
  }

  .page-blog-betvnd-promotions-analysis__description {
    font-size: 0.95rem;
  }

  .page-blog-betvnd-promotions-analysis__section {
    padding: 40px 15px;
  }

  .page-blog-betvnd-promotions-analysis__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-betvnd-promotions-analysis__sub-title {
    font-size: 1.3rem;
  }

  .page-blog-betvnd-promotions-analysis__content-block {
    padding: 20px;
  }

  .page-blog-betvnd-promotions-analysis__list {
    padding-left: 15px;
  }

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

  .page-blog-betvnd-promotions-analysis__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  /* Image responsiveness */
  .page-blog-betvnd-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-betvnd-promotions-analysis__hero-image {
    filter: brightness(0.4) !important; /* Make hero image darker on mobile for better text contrast */
  }

  /* Container responsiveness for images/buttons/videos */
  .page-blog-betvnd-promotions-analysis__section,
  .page-blog-betvnd-promotions-analysis__card,
  .page-blog-betvnd-promotions-analysis__container,
  .page-blog-betvnd-promotions-analysis__hero-content,
  .page-blog-betvnd-promotions-analysis__content-block,
  .page-blog-betvnd-promotions-analysis__faq-list,
  .page-blog-betvnd-promotions-analysis__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-betvnd-promotions-analysis__hero-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-blog-betvnd-promotions-analysis__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
  }

  /* Video specific mobile styles, if any video were present */
  .page-blog-betvnd-promotions-analysis video,
  .page-blog-betvnd-promotions-analysis__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-betvnd-promotions-analysis__video-section,
  .page-blog-betvnd-promotions-analysis__video-container,
  .page-blog-betvnd-promotions-analysis__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-betvnd-promotions-analysis__video-section {
    padding-top: 10px !important; /* body handles header offset, this is for visual spacing */
  }
}