.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background-color); /* Body background from shared.css: #08160F */
}

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

.page-cockfighting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom */
  overflow: hidden;
  box-sizing: border-box;
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit hero image height */
  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 {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly with image for visual flow */
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, var(--background-color) 100%);
  border-radius: 15px;
  padding-top: 120px; /* Adjust padding for visual balance */
}

.page-cockfighting__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-cockfighting__description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-cockfighting__section {
  padding: 80px 0;
  box-sizing: border-box;
}

.page-cockfighting__dark-section {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-cockfighting__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-cockfighting__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--deep-green) 0%, var(--gold) 50%, var(--deep-green) 100%);
  margin: 20px auto 0 auto;
  border-radius: 2px;
}

.page-cockfighting__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-cockfighting__text-block strong {
  color: var(--gold);
}

.page-cockfighting__image-text-block {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 40px;
}

.page-cockfighting__content-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

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

.page-cockfighting__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main);
}

.page-cockfighting__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__card-title {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-cockfighting__card-text {
  font-size: 1rem;
  color: var(--text-secondary);
}

.page-cockfighting__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.page-cockfighting__image-wrapper {
  text-align: center;
}

.page-cockfighting__ordered-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-cockfighting__ordered-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-cockfighting__ordered-list li strong {
  color: var(--gold);
}

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

.page-cockfighting__advantage-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-main);
}

.page-cockfighting__advantage-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  padding: 10px;
  background-color: var(--deep-green);
}

.page-cockfighting__advantage-title {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-cockfighting__advantage-text {
  font-size: 1rem;
  color: var(--text-secondary);
}

.page-cockfighting__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-cockfighting__steps-list li {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: var(--text-main);
}

.page-cockfighting__step-title {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-cockfighting__step-text {
  font-size: 1rem;
  color: var(--text-secondary);
}

.page-cockfighting__unordered-list {
  list-style-type: none;
  padding: 0;
  margin-top: 40px;
}

.page-cockfighting__unordered-list li {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: var(--text-main);
}

.page-cockfighting__list-title {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-cockfighting__list-text {
  font-size: 1rem;
  color: var(--text-secondary);
}

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

.page-cockfighting__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--divider);
}

.page-cockfighting__faq-question:hover {
  background-color: var(--main-color);
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-question {
  border-bottom: 1px solid var(--border-color);
}

.page-cockfighting__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-cockfighting__faq-qtext {
  flex-grow: 1;
  color: var(--text-main);
}

.page-cockfighting__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold);
}

.page-cockfighting__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary);
  background-color: var(--card-bg);
}

.page-cockfighting__faq-answer p {
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.page-cockfighting__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-cockfighting__btn-large {
  padding: 18px 40px;
  font-size: 1.25rem;
}

.page-cockfighting__cta-section {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 80px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .page-cockfighting__hero-content {
    margin-top: -80px;
    padding-top: 100px;
  }

  .page-cockfighting__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-cockfighting__description {
    font-size: 1rem;
  }

  .page-cockfighting__content-grid {
    grid-template-columns: 1fr;
  }

  .page-cockfighting__image-text-block {
    flex-direction: column;
    align-items: center;
  }

  .page-cockfighting__content-image {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .page-cockfighting__section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__container {
    padding: 0 15px !important;
  }

  .page-cockfighting__hero-section {
    padding-bottom: 40px;
  }

  .page-cockfighting__hero-content {
    margin-top: -60px;
    padding: 80px 15px 40px 15px;
  }

  .page-cockfighting__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-cockfighting__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 40px;
  }

  /* Mobile responsive for all images */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Mobile responsive for all containers holding images/videos/buttons */
  .page-cockfighting__section,
  .page-cockfighting__card,
  .page-cockfighting__container,
  .page-cockfighting__hero-section,
  .page-cockfighting__image-text-block,
  .page-cockfighting__content-grid,
  .page-cockfighting__grid-container,
  .page-cockfighting__advantages-grid,
  .page-cockfighting__steps-list li,
  .page-cockfighting__unordered-list li,
  .page-cockfighting__faq-item,
  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Specific overrides for padding if needed, ensuring no double padding */
  .page-cockfighting__hero-content,
  .page-cockfighting__faq-question,
  .page-cockfighting__faq-answer {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Mobile responsive for buttons */
  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-large {
    white-space: normal !important;
    word-wrap: break-word !important;
    text-align: center;
  }

  .page-cockfighting__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* Video section top padding for mobile, relying on body for header offset */
  .page-cockfighting__video-section {
    padding-top: 10px !important;
  }

  .page-cockfighting__image-text-block {
    flex-direction: column;
    align-items: center;
  }
  
  .page-cockfighting__content-image {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__hero-content {
    margin-top: -40px;
    padding-top: 60px;
  }
  .page-cockfighting__section {
    padding: 40px 0;
  }
  .page-cockfighting__btn-large {
    font-size: 1.1rem;
    padding: 15px 25px;
  }
}