.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 .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: #0A2463; /* Fallback for image */
  color: #ffffff;
}

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

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

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

.page-cockfighting h1 {
  font-size: 2.8em;
  color: #E3B505;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

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

.page-cockfighting .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #E3B505;
  color: #0A2463;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-cockfighting section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-cockfighting h2 {
  font-size: 2.2em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-cockfighting h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #E3B505;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.page-cockfighting h3 {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-cockfighting p {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 15px;
}

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

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

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

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

.page-cockfighting .feature-item h3 {
  color: #E3B505;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-cockfighting .call-to-action-bottom {
  text-align: center;
  margin-top: 50px;
}

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

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

.page-cockfighting .bet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-cockfighting .bet-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 4px;
  object-fit: cover;
}

.page-cockfighting .bet-card h3 {
  color: #E3B505;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-cockfighting .bet-types-conclusion {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #555555;
}

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

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

.page-cockfighting .step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-cockfighting .step-item h3 {
  color: #0A2463;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-cockfighting .guide-button {
  display: inline-block;
  padding: 10px 25px;
  background: #0A2463;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.95em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-cockfighting .guide-button:hover {
  background: #1a3b7a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-cockfighting .expert-tips-section .tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

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

.page-cockfighting .tip-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-cockfighting .tip-item h3 {
  color: #E3B505;
  font-size: 1.6em;
  margin-bottom: 15px;
}

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

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

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

.page-cockfighting .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #0A2463;
  color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-cockfighting .faq-question:hover {
  background: #1a3b7a;
}

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

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

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

.page-cockfighting .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: #333333;
}

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

.page-cockfighting .conclusion-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #0A2463, #3a5c96);
  color: #ffffff;
}

.page-cockfighting .conclusion-section h2 {
  color: #E3B505;
}

.page-cockfighting .conclusion-section p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

/* 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.3em;
  }

  .page-cockfighting .feature-item, .page-cockfighting .bet-card, .page-cockfighting .step-item, .page-cockfighting .tip-item {
    padding: 25px;
  }

  .page-cockfighting .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting .hero-section {
    padding: 40px 15px;
  }

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

  .page-cockfighting .hero-content p {
    font-size: 1em;
  }

  .page-cockfighting section {
    padding: 40px 0;
  }

  .page-cockfighting h2 {
    font-size: 1.6em;
    margin-bottom: 30px;
  }

  .page-cockfighting h3 {
    font-size: 1.2em;
  }

  .page-cockfighting .faq-question {
    padding: 15px 20px;
  }

  .page-cockfighting .faq-question h3 {
    font-size: 1.1em;
  }

  .page-cockfighting .faq-toggle {
    font-size: 20px;
  }

  .page-cockfighting .faq-answer {
    padding: 0 20px;
  }

  .page-cockfighting .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting h1 {
    font-size: 1.5em;
  }

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

  .page-cockfighting .feature-item, .page-cockfighting .bet-card, .page-cockfighting .step-item, .page-cockfighting .tip-item {
    padding: 20px;
  }

  .page-cockfighting .feature-item img, .page-cockfighting .bet-card img, .page-cockfighting .step-item img, .page-cockfighting .tip-item img {
    max-width: 180px;
  }

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

  .page-cockfighting .guide-button {
    padding: 8px 20px;
    font-size: 0.85em;
  }
}