/* ============================================
   flwllu - 极简个人主页样式
   ============================================ */

:root {
    --bg: #f5f5f7;
    --text: #eaeaea;
    --muted: #000000;
    --primary: #6c63ff;
    --accent: #00d2ff;
    --border: rgba(255, 255, 255, 0.1);
    --font-main: 'Noto Sans SC', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* ---------- 全局重置 ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ---------- 主卡片 ---------- */
.card {
    max-width: 520px;
    width: 100%;
}

/* ---------- 头像 ---------- */
.avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    user-select: none;
}

/* ---------- 标题 ---------- */
h1 {
	 color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

/* 渐变高亮（安全写法，不会消失） */
.highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ---------- 描述文字 ---------- */
p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* ---------- 链接按钮 ---------- */
.links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.links a {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.links a:hover {
    color: var(--text);
    border-color: var(--primary);
}

/* ---------- 页脚 ---------- */
footer {
    margin-top: 36px;
    font-size: 0.8rem;
    color: #555;
}

