/* style/blog-safe-betting-guide.css */
.page-blog-safe-betting-guide {
  background-color: #08160F; /* Nền chính của trang */
  color: #F2FFF6; /* Màu chữ chính */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-safe-betting-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Nhỏ hơn để body xử lý padding-top từ header */
  text-align: center;
  overflow: hidden;
}

.page-blog-safe-betting-guide__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-blog-safe-betting-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-blog-safe-betting-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-safe-betting-guide__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-blog-safe-betting-guide__intro-text {
  font-size: 1.15rem;
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-blog-safe-betting-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.page-blog-safe-betting-guide__btn-primary,
.page-blog-safe-betting-guide__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  max-width: 100%;
}

.page-blog-safe-betting-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: 2px solid transparent;
}

.page-blog-safe-betting-guide__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-safe-betting-guide__btn-secondary {
  background: #11271B;
  color: #2AD16F;
  border: 2px solid #2E7A4E;
}

.page-blog-safe-betting-guide__btn-secondary:hover {
  background: #2E7A4E;
  color: #F2FFF6;
  transform: translateY(-2px);
}

.page-blog-safe-betting-guide__section {
  padding: 50px 20px;
  background-color: #08160F;
}

.page-blog-safe-betting-guide__container {
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-safe-betting-guide__section-title {
  font-size: 2.5rem;
  color: #F2FFF6;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
}

.page-blog-safe-betting-guide__sub-title {
  font-size: 1.8rem;
  color: #2AD16F;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-safe-betting-guide__paragraph {
  font-size: 1.05rem;
  color: #A7D9B8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-safe-betting-guide__highlight {
  color: #F2C14E; /* Gold */
  font-weight: 600;
}

.page-blog-safe-betting-guide__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

.page-blog-safe-betting-guide__link {
  color: #57E38D;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-safe-betting-guide__link:hover {
  color: #F2C14E;
  text-decoration: underline;
}

.page-blog-safe-betting-guide__faq-section {
  padding: 50px 20px;
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-safe-betting-guide__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-safe-betting-guide__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2E7A4E;
}

.page-blog-safe-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #1E3A2A;
  user-select: none;
}

.page-blog-safe-betting-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-safe-betting-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D;
}

.page-blog-safe-betting-guide__faq-item[open] .page-blog-safe-betting-guide__faq-toggle {
  color: #F2C14E;
}

.page-blog-safe-betting-guide__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.7;
  text-align: justify;
}

.page-blog-safe-betting-guide__faq-answer p {
  margin-bottom: 0;
}

.page-blog-safe-betting-guide__cta-buttons--centered {
  text-align: center;
}

.page-blog-safe-betting-guide__conclusion-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #08160F;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .page-blog-safe-betting-guide__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-blog-safe-betting-guide__section-title {
    font-size: 2.2rem;
  }

  .page-blog-safe-betting-guide__sub-title {
    font-size: 1.6rem;
  }

  .page-blog-safe-betting-guide__paragraph {
    font-size: 1rem;
  }
}

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

  .page-blog-safe-betting-guide__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-safe-betting-guide__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-blog-safe-betting-guide__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-blog-safe-betting-guide__intro-text {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-blog-safe-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-safe-betting-guide__btn-primary,
  .page-blog-safe-betting-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-safe-betting-guide__section,
  .page-blog-safe-betting-guide__faq-section,
  .page-blog-safe-betting-guide__conclusion-section {
    padding: 30px 15px;
  }

  .page-blog-safe-betting-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-blog-safe-betting-guide__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .page-blog-safe-betting-guide__sub-title {
    font-size: 1.4rem;
    margin-top: 30px;
  }

  .page-blog-safe-betting-guide__paragraph {
    font-size: 0.95rem;
  }

  .page-blog-safe-betting-guide__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-safe-betting-guide__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-safe-betting-guide__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.95rem;
  }
}

/* Ensure content areas and images do not cause horizontal scroll */
.page-blog-safe-betting-guide__content-area,
.page-blog-safe-betting-guide__section {
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.page-blog-safe-betting-guide img {
  max-width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
}

/* No CSS filters on images */
.page-blog-safe-betting-guide img {
  filter: none; /* Ensure no filters are applied */
}