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

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

.page-cockfighting__container--center {
    text-align: center;
}

.page-cockfighting__hero-section {
    position: relative;
    padding-top: 10px; /* Fixed header spacing */
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Adjust as needed */
    overflow: hidden;
    margin-bottom: 20px;
}

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

.page-cockfighting__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-cockfighting__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em);
    font-weight: 700;
    color: #FFF3E6; /* Text Main */
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-cockfighting__intro-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #FFF3E6;
}

.page-cockfighting__intro-text a,
.page-cockfighting__section-description a {
    color: #FFA53A; /* Auxiliary color for links */
    text-decoration: underline;
}

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

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

.page-cockfighting__btn-primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
    color: #ffffff;
    border: 2px solid transparent;
}

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

.page-cockfighting__btn-secondary {
    background: #17191F; /* Card BG */
    color: #FFA53A; /* Auxiliary color */
    border: 2px solid #A84F0C; /* Border color */
}

.page-cockfighting__btn-secondary:hover {
    background: #FFA53A;
    color: #17191F;
    border-color: #FFA53A;
    transform: translateY(-2px);
}

.page-cockfighting__section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-cockfighting__section--dark {
    background-color: #17191F; /* Card BG */
}

.page-cockfighting__section-title {
    font-size: clamp(1.8em, 3vw, 2.8em);
    font-weight: 700;
    color: #FFA53A; /* Auxiliary color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-cockfighting__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFA53A 0%, #D96800 100%);
    border-radius: 2px;
}

.page-cockfighting__section-description {
    font-size: 1.05em;
    color: #FFF3E6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-cockfighting__content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: flex-start;
}

.page-cockfighting__content-block {
    background-color: #0D0E12; /* Background color, adjusted for contrast */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #A84F0C; /* Border color */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__sub-title {
    font-size: 1.5em;
    color: #FFA53A; /* Auxiliary color */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-cockfighting__content-block p,
.page-cockfighting__content-block li {
    color: #FFF3E6;
    margin-bottom: 10px;
}

.page-cockfighting__ordered-list,
.page-cockfighting__unordered-list {
    list-style-position: inside;
    padding-left: 0;
    margin-top: 15px;
    margin-bottom: 15px;
}

.page-cockfighting__ordered-list li,
.page-cockfighting__unordered-list li {
    margin-bottom: 8px;
    color: #FFF3E6;
}

.page-cockfighting__ordered-list li strong,
.page-cockfighting__unordered-list li strong {
    color: #FFA53A;
}

.page-cockfighting__image-in-content {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #A84F0C; /* Border color */
}

/* FAQ Section */
details.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #A84F0C; /* Border color */
  overflow: hidden;
  background: #17191F; /* Card BG */
  color: #FFF3E6; /* Text Main */
}
details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF3E6;
}
details.page-cockfighting__faq-item summary.page-cockfighting__faq-question::-webkit-details-marker {
  display: none;
}
details.page-cockfighting__faq-item summary.page-cockfighting__faq-question:hover {
  background: rgba(255, 165, 58, 0.1);
}
.page-cockfighting__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFA53A;
}
.page-cockfighting__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFF3E6;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
  padding: 0 20px 20px;
  background: #0D0E12; /* Background */
  border-radius: 0 0 10px 10px;
  color: #FFF3E6;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-cockfighting__container {
        padding: 15px;
    }
    .page-cockfighting__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }
    .page-cockfighting__section-title {
        font-size: clamp(1.6em, 4vw, 2.5em);
    }
    .page-cockfighting__content-grid {
        gap: 30px;
    }
    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 849px) {
    .page-cockfighting__hero-image {
        object-fit: contain !important;
        aspect-ratio: unset !important;
    }
}

@media (max-width: 768px) {
    .page-cockfighting {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-cockfighting__hero-section {
        padding-top: 10px;
        margin-bottom: 30px;
    }
    .page-cockfighting__hero-image-wrapper {
        max-height: 400px;
    }
    .page-cockfighting__hero-content {
        padding: 0 15px;
    }
    .page-cockfighting__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
        margin-bottom: 10px;
    }
    .page-cockfighting__intro-text {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-cockfighting__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }
    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        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__section {
        padding: 40px 0;
    }
    .page-cockfighting__section-title {
        font-size: clamp(1.5em, 5vw, 2em);
        margin-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-cockfighting__section-description {
        font-size: 0.95em;
        margin: 0 auto 30px;
        padding: 0 15px;
    }
    .page-cockfighting__content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    .page-cockfighting__content-block {
        padding: 20px;
    }
    .page-cockfighting__sub-title {
        font-size: 1.3em;
    }
    .page-cockfighting__ordered-list,
    .page-cockfighting__unordered-list {
        padding-left: 0;
    }
    .page-cockfighting__image-in-content {
        max-width: 100% !important;
        width: 100% !important;
        height: 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;
    }
    details.page-cockfighting__faq-item summary.page-cockfighting__faq-question { padding: 15px; }
    .page-cockfighting__faq-qtext { font-size: 1em; }
    .page-cockfighting__faq-toggle { font-size: 20px; }
    details.page-cockfighting__faq-item .page-cockfighting__faq-answer { padding: 0 15px 15px; }
}