* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    min-height: 100vh;
    color: #2c3e50;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
}

/* 头部艺人信息 */
.header {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.star-image {
    margin-bottom: 20px;
}

.star-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.star-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #11998e, #38ef7d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.star-desc {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.star-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.star-stats span {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

/* 平台关注区域 */
.platforms-section {
    margin-bottom: 30px;
}

.section-title {
    color: white;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.platform-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.platform-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    object-fit: contain;
}

.platform-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.follow-text {
    font-size: 12px;
    color: #666;
    background: linear-gradient(45deg, #11998e, #38ef7d);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 8px;
}

/* 特定平台颜色 */
.platform-card.weibo:hover {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(255, 255, 255, 0.9));
}

.platform-card.douyin:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.9));
}

.platform-card.xiaohongshu:hover {
    background: linear-gradient(135deg, rgba(255, 64, 129, 0.1), rgba(255, 255, 255, 0.9));
}

.platform-card.bilibili:hover {
    background: linear-gradient(135deg, rgba(0, 174, 236, 0.1), rgba(255, 255, 255, 0.9));
}

.platform-card.qqmusic:hover {
    background: linear-gradient(135deg, rgba(255, 205, 0, 0.1), rgba(255, 255, 255, 0.9));
}

.platform-card.netease:hover {
    background: linear-gradient(135deg, rgba(198, 47, 47, 0.1), rgba(255, 255, 255, 0.9));
}

/* 底部 */
.footer {
    text-align: center;
    padding: 20px;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* 响应式设计 */
@media (max-width: 360px) {
    .container {
        padding: 15px;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .star-name {
        font-size: 24px;
    }
    
    .platform-card {
        padding: 15px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    animation: fadeInUp 0.6s ease-out;
}

.platform-card {
    animation: fadeInUp 0.6s ease-out;
}

.platform-card:nth-child(1) { animation-delay: 0.1s; }
.platform-card:nth-child(2) { animation-delay: 0.2s; }
.platform-card:nth-child(3) { animation-delay: 0.3s; }
.platform-card:nth-child(4) { animation-delay: 0.4s; }
.platform-card:nth-child(5) { animation-delay: 0.5s; }
.platform-card:nth-child(6) { animation-delay: 0.6s; } 