.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
  color: #ffffff; /* Dark body background #0a0a0a, so light text */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-cockfighting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Padding for fixed header */
.page-cockfighting__hero-content-section {
  padding-top: 120px; /* Desktop: Adjust based on fixed header height */
  padding-bottom: 40px;
  background-color: #0a0a0a;
}

.page-cockfighting__main-title {
  font-size: 38px;
  font-weight: bold;
  color: #007bff;
  text-align: center;
  margin-bottom: 25px;
}

.page-cockfighting__intro-text,
.page-cockfighting__conclusion-text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-cockfighting__keyword {
  color: #ffc107; /* Highlight keywords with accent color */
  font-weight: bold;
}

.page-cockfighting__section-title {
  font-size: 32px;
  font-weight: bold;
  color: #007bff;
  text-align: center;
  margin-bottom: 30px;
}

.page-cockfighting__sub-title {
  font-size: 24px;
  font-weight: bold;
  color: #28a745;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-cockfighting__card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 40px;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-cockfighting__info-section,
.page-cockfighting__criteria-section,
.page-cockfighting__types-section,
.page-cockfighting__strategy-section,
.page-cockfighting__other-games-section,
.page-cockfighting__faq-section,
.page-cockfighting__conclusion-section {
  padding: 40px 0;
}

.page-cockfighting__dark-bg .page-cockfighting__card {
  background: rgba(0, 123, 255, 0.15); /* Slightly darker blue tint for contrast */
  color: #ffffff;
}

.page-cockfighting__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-cockfighting__list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.page-cockfighting__list-item-title {
  color: #ffc107;
}

.page-cockfighting__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 30px auto 0 auto;
  object-fit: cover;
}

.page-cockfighting__image--large {
  max-width: 90%;
}

.page-cockfighting__image--medium {
  max-width: 70%;
}

.page-cockfighting__cta-button {
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
  padding: 15px 35px;
  background: linear-gradient(135deg, #28a745, #007bff); /* Green to Blue gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

.page-cockfighting__cta-button:hover {
  background: linear-gradient(135deg, #007bff, #28a745);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

.page-cockfighting__cta-link {
  color: #ffc107; /* Accent color for links */
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-cockfighting__cta-link:hover {
  color: #ffa000;
  text-decoration: underline;
}

/* FAQ Section */
.page-cockfighting__faq-section {
  background-color: #0a0a0a;
  padding-top: 40px;
  padding-bottom: 60px;
}

.page-cockfighting__faq-list {
  margin-top: 30px;
}

.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter card for FAQ */
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-cockfighting__faq-question:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}

.page-cockfighting__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none;
}

.page-cockfighting__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #ffc107;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-cockfighting__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #f0f0f0;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 8px 8px;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-toggle {
  color: #28a745;
  transform: rotate(45deg);
}

.page-cockfighting__conclusion-section {
  padding-bottom: 60px;
  background-color: #0a0a0a;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting__main-title {
    font-size: 32px;
  }
  .page-cockfighting__section-title {
    font-size: 28px;
  }
  .page-cockfighting__sub-title {
    font-size: 22px;
  }
  .page-cockfighting__intro-text,
  .page-cockfighting__conclusion-text {
    font-size: 17px;
  }
  .page-cockfighting__card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-content-section {
    padding-top: 100px !important; /* Mobile: Adjust based on fixed header height */
    padding-bottom: 30px;
  }
  .page-cockfighting__container {
    padding: 0 15px;
  }
  .page-cockfighting__main-title {
    font-size: 28px;
  }
  .page-cockfighting__section-title {
    font-size: 24px;
  }
  .page-cockfighting__sub-title {
    font-size: 20px;
  }
  .page-cockfighting__intro-text,
  .page-cockfighting__conclusion-text,
  .page-cockfighting__list li,
  .page-cockfighting__faq-answer p {
    font-size: 15px;
  }
  .page-cockfighting__card {
    padding: 25px;
  }
  .page-cockfighting__image--large {
    max-width: 100%;
  }
  .page-cockfighting__image--medium {
    max-width: 90%;
  }
  .page-cockfighting__image {
    margin-top: 20px;
  }
  .page-cockfighting__cta-button {
    font-size: 18px;
    padding: 12px 25px;
  }
  .page-cockfighting__faq-question {
    padding: 15px 20px;
  }
  .page-cockfighting__faq-question h3 {
    font-size: 16px;
  }
  .page-cockfighting__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-cockfighting__faq-answer {
    padding: 0 20px;
  }
  .page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
    padding: 15px 20px !important;
  }

  /* Mobile image specific rules */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-cockfighting__section,
  .page-cockfighting__card,
  .page-cockfighting__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__main-title {
    font-size: 24px;
  }
  .page-cockfighting__section-title {
    font-size: 20px;
  }
  .page-cockfighting__sub-title {
    font-size: 18px;
  }
  .page-cockfighting__cta-button {
    font-size: 16px;
    padding: 10px 20px;
  }
  .page-cockfighting__faq-question h3 {
    font-size: 15px;
  }
}