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

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

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

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

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

.page-cockfighting p {
  margin-bottom: 15px;
}

.page-cockfighting .cta-button,
.page-cockfighting .action-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700;
  color: #003366;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-cockfighting .cta-button:hover,
.page-cockfighting .action-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Hero Banner Section */
.page-cockfighting .hero-banner {
  background: linear-gradient(135deg, #003366, #001a33);
  color: #ffffff;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-cockfighting .hero-banner .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-cockfighting .hero-banner h1 {
  color: #FFD700;
  font-size: 3.8em;
  margin-bottom: 20px;
}

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

.page-cockfighting .hero-banner .hero-image {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting .hero-banner .hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Intro Section */
.page-cockfighting .intro-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.page-cockfighting .intro-section p {
  font-size: 1.1em;
  text-align: justify;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

/* Features Section */
.page-cockfighting .features-section {
  background-color: #f0f4f8;
  padding: 80px 0;
}

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

.page-cockfighting .feature-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

.page-cockfighting .feature-item h3 {
  color: #003366;
  font-size: 1.5em;
  margin-bottom: 10px;
}

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

/* How-To-Bet Section */
.page-cockfighting .how-to-bet-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.page-cockfighting .how-to-bet-section ol {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-cockfighting .how-to-bet-section ol li {
  margin-bottom: 30px;
  padding-left: 70px;
  position: relative;
  text-align: left;
}

.page-cockfighting .how-to-bet-section ol li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #003366;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-cockfighting .how-to-bet-section ol li h3 {
  margin-top: 0;
  color: #003366;
  font-size: 1.6em;
}

.page-cockfighting .how-to-bet-section ol li p {
  font-size: 1.05em;
  color: #444444;
}

.page-cockfighting .how-to-bet-section .action-button {
  margin-top: 15px;
  padding: 10px 25px;
  font-size: 1em;
  border-radius: 5px;
}

/* Promotion Callout Section */
.page-cockfighting .promotion-callout {
  background: linear-gradient(90deg, #003366, #004488);
  padding: 60px 0;
  text-align: center;
}

.page-cockfighting .promotion-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.page-cockfighting .promotion-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.page-cockfighting .promotion-card .card-content {
  padding: 30px;
}

.page-cockfighting .promotion-card h3 {
  color: #003366;
  font-size: 2.2em;
  margin-bottom: 20px;
}

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

/* FAQ Section */
.page-cockfighting .faq-section {
  background-color: #f8f8f8;
  padding: 80px 0;
}

.page-cockfighting .faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

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

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

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

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

.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 8px 8px;
}

.page-cockfighting .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to accommodate content */
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-top: none;
}

.page-cockfighting .faq-answer p {
  margin-bottom: 0;
  color: #555555;
}

.page-cockfighting .faq-answer .action-button {
  margin-top: 20px;
  font-size: 0.9em;
  padding: 10px 20px;
}

/* Related Articles Section */
.page-cockfighting .related-articles-section {
  background-color: #e0e6ed;
  padding: 80px 0;
}

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

.page-cockfighting .article-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting .article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-cockfighting .article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-cockfighting .article-card h3 {
  padding: 20px 20px 0;
  font-size: 1.4em;
  line-height: 1.3;
}

.page-cockfighting .article-card h3 a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-cockfighting .article-card h3 a:hover {
  color: #FFD700;
}

.page-cockfighting .article-card p {
  padding: 0 20px 15px;
  font-size: 0.95em;
  color: #555555;
}

.page-cockfighting .article-card .read-more {
  display: block;
  padding: 15px 20px;
  background-color: #FFD700;
  color: #003366;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border-radius: 0 0 12px 12px;
}

.page-cockfighting .article-card .read-more:hover {
  background-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting .hero-banner h1 {
    font-size: 3em;
  }
  .page-cockfighting h2 {
    font-size: 2em;
  }
  .page-cockfighting h3 {
    font-size: 1.6em;
  }
  .page-cockfighting .features-grid,
  .page-cockfighting .articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-cockfighting .promotion-card {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-cockfighting section {
    padding: 40px 0;
  }
  .page-cockfighting .hero-banner h1 {
    font-size: 2.5em;
  }
  .page-cockfighting .hero-banner p {
    font-size: 1.1em;
  }
  .page-cockfighting h2 {
    font-size: 1.8em;
  }
  .page-cockfighting h3 {
    font-size: 1.4em;
  }
  .page-cockfighting .cta-button,
  .page-cockfighting .action-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-cockfighting .how-to-bet-section ol li {
    padding-left: 60px;
  }
  .page-cockfighting .how-to-bet-section ol li::before {
    width: 45px;
    height: 45px;
    font-size: 1.5em;
  }
  .page-cockfighting .promotion-card img {
    height: 200px;
  }
  .page-cockfighting .promotion-card h3 {
    font-size: 1.8em;
  }
  .page-cockfighting .faq-question {
    padding: 15px;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 1.1em;
  }
  .page-cockfighting .faq-toggle {
    font-size: 20px;
  }
  .page-cockfighting .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting .hero-banner h1 {
    font-size: 2em;
  }
  .page-cockfighting .hero-banner p {
    font-size: 1em;
  }
  .page-cockfighting h2 {
    font-size: 1.6em;
  }
  .page-cockfighting h3 {
    font-size: 1.2em;
  }
  .page-cockfighting .cta-button,
  .page-cockfighting .action-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-cockfighting .features-grid,
  .page-cockfighting .articles-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting .how-to-bet-section ol li {
    padding-left: 50px;
  }
  .page-cockfighting .how-to-bet-section ol li::before {
    width: 40px;
    height: 40px;
    font-size: 1.4em;
  }
  .page-cockfighting .promotion-card h3 {
    font-size: 1.5em;
  }
  .page-cockfighting .article-card h3 {
    font-size: 1.2em;
  }
}