* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: #ffffff;
    color: #2c3e50;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 80px;
}

/* 介绍区域 */
.intro {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease;
}

.name {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.tagline {
    font-size: 16px;
    color: #666;
    font-weight: 300;
    letter-spacing: 1px;
}

/* 导航链接 */
.nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #2c3e50;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::before {
    transform: scaleY(1);
}

.nav-link:hover {
    background: #ffffff;
    border-color: #2c3e50;
    transform: translateX(5px);
}

.nav-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-link.disabled:hover {
    transform: none;
    border-color: #e9ecef;
    background: #f8f9fa;
}

.nav-link.disabled::before {
    display: none;
}

.link-icon {
    font-size: 20px;
    margin-right: 15px;
    min-width: 24px;
    text-align: center;
}

.link-text {
    font-size: 16px;
    letter-spacing: 0.5px;
}

.coming-soon {
    margin-left: auto;
    font-size: 12px;
    color: #999;
    background: #e9ecef;
    padding: 2px 8px;
    border-radius: 10px;
}

/* 页脚 */
.footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
    margin-top: auto;
}

.footer p {
    margin: 5px 0;
    font-size: 13px;
    color: #999;
}

.footer a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #2c3e50;
}

/* 动画 */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .name {
        font-size: 36px;
    }
    
    .tagline {
        font-size: 14px;
    }
    
    .intro {
        margin-bottom: 40px;
    }
    
    .nav-link {
        padding: 15px 20px;
    }
    
    .link-icon {
        font-size: 18px;
        margin-right: 12px;
    }
    
    .link-text {
        font-size: 15px;
    }
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
    body {
        background: #1a1a1a;
        color: #e0e0e0;
    }
    
    .name {
        color: #ffffff;
    }
    
    .tagline {
        color: #999;
    }
    
    .nav-link {
        background: #2c2c2c;
        border-color: #3c3c3c;
        color: #e0e0e0;
    }
    
    .nav-link:hover {
        background: #333333;
        border-color: #e0e0e0;
    }
    
    .nav-link::before {
        background: #e0e0e0;
    }
    
    .coming-soon {
        background: #3c3c3c;
        color: #999;
    }
    
    .footer {
        border-top-color: #3c3c3c;
    }
    
    .footer a:hover {
        color: #ffffff;
    }
}
