/* style/cockfighting.css */
.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default light text color for dark body background */
  background-color: var(--dark-bg-1);
}

/* Fixed header spacing for the first content section */
.page-cockfighting__intro-section {
  padding-top: 120px; /* Adjust based on actual header height */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #0A2463, #1A3B8A); /* Slightly lighter dark blue for intro */
  color: #ffffff;
}

.page-cockfighting__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-cockfighting__main-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-cockfighting__intro-text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-cockfighting__keyword {
  color: #ffd700; /* Gold color for keywords */
  font-weight: bold;
}

.page-cockfighting__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-cockfighting__btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
}

.page-cockfighting__btn--primary {
  background: #E34A4A;
  color: #ffffff;
  border-color: #E34A4A;
}

.page-cockfighting__btn--primary:hover {
  background: #ff6b6b;
  border-color: #ff6b6b;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(227, 74, 74, 0.4);
}

.page-cockfighting__btn--secondary {
  background: #0A2463;
  color: #ffffff;
  border-color: #ffd700;
}

.page-cockfighting__btn--secondary:hover {
  background: #1A3B8A;
  border-color: #ffeb3b;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(10, 36, 99, 0.4);
}

.page-cockfighting__btn--small {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
}

.page-cockfighting__image-wrapper {
  text-align: center;
}

.page-cockfighting__intro-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-cockfighting__section-title {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  margin: 60px 0 30px;
  color: #ffd700; /* Gold color for section titles */
  line-height: 1.3;
}

.page-cockfighting__section-description {
  font-size: 17px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #f0f0f0;
}

/* Why Choose Section */
.page-cockfighting__why-choose-section {
  padding: 80px 0;
}

.page-cockfighting__dark-section {
  background-color: #0A2463; /* Primary brand dark blue */
  color: #ffffff;
}

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

.page-cockfighting__feature-card {
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards on dark background */
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-cockfighting__feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.page-cockfighting__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-cockfighting__feature-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffd700; /* Gold for feature titles */
}

.page-cockfighting__feature-description {
  font-size: 16px;
  color: #f0f0f0;
}

/* Types Section */
.page-cockfighting__types-section {
  padding: 80px 0;
  background-color: var(--dark-bg-1);
  color: #ffffff;
}

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

.page-cockfighting__type-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-cockfighting__type-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-cockfighting__type-title {
  font-size: 20px;
  font-weight: 600;
  padding: 15px 20px 0;
  color: #ffd700;
}

.page-cockfighting__type-description {
  font-size: 15px;
  padding: 10px 20px 20px;
  color: #f0f0f0;
}

/* Guide Section */
.page-cockfighting__guide-section {
  padding: 80px 0;
}

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

.page-cockfighting__step-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-cockfighting__step-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.page-cockfighting__step-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #E34A4A; /* Red for step titles */
}

.page-cockfighting__step-description {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-cockfighting__promotions-section {
  padding: 80px 0;
  background-color: var(--dark-bg-1);
  color: #ffffff;
}

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

.page-cockfighting__promo-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-cockfighting__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-cockfighting__promo-title {
  font-size: 22px;
  font-weight: 600;
  padding: 15px 20px 0;
  color: #ffd700;
}

.page-cockfighting__promo-description {
  font-size: 15px;
  padding: 10px 20px 15px;
  color: #f0f0f0;
}

.page-cockfighting__promo-card .page-cockfighting__btn {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

/* Security & Support Section */
.page-cockfighting__security-support-section {
  padding: 80px 0;
}

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

.page-cockfighting__info-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-cockfighting__info-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.page-cockfighting__info-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-cockfighting__info-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #E34A4A;
}

.page-cockfighting__info-description {
  font-size: 16px;
  color: #f0f0f0;
}

/* FAQ Section */
.page-cockfighting__faq-section {
  padding: 80px 0;
  background-color: var(--dark-bg-1);
  color: #ffffff;
}

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

.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #0A2463; /* Dark blue for question background */
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-cockfighting__faq-question:hover {
  background: #1A3B8A;
}

.page-cockfighting__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff; /* White text for question */
  pointer-events: none;
}

.page-cockfighting__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #ffd700; /* Gold for toggle icon */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-toggle {
  color: #E34A4A;
  transform: rotate(45deg); /* Rotate for minus sign */
}

.page-cockfighting__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.05); /* Lighter background for answer */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
}

.page-cockfighting__faq-answer p {
  font-size: 16px;
  color: #f0f0f0;
  margin: 0;
}

