/* style/blog-how-to-evaluate-betting-platform-reputation.css */

/* Custom Colors */
:root {
  --page-bg: #08160F;
  --card-bg: #11271B;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --btn-gradient-start: #2AD16F;
  --btn-gradient-end: #13994A;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-blog-how-to-evaluate-betting-platform-reputation {
  background-color: var(--page-bg);
  color: var(--text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 40px; /* Ensure space above footer */
}

.page-blog-how-to-evaluate-betting-platform-reputation__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 40px; /* Small top padding, more bottom padding */
  background-color: var(--page-bg);
}

.page-blog-how-to-evaluate-betting-platform-reputation__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-how-to-evaluate-betting-platform-reputation__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit hero image height */
}

.page-blog-how-to-evaluate-betting-platform-reputation__hero-content {
  max-width: 900px;
  margin: 20px auto 0;
  padding: 0 20px;
  text-align: center;
}

.page-blog-how-to-evaluate-betting-platform-reputation__main-title {
  font-size: clamp(2em, 4vw, 2.8em);
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-blog-how-to-evaluate-betting-platform-reputation__description {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-how-to-evaluate-betting-platform-reputation__highlight {
  color: var(--text-main);
  font-weight: bold;
}

.page-blog-how-to-evaluate-betting-platform-reputation__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.page-blog-how-to-evaluate-betting-platform-reputation__btn-primary,
.page-blog-how-to-evaluate-betting-platform-reputation__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-how-to-evaluate-betting-platform-reputation__btn-primary {
  background: linear-gradient(180deg, var(--btn-gradient-start) 0%, var(--btn-gradient-end) 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(var(--btn-gradient-start), 0.4);
}

.page-blog-how-to-evaluate-betting-platform-reputation__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-how-to-evaluate-betting-platform-reputation__btn-secondary {
  background-color: transparent;
  color: var(--btn-gradient-start);
  border: 2px solid var(--btn-gradient-start);
}

.page-blog-how-to-evaluate-betting-platform-reputation__btn-secondary:hover {
  background-color: var(--btn-gradient-start);
  color: #ffffff;
  transform: translateY(-2px);
}

.page-blog-how-to-evaluate-betting-platform-reputation__content-area,
.page-blog-how-to-evaluate-betting-platform-reputation__analysis-section,
.page-blog-how-to-evaluate-betting-platform-reputation__faq-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  background-color: var(--page-bg);
  color: var(--text-main);
}

.page-blog-how-to-evaluate-betting-platform-reputation__section-title {
  font-size: 2.2em;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-how-to-evaluate-betting-platform-reputation__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--glow-color);
  border-radius: 2px;
}

.page-blog-how-to-evaluate-betting-platform-reputation__paragraph {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: var(--text-secondary);
  text-align: justify;
}

.page-blog-how-to-evaluate-betting-platform-reputation__sub-title {
  font-size: 1.8em;
  color: var(--text-main);
  margin-top: 30px;
  margin-bottom: 20px;
  border-left: 5px solid var(--glow-color);
  padding-left: 15px;
}

.page-blog-how-to-evaluate-betting-platform-reputation__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-how-to-evaluate-betting-platform-reputation__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.page-blog-how-to-evaluate-betting-platform-reputation__card-title {
  font-size: 1.4em;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-blog-how-to-evaluate-betting-platform-reputation__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
  max-width: 100%;
}

.page-blog-how-to-evaluate-betting-platform-reputation__card-text {
  color: var(--text-secondary);
  font-size: 0.95em;
  flex-grow: 1;
}

.page-blog-how-to-evaluate-betting-platform-reputation__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin: 30px 0;
  max-width: 100%;
  object-fit: cover;
}

.page-blog-how-to-evaluate-betting-platform-reputation__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-blog-how-to-evaluate-betting-platform-reputation__list-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  color: var(--text-secondary);
  font-size: 1em;
  display: flex;
  flex-direction: column;
}

.page-blog-how-to-evaluate-betting-platform-reputation__list-heading {
  color: var(--text-main);
  font-size: 1.15em;
  margin-bottom: 10px;
}

.page-blog-how-to-evaluate-betting-platform-reputation__checklist {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-how-to-evaluate-betting-platform-reputation__checklist-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-how-to-evaluate-betting-platform-reputation__checklist-item .page-blog-how-to-evaluate-betting-platform-reputation__sub-title {
  margin-top: 0;
  margin-bottom: 15px;
  border-left: none;
  padding-left: 0;
  color: var(--gold-color);
}

.page-blog-how-to-evaluate-betting-platform-reputation__faq-section {
  margin-top: 60px;
}

.page-blog-how-to-evaluate-betting-platform-reputation__faq-list {
  margin-top: 30px;
}

.page-blog-how-to-evaluate-betting-platform-reputation__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-evaluate-betting-platform-reputation__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--border-color);
  list-style: none; /* For <details> summary */
}

.page-blog-how-to-evaluate-betting-platform-reputation__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for <details> summary */
}

