:root {
            --primary-color: #a855f7;
            --secondary-color: #ec4899;
            --dark-color: #1f2937;
            --light-color: #f9fafb;
            --accent-color: #10b981;
        }
        body {
            font-family: 'Noto Sans SC', 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: #fefefe;
            color: #333;
            line-height: 1.8;
        }
        .navbar-brand {
            font-weight: 800;
            color: var(--primary-color);
            font-size: 1.8rem;
        }
        .hero-section {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
            padding: 6rem 0;
            margin-bottom: 3rem;
            border-bottom: 1px solid #eee;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
        }
        .card-hover {
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(168, 85, 247, 0.15);
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            font-weight: 700;
            color: var(--dark-color);
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        .btn-gradient {
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border: none;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-gradient:hover {
            transform: scale(1.05);
            color: white;
            box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            margin: 0.5rem;
            background-color: #f3f4f6;
            border-radius: 30px;
            color: #4b5563;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        .badge-custom {
            background: linear-gradient(90deg, var(--accent-color), #3b82f6);
            color: white;
            padding: 0.4em 1em;
        }
        .footer {
            background-color: var(--dark-color);
            color: #d1d5db;
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #a5b4fc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
        }
        .work-card img {
            height: 300px;
            object-fit: cover;
            width: 100%;
        }
        .avatar-lg {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .timeline {
            position: relative;
            padding-left: 2rem;
            border-left: 3px solid var(--primary-color);
            margin-left: 1rem;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2.5rem;
            top: 0;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--primary-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .avatar-lg {
                width: 150px;
                height: 150px;
            }
        }
