body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    /* 新的柔和背景渐变 - 浅灰蓝到米白 */
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* 保持 flex-start 以支持滚动 */
    min-height: 100vh;
    padding: 40px 20px;
    box-sizing: border-box;
}

.container {
    max-width: 400px; /* 略微收窄卡片宽度，更精致 */
    width: 100%;
    text-align: center;
    background: #ffffff; /* 纯白背景，更干净 */
    padding: 35px 30px; /* 调整内边距 */
    border-radius: 16px; /* 略小一点的圆角，更现代 */
    /* 精致的阴影效果 */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 220, 220, 0.6); /* 增加一个细微的浅色边框 */
    transition: transform 0.3s ease-in-out; /* 增加卡片悬停动画 */
}

/* 卡片整体的微弱悬停动画 */
/*.container:hover {*/
/*    transform: translateY(-5px);*/
/*}*/

.profile-pic {
    width: 110px; /* 略小一点的头像 */
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #fff; /* 头像边框更细 */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); /* 更柔和的头像阴影 */
    transition: transform 0.3s ease;
}

.profile-pic:hover {
    transform: scale(1.08); /* 悬停放大效果更明显 */
}

.name {
    font-size: 28px; /* 名字字体略大，更突出 */
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #2c3e50; /* 更深沉的文字颜色 */
}

.bio {
    font-size: 15px; /* 简介字体略小 */
    color: #6d7e8f; /* 柔和的简介文字颜色 */
    margin-bottom: 30px;
    line-height: 1.6;
}

.group-title {
    font-size: 13px; /* 组标题字体略小 */
    font-weight: 600; /* 略粗一点 */
    color: #a0a0a0; /* 更柔和的灰色 */
    margin-top: 28px; /* 调整间距 */
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px; /* 字母间距略大 */
}

.container > .group-title:first-of-type {
    margin-top: 0;
}

.links-group {
    display: flex;
    flex-direction: column;
    gap: 12px; /* 链接间距略小 */
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px; /* 按钮内边距略小 */
    border-radius: 10px; /* 按钮圆角略小 */
    text-decoration: none;
    font-weight: 500;
    font-size: 15px; /* 按钮文字略小 */
    color: #fff;
    transition: all 0.25s ease-in-out; /* 更流畅的过渡 */
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* 按钮默认阴影 */
}

.link-button:hover {
    transform: translateY(-4px) scale(1.01); /* 悬停效果更明显但不过度 */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* 悬停阴影更深 */
    filter: brightness(1.1); /* 悬停时略微提亮 */
}

.link-button i {
    margin-right: 10px; /* 图标间距略小 */
    font-size: 18px; /* 图标大小略小 */
    width: 20px;
    text-align: center;
}

/* --- 平台颜色 --- */
/* 第一梯队 */
.instagram { background: linear-gradient(45deg, #fdc260 0%,#fc7c7c 25%,#d8478d 50%,#a054c2 75%,#7c5ee3 100%); } /* 更柔和的Instagram渐变 */
.whatsapp { background-color: #25D366; }
.discord { background-color: #5865F2; }
.snapchat { background-color: #FFFC00; color: #000; }

/* 第二梯队 */
.wechat { background-color: #07C160; }
.kakaotalk { background-color: #FEE500; color: #000; }
.line { background-color: #00B900; }
.telegram { background-color: #26A5E4; }

/* 第三梯队 */
.portfolio { background-color: #7f8c8d; } /* 中灰 */
.email { background-color: #e74c3c; } /* 鲜艳的红色，但更柔和一点 */
.linkedin { background-color: #0A66C2; }
.twitter { background-color: #14171A; }

/* 保存联系人按钮（放在 Professional & Other 组里） */
.vcf {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
}


/* --- 复制成功的状态样式 --- */
/* 当按钮拥有 .copied-success 类名时，应用以下颜色 */

.discord.copied-success {
    background-color: #3b45a0; /* 一个更深的Discord蓝色 */
}

.wechat.copied-success {
    background-color: #06944e; /* 一个更深的微信绿 */
}

.kakaotalk.copied-success {
    background-color: #d4b500; /* 一个更深的芥末黄 (黄色变深不好看，这是最优选择) */
    color: #ffffff; /* 同时确保文字变回白色，以防万一 */
}

/* --- Language Switcher Styles --- */
.language-switcher {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.lang-btn {
    background-color: transparent;
    border: 1px solid #dcdcdc;
    color: #a0a0a0;
    padding: 5px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.lang-btn:hover {
    background-color: #f0f0f0;
    color: #333;
}

.lang-btn.active {
    background-color: #2c3e50; /* 和你的名字颜色一致 */
    color: #ffffff;
    border-color: #2c3e50;
}


/* 页脚 */
.footer {
    margin-top: 35px;
    font-size: 11px; /* 页脚文字略小 */
    color: #b0b0b0; /* 页脚颜色更淡 */
}