/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

body {
    background: linear-gradient(135deg, #0078d7, #6ba5e7);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* 毛玻璃效果容器 */
.glass-container {
    width: 100%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* 头部样式 */
.glass-header {
    padding: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.glass-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* 内容区域 */
.glass-content {
    padding: 30px;
}

section {
    margin-bottom: 30px;
}

h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 300;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

/* 个人信息网格 */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.info-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

.info-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.info-value {
    color: white;
    font-size: 1.1rem;
}

/* 个人简介 */
.bio-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* 页脚 */
.glass-footer {
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.1);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.social-btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.github {
    background: rgba(36, 41, 46, 0.7);
}

.bilibili {
    background: rgba(0, 169, 224, 0.7);
}

.email {
    background: rgba(221, 75, 57, 0.7);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 600px) {
    .glass-header h1 {
        font-size: 2rem;
    }
    
    .glass-content, .glass-header, .glass-footer {
        padding: 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}