:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-color-dark: #333333;
    --text-color-light: #FFFFFF;
    --background-color: #FFFFFF;
    --register-button-bg: #C30808;
    --register-button-text: #FFFF00;
    --login-button-bg: #C30808;
    --login-button-text: #FFFF00;
}

.page-cockfighting-rules {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark); /* Default text color for light body background */
    background-color: var(--background-color); /* Default white background */
}

/* Hero Section */
.page-cockfighting-rules__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    background: linear-gradient(135deg, var(--primary-color), #00A859); /* Blend primary color with a lighter green */
    color: var(--text-color-light);
    overflow: hidden; /* Ensure image overflow is handled */
}

.page-cockfighting-rules__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2; /* Ensure content is above any background effects */
}