.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 h1, .page-cockfighting h2, .page-cockfighting h3 {
  color: #222222;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-cockfighting h1 {
  font-size: 2.8em;
  text-align: center;
  color: #FFFFFF;
}

.page-cockfighting h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  color: #00CED1;
}

.page-cockfighting h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 25px;
}

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

.page-cockfighting ul, .page-cockfighting ol {
  margin-bottom: 15px;
  padding-left: 25px;
  font-size: 1.05em;
}

.page-cockfighting ul li, .page-cockfighting ol li {
  margin-bottom: 8px;
}

.page-cockfighting strong {
  color: #FFD700;
}

.page-cockfighting .cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #333333;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-cockfighting .cta-button:hover {
  background: linear-gradient(90deg, #FFA500, #FFD700);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  color: #000000;
}

.page-cockfighting .cta-button.small {
  padding: 10px 25px;
  font-size: 1em;
}

.page-cockfighting .cta-button.large {
  padding: 18px 45px;
  font-size: 1.4em;
}

/* 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: 60px 20px;
  background-color: #00CED1;
}

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

.page-cockfighting .hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-height: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-cockfighting .hero-content h1 {
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting .hero-content p {
  font-size: 1.3em;
  color: #EEEEEE;
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* About Section */
.page-cockfighting .about-cockfighting {
  padding: 60px 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid #e0e0e0;
}

/* Game Types Section */
.page-cockfighting .game-types {
  padding: 60px 0;
  background-color: #f2f2f2;
  border-bottom: 1px solid #e0e0e0;
}

.page-cockfighting .image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
}

.page-cockfighting .image-text-block.reverse {
  flex-direction: row-reverse;
}

.page-cockfighting .image-text-block img {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-cockfighting .image-text-block .text-content {
  flex: 1;
  max-width: 50%;
}

.page-cockfighting .image-text-block .text-content h3 {
  color: #00CED1;
  margin-top: 0;
}

/* How to Play Section */
.page-cockfighting .how-to-play {
  padding: 60px 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid #e0e0e0;
}

.page-cockfighting .how-to-play ol {
  list-style-type: decimal;
  counter-reset: my-awesome-counter;
}

.page-cockfighting .how-to-play ol li {
  counter-increment: my-awesome-counter;
  margin-bottom: 20px;
  font-size: 1.1em;
  position: relative;
  padding-left: 40px;
}

.page-cockfighting .how-to-play ol li::before {
  content: counter(my-awesome-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #333333;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Strategies Section */
.page-cockfighting .strategies {
  padding: 60px 0;
  background-color: #f2f2f2;
  border-bottom: 1px solid #e0e0e0;
}

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

.page-cockfighting .strategy-item {
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting .strategy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.page-cockfighting .strategy-item img {
  max-width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

.page-cockfighting .strategy-item h3 {
  color: #00CED1;
  margin-top: 0;
  font-size: 1.4em;
}

/* Promotions Section */
.page-cockfighting .promotions {
  padding: 60px 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid #e0e0e0;
}

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

.page-cockfighting .promo-card {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-cockfighting .promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.page-cockfighting .promo-card img {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

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

.page-cockfighting .promo-card p {
  flex-grow: 1;
}

/* Security & Support Section */
.page-cockfighting .security-support {
  padding: 60px 0;
  background-color: #00CED1;
  color: #FFFFFF;
}

.page-cockfighting .security-support h2 {
  color: #FFD700;
}

.page-cockfighting .security-support h3 {
  color: #FFFFFF;
}

.page-cockfighting .security-support p {
  color: #EEEEEE;
}

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

.page-cockfighting .feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-cockfighting .feature-item h3 {
  margin-bottom: 15px;
}

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

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

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

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

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

.faq-question h3 {
  margin: 0;
  color: #333333;
  font-size: 1.2em;
}

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

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #00CED1;
}

.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-top: 1px solid #eee;
}

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

.faq-item.active .faq-answer p {
  margin-bottom: 0;
  color: #555555;
}

/* Final CTA Section */
.page-cockfighting .final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #00CED1, #00BFFF);
  text-align: center;
  color: #FFFFFF;
}

.page-cockfighting .final-cta h2 {
  color: #FFD700;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.page-cockfighting .final-cta p {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #EEEEEE;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-cockfighting h1 {
    font-size: 2.2em;
  }
  .page-cockfighting h2 {
    font-size: 1.8em;
  }
  .page-cockfighting h3 {
    font-size: 1.4em;
  }
  .page-cockfighting .hero-content p {
    font-size: 1.1em;
  }
  .page-cockfighting .image-text-block {
    flex-direction: column;
    text-align: center;
  }
  .page-cockfighting .image-text-block.reverse {
    flex-direction: column;
  }
  .page-cockfighting .image-text-block img,
  .page-cockfighting .image-text-block .text-content {
    max-width: 100%;
  }
  .page-cockfighting .strategy-item img, .page-cockfighting .promo-card img {
    height: 180px;
  }
  .page-cockfighting .final-cta h2 {
    font-size: 2em;
  }
  .page-cockfighting .final-cta p {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting h1 {
    font-size: 1.8em;
  }
  .page-cockfishing h2 {
    font-size: 1.6em;
  }
  .page-cockfighting .hero-section {
    padding: 40px 15px;
  }
  .page-cockfighting .hero-image {
    max-height: 300px;
  }
  .page-cockfighting .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-cockfighting .cta-button.large {
    padding: 15px 35px;
    font-size: 1.2em;
  }
  .page-cockfighting .image-text-block,
  .page-cockfighting .image-text-block.reverse {
    gap: 20px;
  }
  .page-cockfighting .strategy-grid,
  .page-cockfighting .promo-card-grid,
  .page-cockfighting .feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .faq-question {
    padding: 15px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting h1 {
    font-size: 1.5em;
  }
  .page-cockfighting h2 {
    font-size: 1.4em;
  }
  .page-cockfighting p {
    font-size: 0.95em;
  }
  .page-cockfighting ol li {
    padding-left: 35px;
    font-size: 1em;
  }
  .page-cockfighting ol li::before {
    width: 25px;
    height: 25px;
    font-size: 1em;
  }
  .page-cockfighting .hero-image {
    margin-bottom: 20px;
  }
  .page-cockfighting .hero-content p {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-cockfighting .cta-button.large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}