/* style/blog-how-to-choose-reliable-betting-site.css */
.page-blog-how-to-choose-reliable-betting-site {
  color: #ffffff; /* Body background is dark, so text is light */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  background-color: transparent; /* Inherits body's dark background */
}

.page-blog-how-to-choose-reliable-betting-site__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-how-to-choose-reliable-betting-site__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
}

.page-blog-how-to-choose-reliable-betting-site__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px; /* Space between image and text */
}

.page-blog-how-to-choose-reliable-betting-site__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-how-to-choose-reliable-betting-site__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.page-blog-how-to-choose-reliable-betting-site__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.page-blog-how-to-choose-reliable-betting-site__intro-text {
  font-size: 1.15em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-reliable-betting-site__btn-primary {
  display: inline-block;
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(0, 116, 57, 0.4);
}

.page-blog-how-to-choose-reliable-betting-site__btn-primary:hover {
  background-color: #02944b; /* Slightly darker/lighter hover */
  transform: translateY(-2px);
}

.page-blog-how-to-choose-reliable-betting-site__btn-secondary {
  display: inline-block;
  background-color: #ffffff;
  color: #017439; /* Brand primary color */
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
  border: 2px solid #017439;
  margin-left: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-choose-reliable-betting-site__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #017439;
  transform: translateY(-2px);
}

.page-blog-how-to-choose-reliable-betting-site__dark-section {
  background-color: #0d0d0d; /* Slightly lighter dark background for contrast with body */
  padding: 60px 0;
  color: #ffffff;
}

.page-blog-how-to-choose-reliable-betting-site__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-blog-how-to-choose-reliable-betting-site__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #017439;
  border-radius: 2px;
}

.page-blog-how-to-choose-reliable-betting-site__content-area p {
  font-size: 1.05em;
  margin-bottom: 1em;
  color: #e0e0e0;
}

.page-blog-how-to-choose-reliable-betting-site__content-area .highlight {
  color: #FFFF00; /* Custom color for highlight */
  font-weight: bold;
}

.page-blog-how-to-choose-reliable-betting-site__feature-grid, 
.page-blog-how-to-choose-reliable-betting-site__risk-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-how-to-choose-reliable-betting-site__feature-card,
.page-blog-how-to-choose-reliable-betting-site__risk-item,
.page-blog-how-to-choose-reliable-betting-site__cta-section {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark background */
  color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-how-to-choose-reliable-betting-site__feature-card:hover,
.page-blog-how-to-choose-reliable-betting-site__risk-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-choose-reliable-betting-site__feature-icon,
.page-blog-how-to-choose-reliable-betting-site__risk-icon {
  width: 100%;
  max-width: 400px; /* Recommended size for content images */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-how-to-choose-reliable-betting-site__feature-title,
.page-blog-how-to-choose-reliable-betting-site__risk-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #017439;
  margin-bottom: 15px;
}

.page-blog-how-to-choose-reliable-betting-site__feature-card p,
.page-blog-how-to-choose-reliable-betting-site__risk-item p {
  font-size: 1em;
  color: #c0c0c0;
}

.page-blog-how-to-choose-reliable-betting-site__cta-section {
  margin-top: 60px;
  padding: 40px;
  background-color: #017439; /* Use brand color for CTA background */
  color: #ffffff;
  border-radius: 15px;
  text-align: center;
}

.page-blog-how-to-choose-reliable-betting-site__cta-title {
  font-size: 2em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-blog-how-to-choose-reliable-betting-site__cta-description {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-reliable-betting-site__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* FAQ styles */
.page-blog-how-to-choose-reliable-betting-site__faq-section {
  background-color: #0d0d0d; /* Dark background for this section */
  padding: 60px 0;
  color: #ffffff;
}

.page-blog-how-to-choose-reliable-betting-site__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-choose-reliable-betting-site__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.page-blog-how-to-choose-reliable-betting-site__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
  color: #ffffff;
}

.page-blog-how-to-choose-reliable-betting-site__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.page-blog-how-to-choose-reliable-betting-site__faq-qtext {
  flex-grow: 1;
  color: #ffffff;
}

.page-blog-how-to-choose-reliable-betting-site__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  margin-left: 15px;
  color: #017439;
  transition: transform 0.3s ease;
}

.page-blog-how-to-choose-reliable-betting-site__faq-item.active .page-blog-how-to-choose-reliable-betting-site__faq-toggle {
  transform: rotate(45deg); /* Change + to X or similar */
}

/* For <details> tag, we need to override default summary styles */
.page-blog-how-to-choose-reliable-betting-site__faq-item summary {
  list-style: none; /* Remove default marker */
}
.page-blog-how-to-choose-reliable-betting-site__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for webkit */
}

