.page-cockfighting {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

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

.page-cockfighting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px; /* Space for content below image */
  overflow: hidden;
  box-sizing: border-box;
  background-color: #0D0E12; /* Ensure dark background */
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height to prevent overly large hero */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-cockfighting__hero-content {
  padding-top: 40px; /* Separates content from image */
  max-width: 800px;
  z-index: 1;
}

.page-cockfighting__main-title {
  font-weight: bold;
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 176, 77, 0.5);
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
}

.page-cockfighting__description {
  font-size: 1.1em;
  color: #FFF3E6; /* Text Main */
  margin-bottom: 30px;
}

.page-cockfighting__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button */
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

.page-cockfighting__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  transform: translateY(-2px);
}

.page-cockfighting__section-title {
  font-size: 2.5em;
  color: #FFB04D; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
  text-shadow: 0 0 8px rgba(255, 176, 77, 0.3);
}

.page-cockfighting__introduction-section,
.page-cockfighting__types-section,
.page-cockfighting__rules-section,
.page-cockfighting__strategies-section,
.page-cockfighting__video-section,
.page-cockfighting__faq-section,
.page-cockfighting__cta-final {
  padding: 80px 0;
  box-sizing: border-box;
}

.page-cockfighting__dark-section {
  background-color: #17191F; /* Card BG */
  color: #FFF3E6; /* Text Main */
}

.page-cockfighting__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #FFF3E6; /* Text Main */
}

.page-cockfighting__highlight {
  color: #FFA53A; /* Auxiliary color */
  font-weight: bold;
}

.page-cockfighting__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting__card {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF3E6; /* Text Main */
}

.page-cockfighting__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 165, 58, 0.3);
}

.page-cockfighting__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #A84F0C; /* Border */
  display: block; /* Ensures no extra space below image */
}

.page-cockfighting__card-title {
  font-size: 1.5em;
  color: #FFA53A; /* Auxiliary color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-cockfighting__card-text {
  font-size: 0.95em;
  color: #FFF3E6; /* Text Main */
}

.page-cockfighting__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-cockfighting__list-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #FFF3E6; /* Text Main */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__list-item strong {
  color: #FFA53A; /* Auxiliary color */
  margin-right: 10px;
}

.page-cockfighting__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-cockfighting__strategy-card {
  padding: 20px;
  text-align: left;
  border-left: 5px solid #FFA53A; /* Auxiliary color for accent */
}

.page-cockfighting__strategy-card .page-cockfighting__card-title {
  font-size: 1.3em;
  margin-top: 0;
}

.page-cockfighting__cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #17191F; /* Card BG */
  border-radius: 10px;
  border: 1px solid #A84F0C; /* Border */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFF3E6; /* Text Main */
}

.page-cockfighting__video-section {
  text-align: center;
  padding-top: 80px; /* Ensure spacing */
}

.page-cockfighting__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid #FFA53A; /* Auxiliary color */
  box-sizing: border-box;
}

.page-cockfighting__video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.page-cockfighting__video-caption {
  font-style: italic;
  margin-top: 15px;
  color: #FFF3E6; /* Text Main */
  font-size: 0.9em;
}

.page-cockfighting__btn-video-cta {
  margin-top: 30px;
}

.page-cockfighting__faq-section {
  padding-bottom: 80px;
}

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

.page-cockfighting__faq-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #FFF3E6; /* Text Main */
}

.page-cockfighting__faq-item summary {
  list-style: none; /* Hide default marker */
}

.page-cockfighting__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #FFA53A; /* Auxiliary color */
  cursor: pointer;
  background-color: #17191F; /* Card BG */
  transition: background-color 0.3s ease;
}

.page-cockfighting__faq-question:hover {
  background-color: rgba(255, 165, 58, 0.1); /* Light hover effect */
}

.page-cockfighting__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-toggle {
  transform: rotate(45deg); /* Rotate for minus sign */
}

.page-cockfighting__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #FFF3E6; /* Text Main */
}

.page-cockfighting__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

.page-cockfighting__cta-final {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 100px;
  background-color: #0D0E12; /* Background */
}

.page-cockfighting__cta-final-content {
  padding: 60px 20px;
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  border: 2px solid #FF8C1A; /* Main color */
  box-shadow: 0 10px 40px rgba(255, 140, 26, 0.4);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-cockfighting__section-title {
    font-size: 2em;
  }
  .page-cockfighting__hero-content {
    padding-top: 30px;
  }
}

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

  .page-cockfighting__container {
    padding: 0 15px; /* Add padding for mobile content */
  }

  .page-cockfighting__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important; /* body has padding-top, this is for internal section spacing */
  }
  
  .page-cockfighting__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em); /* Adjust H1 for smaller screens */
    margin-bottom: 15px;
  }

  .page-cockfighting__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-cockfighting__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Buttons in a group/container */
  .page-cockfighting__cta-buttons,
  .page-cockfighting__button-group,
  .page-cockfighting__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important; /* Allow buttons to wrap */
    gap: 10px; /* Space between wrapped buttons */
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
  }

  .page-cockfighting__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-cockfighting__introduction-section,
  .page-cockfighting__types-section,
  .page-cockfighting__rules-section,
  .page-cockfighting__strategies-section,
  .page-cockfighting__video-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__cta-final {
    padding: 40px 0;
  }
  
  /* Image responsiveness */
  .page-cockfighting img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-cockfighting__section,
  .page-cockfighting__card,
  .page-cockfighting__container,
  .page-cockfighting__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  /* Video responsiveness */
  .page-cockfighting video,
  .page-cockfighting__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting__video-section {
    padding-top: 40px !important; /* Adjust spacing for mobile */
  }

  .page-cockfighting__card {
    padding: 20px;
  }

  .page-cockfighting__card-image {
    height: 200px; /* Adjust image height for mobile cards */
  }

  .page-cockfighting__card-title {
    font-size: 1.3em;
  }

  .page-cockfighting__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-cockfighting__faq-answer {
    padding: 0 20px 15px;
  }
  
  .page-cockfighting__cta-final-content {
    padding: 40px 15px;
  }
}

/* Ensure no CSS filter on images */
.page-cockfighting img {
  filter: none !important;
}