/* style/cockfighting.css */

/* Base styles for the page content, ensuring contrast with dark body background */
.page-cockfighting {
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* Inherit from body or other sections */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Fixed navigation bar spacing */
/* The video section has its own padding-top of 10px as per specific instruction */
.page-cockfighting__hero-section {
  padding-top: 120px; /* Desktop: Adjust to clear fixed header */
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0A246A, #051235);
}

.page-cockfighting__hero-container,
.page-cockfighting__video-container,
.page-cockfighting__features-container,
.page-cockfighting__types-container,
.page-cockfighting__guide-container,
.page-cockfighting__promotions-container,
.page-cockfighting__app-container,
.page-cockfighting__safety-container,
.page-cockfighting__faq-container,
.page-cockfighting__conclusion-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-cockfighting__hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #FFD700; /* Gold for emphasis */
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__hero-description {
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  min-width: 180px;
}

.page-cockfighting__cta-button--primary {
  background-color: #FFD700; /* Gold */
  color: #0A246A; /* Dark blue text for contrast */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.page-cockfighting__cta-button--primary:hover {
  background-color: #e0b800;
  border-color: #e0b800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-cockfighting__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-cockfighting__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A246A;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.page-cockfighting__cta-button--small {
  padding: 10px 20px;
  font-size: 16px;
  min-width: 120px;
}

/* Video Section */
.page-cockfighting__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Desktop: As per specific instruction for video section */
  background-color: #0A246A; /* Dark blue background */
}

.page-cockfighting__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-cockfighting__video-title {
  font-size: 36px;
  font-weight: 700;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  background-color: #000;
}

.page-cockfighting__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  object-fit: cover;
}

.page-cockfighting__video-description {
  font-size: 16px;
  color: #f0f0f0;
  text-align: center;
  margin-top: 25px;
  max-width: 800px;
}

/* General Section Styles */
.page-cockfighting__features-section,
.page-cockfighting__types-section,
.page-cockfighting__guide-section,
.page-cockfighting__promotions-section,
.page-cockfighting__app-section,
.page-cockfighting__safety-section,
.page-cockfighting__faq-section,
.page-cockfighting__conclusion-section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background */
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-cockfighting__features-section,
.page-cockfighting__guide-section,
.page-cockfighting__app-section,
.page-cockfighting__safety-section {
  background-color: #0d0d0d;
}

.page-cockfighting__types-section,
.page-cockfighting__promotions-section,
.page-cockfighting__faq-section,
.page-cockfighting__conclusion-section {
  background-color: #1a1a1a;
}

