.page-cockfighting {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-cockfighting .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-cockfighting .section-title {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-cockfighting .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

/* 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: linear-gradient(135deg, #1A2E44, #3a5c82);
  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 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-cockfighting .hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #E0B354;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

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

.page-cockfighting .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: #1A2E44;
  text-decoration: none;
  border-radius: 8px;
  font-size: 22px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-cockfighting .cta-button:hover {
  background: #ffc86b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-cockfighting .introduction-section p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #555;
  text-align: justify;
}

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

.page-cockfighting .feature-cards .card {
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-cockfighting .feature-cards .card-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-cockfighting .feature-cards .card h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-cockfighting .feature-cards .card p {
  font-size: 16px;
  color: #666;
  text-align: center;
}

/* Types Section */
.page-cockfighting .types-section {
  padding: 80px 0;
  background-color: #f0f4f7;
}

.page-cockfighting .types-section p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
  text-align: justify;
}

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

.page-cockfighting .type-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting .type-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.page-cockfighting .type-item h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin: 20px 20px 10px 20px;
}

.page-cockfighting .type-item p {
  font-size: 16px;
  color: #666;
  padding: 0 20px 20px 20px;
  text-align: justify;
  margin-bottom: 0;
}

/* Gameplay Rules Section */
.page-cockfighting .gameplay-rules-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-cockfighting .gameplay-rules-section h3 {
  font-size: 28px;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-cockfighting .gameplay-rules-section p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #555;
  text-align: justify;
}

.page-cockfighting .gameplay-rules-section ul,
.page-cockfighting .gameplay-rules-section ol {
  margin-left: 25px;
  margin-bottom: 30px;
  color: #555;
}

.page-cockfighting .gameplay-rules-section ul li,
.page-cockfighting .gameplay-rules-section ol li {
  font-size: 17px;
  margin-bottom: 10px;
}

.page-cockfighting .gameplay-rules-section ul li strong,
.page-cockfighting .gameplay-rules-section ol li strong {
  color: var(--primary-color);
}

.page-cockfighting .gameplay-rules-section a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-cockfighting .gameplay-rules-section a:hover {
  text-decoration: underline;
}

/* Live Experience Section */
.page-cockfighting .live-experience-section {
  padding: 80px 0;
  background-color: #f0f4f7;
}

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

.page-cockfighting .live-features .feature-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting .live-features .feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-cockfighting .live-features .feature-icon {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 25px;
  object-fit: contain;
  border-radius: 8px;
}

.page-cockfighting .live-features .feature-item h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-cockfighting .live-features .feature-item p {
  font-size: 16px;
  color: #666;
  text-align: center;
}

/* Safety and Fairness Section */
.page-cockfighting .safety-fairness-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-cockfighting .safety-fairness-section h3 {
  font-size: 28px;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-cockfighting .safety-fairness-section p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #555;
  text-align: justify;
}

/* Tips and Strategies Section */
.page-cockfighting .tips-strategies-section {
  padding: 80px 0;
  background-color: #f0f4f7;
}

.page-cockfighting .tips-strategies-section p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
  text-align: justify;
}

.page-cockfighting .strategy-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 30px;
}

.page-cockfighting .strategy-item:nth-child(even) {
  flex-direction: row-reverse;
}

.page-cockfighting .strategy-item .strategy-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  flex-shrink: 0;
}

.page-cockfighting .strategy-item h3 {
  font-size: 28px;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 15px;
}

.page-cockfighting .strategy-item p {
  font-size: 17px;
  color: #666;
  margin-bottom: 0;
  text-align: justify;
}

/* How to Start Section */
.page-cockfighting .how-to-start-section {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

.page-cockfighting .how-to-start-section p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
}

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

.page-cockfighting .step-item {
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  padding-top: 60px;
}

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

.page-cockfighting .step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary-color);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting .step-item h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-cockfighting .step-item p {
  font-size: 16px;
  color: #666;
  margin-bottom: 0;
}

.page-cockfighting .final-cta {
  margin-top: 60px;
  font-size: 20px;
}

.page-cockfighting .final-cta .cta-button {
  padding: 18px 50px;
  font-size: 24px;
  margin-top: 20px;
}

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

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

.page-cockfighting .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  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: 18px 25px;
  background: #fff;
  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 {
  font-size: 20px;
  color: var(--primary-color);
  margin: 0;
  flex-grow: 1;
  text-align: left;
}

