/* style/blog-online-cockfighting-betting-tips.css */
.page-blog-online-cockfighting-betting-tips {
  background-color: #08160F;
  color: #F2FFF6; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-online-cockfighting-betting-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 40px 0; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
}

.page-blog-online-cockfighting-betting-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px;
}

.page-blog-online-cockfighting-betting-tips__hero-content {
  max-width: 900px;
  margin-top: 30px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-online-cockfighting-betting-tips__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  color: #F2C14E; /* Gold color for main title */
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-blog-online-cockfighting-betting-tips__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A7D9B8;
}

.page-blog-online-cockfighting-betting-tips__btn-primary {
  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;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-blog-online-cockfighting-betting-tips__btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-blog-online-cockfighting-betting-tips__btn-centered {
  margin: 40px auto;
  display: block;
  width: fit-content;
}

.page-blog-online-cockfighting-betting-tips__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-online-cockfighting-betting-tips__section-wrapper {
  padding: 30px;
  background-color: #11271B; /* Card BG color */
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  margin-bottom: 40px;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-blog-online-cockfighting-betting-tips__section-title {
  font-size: 2.2rem;
  color: #57E38D; /* Glow color for section titles */
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

.page-blog-online-cockfighting-betting-tips__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 3px;
  background-color: #F2C14E;
  border-radius: 2px;
}

.page-blog-online-cockfighting-betting-tips__paragraph {
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #F2FFF6;
}

.page-blog-online-cockfighting-betting-tips__image-inline {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

.page-blog-online-cockfighting-betting-tips__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-blog-online-cockfighting-betting-tips__list-item {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid #F2C14E;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-online-cockfighting-betting-tips__list-title {
  font-size: 1.4rem;
  color: #57E38D;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-online-cockfighting-betting-tips__list-text {
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.6;
}

.page-blog-online-cockfighting-betting-tips__faq-list {
  margin-top: 30px;
}

.page-blog-online-cockfighting-betting-tips__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-online-cockfighting-betting-tips__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-color: #11A84E; /* Main color */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-online-cockfighting-betting-tips__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-online-cockfighting-betting-tips__faq-question:hover {
  background-color: #22C768; /* Auxiliary color */
}

.page-blog-online-cockfighting-betting-tips__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #F2FFF6;
  margin-left: 15px;
}

.page-blog-online-cockfighting-betting-tips__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-blog-online-cockfighting-betting-tips__faq-item[open] .page-blog-online-cockfighting-betting-tips__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding-top: 15px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-blog-online-cockfighting-betting-tips__hero-section {
    padding: 10px 15px 30px 15px;
  }

  .page-blog-online-cockfighting-betting-tips__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }

  .page-blog-online-cockfighting-betting-tips__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-blog-online-cockfighting-betting-tips__description {
    font-size: 1rem;
  }

  .page-blog-online-cockfighting-betting-tips__btn-primary {
    padding: 12px 25px;
    font-size: 0.95rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-blog-online-cockfighting-betting-tips__btn-centered {
    margin-left: 0;
    margin-right: 0;
  }

  .page-blog-online-cockfighting-betting-tips__content-area {
    padding: 20px 15px;
  }

  .page-blog-online-cockfighting-betting-tips__section-wrapper {
    padding: 20px;
    margin-bottom: 30px;
  }

  .page-blog-online-cockfighting-betting-tips__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .page-blog-online-cockfighting-betting-tips__paragraph {
    font-size: 0.95rem;
  }

  .page-blog-online-cockfighting-betting-tips__list-title {
    font-size: 1.2rem;
  }

  .page-blog-online-cockfighting-betting-tips__list-item {
    padding: 15px;
  }

  .page-blog-online-cockfighting-betting-tips__image-inline,
  .page-blog-online-cockfighting-betting-tips__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-blog-online-cockfighting-betting-tips__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-online-cockfighting-betting-tips__faq-answer {
    font-size: 0.9rem;
    padding: 0 20px 15px 20px;
  }
}