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

.page-cockfighting__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-bottom: 40px; /* Space below hero content */
    padding-top: 10px; /* Small top padding for first section */
}

.page-cockfighting__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    max-height: 600px; /* Limit height for aesthetic */
}

.page-cockfighting__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin-top: -150px; /* Overlap image slightly for effect */
    padding: 20px;
    background: rgba(13, 14, 18, 0.7); /* Semi-transparent background for text readability */
    border-radius: 10px;
    box-sizing: border-box;
}

.page-cockfighting__main-title {
    font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
    color: #FFB04D; /* Glow color for title */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

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

.page-cockfighting__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Ensure buttons wrap on small screens */
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Ensure button responsiveness */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
    text-align: center;
}

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

.page-cockfighting__btn-primary:hover {
    background: linear-gradient(180deg, #FFB04D 0%, #FFA53A 100%);
    transform: translateY(-3px);
}

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

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

.page-cockfighting__btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-cockfighting__section-title {
    font-size: clamp(1.8em, 4vw, 2.8em);
    color: #FF8C1A;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-cockfighting__sub-title {
    font-size: clamp(1.4em, 3vw, 2em);
    color: #FFA53A;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-cockfighting__text-block {
    font-size: 1em;
    margin-bottom: 15px;
    color: #FFF3E6;
}

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

.page-cockfighting__light-bg {
    background-color: #17191F; /* Card BG for contrast, not #0D0E12 */
    color: #FFF3E6;
}

.page-cockfighting__dark-bg {
    background-color: #0D0E12; /* Background color */
    color: #FFF3E6;
}

.page-cockfighting__link {
    color: #FFA53A;
    text-decoration: none;
    font-weight: bold;
}

.page-cockfighting__link:hover {
    text-decoration: underline;
}

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

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

.page-cockfighting__card {
    background-color: #17191F; /* Card BG */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #FFF3E6;
}

.page-cockfighting__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-cockfighting__card-title {
    font-size: 1.4em;
    color: #FFA53A;
    margin-bottom: 10px;
}

.page-cockfighting__card-text {
    font-size: 0.95em;
    color: #FFF3E6;
}

.page-cockfighting__list,
.page-cockfighting__ordered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #FFF3E6;
}

.page-cockfighting__ordered-list {
    list-style-type: decimal;
}

.page-cockfighting__list-item {
    margin-bottom: 10px;
}

.page-cockfighting__nested-list {
    list-style-type: circle;
    margin-left: 20px;
    margin-top: 5px;
}

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

.page-cockfighting__feature-card {
    background-color: #17191F;
    border-left: 5px solid #FFA53A;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    color: #FFF3E6;
}

.page-cockfighting__feature-title {
    font-size: 1.3em;
    color: #FF8C1A;
    margin-bottom: 10px;
}

.page-cockfighting__feature-text {
    font-size: 0.95em;
}

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

/* FAQ Section */
.page-cockfighting__faq-list {
    margin-top: 30px;
}

.page-cockfighting__faq-item {
    background-color: #17191F; /* Card BG */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #FFF3E6;
}

.page-cockfighting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.1em;
    font-weight: bold;
    color: #FF8C1A;
    cursor: pointer;
    background-color: #17191F;
    border-bottom: 1px solid #A84F0C; /* Border color */
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-cockfighting__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for Chrome */
}

.page-cockfighting__faq-item summary {
    list-style: none; /* Hide default marker for Firefox/Edge */
}


.page-cockfighting__faq-question:hover {
    background-color: #2a2d34; /* Slightly darker hover */
}

.page-cockfighting__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #FFB04D;
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-toggle {
    transform: rotate(45deg);
}

.page-cockfighting__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: #FFF3E6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-cockfighting__hero-content {
        margin-top: -100px;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__hero-content {
        margin-top: -80px;
        padding: 15px;
    }

    .page-cockfighting__main-title {
        font-size: clamp(1.8em, 8vw, 2.5em);
    }

    .page-cockfighting__hero-description {
        font-size: 1em;
    }

    .page-cockfighting__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        width: 100% !important; /* Force full width on mobile */
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-cockfighting__section-title {
        font-size: clamp(1.6em, 7vw, 2.2em);
        margin-bottom: 30px;
    }

    .page-cockfighting__sub-title {
        font-size: clamp(1.2em, 5vw, 1.8em);
    }

    .page-cockfighting__container {
        padding: 20px 15px;
    }

    .page-cockfighting__grid,
    .page-cockfighting__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-cockfighting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-cockfighting__section,
    .page-cockfighting__card,
    .page-cockfighting__container,
    .page-cockfighting__cta-buttons,
    .page-cockfighting__feature-grid,
    .page-cockfighting__grid,
    .page-cockfighting__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Ensure content images are not smaller than 200px, but responsive */
    .page-cockfighting__image-responsive,
    .page-cockfighting__card-image {
        min-width: 200px;
        min-height: 200px;
        height: auto; /* Allow auto height for card images on mobile */
    }

    /* Video specific mobile rules (if any video is added) */
    .page-cockfighting video,
    .page-cockfighting__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    
    .page-cockfighting__video-section,
    .page-cockfighting__video-container,
    .page-cockfighting__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__video-section {
      padding-top: 10px !important;
    }
}