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

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

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

.page-cockfighting__section-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--cockfighting-gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.page-cockfighting__sub-title {
    font-size: clamp(22px, 3vw, 30px);
    color: var(--cockfighting-text-main);
    margin-bottom: 20px;
    font-weight: 600;
}

.page-cockfighting__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--cockfighting-text-secondary);
}

.page-cockfighting__text-block a,
.page-cockfighting p a,
.page-cockfighting li a {
    color: var(--cockfighting-gold-color);
    text-decoration: underline;
}

.page-cockfighting__text-block a:hover,
.page-cockfighting p a:hover,
.page-cockfighting li a:hover {
    color: var(--cockfighting-glow-color);
    text-decoration: none;
}

.page-cockfighting__hero-section {
    position: relative;
    padding-top: 10px; 
    padding-bottom: 60px;
    background-color: var(--cockfighting-background);
    overflow: hidden;
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.page-cockfighting__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-cockfighting__hero-content {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
    padding: 0 20px;
}

.page-cockfighting__main-title {
    font-size: clamp(32px, 5vw, 56px);
    color: var(--cockfighting-gold-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__hero-description {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--cockfighting-text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-cockfighting__cta-buttons--center {
    justify-content: center;
}

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-cockfighting__btn-primary {
    background: var(--cockfighting-button-gradient);
    color: var(--cockfighting-text-main);
}

.page-cockfighting__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

.page-cockfighting__btn-secondary {
    background-color: transparent;
    color: var(--cockfighting-glow-color);
    border-color: var(--cockfighting-glow-color);
}

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

.page-cockfighting__about-section {
    padding: 60px 0;
    background-color: var(--cockfighting-background);
}

.page-cockfighting__image-text-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-cockfighting__image-left {
    flex: 1;
    min-width: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.page-cockfighting__text-content {
    flex: 1.5;
    min-width: 300px;
}

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

.page-cockfighting__list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: var(--cockfighting-text-secondary);
}

.page-cockfighting__list li strong {
    color: var(--cockfighting-text-main);
}

.page-cockfighting__list li::before {
    content: '✓';
    color: var(--cockfighting-glow-color);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.page-cockfighting__features-section {
    padding: 60px 0;
    background-color: var(--cockfighting-card-bg);
}

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

.page-cockfighting__feature-card {
    background-color: var(--cockfighting-background);
    border: 1px solid var(--cockfighting-border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--cockfighting-text-secondary);
}

.page-cockfighting__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(87, 227, 141, 0.3);
}

.page-cockfighting__card-title {
    font-size: 1.5em;
    color: var(--cockfighting-gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting__card-description {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.page-cockfighting__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
}

.page-cockfighting__guide-section {
    padding: 60px 0;
    background-color: var(--cockfighting-background);
}

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

.page-cockfighting__guide-list li {
    background-color: var(--cockfighting-card-bg);
    border: 1px solid var(--cockfighting-border-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-cockfighting__guide-list li:last-child {
    margin-bottom: 0;
}

.page-cockfighting__list-title {
    font-size: 1.4em;
    color: var(--cockfighting-gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting__why-choose-us {
    padding: 60px 0;
    background-color: var(--cockfighting-card-bg);
    text-align: center;
}

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

.page-cockfighting__benefit-item {
    background-color: var(--cockfighting-background);
    border: 1px solid var(--cockfighting-border-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-cockfighting__benefit-item:hover {
    transform: translateY(-5px);
}

.page-cockfighting__benefit-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__benefit-title {
    font-size: 1.3em;
    color: var(--cockfighting-gold-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-cockfighting__benefit-description {
    font-size: 0.95em;
    color: var(--cockfighting-text-secondary);
}

.page-cockfighting__faq-section {
    padding: 60px 0;
    background-color: var(--cockfighting-background);
}

.page-cockfighting__faq-list {
    margin-top: 40px;
}

.page-cockfighting__faq-item {
    background-color: var(--cockfighting-card-bg);
    border: 1px solid var(--cockfighting-border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--cockfighting-text-secondary);
}

.page-cockfighting__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2em;
    color: var(--cockfighting-text-main);
    list-style: none;
}

.page-cockfighting__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-cockfighting__faq-question {
    flex-grow: 1;
}

.page-cockfighting__faq-toggle {
    font-size: 1.5em;
    margin-left: 20px;
    color: var(--cockfighting-glow-color);
}

.page-cockfighting__faq-answer {
    padding: 0 30px 20px;
    font-size: 1em;
    line-height: 1.6;
    color: var(--cockfighting-text-secondary);
}

.page-cockfighting__cta-section {
    padding: 60px 0;
    background-color: var(--cockfighting-deep-green);
    text-align: center;
}

.page-cockfighting__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .page-cockfighting__hero-content {
        padding: 0 30px;
    }

    .page-cockfighting__image-text-block {
        flex-direction: column;
    }

    .page-cockfighting__image-left,
    .page-cockfighting__text-content {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__container {
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-cockfighting__hero-section {
        padding-bottom: 40px;
        padding-top: 10px !important;
    }

    .page-cockfighting__main-title {
        font-size: clamp(28px, 8vw, 42px);
        margin-bottom: 15px;
    }

    .page-cockfighting__hero-description {
        font-size: clamp(16px, 4vw, 20px);
        margin-bottom: 25px;
    }

    .page-cockfighting__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

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

    .page-cockfighting__sub-title {
        font-size: clamp(20px, 6vw, 28px);
    }

    .page-cockfighting__text-block,
    .page-cockfighting__card-description,
    .page-cockfighting__benefit-description,
    .page-cockfighting__faq-answer p {
        font-size: 15px;
    }

    .page-cockfighting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: cover !important;
    }
    
    .page-cockfighting__section,
    .page-cockfighting__card,
    .page-cockfighting__container,
    .page-cockfighting__hero-image-wrapper,
    .page-cockfighting__image-text-block,
    .page-cockfighting__features-grid,
    .page-cockfighting__benefits-grid,
    .page-cockfighting__faq-list,
    .page-cockfighting__cta-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-cockfighting__benefit-icon {
        width: 60px;
        height: 60px;
    }

    .page-cockfighting__faq-item summary {
        padding: 15px 20px;
        font-size: 1.1em;
    }
}