/* style/blog-latest-betvnd9-promotions-review.css */

/* Base styles for the page content */
.page-blog-latest-betvnd9-promotions-review {
  background-color: #08160F; /* Custom background */
  color: #F2FFF6; /* Main text color for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-bottom: 60px; /* Space for footer */
}

.page-blog-latest-betvnd9-promotions-review__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-latest-betvnd9-promotions-review__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  text-align: center;
  background-color: #08160F;
}

.page-blog-latest-betvnd9-promotions-review__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for the image */
  margin-bottom: 30px;
}

.page-blog-latest-betvnd9-promotions-review__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-latest-betvnd9-promotions-review__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-latest-betvnd9-promotions-review__main-title {
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E; /* Gold for main title */
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.page-blog-latest-betvnd9-promotions-review__subtitle {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

/* CTA Button */
.page-blog-latest-betvnd9-promotions-review__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.page-blog-latest-betvnd9-promotions-review__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* White text for primary button */
  border: 2px solid transparent;
}

.page-blog-latest-betvnd9-promotions-review__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-latest-betvnd9-promotions-review__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F; /* Green from primary button gradient */
  border: 2px solid #2E7A4E; /* Border color */
}

.page-blog-latest-betvnd9-promotions-review__btn-secondary:hover {
  background: #2E7A4E;
  color: #F2FFF6;
}

/* Content Area */
.page-blog-latest-betvnd9-promotions-review__content-area {
  background-color: #08160F;
  padding: 40px 0;
  color: #F2FFF6;
}

.page-blog-latest-betvnd9-promotions-review__section-title {
  font-weight: 700;
  color: #F2C14E; /* Gold for section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

.page-blog-latest-betvnd9-promotions-review__sub-section-title {
  font-weight: 600;
  color: #22C768; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-blog-latest-betvnd9-promotions-review p {
  margin-bottom: 1em;
  color: #F2FFF6; /* Text Main */
}

.page-blog-latest-betvnd9-promotions-review__list,
.page-blog-latest-betvnd9-promotions-review__ordered-list {
  list-style-position: inside;
  margin-bottom: 1.5em;
  padding-left: 20px;
}

.page-blog-latest-betvnd9-promotions-review__list li,
.page-blog-latest-betvnd9-promotions-review__ordered-list li {
  margin-bottom: 0.8em;
  color: #F2FFF6; /* Text Main */
}

.page-blog-latest-betvnd9-promotions-review__ordered-list li strong {
  color: #2AD16F;
}

.page-blog-latest-betvnd9-promotions-review .highlight {
  color: #F2C14E;
  font-weight: 600;
}

.page-blog-latest-betvnd9-promotions-review a {
  color: #57E38D; /* Glow color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-latest-betvnd9-promotions-review a:hover {
  color: #22C768;
  text-decoration: underline;
}

.page-blog-latest-betvnd9-promotions-review__image-container {
  margin: 30px 0;
  text-align: center;
}

.page-blog-latest-betvnd9-promotions-review__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

/* FAQ Section */
.page-blog-latest-betvnd9-promotions-review__faq-list {
  margin-top: 30px;
}

.page-blog-latest-betvnd9-promotions-review__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-latest-betvnd9-promotions-review__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  color: #F2C14E; /* Gold for FAQ question */
  font-weight: 600;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-latest-betvnd9-promotions-review__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-latest-betvnd9-promotions-review__faq-question:hover {
  background-color: #1E3A2A; /* Divider color for hover */
}

.page-blog-latest-betvnd9-promotions-review__faq-qtext {
  flex-grow: 1;
}

.page-blog-latest-betvnd9-promotions-review__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #57E38D; /* Glow color */
}

.page-blog-latest-betvnd9-promotions-review__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8; /* Text Secondary */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-blog-latest-betvnd9-promotions-review__faq-item[open] .page-blog-latest-betvnd9-promotions-review__faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 0 25px 20px;
}

.page-blog-latest-betvnd9-promotions-review__faq-item[open] .page-blog-latest-betvnd9-promotions-review__faq-toggle {
  content: '−';
}

.page-blog-latest-betvnd9-promotions-review__cta-footer {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-latest-betvnd9-promotions-review__main-title {
    font-size: 2.5em;
  }
  .page-blog-latest-betvnd9-promotions-review__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-betvnd9-promotions-review {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-latest-betvnd9-promotions-review__container {
    padding: 0 15px;
  }

  .page-blog-latest-betvnd9-promotions-review__hero-section {
    padding: 20px 0 30px;
    padding-top: 10px !important; /* body handles --header-offset, this is decorative */
  }

  .page-blog-latest-betvnd9-promotions-review__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    /* No fixed font-size, let it scale naturally or use clamp if needed */
  }

  .page-blog-latest-betvnd9-promotions-review__subtitle {
    font-size: 1em;
  }

  .page-blog-latest-betvnd9-promotions-review__cta-button,
  .page-blog-latest-betvnd9-promotions-review a[class*="button"],
  .page-blog-latest-betvnd9-promotions-review 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: 15px 20px !important; /* Adjust padding for mobile */
    font-size: 1em !important;
  }

  .page-blog-latest-betvnd9-promotions-review__cta-footer {
    padding: 0 15px;
  }

  /* Image responsive rules */
  .page-blog-latest-betvnd9-promotions-review img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-latest-betvnd9-promotions-review__image-container,
  .page-blog-latest-betvnd9-promotions-review__hero-image-wrapper,
  .page-blog-latest-betvnd9-promotions-review__content-area,
  .page-blog-latest-betvnd9-promotions-review__container,
  .page-blog-latest-betvnd9-promotions-review__section-title,
  .page-blog-latest-betvnd9-promotions-review__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-latest-betvnd9-promotions-review__faq-question {
    padding: 15px 20px;
  }

  .page-blog-latest-betvnd9-promotions-review__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-latest-betvnd9-promotions-review__main-title {
    /* Smaller font-weight for smaller screens if needed, but not fixed font-size */
    font-weight: 600;
  }
  .page-blog-latest-betvnd9-promotions-review__section-title {
    font-size: 1.8em;
  }
}