/* style/cockfighting.css */

/* --- Base Styles --- */
.page-cockfighting {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #FFFFFF; /* Explicitly set for clarity, though body is handled by shared */
}

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

.page-cockfighting__section {
    padding: 60px 0;
    text-align: center;
}

.page-cockfighting__section-title {
    font-size: 2.5em;
    color: #017439; /* Brand green for titles */
    margin-bottom: 40px;
    font-weight: bold;
}

.page-cockfighting__content-area {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    font-size: 1.1em;
}

.page-cockfighting p {
    margin-bottom: 1em;
}

.page-cockfighting a {
    color: #017439;
    text-decoration: none;
    font-weight: bold;
}

.page-cockfighting a:hover {
    text-decoration: underline;
}