.page-cockfighting {
  padding-top: var(--header-offset, 120px);
  background-color: #f8f8f8; /* Light background for default body */
  color: #333333; /* Dark text for light background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-cockfighting__hero-section {
  background: linear-gradient(135deg, #FFD700 0%, #1E90FF 100%);
  padding: 60px 20px;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-cockfighting__hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-cockfighting__hero-content {
  text-align: center;
  max-width: 800px;
}

.page-cockfighting__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.page-cockfighting__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.8;
  color: #e0e0e0;
}

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

.page-cockfighting__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__button--primary {
  background-color: #FFD700;
  color: #1E90FF;
  border: 2px solid #FFD700;
}

.page-cockfighting__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-cockfighting__button--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-cockfighting__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-cockfighting__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-cockfighting__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-width: 800px;
  margin-top: 30px;
}

.page-cockfighting__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-cockfighting__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-cockfighting__section-title {
  font-size: 2.2em;
  color: #1E90FF;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

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

.page-cockfighting__feature-card,
.page-cockfighting__type-card,
.page-cockfighting__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-cockfighting__feature-card:hover,
.page-cockfighting__type-card:hover,
.page-cockfighting__step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-cockfighting__feature-title,
.page-cockfighting__type-title,
.page-cockfighting__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-cockfighting__feature-description,
.page-cockfighting__type-description,
.page-cockfighting__step-description {
  font-size: 1em;
  color: #666666;
  flex-grow: 1;
}

.page-cockfighting__type-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-cockfighting__step-number {
  background-color: #1E90FF;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__tips-section {
  background-color: #f0f0f0;
}

.page-cockfighting__tip-item {
  background-color: #ffffff;
  border-left: 5px solid #FFD700;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease;
}

.page-cockfighting__tip-item:hover {
  border-color: #1E90FF;
}

.page-cockfighting__tip-title {
  font-size: 1.3em;
  color: #1E90FF;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-cockfighting__tip-description {
  font-size: 0.95em;
  color: #666666;
}

.page-cockfighting__faq-section {
  background-color: #ffffff;
}

.page-cockfighting__faq-list {
  margin-top: 40px;
}

.page-cockfighting__faq-item {
  border-bottom: 1px solid #eeeeee;
  padding: 20px 0;
}

.page-cockfighting__faq-question {
  font-size: 1.2em;
  color: #1E90FF;
  cursor: pointer;
  margin-bottom: 10px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-cockfighting__faq-question:hover {
  color: #FFD700;
}

.page-cockfighting__faq-answer {
  font-size: 1em;
  color: #666666;
  padding-left: 20px;
  display: none; /* Hidden by default, toggled by JS */
}

.page-cockfighting__faq-item.active .page-cockfighting__faq-answer {
  display: block;
}

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

.page-cockfighting__community-cta {
  background: linear-gradient(to right, #1E90FF, #007bff);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-cockfighting__community-content .page-cockfighting__section-title {
  color: #ffffff;
}

.page-cockfighting__community-content .page-cockfighting__section-intro {
  color: #e0e0e0;
  margin-bottom: 40px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .page-cockfighting__hero-title {
    font-size: 2.5em;
  }
  .page-cockfighting__hero-description {
    font-size: 1.1em;
  }
  .page-cockfighting__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-cockfighting {
    padding-top: var(--header-offset, 200px); /* Adjust for mobile header offset */
  }
  .page-cockfighting__hero-section {
    padding: 40px 15px;
  }
  .page-cockfighting__hero-title {
    font-size: 2em;
  }
  .page-cockfighting__hero-description {
    font-size: 1em;
  }
  .page-cockfighting__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-cockfighting__button {
    width: 80%;
    max-width: 300px;
  }
  .page-cockfighting__content-area {
    padding: 40px 15px;
  }
  .page-cockfighting__section-title {
    font-size: 1.8em;
  }
  .page-cockfighting__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-cockfighting__features-grid,
  .page-cockfighting__types-grid,
  .page-cockfighting__steps-grid,
  .page-cockfighting__tips-grid {
    grid-template-columns: 1fr;
  }
  .page-cockfighting__feature-card,
  .page-cockfighting__type-card,
  .page-cockfighting__step-card {
    padding: 25px;
  }
  .page-cockfighting__type-image {
    height: 200px;
  }
  .page-cockfighting__tip-item {
    padding: 20px;
  }
  .page-cockfighting__faq-question {
    font-size: 1.1em;
  }
  .page-cockfighting__faq-answer {
    padding-left: 10px;
  }
  .page-cockfighting__community-cta {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .page-cockfighting__hero-title {
    font-size: 1.7em;
  }
  .page-cockfighting__hero-description {
    font-size: 0.9em;
  }
  .page-cockfighting__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-cockfighting__section-title {
    font-size: 1.6em;
  }
  .page-cockfighting__feature-title,
  .page-cockfighting__type-title,
  .page-cockfighting__step-title {
    font-size: 1.3em;
  }
  .page-cockfighting__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
}