        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            color: #000000;
            overflow-x: hidden;
        }
        
        /* Artistic Hero Background */
        .hero-container {
            position: relative;
            background: radial-gradient(circle at 80% 20%, rgba(229, 57, 53, 0.05) 0%, transparent 40%),
                        radial-gradient(circle at 10% 80%, rgba(30, 136, 229, 0.05) 0%, transparent 40%);
            overflow: hidden;
        }

        /* Dynamic Animated Blobs */
        .blob {
            position: absolute;
            width: 500px;
            height: 500px;
            background: linear-gradient(135deg, rgba(229, 57, 53, 0.1), rgba(30, 136, 229, 0.1));
            filter: blur(80px);
            border-radius: 50%;
            z-index: 0;
            animation: move 20s infinite alternate;
        }

        @keyframes move {
            from { transform: translate(-10%, -10%) rotate(0deg); }
            to { transform: translate(20%, 20%) rotate(360deg); }
        }

        /* Large Hero Title styling */
        .hero-title {
            font-size: clamp(3rem, 12vw, 9rem);
            line-height: 0.85;
            letter-spacing: -0.06em;
            font-weight: 800;
            position: relative;
            z-index: 10;
        }

        /* Decorative Vertical Line */
        .decor-line {
            width: 1px;
            height: 100px;
            background: linear-gradient(to bottom, #000, transparent);
            margin-bottom: 2.5rem;
        }

        .sub-heading {
            font-size: 0.85rem;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: #000;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        /* Immersive Project Cards */
        .work-card {
            transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
            cursor: pointer;
        }
        
        .work-image-wrapper {
            overflow: hidden;
            background-color: #f5f5f7;
            transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .work-card:hover .work-image-wrapper {
            box-shadow: 0 40px 80px rgba(0,0,0,0.08);
        }

        .work-image {
            transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }

        /* Minimal Navigation Links */
        .nav-link {
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: #000;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }

        /* Glassmorphism Header */
        .glass-nav {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        }

        /* Refined Stats Badge */
        .stats-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 8px 16px;
            border-radius: 100px;
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: 700;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background: #4ade80;
            border-radius: 50%;
            box-shadow: 0 0 10px #4ade80;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.5); opacity: 0.5; }
            100% { transform: scale(1); opacity: 1; }
        }

        html {
            scroll-behavior: smooth;
        }

        @media (max-width: 768px) {
            .hero-title { font-size: 4.2rem; }
        }