* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(45deg, #6ab1e7, #4d79ff);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    padding: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.avatar {
    text-align: center;
    margin-bottom: 20px;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    background: #4d79ff;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5em;
    font-weight: bold;
    transition: all 0.3s ease;
}

.avatar-circle:hover {
    transform: scale(1.1);
    background: #6ab1e7;
}

.name {
    color: #333;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.name::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #6ab1e7, #4d79ff);
    border-radius: 3px;
}

.bio {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    padding: 10px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.tag {
    background: rgba(77, 121, 255, 0.1);
    color: #4d79ff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(77, 121, 255, 0.2);
    transform: translateY(-2px);
}

.info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.info p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info p:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.info span {
    color: #4d79ff;
    font-weight: bold;
    margin-right: 10px;
}

.skills {
    margin-bottom: 25px;
}

.skills h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5em;
    text-align: center;
}

.skill-item {
    margin-bottom: 15px;
}

.skill-name {
    display: block;
    margin-bottom: 5px;
    color: #666;
}

.skill-bar {
    height: 10px;
    background: rgba(77, 121, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #6ab1e7, #4d79ff);
    border-radius: 5px;
    transition: width 1s ease;
}

.interests {
    margin-bottom: 25px;
}

.interests h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5em;
    text-align: center;
}

.interest-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.interest-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.interest-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
}

.interest-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.interest-item span {
    color: #666;
    font-size: 0.9em;
}

.social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-link {
    color: #4d79ff;
    text-decoration: none;
    font-size: 1em;
    padding: 5px 15px;
    border: 2px solid #4d79ff;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #4d79ff;
    color: white;
    transform: translateY(-3px);
}

.footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    font-size: 0.9em;
}

@media (max-width: 480px) {
    .card {
        padding: 20px;
    }
    
    .name {
        font-size: 2em;
    }
    
    .info p {
        font-size: 1em;
    }

    .avatar-circle {
        width: 80px;
        height: 80px;
        font-size: 2em;
    }

    .interest-items {
        gap: 10px;
    }

    .interest-item {
        padding: 10px;
    }

    .social {
        gap: 10px;
        flex-wrap: wrap;
    }

    .social-link {
        font-size: 0.9em;
        padding: 4px 12px;
    }
} 