@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px 40px 40px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    margin-bottom: 20px;
}

.name {
    font-size: 28px;
    font-weight: 600;
    color: #2d2d2d;
    letter-spacing: 1px;
}

.signature {
    font-size: 15px;
    color: #8c8c8c;
    margin-top: 6px;
    font-weight: 300;
}

.divider {
    width: 40px;
    height: 2px;
    background: #c4a882;
    margin: 24px auto;
    border-radius: 2px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 28px;
}

.tag {
    font-size: 12px;
    color: #7a6652;
    background: rgba(196, 168, 130, 0.15);
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 400;
}

.footer-text {
    font-size: 12px;
    color: #b5a394;
    font-weight: 300;
}

/* === 移动端适配 === */
@media (max-width: 480px) {
    .card {
        padding: 36px 24px 32px;
        border-radius: 20px;
    }
    .avatar {
        width: 100px;
        height: 100px;
    }
    .name {
        font-size: 24px;
    }
}
