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

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

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

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  z-index: 1;
  min-height: 400px;
}

.page-cockfighting__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content slightly over image for visual flow */
  background: linear-gradient(180deg, rgba(17, 39, 27, 0.8) 0%, rgba(8, 22, 15, 0.9) 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid #2E7A4E;
}

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

.page-cockfighting__hero-description {
  font-size: 1.1rem;
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-cockfighting__cta-buttons--center {
  margin-top: 40px;
  margin-bottom: 20px;
}

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

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

.page-cockfighting__btn-primary--small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-cockfighting__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: transparent;
  color: #2AD16F;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid #2AD16F;
  cursor: pointer;
}

.page-cockfighting__btn-secondary:hover {
  background: #2AD16F;
  color: #08160F;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 255, 100, 0.3);
}

.page-cockfighting__btn-secondary--small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* General Sections */
.page-cockfighting__intro-section,
.page-cockfighting__features-section,
.page-cockfighting__types-section,
.page-cockfighting__guide-section,
.page-cockfighting__strategy-section,
.page-cockfighting__promotions-section,
.page-cockfighting__security-section,
.page-cockfighting__faq-section,
.page-cockfighting__cta-final-section {
  padding: 60px 0;
}

.page-cockfighting__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-cockfighting__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #2AD16F;
  border-radius: 2px;
}

.page-cockfighting__section-title--white {
  color: #F2FFF6;
}

.page-cockfighting__text-block {
  font-size: 1.05rem;
  color: #A7D9B8;
  text-align: justify;
  margin-bottom: 20px;
}

.page-cockfighting__text-block--note {
  font-style: italic;
  text-align: center;
  margin-top: 30px;
}

.page-cockfighting__text-block--white {
  color: #F2FFF6;
}

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

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

.page-cockfighting__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

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

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

.page-cockfighting__card-description {
  font-size: 0.95rem;
  color: #A7D9B8;
}

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

.page-cockfighting__type-card {
  background-color: #11271B;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  border: 1px solid #2E7A4E;
}

.page-cockfighting__type-title {
  font-size: 1.4rem;
  color: #F2FFF6;
  margin-bottom: 10px;
  text-align: center;
}

.page-cockfighting__type-description {
  font-size: 0.95rem;
  color: #A7D9B8;
  text-align: justify;
}

/* Guide List */
.page-cockfighting__guide-list {
  list-style: none;
  padding: 0;
  counter-reset: guide-step;
}

.page-cockfighting__guide-list li {
  background-color: #11271B;
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 3px 15px rgba(0,0,0,0.2);
  border: 1px solid #2E7A4E;
}

.page-cockfighting__guide-list li::before {
  counter-increment: guide-step;
  content: "Bước " counter(guide-step);
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #2AD16F;
  color: #08160F;
  padding: 5px 15px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9rem;
}

.page-cockfighting__guide-step-title {
  font-size: 1.3rem;
  color: #F2FFF6;
  margin-top: 10px;
  margin-bottom: 10px;
}

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

/* Strategy List */
.page-cockfighting__strategy-list {
  list-style: none;
  padding: 0;
}

.page-cockfighting__strategy-list li {
  background-color: #11271B;
  border-left: 5px solid #2AD16F;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-cockfighting__strategy-item-title {
  font-size: 1.25rem;
  color: #F2FFF6;
  margin-bottom: 8px;
}

.page-cockfighting__strategy-item-description {
  font-size: 0.95rem;
  color: #A7D9B8;
}

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

.page-cockfighting__promo-card {
  background-color: #11271B;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  border: 1px solid #2E7A4E;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-cockfighting__promo-description {
  font-size: 0.95rem;
  color: #A7D9B8;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Security Section */
.page-cockfighting__security-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto 30px auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  border: 1px solid #2E7A4E;
}

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

.page-cockfighting__security-list li {
  background-color: #11271B;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  border: 1px solid #2E7A4E;
}

.page-cockfighting__security-item-title {
  font-size: 1.2rem;
  color: #F2FFF6;
  margin-bottom: 8px;
}

.page-cockfighting__security-item-description {
  font-size: 0.95rem;
  color: #A7D9B8;
}

/* FAQ Section */
.page-cockfighting__faq-list {
  margin-top: 40px;
}

.page-cockfighting__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px 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.15rem;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #0A4B2C;
  user-select: none;
  list-style: none;
}

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

.page-cockfighting__faq-question:hover {
  background-color: #11A84E;
}

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

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

.page-cockfighting__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #A7D9B8;
  border-top: 1px solid #1E3A2A;
}

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

/* Final CTA Section */
.page-cockfighting__cta-final-section .page-cockfighting__card {
  text-align: center;
  padding: 50px;
  background-color: #11271B;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  border: 1px solid #2E7A4E;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-cockfighting__hero-content {
    margin-top: -80px;
    padding: 30px 20px;
  }

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

  .page-cockfighting__hero-description {
    font-size: 1rem;
  }

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

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

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

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

  .page-cockfighting__hero-description {
    font-size: 0.95rem;
  }

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

  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting__btn-primary--small,
  .page-cockfighting__btn-secondary--small {
    width: auto;
    max-width: none !important;
  }

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

  .page-cockfighting__text-block,
  .page-cockfighting__card-description,
  .page-cockfighting__type-description,
  .page-cockfighting__guide-step-description,
  .page-cockfighting__strategy-item-description,
  .page-cockfighting__promo-description,
  .page-cockfighting__security-item-description,
  .page-cockfighting__faq-answer p {
    font-size: 0.9rem;
  }

  .page-cockfighting__feature-grid,
  .page-cockfighting__type-grid,
  .page-cockfighting__promo-grid,
  .page-cockfighting__security-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-cockfighting__intro-section,
  .page-cockfighting__features-section,
  .page-cockfighting__types-section,
  .page-cockfighting__guide-section,
  .page-cockfighting__strategy-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__security-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__cta-final-section {
    padding: 40px 0;
  }

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

  .page-cockfighting__guide-list li {
    padding: 20px 25px;
  }

  .page-cockfighting__guide-list li::before {
    top: -12px;
    left: 15px;
    padding: 3px 10px;
    font-size: 0.8rem;
  }

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

  .page-cockfighting__hero-image,
  .page-cockfighting__feature-image,
  .page-cockfighting__security-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .page-cockfighting__section,
  .page-cockfighting__card,
  .page-cockfighting__container,
  .page-cockfighting__hero-section,
  .page-cockfighting__intro-section,
  .page-cockfighting__features-section,
  .page-cockfighting__types-section,
  .page-cockfighting__guide-section,
  .page-cockfighting__strategy-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__security-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__cta-final-section,
  .page-cockfighting__cta-buttons,
  .page-cockfighting__feature-card,
  .page-cockfighting__type-card,
  .page-cockfighting__promo-card,
  .page-cockfighting__security-list li,
  .page-cockfighting__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting__hero-section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-cockfighting__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-cockfighting__faq-answer {
    padding: 10px 20px 15px;
  }

}

@media (max-width: 480px) {
  .page-cockfighting__hero-content {
    margin-top: -40px;
  }

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

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