:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    --card-bg: #17191F;
    --page-bg: #0D0E12;
    --text-main: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange: #D96800;
    --accent-yellow-green: #d6d604;
}

.page-cockfighting {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    background-color: var(--page-bg);
    color: var(--text-main);
    padding-bottom: 40px;
}

.page-cockfighting__hero-section {
    padding-top: 10px;
    padding-bottom: 40px;
    background-color: var(--page-bg);
    text-align: center;
}

.page-cockfighting__hero-image-wrapper {
    margin: 0 auto 20px auto;
    max-width: 1200px;
    overflow: hidden;
    border-radius: 12px;
}

.page-cockfighting__hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 5;
    object-fit: cover;
    object-position: center;
    min-width: 200px;
    min-height: 62.5px;
    max-width: 100%;
}

.page-cockfighting__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-cockfighting__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-main);
}

.page-cockfighting__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-main);
}

.page-cockfighting__cta-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    background: var(--button-gradient);
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
    white-space: nowrap;
}

.page-cockfighting__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 58, 0.6);
}

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

.page-cockfighting__about-section,
.page-cockfighting__features-section,
.page-cockfighting__guide-section {
    padding: 60px 0;
    background-color: var(--page-bg);
}

.page-cockfighting__section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-cockfighting__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.page-cockfighting__text-content {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-cockfighting__feature-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.page-cockfighting__feature-card:hover {
    transform: translateY(-5px);
}

.page-cockfighting__feature-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 20px auto;
    display: block;
    filter: none;
    min-width: 200px;
    min-height: 200px;
}

.page-cockfighting__feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-cockfighting__feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
}

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

.page-cockfighting__cta-button--secondary {
    background: var(--deep-orange);
    box-shadow: 0 4px 15px rgba(217, 104, 0, 0.4);
}

.page-cockfighting__cta-button--secondary:hover {
    box-shadow: 0 6px 20px rgba(217, 104, 0, 0.6);
}

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

.page-cockfighting__guide-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__guide-step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-cockfighting__guide-step-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
}

@media (max-width: 849px) {
    .page-cockfighting__main-title {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }
    .page-cockfighting__section-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }
    .page-cockfighting__hero-section,
    .page-cockfighting__about-section,
    .page-cockfighting__features-section,
    .page-cockfighting__guide-section {
        padding: 40px 0;
    }
    .page-cockfighting__text-content {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .page-cockfighting img {
        max-width: 100%;
        height: auto;
    }
    .page-cockfighting__feature-image {
        min-width: 200px;
        min-height: 200px;
    }
    .page-cockfighting__hero-image {
        min-width: 200px;
        min-height: 62.5px;
    }
}

@media (max-width: 549px) {
    .page-cockfighting__hero-content,
    .page-cockfighting__container {
        padding: 0 12px;
    }
    .page-cockfighting__main-title {
        font-size: clamp(1.4rem, 7vw, 2.2rem);
    }
    .page-cockfighting__section-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }
    .page-cockfighting__cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    .page-cockfighting__text-content {
        font-size: 0.9rem;
    }
    .page-cockfighting__feature-title {
        font-size: 1.15rem;
    }
    .page-cockfighting__feature-description,
    .page-cockfighting__guide-step-description {
        font-size: 0.85rem;
    }
    .page-cockfighting__guide-step-title {
        font-size: 1.1rem;
    }
}