.hero-section {
    min-height: calc(100vh - 84px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.avatar-container {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    position: relative;
}

.avatar-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--text);
    font-weight: 700;
    display: inline-block;
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 0 2px 10px rgba(14, 165, 233, 0.1);
}

.gradient-text:hover {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(-1px);
    transition: all 0.3sease;
}

.title-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(79, 70, 229, 0.1));
    border-radius: 30px;
    color: var(--accent);
    font-weight: 500;
    font-size: 1.1rem;
    margin: 1rem 0;
}

.bio-container {
    max-width: 600px;
    margin: 2rem auto;
}

.bio-text {
    color: var(--text-dim);
    font-size: 1.2rem;
    line-height: 1.8;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dim);
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 12px;
}

.info-item:hover {
    transform: translateY(-2px);
    color: var(--accent);
    background: rgba(14, 165, 233, 0.05);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-dim);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.social-link i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) rotate(8deg);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.social-link:hover i {
    color: var(--accent);
}

/* 暗色模式适配 */
[data-theme="dark"] .social-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .social-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* 按钮容器样式 */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* 基础按钮样式 */
.action-btn {
    position: relative;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.btn-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    z-index: 1;
}

/* 主要按钮样式 */
.action-btn.primary {
    background: var(--accent);
    color: white;
}

.action-btn.primary .btn-content {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
}

/* 次要按钮样式 */
.action-btn.secondary {
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent);
}

.action-btn.secondary .btn-content {
    background: rgba(14, 165, 233, 0.05);
}

/* 发光效果 */
.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

/* 悬停效果 */
.action-btn:hover {
    transform: translateY(-2px);
}

.action-btn.primary:hover {
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.action-btn.secondary:hover {
    background: rgba(14, 165, 233, 0.15);
}

.action-btn:hover .btn-glow {
    transform: translateX(100%);
}

/* 图标样式 */
.action-btn i {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .gradient-text {
        font-size: 2.5rem;
    }
    
    .avatar-container {
        width: 140px;
        height: 140px;
    }
    
    .bio-text {
        font-size: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .action-btn {
        width: 100%;
    }
    
    .btn-content {
        justify-content: center;
    }
}

/* 背景装饰 */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.circle-3 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1) translate(-50%, -50%); }
    50% { transform: scale(1.2) translate(-50%, -50%); }
}