.page-cockfighting .faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-left: 15px;
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.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: #fdfdfd;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

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

.page-cockfighting .faq-answer p {
  font-size: 16px;
  color: #666;
  margin-bottom: 0;
  text-align: justify;
}

.page-cockfighting .faq-answer a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-cockfighting .faq-answer a:hover {
  text-decoration: underline;
}

/* Final CTA Section */
.page-cockfighting .cta-final-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1A2E44, #3a5c82);
  text-align: center;
  color: #ffffff;
}

.page-cockfighting .cta-final-section .section-title {
  color: #E0B354;
}

.page-cockfighting .cta-final-section p {
  font-size: 20px;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-cockfighting .cta-final-section .large-cta {
  padding: 20px 60px;
  font-size: 26px;
  border-radius: 10px;
}

.page-cockfighting .cta-final-section .small-text {
  font-size: 16px;
  margin-top: 30px;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting .hero-content h1 {
    font-size: 40px;
  }
  .page-cockfighting .hero-content p {
    font-size: 18px;
  }
  .page-cockfighting .cta-button {
    padding: 15px 35px;
    font-size: 20px;
  }
  .page-cockfighting .strategy-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-cockfighting .strategy-item:nth-child(even) {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-cockfighting .section-title {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .page-cockfighting .hero-section {
    padding: 40px 15px;
  }
  .page-cockfighting .hero-content h1 {
    font-size: 32px;
  }
  .page-cockfighting .hero-content p {
    font-size: 16px;
  }
  .page-cockfighting .cta-button {
    padding: 12px 30px;
    font-size: 18px;
  }
  .page-cockfighting .introduction-section, .page-cockfighting .types-section, .page-cockfighting .gameplay-rules-section, .page-cockfighting .live-experience-section, .page-cockfighting .safety-fairness-section, .page-cockfighting .tips-strategies-section, .page-cockfighting .how-to-start-section, .page-cockfighting .faq-section, .page-cockfighting .cta-final-section {
    padding: 50px 0;
  }
  .page-cockfighting .introduction-section p, .page-cockfighting .types-section p, .page-cockfighting .gameplay-rules-section p, .page-cockfighting .safety-fairness-section p, .page-cockfighting .tips-strategies-section p, .page-cockfighting .how-to-start-section p {
    font-size: 16px;
  }
  .page-cockfighting .feature-cards .card, .page-cockfighting .type-item, .page-cockfighting .live-features .feature-item, .page-cockfighting .step-item {
    padding: 25px;
  }
  .page-cockfighting .feature-cards .card h3, .page-cockfighting .type-item h3, .page-cockfighting .live-features .feature-item h3, .page-cockfighting .step-item h3 {
    font-size: 20px;
  }
  .page-cockfighting .gameplay-rules-section h3, .page-cockfighting .safety-fairness-section h3, .page-cockfighting .strategy-item h3 {
    font-size: 24px;
  }
  .page-cockfighting .gameplay-rules-section ul li, .page-cockfighting .gameplay-rules-section ol li, .page-cockfighting .strategy-item p {
    font-size: 15px;
  }
  .page-cockfighting .strategy-item .strategy-image {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 18px;
  }
  .page-cockfighting .faq-question {
    padding: 15px 20px;
  }
  .page-cockfighting .faq-answer {
    padding: 0 20px;
  }
  .page-cockfighting .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-cockfighting .final-cta .cta-button {
    padding: 15px 40px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting .hero-content h1 {
    font-size: 28px;
  }
  .page-cockfighting .cta-button {
    font-size: 16px;
    padding: 10px 25px;
  }
  .page-cockfighting .section-title {
    font-size: 26px;
  }
  .page-cockfighting .feature-cards .card h3, .page-cockfighting .type-item h3, .page-cockfighting .live-features .feature-item h3, .page-cockfighting .step-item h3 {
    font-size: 18px;
  }
  .page-cockfighting .gameplay-rules-section h3, .page-cockfighting .safety-fairness-section h3, .page-cockfighting .strategy-item h3 {
    font-size: 22px;
  }
  .page-cockfighting .faq-question h3 {
    font-size: 16px;
  }
  .page-cockfighting .faq-toggle {
    font-size: 24px;
  }
  .page-cockfighting .final-cta .cta-button {
    font-size: 18px;
    padding: 12px 30px;
  }
}