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

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

.page-cockfighting section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-cockfighting section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-cockfighting h1, .page-cockfighting h2 {
  color: var(--primary-color, #007bff);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

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

.page-cockfighting h3 {
  color: var(--secondary-color, #ffc107);
  font-size: 1.6em;
  margin-bottom: 15px;
}

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

.page-cockfighting .text-center {
  text-align: center;
}

/* Hero Section */
.page-cockfighting .hero-section {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color, #007bff), #0056b3);
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.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;
  padding: 40px 20px;
}

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

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

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

.page-cockfighting .hero-content p {
  color: #e0e0e0;
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-cockfighting .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color, #ffc107);
  color: #333333;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

/* Why Choose Section */
.page-cockfighting .section-why-choose .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-cockfighting .section-why-choose .feature-item {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting .section-why-choose .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-cockfighting .section-why-choose .feature-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-cockfighting .section-why-choose .feature-item h3 {
  color: var(--primary-color, #007bff);
  font-size: 1.4em;
}

.page-cockfighting .section-why-choose .feature-item p {
  font-size: 1em;
  color: #666666;
}

/* How To Play Section */
.page-cockfighting .section-how-to-play .steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-cockfighting .section-how-to-play .step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-cockfighting .section-how-to-play .step-image {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-cockfighting .section-how-to-play .step-item h3 {
  color: var(--secondary-color, #ffc107);
  font-size: 1.5em;
}

.page-cockfighting .button-primary, .page-cockfighting .button-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.page-cockfighting .button-primary {
  background-color: var(--primary-color, #007bff);
  color: #ffffff;
}

.page-cockfighting .button-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-cockfighting .button-secondary {
  background-color: #f0f0f0;
  color: var(--primary-color, #007bff);
  border: 1px solid var(--primary-color, #007bff);
}

.page-cockfighting .button-secondary:hover {
  background-color: var(--primary-color, #007bff);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Tips & Strategy Section */
.page-cockfighting .section-tips-strategy .strategy-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-cockfighting .section-tips-strategy .strategy-list li {
  background-color: #fefefe;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-cockfighting .section-tips-strategy .strategy-thumbnail {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-cockfighting .section-tips-strategy .strategy-list h3 {
  color: var(--primary-color, #007bff);
  font-size: 1.3em;
}

/* Promotions Section */
.page-cockfighting .section-promotions .promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-cockfighting .section-promotions .promo-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting .section-promotions .promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-cockfighting .section-promotions .promo-image {
  width: 250px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-cockfighting .section-promotions .promo-card h3 {
  color: var(--secondary-color, #ffc107);
  font-size: 1.4em;
}

/* FAQ Section */
.page-cockfighting .section-faq .faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.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: 15px 20px;
  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.2em;
  color: #333333;
}

.page-cockfighting .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color, #007bff);
  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.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #f9f9f9;
}

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

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

/* Conclusion Section */
.page-cockfighting .section-conclusion {
  text-align: center;
  background-color: var(--primary-color, #007bff);
  color: #ffffff;
  padding: 80px 20px;
}

.page-cockfighting .section-conclusion h2 {
  color: #ffffff;
  margin-bottom: 30px;
}

.page-cockfighting .section-conclusion p {
  color: #e0e0e0;
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting .hero-content h1 {
    font-size: 2.8em;
  }
  .page-cockfighting h2 {
    font-size: 2em;
  }
  .page-cockfighting h3 {
    font-size: 1.4em;
  }
  .page-cockfighting .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-cockfighting .feature-grid, .page-cockfighting .steps-container, .page-cockfighting .promo-grid, .page-cockfighting .strategy-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-cockfighting .hero-content h1 {
    font-size: 2.2em;
  }
  .page-cockfighting .hero-content p {
    font-size: 1em;
  }
  .page-cockfighting h2 {
    font-size: 1.8em;
  }
  .page-cockfighting h3 {
    font-size: 1.2em;
  }
  .page-cockfighting section {
    padding: 40px 0;
  }
  .page-cockfighting .feature-icon, .page-cockfighting .step-image, .page-cockfighting .strategy-thumbnail, .page-cockfighting .promo-image {
    width: 120px;
    height: 120px;
  }
  .page-cockfighting .faq-question {
    padding: 12px 15px;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 1.1em;
  }
  .page-cockfighting .faq-toggle {
    font-size: 20px;
  }
  .page-cockfighting .faq-answer {
    padding: 0 15px;
  }
  .page-cockfighting .faq-item.active .faq-answer {
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting .hero-content h1 {
    font-size: 1.8em;
  }
  .page-cockfighting .hero-content p {
    font-size: 0.9em;
  }
  .page-cockfighting .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-cockfighting h2 {
    font-size: 1.5em;
  }
  .page-cockfighting h3 {
    font-size: 1.1em;
  }
  .page-cockfighting .container {
    padding: 0 15px;
  }
}