@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        body { 
            font-family: 'Inter', sans-serif; 
            scroll-behavior: smooth;
        }
        .gradient-bg {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #059669 100%);
        }
        .section-title {
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: #10b981;
            border-radius: 2px;
        }
        .skill-card {
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        .skill-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
            border-color: #10b981;
        }
        .project-card {
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        .project-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        .contact-btn {
            transition: all 0.3s ease;
        }
        .contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
        }
        .hero-animation {
            animation: fadeInUp 1s ease-out;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .typing-animation {
            border-right: 2px solid #10b981;
            animation: blink 1s infinite;
        }
        @keyframes blink {
            0%, 50% { border-color: #10b981; }
            51%, 100% { border-color: transparent; }
        }