/* style/cockfighting.css */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-color: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

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

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

.page-cockfighting__dark-bg {
    background-color: var(--background-color);
    color: var(--text-main);
}

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

.page-cockfighting__section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.4);
}

.page-cockfighting__text-block {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-secondary);
    text-align: justify;
}

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

.page-cockfighting__hero-image-wrapper {
    position: relative;
    width: 100%;
    max-height: 700px; /* Limit height for hero image */
    overflow: hidden;
    margin-bottom: 30px;
}

.page-cockfighting__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__hero-content {
    max-width: 900px;
    z-index: 1;
    padding: 20px;
    border-radius: 10px;
    background: rgba(8, 22, 15, 0.8);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__main-title {
    font-size: clamp(32px, 4.5vw, 56px);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-cockfighting__description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    border: 2px solid transparent;
}

.page-cockfighting__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-cockfighting__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
    opacity: 0.9;
}

.page-cockfighting__btn-secondary {
    background-color: transparent;
    color: var(--glow-color);
    border-color: var(--glow-color);
    box-shadow: 0 0 10px rgba(87, 227, 141, 0.3);
}

.page-cockfighting__btn-secondary:hover {
    background-color: var(--glow-color);
    color: var(--background-color);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.6);
}

.page-cockfighting__btn-small {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    background: var(--button-gradient);
    color: var(--text-main);
    transition: all 0.3s ease;
    margin-top: 15px;
    box-sizing: border-box;
}

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

/* Intro Section */
.page-cockfighting__intro-section .page-cockfighting__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-cockfighting__intro-section .page-cockfighting__text-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-cockfighting__image--right {
    max-width: 800px;
    margin-left: auto;
    margin-right: 0;
}

.page-cockfighting__image--left {
    max-width: 800px;
    margin-left: 0;
    margin-right: auto;
}

.page-cockfighting__image--center {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__image--bottom {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Betting Types Section */
.page-cockfighting__betting-types .page-cockfighting__container {
    text-align: center;
}

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

.page-cockfighting__card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--text-main);
}

