:root {
    --text-color: #1a1a1a;
    --link-color: #000;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --spacing: 2rem;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 800px;
    position: relative;
    padding: var(--spacing);
}

/* 头像样式 */
.profile-header {
    position: absolute;
    top: 0;
    right: 0;
}

#avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

/* 内容区域 */
.content {
    margin-top: 100px;
    line-height: 2;
    font-size: 1.25rem;
}

h1 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.content p {
    margin: 0;
    font-size: 1.15rem;
    position: relative;
    padding-left: 1.2rem;
    transition: all 0.3s ease;
}

.content p::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* 社交链接样式 */
.social-links {
    margin-top: 3rem;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

/* 邮箱链接样式 - 与 GitHub 图标保持一致 */
.email-link {
    width: auto;
    height: auto;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    font-size: 1.5rem;
}

.email-link:hover {
    background-color: transparent;
    box-shadow: none;
    transform: translateY(-2px);
}

/* 响应式调整 */
@media (max-width: 600px) {
    .profile-header {
        position: static;
        text-align: center;
        margin-bottom: 2rem;
    }
    .social-links {
        justify-content: center;
    }
}