.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark background */
  background-color: #1a2a3a; /* Main background color */
  line-height: 1.6;
}

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

.page-cockfighting-hero {
  background: linear-gradient(135deg, #1a2a3a, #3a4a5a); /* Dark gradient background */
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-cockfighting-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-cockfighting-hero .hero-content h1 {
  font-size: 3.2em;
  color: #ffcc00; /* Accent color for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-hero .hero-content p {
  font-size: 1.2em;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-cockfighting-hero .hero-content p a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
}

.page-cockfighting-hero .hero-content p a:hover {
  text-decoration: underline;
}

.page-cockfighting-hero .hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-cockfighting h2 {
  font-size: 2.5em;
  color: #ffcc00; /* Accent color for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-cockfighting h2 a {
  color: #ffcc00;
  text-decoration: none;
}

.page-cockfighting h2 a:hover {
  text-decoration: underline;
}

.page-cockfighting h3 {
  font-size: 1.8em;
  color: #ffcc00; /* Accent color for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-cockfighting h3 a {
  color: #ffcc00;
  text-decoration: none;
}

.page-cockfighting h3 a:hover {
  text-decoration: underline;
}

.page-cockfighting p {
  margin-bottom: 15px;
  color: #e0e0e0; /* Light text on dark background */
}

.page-cockfighting p a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
}

.page-cockfighting p a:hover {
  text-decoration: underline;
}

.page-cockfighting ul,
.page-cockfighting ol {
  list-style-position: inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-cockfighting ul li,
.page-cockfighting ol li {
  margin-bottom: 10px;
}

.page-cockfighting ul li strong,
.page-cockfighting ol li strong {
  color: #ffcc00;
}

.page-cockfighting img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting .cta-button {
  display: inline-block;
  background-color: #ffcc00; /* Accent color for buttons */
  color: #1a2a3a; /* Dark text on accent button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

.page-cockfighting .cta-button:hover {
  background-color: #e6b800; /* Slightly darker accent on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-introduction, .page-cockfighting-howtoplay, .page-cockfighting-bettypes, .page-cockfighting-strategies, .page-cockfighting-advantages, .page-cockfighting-register, .page-cockfighting-faq, .page-cockfighting-conclusion {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 204, 0, 0.1);
}

.page-cockfighting-conclusion {
  border-bottom: none;
  text-align: center;
}

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

.page-cockfighting .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-cockfighting .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #2a3a4a; /* Slightly lighter dark background for question */
  border: 1px solid #ffcc00; /* Accent border */
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.page-cockfighting .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #ffcc00; /* Accent color for FAQ question text */
}

.page-cockfighting .faq-question h3 a {
  color: #ffcc00;
  text-decoration: none;
}

.page-cockfighting .faq-question h3 a:hover {
  text-decoration: underline;
}

.page-cockfighting .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #ffcc00;
  transition: transform 0.3s ease;
}

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

.page-cockfighting .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #1f2f3f; /* Darker background for answer */
  padding: 0 25px;
  border-radius: 0 0 8px 8px;
}

.page-cockfighting .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 25px;
  border: 1px solid #ffcc00;
  border-top: none;
}

.page-cockfighting .faq-answer p {
  color: #e0e0e0;
}

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

.page-cockfighting .strategy-item {
  background-color: #2a3a4a; /* Slightly lighter dark background */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-cockfighting .strategy-item h3 {
  color: #ffcc00;
  margin-top: 0;
  font-size: 1.5em;
}

.page-cockfighting .strategy-item img {
  max-width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-cockfighting .strategy-item p {
  color: #d0d0d0;
  font-size: 0.95em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting-hero .hero-content h1 {
    font-size: 2.5em;
  }
  .page-cockfighting h2 {
    font-size: 2em;
  }
  .page-cockfighting h3 {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting-hero {
    padding: 60px 0;
  }
  .page-cockfighting-hero .hero-content h1 {
    font-size: 2em;
  }
  .page-cockfighting-hero .hero-content p {
    font-size: 1em;
  }
  .page-cockfighting h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-cockfighting h3 {
    font-size: 1.3em;
  }
  .page-cockfighting .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-cockfighting-introduction, .page-cockfighting-howtoplay, .page-cockfighting-bettypes, .page-cockfighting-strategies, .page-cockfighting-advantages, .page-cockfighting-register, .page-cockfighting-faq, .page-cockfighting-conclusion {
    padding: 40px 0;
  }
  .page-cockfighting .faq-question {
    padding: 15px 20px;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 1.1em;
  }
  .page-cockfighting .faq-answer {
    padding: 15px 20px;
  }
  .page-cockfighting .strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting .strategy-item img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting-hero .hero-content h1 {
    font-size: 1.8em;
  }
  .page-cockfighting h2 {
    font-size: 1.6em;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 1em;
  }
}