/* style/blog-w188-sports-betting-strategy.css */

/* Body background is handled by shared.css, so main content needs to consider contrast */
.page-blog-w188-sports-betting-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Default text color for dark background */
  background: #08160F; /* Overall page background */
}

.page-blog-w188-sports-betting-strategy__dark-bg {
  background: #08160F;
  color: #F2FFF6;
}

.page-blog-w188-sports-betting-strategy__light-bg {
  background: #11271B; /* Card BG color for content sections */
  color: #F2FFF6;
}

.page-blog-w188-sports-betting-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  text-align: center;
  overflow: hidden;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
}

.page-blog-w188-sports-betting-strategy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-blog-w188-sports-betting-strategy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  color: #F2FFF6;
}

.page-blog-w188-sports-betting-strategy__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-w188-sports-betting-strategy__description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  color: #A7D9B8;
}

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

.page-blog-w188-sports-betting-strategy__link:hover {
  color: #2AD16F;
}

.page-blog-w188-sports-betting-strategy__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-w188-sports-betting-strategy__btn-primary,
.page-blog-w188-sports-betting-strategy__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;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-w188-sports-betting-strategy__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-w188-sports-betting-strategy__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-w188-sports-betting-strategy__btn-secondary {
  background: transparent;
  color: #57E38D;
  border: 2px solid #57E38D;
}

.page-blog-w188-sports-betting-strategy__btn-secondary:hover {
  background: #57E38D;
  color: #08160F;
}

.page-blog-w188-sports-betting-strategy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background: #11271B; /* Card BG for content */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  margin-top: -60px; /* Overlap with hero section for visual flow */
  position: relative;
  z-index: 3;
}

.page-blog-w188-sports-betting-strategy__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-w188-sports-betting-strategy__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: #57E38D;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-w188-sports-betting-strategy__text-block {
  font-size: 1rem;
  color: #A7D9B8;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-blog-w188-sports-betting-strategy__highlight {
  color: #F2C14E; /* Gold color for highlights */
  font-weight: bold;
}

.page-blog-w188-sports-betting-strategy__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Section */
.page-blog-w188-sports-betting-strategy__faq-list {
  margin-top: 40px;
}

.page-blog-w188-sports-betting-strategy__faq-item {
  background: #0A4B2C; /* Deep Green for FAQ items */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-blog-w188-sports-betting-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background: #1E3A2A; /* Divider color for question background */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-w188-sports-betting-strategy__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-w188-sports-betting-strategy__faq-question:hover {
  background-color: #0A4B2C;
}

.page-blog-w188-sports-betting-strategy__faq-qtext {
  flex-grow: 1;
}

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

.page-blog-w188-sports-betting-strategy__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.7;
}

/* Styling for opened details (FAQ item) */
.page-blog-w188-sports-betting-strategy__faq-item[open] .page-blog-w188-sports-betting-strategy__faq-question {
  background-color: #0A4B2C;
}

.page-blog-w188-sports-betting-strategy__faq-item[open] .page-blog-w188-sports-betting-strategy__faq-toggle {
  content: '−';
}

.page-blog-w188-sports-betting-strategy__cta-buttons--bottom {
  margin-top: 50px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-blog-w188-sports-betting-strategy__hero-section {
    padding-top: 10px !important; /* body handles header offset */
    min-height: 400px;
  }

  .page-blog-w188-sports-betting-strategy__main-title {
    font-size: 2rem;
  }

  .page-blog-w188-sports-betting-strategy__description {
    font-size: 1rem;
  }

  .page-blog-w188-sports-betting-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-w188-sports-betting-strategy__btn-primary,
  .page-blog-w188-sports-betting-strategy__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-w188-sports-betting-strategy__content-area {
    padding: 30px 15px;
    margin-top: -30px;
    width: calc(100% - 30px) !important; /* Account for padding */
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-w188-sports-betting-strategy__section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .page-blog-w188-sports-betting-strategy__sub-title {
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-w188-sports-betting-strategy__text-block,
  .page-blog-w188-sports-betting-strategy__faq-answer p {
    font-size: 0.95rem;
  }

  .page-blog-w188-sports-betting-strategy__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }

  .page-blog-w188-sports-betting-strategy__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-w188-sports-betting-strategy__faq-answer {
    padding: 0 20px 15px;
  }
}

/* Ensure all images and containers are responsive and do not cause overflow */
.page-blog-w188-sports-betting-strategy img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-blog-w188-sports-betting-strategy__section,
.page-blog-w188-sports-betting-strategy__card,
.page-blog-w188-sports-betting-strategy__container {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-blog-w188-sports-betting-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog-w188-sports-betting-strategy__section,
  .page-blog-w188-sports-betting-strategy__card,
  .page-blog-w188-sports-betting-strategy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-blog-w188-sports-betting-strategy__hero-section {
    padding-top: 10px !important; /* body đã承担 --header-offset，此处禁止 var(--header-offset) */
  }

  .page-blog-w188-sports-betting-strategy__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
  }
}