/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 头部区域 */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bio {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 400;
}

/* 社交链接区域 */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-link i {
    font-size: 16px;
}

/* 主要按钮区域 */
.main-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.main-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 15px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.main-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.main-button:hover::before {
    left: 100%;
}

.main-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.main-button i {
    font-size: 18px;
    min-width: 20px;
}

/* 特殊按钮样式 */
.main-button.message {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.main-button.fansly {
    background: linear-gradient(135deg, #ff9ff3, #f368e0);
    color: white;
}

.main-button.blog {
    background: linear-gradient(135deg, #54a0ff, #2e86de);
    color: white;
}

.main-button.news {
    background: linear-gradient(135deg, #5f27cd, #341f97);
    color: white;
}

/* 关于我区域 */
.about-section {
    margin-top: auto;
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.about-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Stats Bar Styles */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 10px 0 0 0;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
    background: rgba(0,0,0,0.25);
    border-radius: 10px;
    padding: 4px 8px;
    width: 100%;
    box-sizing: border-box;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 13px;
    color: #fff;
    font-weight: 600;
}

.stat-item i {
    font-size: 14px;
    margin-right: 2px;
    color: #fff;
}

.stat-dot {
    color: #fff;
    opacity: 0.7;
    font-size: 13px;
    margin: 0 1px;
}

/* 移动端适配 */
@media (max-width: 480px) {
    .container {
        padding: 15px;
        gap: 15px;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .name {
        font-size: 24px;
    }
    
    .bio {
        font-size: 14px;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-link {
        padding: 10px 12px;
        font-size: 13px;
        min-width: 100px;
    }
    
    .main-button {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .about-card {
        padding: 20px;
    }
    
    .about-title {
        font-size: 22px;
    }
    
    .about-content p {
        font-size: 14px;
    }

    .stats-bar {
        font-size: 12px;
        padding: 2px 4px;
        gap: 6px;
    }
    .stat-item {
        font-size: 11px;
    }
    .stat-item i {
        font-size: 12px;
    }
    .stat-dot {
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 10px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 200px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header,
.social-links,
.main-buttons,
.about-section {
    animation: fadeInUp 0.6s ease-out;
}

.social-links {
    animation-delay: 0.1s;
}

.main-buttons {
    animation-delay: 0.2s;
}

.about-section {
    animation-delay: 0.3s;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
} 