.page-cockfighting__link-text {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-cockfighting__link-text:hover {
  color: #E34A4A;
  text-decoration: underline;
}

/* News Section */
.page-cockfighting__news-section {
  padding: 80px 0;
}

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

.page-cockfighting__news-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-cockfighting__news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-cockfighting__news-title {
  font-size: 20px;
  font-weight: 600;
  padding: 15px 20px 0;
  color: #ffd700;
}

.page-cockfighting__news-title a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-cockfighting__news-title a:hover {
  color: #E34A4A;
  text-decoration: underline;
}

.page-cockfighting__news-meta {
  font-size: 13px;
  color: #aaaaaa;
  padding: 0 20px;
  margin-bottom: 10px;
}

.page-cockfighting__news-excerpt {
  font-size: 15px;
  color: #f0f0f0;
  padding: 0 20px 15px;
}

.page-cockfighting__news-card .page-cockfighting__btn {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cockfighting__main-title {
    font-size: 36px;
  }

  .page-cockfighting__section-title {
    font-size: 30px;
  }

  .page-cockfighting__intro-text,
  .page-cockfighting__section-description,
  .page-cockfighting__feature-description,
  .page-cockfighting__type-description,
  .page-cockfighting__step-description,
  .page-cockfighting__promo-description,
  .page-cockfighting__info-description,
  .page-cockfighting__faq-answer p,
  .page-cockfighting__news-excerpt {
    font-size: 15px;
  }

  .page-cockfighting__feature-title,
  .page-cockfighting__type-title,
  .page-cockfighting__step-title,
  .page-cockfighting__promo-title,
  .page-cockfighting__info-title,
  .page-cockfighting__news-title {
    font-size: 20px;
  }

  .page-cockfighting__intro-section,
  .page-cockfighting__why-choose-section,
  .page-cockfighting__types-section,
  .page-cockfighting__guide-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__security-support-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__news-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__intro-section {
    padding-top: 100px; /* Adjust for mobile fixed header */
    padding-bottom: 40px;
  }

  .page-cockfighting__container {
    padding: 0 15px;
  }

  .page-cockfighting__main-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-cockfighting__intro-text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-cockfighting__cta-group {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

  .page-cockfighting__btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-cockfighting__section-title {
    font-size: 24px;
    margin: 40px 0 25px;
  }

  .page-cockfighting__section-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .page-cockfighting__feature-card,
  .page-cockfighting__type-card,
  .page-cockfighting__step-card,
  .page-cockfighting__promo-card,
  .page-cockfighting__info-item,
  .page-cockfighting__news-card {
    padding: 20px;
  }

  .page-cockfighting__feature-icon,
  .page-cockfighting__info-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .page-cockfighting__feature-title,
  .page-cockfighting__type-title,
  .page-cockfighting__step-title,
  .page-cockfighting__promo-title,
  .page-cockfighting__info-title,
  .page-cockfighting__news-title {
    font-size: 18px;
  }

  .page-cockfighting__type-image,
  .page-cockfighting__promo-image,
  .page-cockfighting__news-image {
    height: 180px;
  }

  .page-cockfighting__faq-item {
    border-radius: 5px;
  }

  .page-cockfighting__faq-question {
    padding: 15px;
  }

  .page-cockfighting__faq-question h3 {
    font-size: 16px;
  }

  .page-cockfighting__faq-toggle {
    font-size: 24px;
    width: 24px;
    height: 24px;
  }

  .page-cockfighting__faq-answer {
    padding: 0 15px;
  }

  .page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
    padding: 15px !important;
  }

  .page-cockfighting__faq-answer p {
    font-size: 15px;
  }

  /* Ensure all images and containers are responsive */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-cockfighting__intro-section,
  .page-cockfighting__why-choose-section,
  .page-cockfighting__types-section,
  .page-cockfighting__guide-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__security-support-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__news-section,
  .page-cockfighting__container,
  .page-cockfighting__feature-card,
  .page-cockfighting__type-card,
  .page-cockfighting__step-card,
  .page-cockfighting__promo-card,
  .page-cockfighting__info-item,
  .page-cockfighting__news-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-cockfighting__intro-section .page-cockfighting__container,
  .page-cockfighting__why-choose-section .page-cockfighting__container,
  .page-cockfighting__types-section .page-cockfighting__container,
  .page-cockfighting__guide-section .page-cockfighting__container,
  .page-cockfighting__promotions-section .page-cockfighting__container,
  .page-cockfighting__security-support-section .page-cockfighting__container,
  .page-cockfighting__faq-section .page-cockfighting__container,
  .page-cockfighting__news-section .page-cockfighting__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}