:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --background-dark: #0D0E12;
    --card-background: #17191F;
    --text-light: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange: #D96800;
    --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
}

.page-cockfighting {
    font-family: 'Arial', sans-serif;
    color: var(--text-light);
    background-color: var(--background-dark); /* Assume shared.css sets body background to --background-dark */
    line-height: 1.6;
}

.page-cockfighting__section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-cockfighting__section-title {
    font-size: 38px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__section-title--light {
    color: var(--text-light);
}

.page-cockfighting__section-description {
    font-size: 18px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: rgba(255, 243, 230, 0.8);
}

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

.page-cockfighting__highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Buttons */
.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    box-sizing: border-box;
}

.page-cockfighting__btn-primary {
    background: var(--button-gradient);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-cockfighting__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-cockfighting__btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-cockfighting__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--background-dark);
    transform: translateY(-2px);
}

.page-cockfighting__btn-small {
    padding: 10px 20px;
    font-size: 16px;
}

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

/* Cards */
.page-cockfighting__card {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-light);
}

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

.page-cockfighting__card-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.page-cockfighting__card p {
    font-size: 16px;
    color: rgba(255, 243, 230, 0.7);
}

/* Hero Section */
.page-cockfighting__hero-section {
    position: relative;
    padding-top: 10px; /* Small top spacing, relying on body padding-top for header offset */
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-cockfighting__hero-image {
    position: relative;
    width: 100%;
    height: 550px; /* Fixed height for desktop hero */
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 0 0 20px 20px;
}

.page-cockfighting__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover for desktop, contain for mobile */
    display: block;
}

.page-cockfighting__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 15px;
}

.page-cockfighting__main-title {
    font-size: clamp(32px, 4.5vw, 48px); /* Responsive font size */
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__hero-description {
    font-size: 20px;
    color: rgba(255, 243, 230, 0.9);
    margin-bottom: 40px;
}

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

/* Introduction Section */
.page-cockfighting__introduction-section .page-cockfighting__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-cockfighting__introduction-section .page-cockfighting__text-block {
    flex: 1;
}

.page-cockfighting__introduction-section .page-cockfighting__text-block p {
    margin-bottom: 20px;
}

.page-cockfighting__introduction-section .page-cockfighting__image-block {
    flex: 1;
    min-width: 400px;
}

.page-cockfighting__introduction-section .page-cockfighting__image-block img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Why Choose Section */
.page-cockfighting__dark-section {
    background-color: var(--card-background);
}

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

.page-cockfighting__feature-card {
    text-align: center;
    padding: 30px 20px;
}

.page-cockfighting__feature-card .page-cockfighting__card-title {
    color: var(--secondary-color);
}

.page-cockfighting__feature-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    display: block;
    margin: 0 auto;
}

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

.page-cockfighting__type-card {
    text-align: center;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.page-cockfighting__type-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__type-card .page-cockfighting__card-title {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.page-cockfighting__type-card p {
    font-size: 15px;
    color: rgba(255, 243, 230, 0.7);
}

/* Guide Section */
.page-cockfighting__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.page-cockfighting__step-item {
    background-color: var(--card-background);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.page-cockfighting__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-light);
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 0 5px rgba(255, 140, 26, 0.3);
}

.page-cockfighting__guide-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    display: block;
    margin-top: 40px;
}

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

/* Strategies Section */
.page-cockfighting__content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
}

.page-cockfighting__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-cockfighting__content-wrapper .page-cockfighting__text-block {
    flex: 1;
}

.page-cockfighting__content-wrapper .page-cockfighting__image-block {
    flex: 1;
    min-width: 400px;
}

.page-cockfighting__content-wrapper .page-cockfighting__image-block img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__strategy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-cockfighting__strategy-list li {
    background-color: var(--card-background);
    margin-bottom: 15px;
    padding: 15px 20px;
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    font-size: 17px;
    color: rgba(255, 243, 230, 0.85);
}

.page-cockfighting__strategy-list li strong {
    color: var(--secondary-color);
}

/* Promotions Section */
.page-cockfighting__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.page-cockfighting__promotion-card {
    text-align: center;
}

.page-cockfighting__promotion-card .page-cockfighting__card-title {
    color: var(--secondary-color);
}

.page-cockfighting__promotion-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    display: block;
    margin: 0 auto;
}

/* FAQ Section */
details.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-background);
}
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;
}
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, 140, 26, 0.1);
}
.page-cockfighting__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-light);
}
.page-cockfighting__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}
details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
  padding: 0 20px 20px;
  background: rgba(23, 25, 31, 0.8);
  border-radius: 0 0 8px 8px;
  color: rgba(255, 243, 230, 0.75);
}
.page-cockfighting__faq-answer p {
    margin-bottom: 0;
}

