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

body {
    background-color: #121212;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1;
    padding: 20px;
}

.profile-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-section {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-container {
    position: relative;
    z-index: 2;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-circle {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}

.floating-circle img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.cursor {
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
}

.deepseek {
    top: 160px;
    right: 100px;
    width: 80px;
    height: 80px;
}

.kimi {
    bottom: 140px;
    right: 100px;
    width: 70px;
    height: 70px;
}

.v0 {
    bottom: 140px;
    left: 100px;
    width: 70px;
    height: 70px;
}

.chatgpt {
    top: 160px;
    left: 100px;
    width: 80px;
    height: 80px;
}

.chatgpt img {
    width: 65%;
    height: 65%;
}

.profile-info h1 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.title {
    color: #888;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    text-decoration: none;
    color: #ffffff;
    padding: 10px 20px;
    border: 2px solid #ffffff;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #ffffff;
    color: #121212;
}

.footer {
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: #1e1e1e;
    color: #888;
}

.footer p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.avatar-section:hover .floating-circle {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.avatar-section:hover .cursor {
    top: 70px;
}

.avatar-section:hover .deepseek {
    right: 90px;
}

.avatar-section:hover .kimi {
    bottom: 130px;
    right: 90px;
}

.avatar-section:hover .v0 {
    bottom: 130px;
    left: 90px;
}

.avatar-section:hover .chatgpt {
    left: 90px;
}

/* 针对特定logo的调整 */
.cursor img {
    width: 50%;
    height: 50%;
}

/* 悬停效果 */
.floating-circle:hover {
    opacity: 1;
}

.floating-circle:hover img {
    transform: scale(1.1);
}

/* 添加第六个圆圈的样式 */
.claude {
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 75px;
}

/* 调整第六个圆圈的图标大小 */
.claude img {
    width: 60%;
    height: 60%;
}

/* 添加第六个圆圈的悬停效果 */
.avatar-section:hover .claude {
    bottom: 70px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

/* 可以添加链接悬停时的提示 */
.floating-circle::after {
    content: attr(href);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.floating-circle:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .container {
        max-width: 400px;
    }

    .avatar-section {
        width: 350px;
        height: 350px;
    }
    
    .avatar-container {
        width: 100px;
        height: 100px;
    }

    .floating-circle {
        transform: scale(0.8);
    }
    
    .claude {
        width: 65px;
        height: 65px;
        bottom: 60px;  /* 调整移动端下的位置 */
    }

    .chatgpt {
        transform: scale(0.8);
    }
}

.center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.center-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 75% 50%; /* 显示右半边的部分 */
    display: block;
} 