.page-blog-how-to-choose-reliable-betting-site__faq-answer {
  padding: 0 20px 20px;
  color: #c0c0c0;
  max-height: 0; /* For JS-controlled FAQ */
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding-top 0.4s ease-out;
}

.page-blog-how-to-choose-reliable-betting-site__faq-item.active .page-blog-how-to-choose-reliable-betting-site__faq-answer {
  max-height: 2000px; /* Large enough to show content */
  padding-top: 15px;
}

.page-blog-how-to-choose-reliable-betting-site__faq-item[open] .page-blog-how-to-choose-reliable-betting-site__faq-answer {
  max-height: none; /* Let content dictate height for details open state */
  padding-top: 15px;
}

.page-blog-how-to-choose-reliable-betting-site__faq-item[open] .page-blog-how-to-choose-reliable-betting-site__faq-toggle {
  transform: rotate(45deg); /* Rotate for open state */
}

.page-blog-how-to-choose-reliable-betting-site__conclusion-section {
  background-color: #0d0d0d;
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
}

.page-blog-how-to-choose-reliable-betting-site__conclusion-section .page-blog-how-to-choose-reliable-betting-site__section-title {
  margin-bottom: 30px;
}

.page-blog-how-to-choose-reliable-betting-site__conclusion-section p {
  font-size: 1.1em;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto 40px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .page-blog-how-to-choose-reliable-betting-site__main-title {
    font-size: 2.5em;
  }
  .page-blog-how-to-choose-reliable-betting-site__section-title {
    font-size: 2em;
  }
  .page-blog-how-to-choose-reliable-betting-site__cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-choose-reliable-betting-site__main-title {
    font-size: 2em; /* Adjust for mobile */
  }

  .page-blog-how-to-choose-reliable-betting-site__intro-text {
    font-size: 1em;
  }

  .page-blog-how-to-choose-reliable-betting-site__section-title {
    font-size: 1.8em;
  }

  .page-blog-how-to-choose-reliable-betting-site__cta-title {
    font-size: 1.6em;
  }

  .page-blog-how-to-choose-reliable-betting-site img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-choose-reliable-betting-site video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-choose-reliable-betting-site__hero-image-wrapper,
  .page-blog-how-to-choose-reliable-betting-site__content-area,
  .page-blog-how-to-choose-reliable-betting-site__container,
  .page-blog-how-to-choose-reliable-betting-site__video-section,
  .page-blog-how-to-choose-reliable-betting-site__video-container,
  .page-blog-how-to-choose-reliable-betting-site__video-wrapper,
  .page-blog-how-to-choose-reliable-betting-site__section,
  .page-blog-how-to-choose-reliable-betting-site__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .page-blog-how-to-choose-reliable-betting-site__hero-section {
    padding-top: 10px !important; 
    padding-bottom: 40px !important;
  }

  .page-blog-how-to-choose-reliable-betting-site__dark-section {
    padding: 40px 0 !important;
  }

  .page-blog-how-to-choose-reliable-betting-site__cta-button,
  .page-blog-how-to-choose-reliable-betting-site__btn-primary,
  .page-blog-how-to-choose-reliable-betting-site__btn-secondary,
  .page-blog-how-to-choose-reliable-betting-site a[class*="button"],
  .page-blog-how-to-choose-reliable-betting-site 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;
    margin-left: 0 !important; /* Remove margin for stacking */
  }

  .page-blog-how-to-choose-reliable-betting-site__cta-buttons {
    display: flex;
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-how-to-choose-reliable-betting-site__main-title {
    font-size: 1.7em;
  }
  .page-blog-how-to-choose-reliable-betting-site__section-title {
    font-size: 1.5em;
  }
  .page-blog-how-to-choose-reliable-betting-site__cta-title {
    font-size: 1.4em;
  }
  .page-blog-how-to-choose-reliable-betting-site__feature-grid,
  .page-blog-how-to-choose-reliable-betting-site__risk-list {
    grid-template-columns: 1fr;
  }
}