.page-cockfighting__card-title {
    font-size: 24px;
    color: var(--glow-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-cockfighting__card-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Benefits Section */
.page-cockfighting__benefits-section .page-cockfighting__container {
    text-align: center;
}

.page-cockfighting__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-cockfighting__feature-item {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    text-align: left;
    color: var(--text-main);
}

.page-cockfighting__feature-title {
    font-size: 22px;
    color: var(--gold-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.page-cockfighting__feature-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Guide Section */
.page-cockfighting__guide-section .page-cockfighting__container {
    text-align: center;
}

.page-cockfighting__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-cockfighting__step-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    text-align: left;
    color: var(--text-main);
}

.page-cockfighting__step-title {
    font-size: 24px;
    color: var(--glow-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.page-cockfighting__step-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Tips Section */
.page-cockfighting__tips-section .page-cockfighting__container {
    text-align: center;
}

.page-cockfighting__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-cockfighting__tip-item {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    text-align: left;
    color: var(--text-main);
}

.page-cockfighting__tip-title {
    font-size: 22px;
    color: var(--gold-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.page-cockfighting__tip-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Promotions Section */
.page-cockfighting__promotions-section .page-cockfighting__container {
    text-align: center;
}

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

/* FAQ Section */
.page-cockfighting__faq-section .page-cockfighting__container {
    text-align: center;
}

.page-cockfighting__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__faq-item {
    background-color: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    color: var(--text-main);
}

.page-cockfighting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    color: var(--glow-color);
    cursor: pointer;
    background-color: var(--deep-green);
    border-bottom: 1px solid var(--divider-color);
    transition: background-color 0.3s ease;
    list-style: none; /* For details tag */
}

.page-cockfighting__faq-question::-webkit-details-marker { /* For details tag */
    display: none;
}

.page-cockfighting__faq-question:hover {
    background-color: rgba(10, 75, 44, 0.8);
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-question {
    background-color: var(--deep-green);
    color: var(--gold-color);
}

.page-cockfighting__faq-toggle {
    font-size: 24px;
    line-height: 1;
    transition: transform 0.3s ease;
}

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

.page-cockfighting__faq-answer {
    padding: 0 25px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-answer {
    max-height: 500px; /* Adjust as needed */
    transition: max-height 0.5s ease-in;
    padding-top: 15px;
}

.page-cockfighting__faq-answer p {
    margin-bottom: 0;
}

.page-cockfighting__faq-answer a {
    color: var(--glow-color);
    text-decoration: underline;
}

.page-cockfighting__faq-answer a:hover {
    color: var(--gold-color);
}

/* Bottom CTA Section */
.page-cockfighting__cta-bottom {
    padding: 80px 0;
    text-align: center;
}

.page-cockfighting__cta-bottom .page-cockfighting__section-title {
    color: var(--text-main);
}

.page-cockfighting__cta-bottom .page-cockfighting__text-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-cockfighting__hero-image-wrapper {
        max-height: 550px;
    }
    .page-cockfighting__hero-content {
        padding: 15px;
    }
    .page-cockfighting__main-title {
        font-size: clamp(28px, 4vw, 48px);
    }
    .page-cockfighting__description {
        font-size: 17px;
    }
    .page-cockfighting__section-title {
        font-size: clamp(26px, 3.2vw, 38px);
    }
    .page-cockfighting__text-block {
        font-size: 16px;
    }
    .page-cockfighting__grid, .page-cockfighting__feature-list, .page-cockfighting__tips-list, .page-cockfighting__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }
    .page-cockfighting__hero-image-wrapper {
        max-height: 400px;
    }
    .page-cockfighting__main-title {
        font-size: clamp(26px, 6vw, 40px);
    }
    .page-cockfighting__description {
        font-size: 15px;
    }
    .page-cockfighting__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 16px;
    }
    .page-cockfighting__section {
        padding: 40px 0;
    }
    .page-cockfighting__container {
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-cockfighting__section-title {
        font-size: clamp(24px, 5vw, 32px);
        margin-bottom: 30px;
    }
    .page-cockfighting__text-block {
        font-size: 15px;
    }
    .page-cockfighting img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .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__card,
    .page-cockfighting__feature-item,
    .page-cockfighting__step-item,
    .page-cockfighting__tip-item {
        padding: 20px;
    }
    .page-cockfighting__card-title,
    .page-cockfighting__feature-title,
    .page-cockfighting__step-title,
    .page-cockfighting__tip-title {
        font-size: 20px;
    }
    .page-cockfighting__card-text,
    .page-cockfighting__feature-text,
    .page-cockfighting__step-text,
    .page-cockfighting__tip-text {
        font-size: 15px;
    }
    .page-cockfighting__faq-question {
        font-size: 16px;
        padding: 15px 20px;
    }
    .page-cockfighting__faq-answer {
        font-size: 14px;
        padding: 0 20px 15px;
    }
    .page-cockfighting__cta-bottom {
        padding: 60px 0;
    }
    .page-cockfighting__cta-bottom .page-cockfighting__text-block {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-cockfighting__hero-section {
        padding: 30px 10px;
        padding-top: 10px !important;
    }
    .page-cockfighting__main-title {
        font-size: clamp(24px, 7vw, 36px);
    }
    .page-cockfighting__description {
        font-size: 14px;
    }
    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        padding: 10px 15px;
        font-size: 15px;
    }
    .page-cockfighting__section {
        padding: 30px 0;
    }
    .page-cockfighting__section-title {
        font-size: clamp(22px, 6vw, 28px);
    }
    .page-cockfighting__text-block {
        font-size: 14px;
    }
    .page-cockfighting__card,
    .page-cockfighting__feature-item,
    .page-cockfighting__step-item,
    .page-cockfighting__tip-item {
        padding: 15px;
    }
    .page-cockfighting__card-title,
    .page-cockfighting__feature-title,
    .page-cockfighting__step-title,
    .page-cockfighting__tip-title {
        font-size: 18px;
    }
    .page-cockfighting__card-text,
    .page-cockfighting__feature-text,
    .page-cockfighting__step-text,
    .page-cockfighting__tip-text {
        font-size: 14px;
    }
    .page-cockfighting__faq-question {
        font-size: 15px;
        padding: 12px 15px;
    }
    .page-cockfighting__faq-answer {
        font-size: 13px;
        padding: 0 15px 12px;
    }
    .page-cockfighting__cta-bottom {
        padding: 40px 0;
    }
    .page-cockfighting__cta-bottom .page-cockfighting__text-block {
        font-size: 15px;
    }
}