/* ================================
   ZEPHYR AI - Global Styles
   统一合并所有页面 CSS
   ================================ */

/* ---- 基础样式 ---- */
body {
    background-color: #050B17;
    color: #E2E8F0;
    font-family: 'Inter', 'PingFang SC', sans-serif;
}

/* ---- 通用组件 ---- */
.glass-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(34, 211, 238, 0.3), transparent);
    margin: 0 auto;
    max-width: 85%;
}

.transition-all {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- index.html 特有样式 ---- */
.neon-text {
    text-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
}

.bento-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 200, 255, 0.4);
    box-shadow: 0 10px 30px -10px rgba(0, 200, 255, 0.2);
}

.gradient-bg {
    background: radial-gradient(circle at top right, rgba(0, 200, 255, 0.1), transparent);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ---- about.html 特有样式 ---- */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #00C8FF, transparent);
}

.team-card:hover img {
    transform: scale(1.1);
}

.gradient-text {
    background: linear-gradient(135deg, #00C8FF, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---- tech.html 特有样式 ---- */
.article-card:hover {
    border-color: rgba(0, 200, 255, 0.5);
    transform: translateX(5px);
}

.category-tag:hover {
    background: rgba(0, 200, 255, 0.2);
    color: #00C8FF;
}

/* ---- article-detail.html 特有样式 ---- */
.prose p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #CBD5E1;
}

.prose h2 {
    color: #F8FAFC;
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.related-card:hover {
    border-color: rgba(0, 200, 255, 0.5);
    transform: translateY(-2px);
}
