/* style/blog-how-to-choose-reliable-betting-platform.css */
.page-blog-how-to-choose-reliable-betting-platform {
  font-family: Arial, sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

.page-blog-how-to-choose-reliable-betting-platform__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles header offset, small top padding here */
  overflow: hidden;
}

.page-blog-how-to-choose-reliable-betting-platform__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

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

.page-blog-how-to-choose-reliable-betting-platform__hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  z-index: 2;
  margin-top: -100px; /* Overlap slightly for visual flow */
  background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, #08160F 100%);
  border-radius: 10px;
  padding-bottom: 40px;
}

.page-blog-how-to-choose-reliable-betting-platform__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-how-to-choose-reliable-betting-platform__hero-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

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

.page-blog-how-to-choose-reliable-betting-platform__btn-primary,
.page-blog-how-to-choose-reliable-betting-platform__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-choose-reliable-betting-platform__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-how-to-choose-reliable-betting-platform__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-how-to-choose-reliable-betting-platform__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Main Color from button gradient */
  border: 2px solid #2AD16F;
}

.page-blog-how-to-choose-reliable-betting-platform__btn-secondary:hover {
  background-color: #2AD16F;
  color: #08160F;
}

.page-blog-how-to-choose-reliable-betting-platform__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-blog-how-to-choose-reliable-betting-platform__section-title {
  font-size: 2.2rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-how-to-choose-reliable-betting-platform__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #2AD16F; /* Main Color */
  border-radius: 2px;
}

.page-blog-how-to-choose-reliable-betting-platform__paragraph {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
  text-align: justify;
}

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

.page-blog-how-to-choose-reliable-betting-platform__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-choose-reliable-betting-platform__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-choose-reliable-betting-platform__card-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 1px solid #2E7A4E;
}

.page-blog-how-to-choose-reliable-betting-platform__card-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-how-to-choose-reliable-betting-platform__card-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-how-to-choose-reliable-betting-platform__card-link {
  display: inline-block;
  margin-top: auto; /* Push link to bottom */
  color: #2AD16F; /* Main Color from button gradient */
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s ease;
}

.page-blog-how-to-choose-reliable-betting-platform__card-link:hover {
  border-bottom: 2px solid #2AD16F;
}

.page-blog-how-to-choose-reliable-betting-platform__ordered-list {
  list-style-type: none;
  counter-reset: item;
  padding: 0;
  margin-left: 20px;
  margin-top: 30px;
}

.page-blog-how-to-choose-reliable-betting-platform__ordered-list li {
  counter-increment: item;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.05rem;
  color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-choose-reliable-betting-platform__ordered-list li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #2AD16F; /* Main Color */
  font-size: 1.2rem;
  top: 0;
}

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

.page-blog-how-to-choose-reliable-betting-platform__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-how-to-choose-reliable-betting-platform__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  font-size: 1.1rem;
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-choose-reliable-betting-platform__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome/Safari */
}

.page-blog-how-to-choose-reliable-betting-platform__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-choose-reliable-betting-platform__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F; /* Main Color */
}

.page-blog-how-to-choose-reliable-betting-platform__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-blog-how-to-choose-reliable-betting-platform__faq-item[open] .page-blog-how-to-choose-reliable-betting-platform__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding-top: 10px;
}

.page-blog-how-to-choose-reliable-betting-platform__faq-item[open] .page-blog-how-to-choose-reliable-betting-platform__faq-toggle {
  content: '−';
}

.page-blog-how-to-choose-reliable-betting-platform__cta-buttons--bottom {
  margin-top: 50px;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-choose-reliable-betting-platform__hero-content {
    margin-top: -80px;
    max-width: 700px;
  }

  .page-blog-how-to-choose-reliable-betting-platform__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-blog-how-to-choose-reliable-betting-platform__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-choose-reliable-betting-platform__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-how-to-choose-reliable-betting-platform__hero-content {
    margin-top: -60px;
    padding: 15px;
    max-width: 90%;
  }

  .page-blog-how-to-choose-reliable-betting-platform__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-how-to-choose-reliable-betting-platform__hero-description {
    font-size: 1rem;
  }

  .page-blog-how-to-choose-reliable-betting-platform__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .page-blog-how-to-choose-reliable-betting-platform__btn-primary,
  .page-blog-how-to-choose-reliable-betting-platform__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-blog-how-to-choose-reliable-betting-platform__content-area {
    padding: 20px 15px;
  }

  .page-blog-how-to-choose-reliable-betting-platform__section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .page-blog-how-to-choose-reliable-betting-platform__paragraph,
  .page-blog-how-to-choose-reliable-betting-platform__ordered-list li,
  .page-blog-how-to-choose-reliable-betting-platform__card-description,
  .page-blog-how-to-choose-reliable-betting-platform__faq-answer {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-choose-reliable-betting-platform__criteria-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-how-to-choose-reliable-betting-platform__card {
    padding: 20px;
  }

  .page-blog-how-to-choose-reliable-betting-platform__card-image {
    height: 200px;
  }

  .page-blog-how-to-choose-reliable-betting-platform__card-title {
    font-size: 1.3rem;
  }

  .page-blog-how-to-choose-reliable-betting-platform__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-how-to-choose-reliable-betting-platform__faq-toggle {
    font-size: 1.5rem;
  }

  /* Mobile image responsiveness */
  .page-blog-how-to-choose-reliable-betting-platform img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-choose-reliable-betting-platform__section,
  .page-blog-how-to-choose-reliable-betting-platform__card,
  .page-blog-how-to-choose-reliable-betting-platform__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Video responsiveness (if any) */
  .page-blog-how-to-choose-reliable-betting-platform video,
  .page-blog-how-to-choose-reliable-betting-platform__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-choose-reliable-betting-platform__video-section,
  .page-blog-how-to-choose-reliable-betting-platform__video-container,
  .page-blog-how-to-choose-reliable-betting-platform__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-how-to-choose-reliable-betting-platform__video-section {
    padding-top: 10px !important;
  }

  .page-blog-how-to-choose-reliable-betting-platform__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Button responsiveness */
  .page-blog-how-to-choose-reliable-betting-platform__cta-button,
  .page-blog-how-to-choose-reliable-betting-platform__btn-primary,
  .page-blog-how-to-choose-reliable-betting-platform__btn-secondary,
  .page-blog-how-to-choose-reliable-betting-platform a[class*="button"],
  .page-blog-how-to-choose-reliable-betting-platform 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;
  }

  .page-blog-how-to-choose-reliable-betting-platform__cta-buttons,
  .page-blog-how-to-choose-reliable-betting-platform__button-group,
  .page-blog-how-to-choose-reliable-betting-platform__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-blog-how-to-choose-reliable-betting-platform__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-blog-how-to-choose-reliable-betting-platform__hero-content {
    margin-top: -40px;
  }

  .page-blog-how-to-choose-reliable-betting-platform__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .page-blog-how-to-choose-reliable-betting-platform__section-title {
    font-size: 1.5rem;
  }

  .page-blog-how-to-choose-reliable-betting-platform__card-image {
    height: 180px;
  }

  .page-blog-how-to-choose-reliable-betting-platform__card-title {
    font-size: 1.2rem;
  }
}