.page-cockfighting-rules-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background);
}

.page-cockfighting-rules-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 40px;
  overflow: hidden;
}

.page-cockfighting-rules-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height to prevent image from being too tall */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-cockfighting-rules-analysis__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-cockfighting-rules-analysis__hero-content {
  position: relative;
  padding: 20px;
  max-width: 900px;
  margin-top: 20px;
}

.page-cockfighting-rules-analysis__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-cockfighting-rules-analysis__lead-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

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

.page-cockfighting-rules-analysis__btn-primary,
.page-cockfighting-rules-analysis__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.page-cockfighting-rules-analysis__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-cockfighting-rules-analysis__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-cockfighting-rules-analysis__btn-secondary {
  background: var(--background);
  color: var(--main-color);
  border: 2px solid var(--main-color);
}

.page-cockfighting-rules-analysis__btn-secondary:hover {
  background: var(--main-color);
  color: #ffffff;
}

.page-cockfighting-rules-analysis__section {
  padding: 60px 20px;
  margin-bottom: 20px;
  background-color: var(--background);
  border-radius: 8px;
}

.page-cockfighting-rules-analysis__dark-section {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-cockfighting-rules-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-cockfighting-rules-analysis__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--main-color);
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-cockfighting-rules-analysis__dark-section .page-cockfighting-rules-analysis__section-title {
  color: var(--text-main);
}

.page-cockfighting-rules-analysis__sub-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--main-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-cockfighting-rules-analysis__dark-section .page-cockfighting-rules-analysis__sub-title {
  color: var(--gold);
}

.page-cockfighting-rules-analysis__content-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 30px;
}

.page-cockfighting-rules-analysis__image-content {
  flex: 1 1 45%;
  min-width: 300px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  max-width: 100%;
  height: auto;
}

.page-cockfighting-rules-analysis__content-block .page-cockfighting-rules-analysis__list,
.page-cockfighting-rules-analysis__content-block p {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-cockfighting-rules-analysis__list {
  list-style: none;
  padding-left: 0;
}

.page-cockfighting-rules-analysis__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.page-cockfighting-rules-analysis__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--main-color);
  font-weight: bold;
}

.page-cockfighting-rules-analysis__dark-section .page-cockfighting-rules-analysis__list-item {
  color: var(--text-secondary);
}

.page-cockfighting-rules-analysis__dark-section .page-cockfighting-rules-analysis__list-item::before {
  color: var(--glow);
}

.page-cockfighting-rules-analysis__ordered-list {
  list-style: decimal;
  padding-left: 25px;
  color: var(--text-secondary);
}

.page-cockfighting-rules-analysis__ordered-list .page-cockfighting-rules-analysis__list-item {
  padding-left: 0;
  margin-bottom: 10px;
}

.page-cockfighting-rules-analysis__ordered-list .page-cockfighting-rules-analysis__list-item::before {
  content: none;
}

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

.page-cockfighting-rules-analysis__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-cockfighting-rules-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-cockfighting-rules-analysis__faq-question::-webkit-details-marker {
  display: none;
}

.page-cockfighting-rules-analysis__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-cockfighting-rules-analysis__faq-qtext {
  flex-grow: 1;
  color: var(--text-main);
}

.page-cockfighting-rules-analysis__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--glow);
}

.page-cockfighting-rules-analysis__faq-item[open] .page-cockfighting-rules-analysis__faq-toggle {
  content: '−';
}

.page-cockfighting-rules-analysis__faq-answer {
  padding: 15px 25px 25px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-top: 1px solid var(--divider);
}

.page-cockfighting-rules-analysis__conclusion-section {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-cockfighting-rules-analysis__conclusion-section .page-cockfighting-rules-analysis__cta-buttons {
  margin-top: 40px;
}

.page-cockfighting-rules-analysis__button-inline {
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-cockfighting-rules-analysis p {
  color: var(--text-secondary);
  margin-bottom: 1em;
}

.page-cockfighting-rules-analysis__dark-section p {
  color: var(--text-secondary);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-cockfighting-rules-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-cockfighting-rules-analysis__hero-content {
    padding: 15px;
  }

  .page-cockfighting-rules-analysis__main-title {
    font-size: 2rem;
  }

  .page-cockfighting-rules-analysis__lead-text {
    font-size: 1rem;
  }

  .page-cockfighting-rules-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-cockfighting-rules-analysis__btn-primary,
  .page-cockfighting-rules-analysis__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
  }

  .page-cockfighting-rules-analysis__section,
  .page-cockfighting-rules-analysis__dark-section {
    padding: 30px 10px;
  }

  .page-cockfighting-rules-analysis__container {
    padding: 0 10px;
  }

  .page-cockfighting-rules-analysis__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .page-cockfighting-rules-analysis__sub-title {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-cockfighting-rules-analysis__content-block {
    flex-direction: column;
    gap: 20px;
  }

  .page-cockfighting-rules-analysis__image-content {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }

  .page-cockfighting-rules-analysis__content-block .page-cockfighting-rules-analysis__list,
  .page-cockfighting-rules-analysis__content-block p {
    width: 100%;
    min-width: unset;
  }

  .page-cockfighting-rules-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-cockfighting-rules-analysis__section,
  .page-cockfighting-rules-analysis__card,
  .page-cockfighting-rules-analysis__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-cockfighting-rules-analysis__video-section {
    padding-top: 10px !important;
  }

  .page-cockfighting-rules-analysis video,
  .page-cockfighting-rules-analysis__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-cockfighting-rules-analysis__video-section,
  .page-cockfighting-rules-analysis__video-container,
  .page-cockfighting-rules-analysis__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-cockfighting-rules-analysis__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-cockfighting-rules-analysis__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-cockfighting-rules-analysis__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}