.page-cockfighting__features-title,
.page-cockfighting__types-title,
.page-cockfighting__guide-title,
.page-cockfighting__promotions-title,
.page-cockfighting__app-title,
.page-cockfighting__safety-title,
.page-cockfighting__faq-main-title,
.page-cockfighting__conclusion-title {
  font-size: 38px;
  font-weight: 700;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.page-cockfighting__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-cockfighting__feature-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent light background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

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

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

.page-cockfighting__feature-card-title {
  font-size: 24px;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 15px;
}

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

.page-cockfighting__cta-center {
  text-align: center;
  margin-top: 60px;
}

/* Types Section */
.page-cockfighting__types-intro {
  font-size: 18px;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cockfighting__types-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-cockfighting__type-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-cockfighting__type-item-title {
  font-size: 22px;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-cockfighting__type-item-description {
  font-size: 16px;
  color: #e0e0e0;
}

/* Guide Section */
.page-cockfighting__guide-intro {
  font-size: 18px;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-cockfighting__guide-step {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-cockfighting__guide-step-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-cockfighting__guide-step-title {
  font-size: 22px;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-cockfighting__guide-step-description {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Promotions Section */
.page-cockfighting__promotions-intro {
  font-size: 18px;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-cockfighting__promotion-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

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

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

.page-cockfighting__promotion-card-title {
  font-size: 24px;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-cockfighting__promotion-card-description {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 20px;
}

/* App Section */
.page-cockfighting__app-section {
  background: linear-gradient(135deg, #0A246A, #051235);
}

.page-cockfighting__app-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-cockfighting__app-content {
  flex: 1;
  min-width: 300px;
}

.page-cockfighting__app-title {
  text-align: left;
  font-size: 38px;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-cockfighting__app-description {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 30px;
}

.page-cockfighting__app-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-cockfighting__app-features li {
  font-size: 17px;
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.page-cockfighting__app-feature-icon {
  color: #FFD700;
  font-weight: bold;
  font-size: 20px;
  margin-right: 10px;
  line-height: 1;
}

.page-cockfighting__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-cockfighting__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Safety Section */
.page-cockfighting__safety-intro {
  font-size: 18px;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-cockfighting__safety-point {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-cockfighting__safety-point-title {
  font-size: 24px;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-cockfighting__safety-point-description {
  font-size: 16px;
  color: #e0e0e0;
}

/* FAQ Section */
.page-cockfighting__faq-main-title {
  margin-bottom: 50px;
}

.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.15); /* Gold border for FAQ items */
}

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

.page-cockfighting__faq-question:hover {
  background: #11337c; /* Slightly lighter blue on hover */
}

.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 color 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: 32px;
  height: 32px;
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-toggle {
  transform: rotate(45deg); /* Rotate for 'x' effect */
  color: #ffffff;
}

.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 25px;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.05); /* Lighter background for answer */
  border-top: 1px solid rgba(255, 215, 0, 0.05);
}

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

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

/* Conclusion Section */
.page-cockfighting__conclusion-description {
  font-size: 18px;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Image responsiveness */
.page-cockfighting img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 992px) {
  .page-cockfighting__hero-title {
    font-size: 40px;
  }

  .page-cockfighting__features-title,
  .page-cockfighting__types-title,
  .page-cockfighting__guide-title,
  .page-cockfighting__promotions-title,
  .page-cockfighting__app-title,
  .page-cockfighting__safety-title,
  .page-cockfighting__faq-main-title,
  .page-cockfighting__conclusion-title {
    font-size: 32px;
  }

  .page-cockfighting__app-container {
    flex-direction: column;
  }

  .page-cockfighting__app-title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding-top: 100px; /* Mobile: Adjust to clear fixed header */
    padding-bottom: 40px;
  }

  .page-cockfighting__hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-cockfighting__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-cockfighting__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    min-width: unset;
  }

  .page-cockfighting__video-section {
    padding-top: 10px !important; /* Mobile: Specific instruction for video section */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cockfighting__video-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .page-cockfighting__video-wrapper {
    border-radius: 8px;
  }

  .page-cockfighting__video {
    border-radius: 8px;
  }

  .page-cockfighting__video-description {
    font-size: 15px;
    margin-top: 20px;
  }

  .page-cockfighting__features-section,
  .page-cockfighting__types-section,
  .page-cockfighting__guide-section,
  .page-cockfighting__promotions-section,
  .page-cockfighting__app-section,
  .page-cockfighting__safety-section,
  .page-cockfighting__faq-section,
  .page-cockfighting__conclusion-section {
    padding: 50px 0;
  }

  .page-cockfighting__features-title,
  .page-cockfighting__types-title,
  .page-cockfighting__guide-title,
  .page-cockfighting__promotions-title,
  .page-cockfighting__app-title,
  .page-cockfighting__safety-title,
  .page-cockfighting__faq-main-title,
  .page-cockfighting__conclusion-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-cockfighting__features-grid,
  .page-cockfighting__types-list,
  .page-cockfighting__guide-steps,
  .page-cockfighting__promotions-grid,
  .page-cockfighting__safety-points {
    gap: 20px;
  }

  .page-cockfighting__feature-card,
  .page-cockfighting__type-item,
  .page-cockfighting__guide-step,
  .page-cockfighting__promotion-card,
  .page-cockfighting__safety-point {
    padding: 20px;
    border-radius: 8px;
  }

  .page-cockfighting__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }

  .page-cockfishing__feature-card-title,
  .page-cockfighting__type-item-title,
  .page-cockfighting__guide-step-title,
  .page-cockfighting__promotion-card-title,
  .page-cockfighting__safety-point-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .page-cockfishing__feature-card-description,
  .page-cockfighting__type-item-description,
  .page-cockfighting__guide-step-description,
  .page-cockfighting__promotion-card-description,
  .page-cockfighting__safety-point-description,
  .page-cockfighting__app-description,
  .page-cockfighting__app-features li,
  .page-cockfighting__conclusion-description {
    font-size: 15px;
  }

  .page-cockfighting__app-features li {
    margin-bottom: 8px;
  }

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

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

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

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

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

  /* Force images and containers to adapt to mobile width */
  .page-cockfighting img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-cockfighting__hero-container,
  .page-cockfighting__video-container,
  .page-cockfighting__features-container,
  .page-cockfighting__types-container,
  .page-cockfighting__guide-container,
  .page-cockfighting__promotions-container,
  .page-cockfighting__app-container,
  .page-cockfighting__safety-container,
  .page-cockfighting__faq-container,
  .page-cockfighting__conclusion-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}