 body {
            font-family: 'Inter', sans-serif;
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.6;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .nav-link:hover {
            color: #6ee7b7;
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #6ee7b7;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: #6ee7b7;
            border-radius: 9999px;
        }
        .card {
            background-color: #1e293b;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            border: 1px solid #334155;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 20px rgba(0,0,0,0.3);
        }
        .skill-icon {
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
            transition: transform 0.3s;
        }
        .skill-item:hover .skill-icon {
            transform: scale(1.1);
        }
        .project-card:hover {
            background-color: #334155;
        }
