/* style/blog-betvnd-troubleshooting.css */

:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

/* Body background is assumed to be dark from shared.css (var(--bg-color)), so text should be light */
.page-blog-betvnd-troubleshooting {
  color: var(--text-main-color); /* Light text for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: var(--background-color);
}

.page-blog-betvnd-troubleshooting__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-color: var(--deep-green-color);
}

.page-blog-betvnd-troubleshooting__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-blog-betvnd-troubleshooting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-betvnd-troubleshooting__hero-content {
  max-width: 900px;
  text-align: center;
  color: var(--text-main-color);
}

.page-blog-betvnd-troubleshooting__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--gold-color);
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
}

.page-blog-betvnd-troubleshooting__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--text-secondary-color);
}

.page-blog-betvnd-troubleshooting__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-betvnd-troubleshooting__btn-primary,
.page-blog-betvnd-troubleshooting__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-betvnd-troubleshooting__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main-color); /* Button text always white */
  border: 2px solid transparent;
}

.page-blog-betvnd-troubleshooting__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
}

.page-blog-betvnd-troubleshooting__btn-secondary {
  background: transparent;
  color: var(--glow-color); /* Use brand color for contrast */
  border: 2px solid var(--glow-color);
}

.page-blog-betvnd-troubleshooting__btn-secondary:hover {
  background: var(--glow-color);
  color: var(--background-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-betvnd-troubleshooting__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  color: var(--text-main-color);
}

.page-blog-betvnd-troubleshooting__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-blog-betvnd-troubleshooting__text-block {
  font-size: 1.05rem;
  margin-bottom: 25px;
  color: var(--text-secondary-color);
}

.page-blog-betvnd-troubleshooting__highlight {
  color: var(--glow-color);
  font-weight: 600;
}

.page-blog-betvnd-troubleshooting__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-betvnd-troubleshooting__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main-color);
}

.page-blog-betvnd-troubleshooting__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 10px var(--glow-color);
}

.page-blog-betvnd-troubleshooting__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--glow-color);
  margin-bottom: 15px;
}

.page-blog-betvnd-troubleshooting__card-text {
  font-size: 0.95rem;
  color: var(--text-secondary-color);
}

.page-blog-betvnd-troubleshooting__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 40px auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-blog-betvnd-troubleshooting__steps-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.page-blog-betvnd-troubleshooting__step-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  color: var(--text-main-color);
}

.page-blog-betvnd-troubleshooting__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-color);
  margin-bottom: 10px;
}

.page-blog-betvnd-troubleshooting__step-text {
  font-size: 0.95rem;
  color: var(--text-secondary-color);
}

.page-blog-betvnd-troubleshooting__faq-list {
  margin-top: 30px;
}

.page-blog-betvnd-troubleshooting__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color);
}

.page-blog-betvnd-troubleshooting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--glow-color);
  cursor: pointer;
  background-color: var(--deep-green-color);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-betvnd-troubleshooting__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-betvnd-troubleshooting__faq-question:hover {
  background-color: var(--primary-color);
}

.page-blog-betvnd-troubleshooting__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--gold-color);
  transition: transform 0.3s ease;
}

.page-blog-betvnd-troubleshooting__faq-item[open] .page-blog-betvnd-troubleshooting__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-betvnd-troubleshooting__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: var(--text-secondary-color);
}

.page-blog-betvnd-troubleshooting__cta-buttons--bottom {
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-betvnd-troubleshooting__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-blog-betvnd-troubleshooting__hero-description {
    font-size: 1.05rem;
  }

  .page-blog-betvnd-troubleshooting__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-blog-betvnd-troubleshooting {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-betvnd-troubleshooting__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-betvnd-troubleshooting__hero-content {
    padding: 0 10px;
  }

  .page-blog-betvnd-troubleshooting__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-betvnd-troubleshooting__hero-description {
    font-size: 1rem;
  }

  .page-blog-betvnd-troubleshooting__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-betvnd-troubleshooting__btn-primary,
  .page-blog-betvnd-troubleshooting__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-betvnd-troubleshooting__content-area {
    padding: 40px 15px;
  }

  .page-blog-betvnd-troubleshooting__section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .page-blog-betvnd-troubleshooting__card,
  .page-blog-betvnd-troubleshooting__step-card {
    padding: 20px;
  }

  .page-blog-betvnd-troubleshooting__card-title,
  .page-blog-betvnd-troubleshooting__step-title {
    font-size: 1.2rem;
  }

  .page-blog-betvnd-troubleshooting__card-text,
  .page-blog-betvnd-troubleshooting__step-text {
    font-size: 0.9rem;
  }

  .page-blog-betvnd-troubleshooting__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 30px auto;
  }

  .page-blog-betvnd-troubleshooting__section,
  .page-blog-betvnd-troubleshooting__card,
  .page-blog-betvnd-troubleshooting__container,
  .page-blog-betvnd-troubleshooting__hero-image-wrapper,
  .page-blog-betvnd-troubleshooting__grid-container,
  .page-blog-betvnd-troubleshooting__steps-container,
  .page-blog-betvnd-troubleshooting__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-betvnd-troubleshooting__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-betvnd-troubleshooting__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .page-blog-betvnd-troubleshooting__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .page-blog-betvnd-troubleshooting__section-title {
    font-size: 1.6rem;
  }
}