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

.page-cockfighting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin-bottom: 40px;
  background-color: #08160F; /* Background */
}

.page-cockfighting__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-cockfighting__hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px;
  background: linear-gradient(0deg, rgba(8, 22, 15, 0.9) 0%, rgba(8, 22, 15, 0) 100%); /* Fading background for text readability */
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
  padding-bottom: 60px; /* Adjust if needed for CTA buttons */
}

.page-cockfighting__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__intro-text {
  font-size: 1.15rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-cockfighting__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-cockfighting__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-cockfighting__btn-secondary {
  background: transparent;
  color: #2AD16F; /* A lighter shade of green for contrast */
  border: 2px solid #2AD16F;
}

.page-cockfighting__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-3px);
}

.page-cockfighting__section-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-cockfighting__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.3;
}

.page-cockfighting__section-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  max-width: 900px;
  margin: 0 auto;
}

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

.page-cockfighting__text-block {
  font-size: 1.05rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-cockfighting__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

/* Video Section */
.page-cockfighting__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding */
  background-color: #08160F; /* Background */
  margin-bottom: 40px;
}

.page-cockfighting__video-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.page-cockfighting__video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
}

.page-cockfighting__video-cta {
  margin-top: 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.page-cockfighting__about-section {
  margin-bottom: 40px;
  background-color: #08160F; /* Background */
}

/* Types Section */
.page-cockfighting__types-section {
  margin-bottom: 40px;
  background-color: #11271B; /* Card BG */
  padding: 40px 0;
}

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

.page-cockfighting__type-item {
  background-color: rgba(17, 39, 27, 0.7); /* Slightly transparent Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-cockfighting__type-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-cockfighting__type-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

/* Guide Section */
.page-cockfighting__guide-section {
  margin-bottom: 40px;
  background-color: #08160F; /* Background */
}

.page-cockfighting__guide-list {
  list-style: none;
  padding: 0;
  counter-reset: guide-counter;
}

.page-cockfighting__guide-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background-color: rgba(17, 39, 27, 0.7); /* Slightly transparent Card BG */
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__guide-item::before {
  counter-increment: guide-counter;
  content: counter(guide-counter);
  font-size: 2.5rem;
  font-weight: bold;
  color: #57E38D; /* Glow */
  margin-right: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.page-cockfighting__guide-step-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 8px;
  font-weight: bold;
}

.page-cockfighting__guide-step-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

/* Advantages Section */
.page-cockfighting__advantages-section {
  margin-bottom: 40px;
  background-color: #11271B; /* Card BG */
  padding: 40px 0;
}

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

.page-cockfighting__advantage-item {
  background-color: rgba(17, 39, 27, 0.7); /* Slightly transparent Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-cockfighting__advantage-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-cockfighting__advantage-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

/* Promotions Section */
.page-cockfighting__promotions-section {
  margin-bottom: 40px;
  background-color: #08160F; /* Background */
}

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

.page-cockfighting__promotion-item {
  background-color: rgba(17, 39, 27, 0.7); /* Slightly transparent Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-cockfighting__promotion-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-cockfighting__promotion-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

/* FAQ Section */
.page-cockfighting__faq-section {
  margin-bottom: 40px;
  background-color: #11271B; /* Card BG */
  padding: 40px 0;
}

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

.page-cockfighting__faq-item {
  background-color: rgba(17, 39, 27, 0.7); /* Slightly transparent Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-cockfighting__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-cockfighting__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #57E38D; /* Glow */
  transition: transform 0.3s ease;
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-toggle {
  transform: rotate(45deg);
}

.page-cockfighting__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

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

/* CTA Section */
.page-cockfighting__cta-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #08160F; /* Background */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting__hero-content {
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    margin-bottom: 20px;
  }

  .page-cockfighting__hero-content {
    padding: 20px 15px;
    padding-bottom: 30px;
  }

  .page-cockfighting__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    margin-bottom: 10px;
  }

  .page-cockfighting__intro-text {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-cockfighting__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-cockfighting__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    margin-bottom: 10px;
  }

  .page-cockfighting__section-description,
  .page-cockfighting__text-block,
  .page-cockfighting__type-description,
  .page-cockfighting__guide-step-description,
  .page-cockfighting__advantage-description,
  .page-cockfighting__promotion-description,
  .page-cockfighting__faq-answer p {
    font-size: 0.95rem;
  }

  .page-cockfighting__content-area,
  .page-cockfighting__video-section,
  .page-cockfighting__video-wrapper,
  .page-cockfighting__video-container,
  .page-cockfighting__about-section,
  .page-cockfighting__types-section,
  .page-cockfighting__guide-section,
  .page-cockfighting__advantages-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .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__guide-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .page-cockfighting__guide-item::before {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .page-cockfighting__guide-step-title {
    font-size: 1.2rem;
  }

  .page-cockfighting__type-item,
  .page-cockfighting__advantage-item,
  .page-cockfighting__promotion-item {
    padding: 20px;
  }

  .page-cockfighting__type-title,
  .page-cockfighting__advantage-title,
  .page-cockfighting__promotion-title {
    font-size: 1.3rem;
  }

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

  .page-cockfighting__faq-answer {
    padding: 0 20px 15px 20px;
  }
  
  .page-cockfighting__video-section {
    padding-top: 10px !important;
  }

  .page-cockfighting__video-wrapper {
    padding: 0;
  }

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

@media (max-width: 480px) {
  .page-cockfighting__hero-content {
    padding-left: 10px;
    padding-right: 10px;
  }

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

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

  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary {
    font-size: 0.95rem;
    padding: 10px 15px;
  }

  .page-cockfighting__section-title {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }
}