.page-cockfighting {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-cockfighting__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles top padding, use small decorative padding here */
  background-color: #08160F;
  overflow: hidden;
}

.page-cockfighting__hero-image-wrapper {
  width: 100%;
  max-height: 70vh; /* Limit hero image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-cockfighting__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
  color: #F2FFF6;
}

.page-cockfighting__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-cockfighting__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-cockfighting__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-cockfighting__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
}

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

.page-cockfighting__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-cockfighting__btn-secondary:hover {
  background: #2AD16F;
  color: #F2FFF6;
}

.page-cockfighting__section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-cockfighting__dark-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
}

.page-cockfighting__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  position: relative;
}

.page-cockfighting__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2AD16F, #13994A);
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-cockfighting__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-cockfighting__content-area p {
  font-size: 1rem;
  line-height: 1.8;
  color: #A7D9B8; /* Text Secondary */
}

.page-cockfighting__content-area strong {
  color: #F2FFF6; /* Text Main */
}

.page-cockfighting__content-area a {
  color: #2AD16F;
  text-decoration: none;
}

.page-cockfighting__content-area a:hover {
  text-decoration: underline;
}

.page-cockfighting__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 20px 0;
  min-width: 200px;
  min-height: 200px;
}

.page-cockfighting__image--left {
  margin-right: auto;
}

.page-cockfighting__image--right {
  margin-left: auto;
}

.page-cockfighting__list,
.page-cockfighting__numbered-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-cockfighting__list-item {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
  color: #A7D9B8;
}

.page-cockfighting__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2AD16F;
  font-weight: bold;
}

.page-cockfighting__numbered-list .page-cockfighting__list-item {
  counter-increment: list-counter;
}

.page-cockfighting__numbered-list .page-cockfighting__list-item::before {
  content: counter(list-counter) '.';
  color: #2AD16F;
  font-weight: bold;
  left: 0;
}

/* FAQ Section */
.page-cockfighting__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  color: #F2FFF6;
  font-size: 1.1rem;
  border-bottom: 1px solid #2E7A4E; /* Border */
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-question {
  border-bottom: 1px solid #2E7A4E;
}

.page-cockfighting__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #2AD16F;
  margin-left: 15px;
}

.page-cockfighting__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-cockfighting__faq-answer p {
  margin: 0;
  color: #A7D9B8;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-cockfighting__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
  .page-cockfighting__introduction-section .page-cockfighting__content-area,
  .page-cockfighting__strategies-section .page-cockfighting__content-area,
  .page-cockfighting__promotions-section .page-cockfighting__content-area,
  .page-cockfighting__conclusion-section .page-cockfighting__content-area {
    flex-direction: row;
    align-items: center;
  }
  .page-cockfighting__bet-types-section .page-cockfighting__content-area,
  .page-cockfighting__how-to-play-section .page-cockfighting__content-area {
    flex-direction: row-reverse;
    align-items: center;
  }
  .page-cockfighting__content-area > *:not(.page-cockfighting__image) {
    flex: 1;
  }
  .page-cockfighting__image {
    flex: 1;
    max-width: 45%;
    margin: 0 30px;
  }
  .page-cockfighting__image--left {
    order: -1; /* For right-aligned text, image on left */
  }
}

@media (max-width: 768px) {
  .page-cockfighting__hero-section {
    padding-bottom: 40px;
  }
  .page-cockfighting__hero-content {
    padding: 0 15px;
  }
  .page-cockfighting__main-title {
    font-size: 2rem;
  }
  .page-cockfighting__hero-description {
    font-size: 1rem;
  }
  .page-cockfighting__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-cockfighting__content-area {
    padding: 0 15px;
  }
  .page-cockfighting__content-area p,
  .page-cockfighting__list-item,
  .page-cockfighting__faq-answer p {
    font-size: 0.95rem;
  }
  .page-cockfighting__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto !important;
  }
  .page-cockfighting__section,
  .page-cockfighting__card,
  .page-cockfighting__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-cockfighting__video-section {
    padding-top: 10px !important;
  }
  .page-cockfighting__cta-button,
  .page-cockfighting__btn-primary,
  .page-cockfighting__btn-secondary,
  .page-cockfighting a[class*="button"],
  .page-cockfighting a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-cockfighting__cta-buttons,
  .page-cockfighting__button-group,
  .page-cockfighting__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-cockfighting__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}