/* Tailwind CSS 配置 */
@layer utilities {
    .content-auto {
        content-visibility: auto;
    }
    .text-shadow {
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .bg-gradient-custom {
        background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    }
    .card-hover {
        transition: all 0.3s ease;
    }
    .card-hover:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.1), 0 10px 10px -5px rgba(59, 130, 246, 0.04);
    }
}

/* 基础样式 */
body {
    background-color: #f9fafb;
    font-family: 'Inter', system-ui, sans-serif;
    color: #1f2937;
    margin: 0;
}