/* style/blog-secure-betting-with-mb6.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-secure-betting-with-mb6 {
  color: #ffffff; /* Must use light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

.page-blog-secure-betting-with-mb6__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background: #0d0d0d; /* Slightly lighter than body background for contrast */
  color: #ffffff;
  text-align: center;
}

.page-blog-secure-betting-with-mb6__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-blog-secure-betting-with-mb6__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-secure-betting-with-mb6__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-secure-betting-with-mb6__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: bold;
  color: #26A9E0; /* Brand color for H1 */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-secure-betting-with-mb6__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-secure-betting-with-mb6__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-blog-secure-betting-with-mb6__btn-primary,
.page-blog-secure-betting-with-mb6__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  max-width: 100%; /* Ensure buttons adapt to container width */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-secure-betting-with-mb6__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-secure-betting-with-mb6__btn-primary:hover {
  background: #1e87c0;
}

.page-blog-secure-betting-with-mb6__btn-secondary {
  background: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-secure-betting-with-mb6__btn-secondary:hover {
  background: #26A9E0;
  color: #ffffff;
}

.page-blog-secure-betting-with-mb6__content-section {
  padding: 60px 20px;
  background: #1a1a1a; /* Slightly lighter background for content sections */
  color: #f0f0f0; /* Light text on dark background */
}

.page-blog-secure-betting-with-mb6__dark-section {
  background: #0d0d0d; /* Darker background for alternating sections */
  color: #ffffff;
}

.page-blog-secure-betting-with-mb6__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-secure-betting-with-mb6__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-blog-secure-betting-with-mb6__subsection-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-secure-betting-with-mb6 p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-blog-secure-betting-with-mb6__list {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-blog-secure-betting-with-mb6__list li {
  margin-bottom: 8px;
}

.page-blog-secure-betting-with-mb6__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

/* FAQ styles */
.page-blog-secure-betting-with-mb6__faq-list {
  margin-top: 40px;
}

.page-blog-secure-betting-with-mb6__faq-item {
  background: rgba(255, 255, 255, 0.05); /* Slightly transparent white for cards */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #f0f0f0;
}

.page-blog-secure-betting-with-mb6__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #ffffff;
  background: rgba(38, 169, 224, 0.1); /* Light brand color tint */
  transition: background-color 0.3s ease;
}

.page-blog-secure-betting-with-mb6__faq-question:hover {
  background: rgba(38, 169, 224, 0.2);
}

.page-blog-secure-betting-with-mb6__faq-item[open] > .page-blog-secure-betting-with-mb6__faq-question {
  background: #26A9E0;
  color: #ffffff;
}

.page-blog-secure-betting-with-mb6__faq-qtext {
  flex-grow: 1;
}

.page-blog-secure-betting-with-mb6__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0; /* Brand color for toggle */
}

.page-blog-secure-betting-with-mb6__faq-item[open] .page-blog-secure-betting-with-mb6__faq-toggle {
  color: #ffffff;
}

.page-blog-secure-betting-with-mb6__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #e0e0e0;
}

.page-blog-secure-betting-with-mb6__faq-answer p {
  margin-bottom: 0;
}

/* Hide default details marker */
.page-blog-secure-betting-with-mb6__faq-item summary::-webkit-details-marker {
  display: none;
}
.page-blog-secure-betting-with-mb6__faq-item summary {
  list-style: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-secure-betting-with-mb6 {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-blog-secure-betting-with-mb6__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-secure-betting-with-mb6__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-secure-betting-with-mb6__description {
    font-size: 1em;
  }

  .page-blog-secure-betting-with-mb6__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden;
  }

  .page-blog-secure-betting-with-mb6__btn-primary,
  .page-blog-secure-betting-with-mb6__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-secure-betting-with-mb6__content-section {
    padding: 40px 15px;
  }

  .page-blog-secure-betting-with-mb6__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-secure-betting-with-mb6__section-title {
    font-size: 2em;
  }

  .page-blog-secure-betting-with-mb6__subsection-title {
    font-size: 1.5em;
  }

  .page-blog-secure-betting-with-mb6 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-secure-betting-with-mb6__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-blog-secure-betting-with-mb6__faq-answer {
    padding: 0 20px 15px;
  }
}

/* Ensure content images are at least 200x200px and responsive */
.page-blog-secure-betting-with-mb6__content-image {
    min-width: 200px;
    min-height: 200px;
}

/* CSS for color contrast fix (if needed, though design aims for good contrast) */
.page-blog-secure-betting-with-mb6__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-blog-secure-betting-with-mb6__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}