.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 h1, .page-cockfighting h2, .page-cockfighting h3 {
  color: #E44D26;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

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

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

.page-cockfighting h3 {
  font-size: 1.8em;
  color: #444444;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 15px;
}

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

.page-cockfighting ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-cockfighting ol {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-cockfighting li {
  margin-bottom: 10px;
}

.page-cockfighting .btn-primary {
  display: inline-block;
  background-color: #E44D26;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  text-align: center;
}

.page-cockfighting .btn-primary:hover {
  background-color: #FFB800;
  transform: translateY(-3px);
}

.page-cockfighting .btn-secondary {
  display: inline-block;
  background-color: #FFB800;
  color: #333333;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  text-align: center;
}

.page-cockfighting .btn-secondary:hover {
  background-color: #E44D26;
  color: #ffffff;
  transform: translateY(-3px);
}

.page-cockfighting .btn-cta-small {
  display: inline-block;
  background-color: #E44D26;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.page-cockfighting .btn-cta-small:hover {
  background-color: #FFB800;
}

.page-cockfighting .hero-cockfighting-banner {
  background: linear-gradient(135deg, #E44D26, #FFB800);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 15px 15px;
}

.page-cockfighting .hero-cockfighting-banner h1 {
  margin-bottom: 20px;
  font-size: 3.5em;
  line-height: 1.2;
}

.page-cockfighting .hero-cockfighting-banner p {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-align: center;
}

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

.page-cockfighting .section-intro, .page-cockfighting .section-features, .page-cockfighting .section-game-types, .page-cockfighting .section-guide, .page-cockfighting .section-tips, .page-cockfighting .section-promotions, .page-cockfighting .section-cta-final {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin-top: 30px;
}

.page-cockfighting .section-intro strong, .page-cockfighting .section-features strong, .page-cockfighting .section-game-types strong, .page-cockfighting .section-guide strong, .page-cockfighting .section-tips strong, .page-cockfighting .section-promotions strong {
  color: #E44D26;
}

.page-cockfighting .content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

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

.page-cockfighting .game-type-item {
  background-color: #fefefe;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-cockfighting .game-type-item:hover {
  transform: translateY(-5px);
}

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

.page-cockfighting .game-type-item h3 {
  color: #E44D26;
  font-size: 1.5em;
  margin-bottom: 10px;
  text-align: center;
}

.page-cockfighting .game-type-item p {
  font-size: 0.95em;
  color: #555555;
  text-align: justify;
}

.page-cockfighting .section-guide ol li h3 {
  text-align: left;
  color: #333333;
  margin-bottom: 5px;
}

.page-cockfighting .section-guide ol li p {
  margin-left: 20px;
}

.page-cockfighting .section-promotions {
  background-color: #fffaf0;
  border: 1px dashed #FFB800;
}

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

.page-cockfighting .promo-item {
  background-color: #ffffff;
  border: 1px solid #ffe0b2;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-cockfighting .promo-item:hover {
  transform: translateY(-5px);
}

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

.page-cockfighting .promo-item h3 {
  color: #E44D26;
  font-size: 1.4em;
  margin-bottom: 10px;
  text-align: center;
}

.page-cockfighting .promo-item p {
  font-size: 0.9em;
  color: #555555;
  text-align: justify;
}

.page-cockfighting .btn-promo {
  display: inline-block;
  background-color: #FFB800;
  color: #333333;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-cockfighting .btn-promo:hover {
  background-color: #E44D26;
  color: #ffffff;
}

.page-cockfighting .section-faq {
  background-color: #f0f8ff;
}

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

.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.15em;
  color: #333333;
  text-align: left;
}

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

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

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

.page-cockfighting .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 20px;
  border-top: 1px solid #e0e0e0;
}

.page-cockfighting .faq-item.active .faq-answer p {
  margin-bottom: 0;
}

.page-cockfighting .section-cta-final {
  text-align: center;
  background: linear-gradient(135deg, #FFB800, #E44D26);
  color: #ffffff;
  padding: 60px 20px;
}

.page-cockfighting .section-cta-final h2 {
  color: #ffffff;
  margin-bottom: 25px;
}

.page-cockfighting .section-cta-final p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  text-align: center;
}

.page-cockfighting .section-cta-final .btn-primary {
  background-color: #ffffff;
  color: #E44D26;
}

.page-cockfighting .section-cta-final .btn-primary:hover {
  background-color: #f0f0f0;
  color: #E44D26;
}

@media (max-width: 992px) {
  .page-cockfighting h1 {
    font-size: 2.8em;
  }
  .page-cockfighting h2 {
    font-size: 2em;
  }
  .page-cockfighting .section {
    padding: 40px 0;
  }
  .page-cockfighting .game-type-grid, .page-cockfighting .promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-cockfighting .section-intro, .page-cockfighting .section-features, .page-cockfighting .section-game-types, .page-cockfighting .section-guide, .page-cockfighting .section-tips, .page-cockfighting .section-promotions, .page-cockfighting .section-cta-final {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-cockfighting h1 {
    font-size: 2.2em;
  }
  .page-cockfighting h2 {
    font-size: 1.8em;
  }
  .page-cockfighting h3 {
    font-size: 1.5em;
  }
  .page-cockfighting .hero-cockfighting-banner {
    padding: 60px 15px;
  }
  .page-cockfighting .hero-cockfighting-banner p {
    font-size: 1.1em;
  }
  .page-cockfighting .btn-primary, .page-cockfighting .btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-cockfighting .game-type-grid, .page-cockfighting .promo-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting .section-intro, .page-cockfighting .section-features, .page-cockfighting .section-game-types, .page-cockfighting .section-guide, .page-cockfighting .section-tips, .page-cockfighting .section-promotions, .page-cockfighting .section-cta-final {
    padding: 20px;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 1em;
  }
  .page-cockfighting .faq-question {
    padding: 12px 15px;
  }
  .page-cockfighting .faq-answer {
    padding: 0 15px;
  }
  .page-cockfighting .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting h1 {
    font-size: 1.8em;
  }
  .page-cockfighting h2 {
    font-size: 1.5em;
  }
  .page-cockfighting h3 {
    font-size: 1.3em;
  }
  .page-cockfighting .hero-cockfighting-banner p {
    font-size: 1em;
  }
  .page-cockfighting .btn-primary, .page-cockfighting .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-cockfighting .content-image {
    margin: 20px auto;
  }
}