.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 {
  padding: 60px 0;
  margin-bottom: 20px;
}

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

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

.page-cockfighting h1 {
  font-size: 3.2em;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-cockfighting h2 {
  font-size: 2.5em;
  border-bottom: 3px solid #F39C12; /* Accent color */
  display: inline-block;
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting h3 {
  font-size: 1.8em;
  color: #C0392B;
  margin-bottom: 15px;
}

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

.page-cockfighting .cta-button {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  padding: 18px 45px;
  background: #F39C12; /* Accent color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.3em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

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

/* 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: 80px 20px;
  background: linear-gradient(135deg, #C0392B 0%, #F39C12 100%); /* Using brand colors for gradient */
  min-height: 550px;
  overflow: hidden;
}

.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;
  z-index: 1;
}

.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: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

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

/* Feature Grid (section-intro) */
.page-cockfighting .section-intro .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting .section-intro .feature-item {
  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-intro .feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-cockfighting .section-intro .feature-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: none; /* Ensure no CSS filter is applied to change image color */
}

.page-cockfighting .section-intro .feature-item h3 {
  color: #C0392B;
  font-size: 1.5em;
  margin-top: 0;
}

.page-cockfighting .section-intro .feature-item p {
  font-size: 1em;
  text-align: center;
}

/* Game Type Cards */
.page-cockfighting .section-game-types .game-type-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting .section-game-types .game-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-game-types .game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-cockfighting .section-game-types .game-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: none; /* Ensure no CSS filter is applied to change image color */
}

.page-cockfighting .section-game-types .game-card h3 {
  color: #C0392B;
  font-size: 1.5em;
  margin-top: 0;
}

.page-cockfighting .section-game-types .game-card p {
  font-size: 1em;
  text-align: center;
}

/* Guide Steps */
.page-cockfighting .section-guide .guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting .section-guide .step-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-cockfighting .section-guide .step-item h3 {
  color: #F39C12;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-cockfighting .section-guide .step-item p {
  font-size: 0.95em;
}

.page-cockfighting .section-guide .step-item a {
  color: #C0392B;
  text-decoration: underline;
  font-weight: bold;
}

.page-cockfighting .section-guide .step-item a:hover {
  color: #F39C12;
}

/* Tip List */
.page-cockfighting .section-tips .tip-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-cockfighting .section-tips .tip-list li {
  background-color: #ffffff;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  text-align: justify;
}

.page-cockfighting .section-tips .tip-list li h3 {
  color: #C0392B;
  text-align: left;
  font-size: 1.4em;
  margin-top: 0;
}

.page-cockfighting .section-tips .tip-list li p {
  font-size: 1em;
}

/* Promo Cards */
.page-cockfighting .section-promo .promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting .section-promo .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-promo .promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-cockfighting .section-promo .promo-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: none; /* Ensure no CSS filter is applied to change image color */
}

.page-cockfighting .section-promo .promo-card h3 {
  color: #C0392B;
  font-size: 1.5em;
  margin-top: 0;
}

.page-cockfighting .section-promo .promo-card p {
  font-size: 1em;
  text-align: center;
}

/* Support Section */
.page-cockfighting .section-support .contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: center;
}

.page-cockfighting .section-support .contact-list li {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.page-cockfighting .section-support .contact-list li strong {
  color: #C0392B;
}

/* FAQ Section */
.page-cockfighting .section-faq {
  background-color: #f2f2f2;
}

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

.page-cockfighting .faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-cockfighting .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  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: #C0392B;
  text-align: left;
}

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

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

.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;
  border-radius: 0 0 5px 5px;
  color: #555555;
}

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

.page-cockfighting .faq-item.active .faq-answer p {
  margin: 0;
  font-size: 1em;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting h1 {
    font-size: 2.8em;
  }
  .page-cockfighting h2 {
    font-size: 2.2em;
  }
  .page-cockfighting .cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }
  .page-cockfighting .hero-section {
    padding: 60px 15px;
  }
}

@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 {
    font-size: 1em;
  }
  .page-cockfighting .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-cockfighting .hero-section {
    min-height: 450px;
  }
  .page-cockfighting .hero-image img {
    border-radius: 8px;
  }
  .page-cockfighting .section-intro .feature-grid, 
  .page-cockfighting .section-game-types .game-type-cards, 
  .page-cockfighting .section-guide .guide-steps, 
  .page-cockfighting .section-promo .promo-cards {
    grid-template-columns: 1fr;
  }
  .page-cockfighting .feature-item, .page-cockfighting .game-card, .page-cockfighting .step-item, .page-cockfighting .promo-card {
    padding: 20px;
  }
  .page-cockfighting .section-intro .feature-item img,
  .page-cockfighting .section-game-types .game-card img,
  .page-cockfighting .section-promo .promo-card img {
    height: 200px;
  }
  .page-cockfighting .faq-question {
    padding: 12px 15px;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 1.1em;
  }
  .page-cockfighting .faq-answer {
    padding: 0 15px;
  }
  .page-cockfighting .faq-item.active .faq-answer {
    padding: 15px;
  }
}