/* CTA Section */
.page-cockfighting__cta-section {
    text-align: center;
    padding: 80px 0;
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--deep-orange) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    border-radius: 15px;
    margin: 60px auto;
    max-width: 1000px;
    box-shadow: 0 10px 40px rgba(255, 140, 26, 0.6);
}

.page-cockfighting__cta-section .page-cockfighting__section-title {
    color: var(--text-light);
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__cta-section .page-cockfighting__section-description {
    color: rgba(255, 243, 230, 0.95);
    margin-bottom: 50px;
}

.page-cockfighting__cta-container {
    padding: 0 30px;
}

/* General Image Responsiveness */
.page-cockfighting img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries */
@media (max-width: 1024px) {
    .page-cockfighting__hero-image {
        height: 450px;
    }
    .page-cockfighting__main-title {
        font-size: clamp(30px, 4vw, 42px);
    }
    .page-cockfighting__hero-description {
        font-size: 18px;
    }
    .page-cockfighting__section-title {
        font-size: 34px;
    }
    .page-cockfighting__section-description {
        font-size: 16px;
    }
    .page-cockfighting__introduction-section .page-cockfighting__image-block,
    .page-cockfighting__content-wrapper .page-cockfighting__image-block {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    /* HERO Main Image Area */
    .page-cockfighting__hero-section {
        padding-top: 10px; /* Still small top spacing */
        padding-bottom: 40px;
    }
    .page-cockfighting__hero-image {
        height: auto !important;
        aspect-ratio: unset !important;
        border-radius: 0;
        margin-bottom: 20px;
    }
    .page-cockfighting__hero-image img {
        object-fit: contain !important; /* Prevent cropping on mobile */
        width: 100% !important;
        height: auto !important;
    }
    .page-cockfighting__main-title {
        font-size: clamp(28px, 8vw, 38px);
        margin-bottom: 15px;
    }
    .page-cockfighting__hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .page-cockfighting__hero-buttons {
        flex-direction: column;
        gap: 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__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;
        flex-direction: column; /* For vertical stacking of buttons */
    }

    /* General Sections and Titles */
    .page-cockfighting__section {
        padding: 40px 0;
    }
    .page-cockfighting__section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .page-cockfighting__section-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    .page-cockfighting__container {
        padding: 0 15px;
    }

    /* Introduction Section */
    .page-cockfighting__introduction-section .page-cockfighting__content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .page-cockfighting__introduction-section .page-cockfighting__image-block {
        min-width: unset;
        width: 100%;
    }

    /* Why Choose Section */
    .page-cockfighting__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .page-cockfighting__feature-card {
        padding: 25px 15px;
    }

    /* Types Section */
    .page-cockfighting__types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    .page-cockfighting__type-card img {
        height: 200px;
    }

    /* Guide Section */
    .page-cockfighting__guide-steps {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 40px;
    }
    .page-cockfighting__step-item {
        padding: 25px 15px;
    }

    /* Strategies Section */
    .page-cockfighting__content-wrapper,
    .page-cockfighting__content-wrapper--reverse {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
    }
    .page-cockfighting__content-wrapper .page-cockfighting__image-block {
        min-width: unset;
        width: 100%;
    }
    .page-cockfighting__strategy-list li {
        font-size: 16px;
        padding: 12px 15px;
    }

    /* Promotions Section */
    .page-cockfighting__promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 40px;
    }
    .page-cockfighting__promotion-card {
        padding: 25px 15px;
    }

    /* FAQ Section */
    details.page-cockfighting__faq-item summary.page-cockfighting__faq-question { padding: 15px; }
    .page-cockfighting__faq-qtext { font-size: 16px; }
    .page-cockfighting__faq-toggle { font-size: 24px; width: 24px; height: 24px; margin-left: 10px; }
    details.page-cockfighting__faq-item .page-cockfighting__faq-answer { padding: 0 15px 15px; }

    /* CTA Section */
    .page-cockfighting__cta-section {
        padding: 50px 0;
        margin: 40px auto;
        border-radius: 8px;
    }
    .page-cockfighting__cta-section .page-cockfighting__section-title {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .page-cockfighting__cta-section .page-cockfighting__section-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .page-cockfighting__cta-container {
        padding: 0 20px;
    }

    /* General Image & Container Responsiveness */
    .page-cockfighting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-cockfighting__section,
    .page-cockfighting__card,
    .page-cockfighting__container,
    .page-cockfighting__content-wrapper,
    .page-cockfighting__text-block,
    .page-cockfighting__image-block,
    .page-cockfighting__hero-content,
    .page-cockfighting__hero-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-cockfighting__hero-content {
        padding-left: 0;
        padding-right: 0;
    }
    .page-cockfighting__hero-buttons {
        padding-left: 0;
        padding-right: 0;
    }
}