* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(225deg, #833ab4 0%, #5851db 40%, #00bfff 70%, #00bfff 100%);
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
}

/* 背景装饰 */
.bg-decoration {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(64, 93, 230, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(186, 85, 211, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(131, 58, 180, 0.3) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-30px, -30px) rotate(120deg); }
    66% { transform: translate(30px, -30px) rotate(240deg); }
}

/* 艺人头像和基本信息 */
.profile-section {
    text-align: center;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 1;
}

.avatar-container {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.avatar:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.avatar-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: rotate 3s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.artist-name {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d, #6bcf7f, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7, #fd79a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 400% 400%;
    animation: rainbowShift 8s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 107, 107, 0.3);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    letter-spacing: 1px;
}

@keyframes rainbowShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 200% 50%; }
    75% { background-position: 300% 50%; }
    100% { background-position: 400% 50%; }
}

.artist-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 30px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #e1306c;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(225, 48, 108, 0.3);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* 社交平台区域 */
.social-section {
    padding: 0 20px 40px;
}

.social-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.social-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.social-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.social-link {
    display: flex;
    align-items: center;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: contain;
    margin-right: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    transition: all 0.3s ease;
}

.social-item:hover .social-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.social-info {
    flex: 1;
    text-align: left;
}

.social-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.social-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.follow-btn {
    background: linear-gradient(45deg, #405de6, #5851db);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(64, 93, 230, 0.3);
}

.social-item:hover .follow-btn {
    background: linear-gradient(45deg, #5851db, #405de6);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(64, 93, 230, 0.4);
}

/* 特定平台样式 */
.social-item.weibo:hover {
    border-color: rgba(231, 76, 60, 0.6);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.3);
}

.social-item.douyin:hover {
    border-color: rgba(254, 44, 85, 0.6);
    box-shadow: 0 15px 40px rgba(254, 44, 85, 0.3);
}

.social-item.xiaohongshu:hover {
    border-color: rgba(255, 64, 129, 0.6);
    box-shadow: 0 15px 40px rgba(255, 64, 129, 0.3);
}

.social-item.bilibili:hover {
    border-color: rgba(0, 174, 236, 0.6);
    box-shadow: 0 15px 40px rgba(0, 174, 236, 0.3);
}

.social-item.qqmusic:hover {
    border-color: rgba(255, 205, 0, 0.6);
    box-shadow: 0 15px 40px rgba(255, 205, 0, 0.3);
}

.social-item.netease:hover {
    border-color: rgba(198, 47, 47, 0.6);
    box-shadow: 0 15px 40px rgba(198, 47, 47, 0.3);
}

/* 底部 */
.footer {
    text-align: center;
    padding: 30px 20px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    letter-spacing: 1px;
}

/* 响应式设计 */
@media (max-width: 360px) {
    .profile-section {
        padding: 40px 15px 30px;
    }
    
    .avatar {
        width: 120px;
        height: 120px;
    }
    
    .artist-name {
        font-size: 30px;
    }
    
    .stats-row {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .social-section {
        padding: 0 15px 30px;
    }
    
    .social-link {
        padding: 16px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }
}

/* 入场动画 */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.profile-section {
    animation: fadeIn 1s ease-out;
}

.social-item {
    animation: slideInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.social-item:nth-child(1) { animation-delay: 0.2s; }
.social-item:nth-child(2) { animation-delay: 0.3s; }
.social-item:nth-child(3) { animation-delay: 0.4s; }
.social-item:nth-child(4) { animation-delay: 0.5s; }
.social-item:nth-child(5) { animation-delay: 0.6s; }
.social-item:nth-child(6) { animation-delay: 0.7s; } 