.page-blog-how-to-evaluate-betting-platform-reputation__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-evaluate-betting-platform-reputation__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: var(--glow-color);
}

.page-blog-how-to-evaluate-betting-platform-reputation__faq-item[open] .page-blog-how-to-evaluate-betting-platform-reputation__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-how-to-evaluate-betting-platform-reputation__faq-answer {
  padding: 15px 25px 20px;
  color: var(--text-secondary);
  font-size: 1em;
}

.page-blog-how-to-evaluate-betting-platform-reputation__faq-answer p {
  margin-bottom: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-blog-how-to-evaluate-betting-platform-reputation {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-evaluate-betting-platform-reputation__hero-section {
    padding: 10px 0 30px;
  }

  .page-blog-how-to-evaluate-betting-platform-reputation__hero-content {
    padding: 0 15px;
  }

  .page-blog-how-to-evaluate-betting-platform-reputation__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-how-to-evaluate-betting-platform-reputation__description {
    font-size: 1em;
  }

  .page-blog-how-to-evaluate-betting-platform-reputation__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-how-to-evaluate-betting-platform-reputation__btn-primary,
  .page-blog-how-to-evaluate-betting-platform-reputation__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-how-to-evaluate-betting-platform-reputation__content-area,
  .page-blog-how-to-evaluate-betting-platform-reputation__analysis-section,
  .page-blog-how-to-evaluate-betting-platform-reputation__faq-section {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-how-to-evaluate-betting-platform-reputation__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-how-to-evaluate-betting-platform-reputation__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-how-to-evaluate-betting-platform-reputation__card {
    padding: 20px;
  }

  .page-blog-how-to-evaluate-betting-platform-reputation__card-image,
  .page-blog-how-to-evaluate-betting-platform-reputation__image-full-width,
  .page-blog-how-to-evaluate-betting-platform-reputation img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-blog-how-to-evaluate-betting-platform-reputation__sub-title {
    font-size: 1.5em;
    padding-left: 10px;
  }

  .page-blog-how-to-evaluate-betting-platform-reputation__list-item,
  .page-blog-how-to-evaluate-betting-platform-reputation__checklist-item {
    padding: 20px;
  }

  .page-blog-how-to-evaluate-betting-platform-reputation__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-how-to-evaluate-betting-platform-reputation__faq-answer {
    padding: 15px 20px;
  }
}

/* Ensure all containers with images/videos/buttons adapt */
.page-blog-how-to-evaluate-betting-platform-reputation__hero-section,
.page-blog-how-to-evaluate-betting-platform-reputation__content-area,
.page-blog-how-to-evaluate-betting-platform-reputation__card-grid,
.page-blog-how-to-evaluate-betting-platform-reputation__card,
.page-blog-how-to-evaluate-betting-platform-reputation__analysis-section,
.page-blog-how-to-evaluate-betting-platform-reputation__feature-list,
.page-blog-how-to-evaluate-betting-platform-reputation__checklist,
.page-blog-how-to-evaluate-betting-platform-reputation__checklist-item,
.page-blog-how-to-evaluate-betting-platform-reputation__faq-section,
.page-blog-how-to-evaluate-betting-platform-reputation__faq-list,
.page-blog-how-to-evaluate-betting-platform-reputation__faq-item {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Text contrast safety for specific elements */
.page-blog-how-to-evaluate-betting-platform-reputation__paragraph,
.page-blog-how-to-evaluate-betting-platform-reputation__card-text,
.page-blog-how-to-evaluate-betting-platform-reputation__list-item,
.page-blog-how-to-evaluate-betting-platform-reputation__faq-answer {
  color: var(--text-secondary); /* Ensure readable against background */
}

.page-blog-how-to-evaluate-betting-platform-reputation__main-title,
.page-blog-how-to-evaluate-betting-platform-reputation__section-title,
.page-blog-how-to-evaluate-betting-platform-reputation__card-title,
.page-blog-how-to-evaluate-betting-platform-reputation__sub-title,
.page-blog-how-to-evaluate-betting-reputation__list-heading,
.page-blog-how-to-evaluate-betting-platform-reputation__faq-question .page-blog-how-to-evaluate-betting-platform-reputation__faq-qtext {
  color: var(--gold-color); /* Use gold for titles, ensuring contrast */
}

.page-blog-how-to-evaluate-betting-platform-reputation__highlight {
  color: var(--text-main); /* Strong contrast for highlights */
}

.page-blog-how-to-evaluate-betting-platform-reputation__btn-primary {
  color: #ffffff;
}

.page-blog-how-to-evaluate-betting-platform-reputation__btn-secondary {
  color: var(--btn-gradient-start);
}

.page-blog-how-to-evaluate-betting-platform-reputation__btn-secondary:hover {
  color: #ffffff;
}

/* Emergency fix for contrast, though should not be needed with careful color application */
.page-blog-how-to-evaluate-betting-platform-reputation__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-blog-how-to-evaluate-betting-platform-reputation__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}