/* Xiaolan Introduction Styles - jxaolanshi.com 2025 */

.xiaolan-introduction-layout {
    --xiaolan-intro-accent: #4f46e5;
    --xiaolan-intro-highlight: #06b6d4;
}

.xiaolan-intro-overview {
    backdrop-filter: blur(18px);
    transition: all 0.6s ease;
}

.xiaolan-intro-overview:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.35);
}

.xiaolan-stat-card {
    transition: all 0.5s ease;
}

.xiaolan-stat-card:hover {
    transform: translateY(-8px) scale(1.1);
}

.xiaolan-timeline {
    position: relative;
    padding: 3rem 0;
}

.xiaolan-timeline-content {
    transition: all 0.5s ease;
}

.xiaolan-timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
}

.xiaolan-location-card {
    transition: all 0.5s ease;
}

.xiaolan-location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
}

@keyframes xiaolan-intro-fade-in {
    0% { opacity: 0; transform: translateY(50px) scale(0.85); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.xiaolan-stat-card {
    animation: xiaolan-intro-fade-in 1s ease-out forwards;
}

.xiaolan-stat-card:nth-child(1) { animation-delay: 0.3s; }
.xiaolan-stat-card:nth-child(2) { animation-delay: 0.5s; }
.xiaolan-stat-card:nth-child(3) { animation-delay: 0.7s; }
.xiaolan-stat-card:nth-child(4) { animation-delay: 0.9s; }