.page-cockfighting {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: var(--secondary-color, #FFFFFF); /* Ensures body background is light */
}

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

.page-cockfighting__section-title {
    font-size: 2.5em;
    color: #017439; /* Brand primary color for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-cockfighting__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #017439;
    border-radius: 2px;
}

.page-cockfighting__sub-title {
    font-size: 1.8em;
    color: #017439;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-cockfighting__text-block {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333333; /* Ensure contrast on light backgrounds */
}

/* --- Buttons --- */
.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary,
.page-cockfighting__btn-register,
.page-cockfighting__btn-login {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%; /* Ensure responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-cockfighting__btn-primary {
    background-color: #017439; /* Brand primary */
    color: #FFFFFF;
    border: 2px solid #017439;
}

.page-cockfighting__btn-primary:hover {
    background-color: #005a2e;
    border-color: #005a2e;
}

.page-cockfighting__btn-secondary {
    background-color: transparent;
    color: #017439;
    border: 2px solid #017439;
    margin-left: 15px;
}

.page-cockfighting__btn-secondary:hover {
    background-color: #017439;
    color: #FFFFFF;
}

.page-cockfighting__btn-register {
    background-color: #C30808; /* Custom register color */
    color: #FFFF00; /* Custom register font color */
    border: 2px solid #C30808;
}

.page-cockfighting__btn-register:hover {
    background-color: #a00606;
    border-color: #a00606;
}

.page-cockfighting__btn-login {
    background-color: #C30808; /* Custom login color */
    color: #FFFF00; /* Custom login font color */
    border: 2px solid #C30808;
    margin-left: 15px;
}

.page-cockfighting__btn-login:hover {
    background-color: #a00606;
    border-color: #a00606;
}

/* --- Links --- */
.page-cockfighting__link {
    color: #017439;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-cockfighting__link:hover {
    color: #005a2e;
}

/* --- Hero Section --- */
.page-cockfighting__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    background-color: #017439; /* Dark background for hero */
    color: #FFFFFF;
}

.page-cockfighting__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-cockfighting__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Darken image for text readability */
    filter: brightness(0.7); /* Further darken, but not change color */
}

.page-cockfighting__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.page-cockfighting__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: 1.2;
}

.page-cockfighting__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}