/* style.css - 仁络科技现代化科技感核心样式表（100%本地化安全版） */
@import url('tailwind.min.css');
@import url('animate.min.css');

/* 自定义科技感流光渐变动画 */
@keyframes textShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-shimmer {
    background: linear-gradient(90deg, #3b82f6, #ec4899, #3b82f6);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: textShimmer 4s linear infinite;
}

/* 现代卡片悬浮悬停粒子感 */
.tech-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.tech-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.1), 0 10px 10px -5px rgba(59, 130, 246, 0.04);
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }