.page-blog-how-to-choose-a-reliable-betting-site {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color, #F2FFF6); /* Default to light text for dark background */
  background-color: var(--background-color, #08160F);
}

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

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

.page-blog-how-to-choose-a-reliable-betting-site__hero-content {
  position: relative; /* Not absolute to avoid overlapping image, normal flow */
  max-width: 900px;
  padding: 20px;
  margin-top: 20px;
  background: rgba(17, 39, 27, 0.85); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-how-to-choose-a-reliable-betting-site__main-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: bold;
  color: var(--gold-color, #F2C14E);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-how-to-choose-a-reliable-betting-site__hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 30px;
}

.page-blog-how-to-choose-a-reliable-betting-site__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-blog-how-to-choose-a-reliable-betting-site__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px var(--glow-color, #57E38D);
}

.page-blog-how-to-choose-a-reliable-betting-site__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-how-to-choose-a-reliable-betting-site__article {
  background-color: var(--background-color, #08160F);
  border-radius: 10px;
  padding: 20px 0;
}

.page-blog-how-to-choose-a-reliable-betting-site__section-title {
  font-size: 2.2rem;
  color: var(--gold-color, #F2C14E);
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-blog-how-to-choose-a-reliable-betting-site__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-main-color, #F2FFF6);
}

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

.page-blog-how-to-choose-a-reliable-betting-site__card {
  background-color: var(--card-bg-color, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-how-to-choose-a-reliable-betting-site__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-choose-a-reliable-betting-site__card-title {
  font-size: 1.5rem;
  color: var(--gold-color, #F2C14E);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-choose-a-reliable-betting-site__card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-blog-how-to-choose-a-reliable-betting-site__card-text {
  font-size: 1rem;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-how-to-choose-a-reliable-betting-site__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-how-to-choose-a-reliable-betting-site__list-item {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-how-to-choose-a-reliable-betting-site__list-item strong {
  color: var(--gold-color, #F2C14E);
}

.page-blog-how-to-choose-a-reliable-betting-site__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 10px;
  object-fit: cover;
}

.page-blog-how-to-choose-a-reliable-betting-site__cta-wrapper {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-how-to-choose-a-reliable-betting-site__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3rem;
}

.page-blog-how-to-choose-a-reliable-betting-site__faq-section {
  margin-top: 50px;
  padding: 30px;
  background-color: var(--card-bg-color, #11271B);
  border-radius: 10px;
  border: 1px solid var(--border-color, #2E7A4E);
}

.page-blog-how-to-choose-a-reliable-betting-site__faq-title {
  font-size: 2rem;
  color: var(--gold-color, #F2C14E);
  text-align: center;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-a-reliable-betting-site__faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid var(--divider-color, #1E3A2A);
  padding-bottom: 15px;
}

.page-blog-how-to-choose-a-reliable-betting-site__faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.page-blog-how-to-choose-a-reliable-betting-site__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
  font-size: 1.2rem;
  color: var(--text-main-color, #F2FFF6);
  font-weight: bold;
}

.page-blog-how-to-choose-a-reliable-betting-site__faq-question::-webkit-details-marker, 
.page-blog-how-to-choose-a-reliable-betting-site__faq-question::marker {
  display: none; /* Hide default marker for details/summary */
}

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

.page-blog-how-to-choose-a-reliable-betting-site__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--glow-color, #57E38D);
  margin-left: 10px;
}

.page-blog-how-to-choose-a-reliable-betting-site__faq-item[open] .page-blog-how-to-choose-a-reliable-betting-site__faq-toggle {
  content: '−'; /* Change to minus when open */
}

.page-blog-how-to-choose-a-reliable-betting-site__faq-answer {
  padding: 10px 0 5px 0;
  font-size: 1rem;
  color: var(--text-secondary-color, #A7D9B8);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-how-to-choose-a-reliable-betting-site__main-title {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }
  .page-blog-how-to-choose-a-reliable-betting-site__section-title {
    font-size: 1.8rem;
  }
  .page-blog-how-to-choose-a-reliable-betting-site__card-title {
    font-size: 1.3rem;
  }
  .page-blog-how-to-choose-a-reliable-betting-site__paragraph,
  .page-blog-how-to-choose-a-reliable-betting-site__list-item,
  .page-blog-how-to-choose-a-reliable-betting-site__card-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-choose-a-reliable-betting-site__hero-content {
    margin-top: 10px;
    padding: 15px;
    max-width: 95%;
  }
  .page-blog-how-to-choose-a-reliable-betting-site__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .page-blog-how-to-choose-a-reliable-betting-site__hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }
  .page-blog-how-to-choose-a-reliable-betting-site__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-blog-how-to-choose-a-reliable-betting-site__cta-button--large {
    font-size: 1.1rem;
    padding: 15px 25px;
  }
  .page-blog-how-to-choose-a-reliable-betting-site__content-area {
    padding: 20px 15px;
  }
  .page-blog-how-to-choose-a-reliable-betting-site__section-title {
    font-size: 1.6rem;
  }
  .page-blog-how-to-choose-a-reliable-betting-site__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-how-to-choose-a-reliable-betting-site__card {
    padding: 20px;
  }
  .page-blog-how-to-choose-a-reliable-betting-site__card-image {
    max-height: 200px;
  }
  .page-blog-how-to-choose-a-reliable-betting-site__paragraph,
  .page-blog-how-to-choose-a-reliable-betting-site__list-item,
  .page-blog-how-to-choose-a-reliable-betting-site__card-text {
    font-size: 0.9rem;
  }
  .page-blog-how-to-choose-a-reliable-betting-site__list {
    margin-left: 20px;
  }
  .page-blog-how-to-choose-a-reliable-betting-site__image-full-width {
    margin: 20px 0;
  }
  .page-blog-how-to-choose-a-reliable-betting-site__faq-section {
    padding: 20px;
  }
  .page-blog-how-to-choose-a-reliable-betting-site__faq-title {
    font-size: 1.8rem;
  }
  .page-blog-how-to-choose-a-reliable-betting-site__faq-question {
    font-size: 1.1rem;
  }
  .page-blog-how-to-choose-a-reliable-betting-site__faq-answer {
    font-size: 0.9rem;
  }

  /* Ensure all images are responsive */
  .page-blog-how-to-choose-a-reliable-betting-site img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Ensure all containers containing images are responsive */
  .page-blog-how-to-choose-a-reliable-betting-site__hero-section,
  .page-blog-how-to-choose-a-reliable-betting-site__content-area,
  .page-blog-how-to-choose-a-reliable-betting-site__card,
  .page-blog-how-to-choose-a-reliable-betting-site__article,
  .page-blog-how-to-choose-a-reliable-betting-site__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-how-to-choose-a-reliable-betting-site__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-how-to-choose-a-reliable-betting-site__content-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-how-to-choose-a-reliable-betting-site__main-title {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }
  .page-blog-how-to-choose-a-reliable-betting-site__section-title {
    font-size: 1.4rem;
  }
  .page-blog-how-to-choose-a-reliable-betting-site__cta-button--large {
    font-size: 1rem;
    padding: 12px 20px;
  }
  .page-blog-how-to-choose-a-reliable-betting-site__faq-question {
    font-size: 1rem;
  }
}