.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A1A1A;
  line-height: 1.6;
}

.page-cockfighting .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-cockfighting .section-title {
  color: #FFD700; /* Gold for titles */
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  padding-top: 40px;
  position: relative;
}

.page-cockfighting .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #CC0000; /* Red accent */
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-cockfighting p {
  margin-bottom: 1em;
  color: #E0E0E0;
}

.page-cockfighting a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-cockfighting a:hover {
  color: #CC0000;
  text-decoration: underline;
}

/* Hero Section */
.page-cockfighting .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000; /* Ensure dark background for hero */
}

.page-cockfighting .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-cockfighting .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-cockfighting .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-cockfighting .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-cockfighting .hero-content h1 {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-cockfighting .hero-content p {
  font-size: 1.3em;
  color: #F0F0F0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #CC0000; /* Red for CTA */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(204, 0, 0, 0.4);
}

.page-cockfighting .cta-button:hover {
  background: #FFD700;
  color: #1A1A1A;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

/* Intro Section */
.page-cockfighting .intro-section {
  padding: 60px 0;
  background-color: #1A1A1A;
  color: #E0E0E0;
}

/* Types Section */
.page-cockfighting .types-section {
  padding: 60px 0;
  background-color: #0F0F0F;
}

.page-cockfighting .type-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-cockfighting .type-cards .card {
  background-color: #2A2A2A;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-cockfighting .type-cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-cockfighting .type-cards .card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-cockfighting .type-cards .card h3 {
  color: #FFD700;
  font-size: 1.5em;
  padding: 20px 20px 10px;
  margin: 0;
}

.page-cockfighting .type-cards .card h3 .card-link {
  color: #FFD700;
  text-decoration: none;
}

.page-cockfighting .type-cards .card p {
  color: #B0B0B0;
  padding: 0 20px 20px;
  flex-grow: 1;
}

/* Guide Section */
.page-cockfighting .guide-section {
  padding: 60px 0;
  background-color: #1A1A1A;
  color: #E0E0E0;
}

.page-cockfighting .guide-section ol {
  list-style: none;
  counter-reset: guide-counter;
  padding: 0;
}

.page-cockfighting .guide-section ol li {
  counter-increment: guide-counter;
  margin-bottom: 30px;
  background-color: #2A2A2A;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 80px;
}

.page-cockfighting .guide-section ol li::before {
  content: counter(guide-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700; /* Gold number */
  color: #1A1A1A;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-cockfighting .guide-section ol li h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-cockfighting .guide-section ol li p {
  color: #E0E0E0;
}

/* Advantages Section */
.page-cockfighting .advantages-section {
  padding: 60px 0;
  background-color: #0F0F0F;
  color: #E0E0E0;
}

.page-cockfighting .advantages-section ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-cockfighting .advantages-section ul li {
  background-color: #2A2A2A;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-cockfighting .advantages-section ul li:hover {
  transform: translateY(-5px);
}

.page-cockfighting .advantages-section ul li strong {
  color: #FFD700;
  font-size: 1.1em;
  display: block;
  margin-bottom: 5px;
}

/* Promo Section */
.page-cockfighting .promo-section {
  padding: 60px 0;
  background-color: #1A1A1A;
  color: #E0E0E0;
}

.page-cockfighting .promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-cockfighting .promo-cards .card {
  background-color: #2A2A2A;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-cockfighting .promo-cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-cockfighting .promo-cards .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-cockfighting .promo-cards .card h3 {
  color: #FFD700;
  font-size: 1.5em;
  padding: 20px 20px 10px;
  margin: 0;
}

.page-cockfighting .promo-cards .card h3 .card-link {
  color: #FFD700;
  text-decoration: none;
}

.page-cockfighting .promo-cards .card p {
  color: #B0B0B0;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-cockfighting .promo-note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #B0B0B0;
}

/* FAQ Section */
.page-cockfighting .faq-section {
  padding: 60px 0;
  background-color: #0F0F0F;
}

.page-cockfighting .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-cockfighting .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  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;
  background: #2A2A2A;
  color: #FFD700;
  cursor: pointer;
  border-bottom: 1px solid #3A3A3A;
  transition: background-color 0.3s ease;
}

.page-cockfighting .faq-question:hover {
  background: #3A3A3A;
}

.page-cockfighting .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #FFD700;
}

.page-cockfighting .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #CC0000;
  transition: transform 0.3s ease;
}

.page-cockfighting .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFD700;
}

.page-cockfighting .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #1A1A1A;
  color: #E0E0E0;
}

.page-cockfighting .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
}

.page-cockfighting .faq-answer p {
  margin: 0;
  color: #B0B0B0;
}

/* Final CTA Section */
.page-cockfighting .cta-final-section {
  padding: 80px 0;
  text-align: center;
  background-color: #1A1A1A;
  color: #E0E0E0;
}

.page-cockfighting .cta-final-section h2 {
  color: #FFD700;
  font-size: 2.8em;
  margin-bottom: 20px;
}

.page-cockfighting .cta-final-section p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting .hero-content h1 {
    font-size: 3em;
  }
  .page-cockfighting .hero-content p {
    font-size: 1.15em;
  }
  .page-cockfighting .section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting .hero-section {
    padding: 40px 15px;
  }
  .page-cockfighting .hero-content h1 {
    font-size: 2.5em;
  }
  .page-cockfighting .hero-content p {
    font-size: 1em;
  }
  .page-cockfighting .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-cockfighting .section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-cockfighting .type-cards {
    grid-template-columns: 1fr;
  }
  .page-cockfighting .guide-section ol li {
    padding-left: 60px;
  }
  .page-cockfighting .guide-section ol li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    left: 15px;
  }
  .page-cockfighting .guide-section ol li h3 {
    font-size: 1.5em;
  }
  .page-cockfighting .promo-cards {
    grid-template-columns: 1fr;
  }
  .page-cockfighting .faq-question {
    padding: 15px 20px;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 1.1em;
  }
  .page-cockfighting .faq-toggle {
    font-size: 1.5em;
  }
  .page-cockfighting .faq-answer {
    padding: 0 20px;
  }
  .page-cockfighting .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-cockfighting .cta-final-section h2 {
    font-size: 2em;
  }
  .page-cockfighting .cta-final-section p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-cockfighting .hero-content h1 {
    font-size: 2em;
  }
  .page-cockfighting .hero-content p {
    font-size: 0.9em;
  }
  .page-cockfighting .section-title {
    font-size: 1.5em;
  }
  .page-cockfighting .guide-section ol li h3 {
    font-size: 1.3em;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 1em;
  }
}