/* 全局样式 */
:root {
    /* 主色调 - 柔和的粉色系 */
    --primary-light: #FCE4EC;      /* 极浅粉 - 背景 */
    --primary-medium: #F8BBD0;     /* 中浅粉 - 强调 */
    --primary-dark: #EC407A;       /* 深粉 - 主按钮/重要元素 */
    --primary-darker: #C2185B;     /* 更深粉 - hover 状态 */
    
    /* 中性色 - 文字和边框 */
    --text-primary: #424242;       /* 主要文字 */
    --text-secondary: #757575;     /* 次要文字 */
    --text-light: #9E9E9E;         /* 浅色文字 */
    --border-light: #F48FB1;       /* 浅色边框 */
    
    /* 背景色 */
    --bg-primary: #FAFAFA;         /* 主背景 */
    --bg-secondary: #FCE4EC;       /* 次级背景 */
    --bg-card: #FFFFFF;            /* 卡片背景 */
    
    /* 阴影 */
    --shadow-sm: 0 2px 8px rgba(236, 64, 122, 0.1);
    --shadow-md: 0 4px 16px rgba(236, 64, 122, 0.15);
    --shadow-lg: 0 8px 32px rgba(236, 64, 122, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('../images/minimal-cat-cursor.png'), auto;
}

/* 鼠标指针样式 */
a, button, .clickable {
    cursor: url('../images/minimal-cat-pointer.png'), pointer;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* 背景效果 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 182, 193, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 192, 203, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 218, 252, 0.3) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 15s ease infinite;
}

@keyframes backgroundShift {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
