/* style/cockfighting.css */
:root {
    --primary-color: #26A9E0; /* 淡蓝色 */
    --secondary-color: #FFFFFF; /* 白色 */
    --text-color-dark: #333333; /* 深灰色文本 */
    --text-color-light: #ffffff; /* 浅色文本 */
    --button-login-color: #EA7C07; /* 登录按钮橙色 */
    --border-color: #e0e0e0; /* 边框颜色 */
    --background-light-gray: #f9f9f9; /* 浅灰色背景 */
}

.page-cockfighting {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark); /* Body background is white, so text should be dark */
    background-color: var(--secondary-color); /* Explicitly set for clarity, though shared.css might handle body */
}