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

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

.page-cockfighting section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-cockfighting section:last-of-type {
  margin-bottom: 0;
}

.page-cockfighting h1,
.page-cockfighting h2,
.page-cockfighting h3 {
  color: #007bff;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-cockfighting h1 {
  font-size: 3.2em;
}

.page-cockfighting h2 {
  font-size: 2.5em;
}

.page-cockfighting h3 {
  font-size: 1.8em;
  color: #28a745;
}

.page-cockfighting p {
  margin-bottom: 1em;
  font-size: 1.1em;
  color: #555;
  text-align: justify;
}

.page-cockfighting ul,
.page-cockfighting ol {
  margin-bottom: 1em;
  padding-left: 25px;
  font-size: 1.1em;
  color: #555;
}

.page-cockfighting li {
  margin-bottom: 0.5em;
}

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

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

/* Hero Section */
.page-cockfighting .hero-section {
  background: linear-gradient(135deg, #007bff 0%, #28a745 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
}

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

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

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

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

.page-cockfighting .hero-content p {
  color: #e9ecef;
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.page-cockfighting .hero-content a {
  color: #ffffff;
  font-weight: bold;
}

.page-cockfighting .hero-content a:hover {
  color: #f8f9fa;
}

.page-cockfighting .cta-button {
  display: inline-block;
  background-color: #f5a623; /* A vibrant color for CTA */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting .cta-button:hover {
  background-color: #e0921a;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting .secondary-button {
  background-color: #28a745; /* Green for secondary action */
  margin-left: 15px;
}

.page-cockfighting .secondary-button:hover {
  background-color: #218838;
}

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

.page-cockfighting .feature-item {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-cockfighting .feature-item .feature-icon {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  max-width: 100%;
}

.page-cockfighting .feature-item h3 {
  color: #007bff;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-cockfighting .feature-item p {
  font-size: 1em;
  color: #666;
  text-align: center;
}

/* How-To-Play Section & Tips Section */
.page-cockfighting ol li strong,
.page-cockfighting ul li strong {
  color: #007bff;
}

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

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

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

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

.page-cockfighting .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #333;
  text-align: left;
  flex-grow: 1;
}

.page-cockfighting .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #007bff;
  transition: transform 0.3s ease;
  margin-left: 15px;
}

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

.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: #f9f9f9;
  color: #555;
}

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

.page-cockfighting .faq-answer p {
  margin: 0;
  font-size: 1em;
}

/* CTA Bottom Section */
.page-cockfighting .cta-bottom-section {
  text-align: center;
  background: #e9f7ef; /* Light green background */
  padding: 80px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-cockfighting .cta-bottom-section h2 {
  color: #28a745;
  margin-bottom: 20px;
}

.page-cockfighting .cta-bottom-section p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.2em;
  color: #444;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting h1 {
    font-size: 2.8em;
  }
  .page-cockfighting h2 {
    font-size: 2em;
  }
  .page-cockfighting .hero-content p {
    font-size: 1.1em;
  }
  .page-cockfighting .cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-cockfighting .secondary-button {
    margin-left: 10px;
    margin-top: 15px;
  }
  .page-cockfighting .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-cockfighting section {
    padding: 40px 0;
  }
  .page-cockfighting h1 {
    font-size: 2.2em;
  }
  .page-cockfighting h2 {
    font-size: 1.8em;
  }
  .page-cockfighting h3 {
    font-size: 1.4em;
  }
  .page-cockfighting p,
  .page-cockfighting ul,
  .page-cockfighting ol {
    font-size: 1em;
  }
  .page-cockfighting .hero-image {
    margin-bottom: 20px;
  }
  .page-cockfighting .hero-content p {
    margin-bottom: 30px;
  }
  .page-cockfighting .cta-button {
    display: block;
    width: fit-content;
    margin: 15px auto;
  }
  .page-cockfighting .secondary-button {
    margin-left: 0;
  }
  .page-cockfighting .feature-item {
    padding: 20px;
  }
  .page-cockfighting .faq-question {
    padding: 15px 20px;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 1.1em;
  }
  .page-cockfighting .faq-toggle {
    font-size: 20px;
  }
  .page-cockfighting .faq-answer {
    padding: 0 20px;
  }
  .page-cockfighting .faq-item.active .faq-answer {
    padding: 10px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting h1 {
    font-size: 1.8em;
  }
  .page-cockfighting h2 {
    font-size: 1.5em;
  }
  .page-cockfighting .hero-section {
    padding: 50px 0;
  }
  .page-cockfighting .cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
}