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

.page-cockfighting h1 {
  font-size: 2.8em;
  text-align: center;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-cockfighting h3 {
  font-size: 1.6em;
  margin-top: 25px;
  margin-bottom: 15px;
}

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

.page-cockfighting .text-center {
  text-align: center;
}

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

.page-cockfighting .cta-button:hover {
  background: #FFD700;
  color: #CC0000;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-cockfighting .btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: #FFD700;
  color: #CC0000;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  border: 1px solid #CC0000;
}

.page-cockfighting .btn-secondary:hover {
  background: #CC0000;
  color: #FFD700;
  border-color: #FFD700;
  transform: translateY(-1px);
}

.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, #CC0000, #FFD700);
}

.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: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  margin-top: -80px; /* Overlap with image slightly */
}

.page-cockfighting .hero-content h1 {
  color: #FFD700;
  margin-top: 0;
  font-size: 3.2em;
}

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

.page-cockfighting .introduction-section, .page-cockfighting .guide-section, .page-cockfighting .promotions-section, .page-cockfighting .security-section, .page-cockfighting .faq-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 .introduction-section {
  background-color: #fffaf0;
}

.page-cockfighting .introduction-section h2 {
  color: #CC0000;
}

.page-cockfighting .introduction-section ul {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
  margin-bottom: 20px;
}

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

.page-cockfighting .guide-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-cockfighting .guide-item h3 {
  color: #CC0000;
  margin-top: 0;
}

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

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

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

.page-cockfighting .promo-card h3 {
  color: #CC0000;
  margin-top: 15px;
}

.page-cockfighting .promo-link {
  display: inline-block;
  margin-top: 15px;
  color: #CC0000;
  text-decoration: none;
  font-weight: bold;
}

.page-cockfighting .promo-link:hover {
  text-decoration: underline;
  color: #FFD700;
}

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

.page-cockfighting .feature-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
}

.page-cockfighting .feature-item h3 {
  color: #CC0000;
  margin-top: 15px;
}

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

.page-cockfighting .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

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

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

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

.page-cockfighting .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.page-cockfighting .faq-answer p {
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0;
  color: #333;
}

.page-cockfighting .faq-item.active .faq-question {
  border-radius: 8px 8px 0 0;
}

.page-cockfighting .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px 25px;
  border-top: 1px solid #e0e0e0;
}

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

.page-cockfighting .image-wrapper {
  margin: 20px auto;
  text-align: center;
}

.page-cockfighting .image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting .hero-content h1 {
    font-size: 2.8em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting h1 {
    font-size: 2.2em;
  }
  
  .page-cockfighting h2 {
    font-size: 1.8em;
  }
  
  .page-cockfighting h3 {
    font-size: 1.4em;
  }

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

  .page-cockfighting .hero-image img {
    border-radius: 8px;
  }

  .page-cockfighting .hero-content {
    padding: 15px;
    margin-top: -60px;
  }

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

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

  .page-cockfighting .introduction-section, .page-cockfighting .guide-section, .page-cockfighting .promotions-section, .page-cockfighting .security-section, .page-cockfighting .faq-section {
    padding: 40px 0;
  }

  .page-cockfighting .guide-item, .page-cockfighting .promo-card, .page-cockfighting .feature-item {
    padding: 20px;
  }

  .page-cockfighting .promo-grid, .page-cockfighting .security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .page-cockfighting .faq-toggle {
    font-size: 1.5em;
  }

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

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

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

  .page-cockfishing h2 {
    font-size: 1.5em;
  }

  .page-cockfishing .hero-content {
    margin-top: -40px;
  }

  .page-cockfishing .hero-image img {
    border-radius: 4px;
  }

  .page-cockfishing .cta-button {
    width: 100%;
    box-sizing: border-box;
  }

  .page-cockfishing .faq-question h3 {
    font-size: 1em;
  }
}