.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-cockfighting .section-title {
  font-size: 2.5em;
  color: #FF0000; /* Primary color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-cockfighting h2 {
  font-size: 2.2em;
  color: #CC0000; /* Slightly darker red for better contrast */
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
}

.page-cockfighting h3 {
  font-size: 1.8em;
  color: #FF3333; /* Lighter red for sub-headings */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-cockfighting p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

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

.page-cockfighting li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-cockfighting a {
  color: #007bff; /* Standard link color */
  text-decoration: none;
}

.page-cockfighting a:hover {
  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: linear-gradient(135deg, #FF0000 0%, #CC0000 100%); /* Darker gradient for better contrast with white text */
  color: #ffffff;
}

.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.3);
}

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

.page-cockfighting .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting .hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-cockfighting .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFA500; /* Secondary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting .cta-button:hover {
  background: #FF8C00; /* Darker orange on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-cockfighting section {
  padding: 60px 0;
}

.page-cockfighting .section-intro, .page-cockfighting .section-how-to-play, .page-cockfighting .section-betting-types, .page-cockfighting .section-tips, .page-cockfighting .section-security-support, .page-cockfighting .section-cta-bottom {
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-cockfighting .section-promotions {
  background-color: #FFF5E0; /* Light orange background */
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-cockfighting .section-faq {
  background-color: #f0f0f0;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-cockfighting .image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-cockfighting .image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-cockfighting .faq-list {
  margin-top: 30px;
}

.page-cockfighting .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
}

.page-cockfighting .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #f9f9f9;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

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

.page-cockfishing .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FF0000; /* Primary color */
  transition: transform 0.3s ease;
}

.page-cockfishing .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #ffffff;
}

.page-cockfishing .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px 25px;
  border-top: 1px solid #e0e0e0;
}

.page-cockfishing .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFA500; /* Secondary color when active */
}

/* Call to Action Bottom Section */
.page-cockfighting .section-cta-bottom {
  text-align: center;
  background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
  color: #ffffff;
  padding: 80px 20px;
  border-radius: 8px;
  margin-top: 40px;
}

.page-cockfighting .section-cta-bottom .section-title {
  color: #FFFFFF;
  font-size: 2.8em;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.page-cockfighting .section-cta-bottom p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-cockfighting .primary-button {
  background: #FFA500; /* Secondary color */
  color: #ffffff;
  font-size: 20px;
  padding: 18px 50px;
  border-radius: 7px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting .primary-button:hover {
  background: #FF8C00; /* Darker orange on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting .hero-title {
    font-size: 2.8em;
  }
  .page-cockfighting .hero-description {
    font-size: 1.2em;
  }
  .page-cockfighting .section-title {
    font-size: 2em;
  }
  .page-cockfighting h2 {
    font-size: 1.8em;
  }
  .page-cockfishing .faq-question h3 {
    font-size: 1.1em;
  }
  .page-cockfighting .section-cta-bottom .section-title {
    font-size: 2.2em;
  }
  .page-cockfishing .primary-button {
    font-size: 18px;
    padding: 15px 40px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting .hero-section {
    padding: 40px 15px;
  }
  .page-cockfighting .hero-title {
    font-size: 2.2em;
  }
  .page-cockfighting .hero-description {
    font-size: 1em;
  }
  .page-cockfighting .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-cockfishing .section-title {
    font-size: 1.8em;
  }
  .page-cockfishing h2 {
    font-size: 1.6em;
  }
  .page-cockfishing p,
  .page-cockfishing li {
    font-size: 0.95em;
  }
  .page-cockfishing section {
    padding: 40px 0;
  }
  .page-cockfishing .faq-question {
    padding: 15px 20px;
  }
  .page-cockfishing .faq-answer {
    padding: 0 20px;
  }
  .page-cockfishing .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-cockfishing .section-cta-bottom .section-title {
    font-size: 1.8em;
  }
  .page-cockfishing .section-cta-bottom p {
    font-size: 1.1em;
  }
  .page-cockfishing .primary-button {
    font-size: 16px;
    padding: 12px 30px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting .hero-title {
    font-size: 1.8em;
  }
  .page-cockfighting .hero-description {
    font-size: 0.9em;
  }
  .page-cockfighting .cta-button {
    padding: 10px 25px;
    font-size: 14px;
  }
  .page-cockfishing .section-title {
    font-size: 1.5em;
  }
  .page-cockfishing h2 {
    font-size: 1.4em;
  }
  .page-cockfishing .faq-question h3 {
    font-size: 1em;
  }
  .page-cockfishing .faq-toggle {
    font-size: 20px;
  }
  .page-cockfishing .section-cta-bottom .section-title {
    font-size: 1.5em;
  }
  .page-cockfishing .section-cta-bottom p {
    font-size: 0.95em;
  }
  .page-cockfishing .primary-button {
    font-size: 14px;
    padding: 10px 25px;
  }
}