.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

.page-cockfighting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px 40px 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.page-cockfighting__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-cockfighting__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(8, 22, 15, 0.2) 0%, rgba(8, 22, 15, 0.9) 100%);
  border-radius: 10px;
  margin-top: 200px; /* Ensure content is below image top */
}

.page-cockfighting__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-cockfighting__intro-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-cockfighting__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
}

.page-cockfighting__cta-button--primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #57E38D;
}

.page-cockfighting__cta-button--secondary {
  background: #11271B;
  color: #F2FFF6;
  border: 2px solid #2E7A4E;
}

.page-cockfighting__cta-button--secondary:hover {
  background: #2E7A4E;
  box-shadow: 0 0 15px #57E38D;
}

.page-cockfighting__section {
  padding: 60px 0;
  text-align: center;
  box-sizing: border-box;
}

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

.page-cockfighting__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-cockfighting__text-block {
  font-size: 1.1rem;
  color: #A7D9B8;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.page-cockfighting__introduction-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 0;
}

.page-cockfighting__why-choose-section {
  background-color: #08160F;
}

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

.page-cockfighting__feature-card {
  background-color: #11271B; /* Card BG */\  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid #2E7A4E;
}

.page-cockfighting__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting__feature-title {
  font-size: 1.5rem;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-cockfighting__feature-description {
  font-size: 1rem;
  color: #A7D9B8;
}

.page-cockfighting__video-section {
  background-color: #0A4B2C;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding for visual separation, body handles header offset */
}

.page-cockfighting__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  width: 100%;
}

.page-cockfighting__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
  min-width: 200px;
  min-height: 200px;
}

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

.page-cockfighting__types-section {
  background-color: #08160F;
}

.page-cockfighting__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-cockfighting__list-item {
  background-color: #11271B;
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  border: 1px solid #2E7A4E;
  transition: all 0.3s ease;
}

.page-cockfighting__list-item:hover {
  box-shadow: 0 5px 25px rgba(87, 227, 141, 0.2);
}

.page-cockfighting__list-item-title {
  font-size: 1.4rem;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-cockfighting__list-item-description {
  font-size: 1rem;
  color: #A7D9B8;
}

.page-cockfighting__guide-section {
  background-color: #0A4B2C;
}

.page-cockfighting__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-cockfighting__steps-item {
  background-color: #11271B;
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  border: 1px solid #2E7A4E;
  counter-increment: step-counter;
  position: relative;
  padding-left: 60px;
}

.page-cockfighting__steps-item::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 25px;
  background-color: #2AD16F;
  color: #08160F;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.page-cockfighting__steps-title {
  font-size: 1.3rem;
  color: #F2FFF6;
  margin-bottom: 8px;
}

.page-cockfighting__steps-description {
  font-size: 1rem;
  color: #A7D9B8;
}

.page-cockfighting__tips-section {
  background-color: #08160F;
}

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

.page-cockfighting__tip-card {
  background-color: #11271B;
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  border: 1px solid #2E7A4E;
}

.page-cockfighting__tip-title {
  font-size: 1.4rem;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-cockfighting__tip-description {
  font-size: 1rem;
  color: #A7D9B8;
}

.page-cockfighting__promotions-section {
  background-color: #0A4B2C;
}

.page-cockfighting__promotion-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting__faq-section {
  background-color: #08160F;
}

.page-cockfighting__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-cockfighting__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #11271B;
  user-select: none;
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-cockfighting__faq-question:hover {
  background-color: #2E7A4E;
}

.page-cockfighting__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2AD16F;
}

.page-cockfighting__faq-answer {
  padding: 0 25px 18px 25px;
  font-size: 1rem;
  color: #A7D9B8;
  text-align: justify;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding: 0 15px 30px 15px;
  }

  .page-cockfighting__hero-content {
    padding: 15px;
    margin-top: 150px;
  }

  .page-cockfighting__main-title {
    font-size: 2rem;
  }

  .page-cockfighting__intro-text {
    font-size: 1rem;
  }

  .page-cockfighting__cta-button {
    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;
    margin: 5px 0;
  }

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

  .page-cockfighting__container {
    padding: 0 15px;
  }

  .page-cockfighting__section-title {
    font-size: 2rem;
  }

  .page-cockfighting__text-block {
    font-size: 1rem;
  }

  .page-cockfighting__feature-grid, .page-cockfighting__list, .page-cockfighting__steps-list, .page-cockfighting__tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-cockfighting__feature-card, .page-cockfighting__list-item, .page-cockfighting__steps-item, .page-cockfighting__tip-card {
    padding: 20px;
  }

  .page-cockfighting__feature-image {
    height: 200px;
  }

  .page-cockfighting__video-section {
    padding-top: 10px !important; /* body handles --header-offset */
  }

  .page-cockfighting__video-wrapper {
    margin: 20px auto;
  }

  .page-cockfighting__promotion-image {
    margin: 20px auto;
  }

  .page-cockfighting__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }

  .page-cockfighting__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.95rem;
  }

  /* Force images and containers to be responsive */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting video,
  .page-cockfighting__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-cockfighting__section,
  .page-cockfighting__card,
  .page-cockfighting__container,
  .page-cockfighting__video-section,
  .page-cockfighting__video-container,
  .page-cockfighting__video-wrapper,
  .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;
    overflow: hidden !important;
  }

  .page-cockfighting__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column;
  }
}

/* Content area image CSS: width/height/max-width/max-height must not make images display smaller than 200px */
.page-cockfighting img {
  min-width: 200px;
  min-height: 200px;
}