
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: #0a0a0a;
            color: #e0e0e0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            line-height: 1.6;
            padding: 20px;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(30, 30, 30, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(30, 30, 30, 0.1) 0%, transparent 40%);
        }
        
        .navigation {
            max-width: 80vw;
            width: 100%;
            display: flex;
            gap: 15px;
            justify-content: flex-start; 
        }
        
        .nav-btn {
            background-color: rgba(40, 40, 40, 0.8);
            color: #ccc;
            border: 1px solid #333;
            border-radius: 6px;
            padding: 10px 20px;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .nav-btn:hover {
            background-color: rgba(60, 60, 60, 0.8);
            color: #fff;
            border-color: #555;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .content {
            max-width: 80vw;
        }
        
        .header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .header::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #666, transparent);
        }
        
        .name {
            font-size: 2.8rem;
            font-weight: 300;
            margin-bottom: 10px;
            color: #fff;
            letter-spacing: -0.5px;
            position: relative;
            display: inline-block;
        }
        
        .name::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #444, transparent);
        }
        
        .title {
            font-size: 1.1rem;
            color: #999;
            margin-bottom: 5px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        
        .location {
            font-size: 0.95rem;
            color: #777;
            font-weight: 300;
        }
        
        .main-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .bio-section {
            padding: 30px;
            background-color: rgba(20, 20, 20, 0.6);
            border-radius: 12px;
            border-left: 3px solid #444;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .section-title {
            font-size: 1.2rem;
            color: #ddd;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #333;
        }
        
        .description {
            font-size: 1.15rem;
            color: #b0b0b0;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .highlight {
            color: #ddd;
            font-weight: 500;
        }
        
        .contact-section {
            padding: 30px;
            background-color: rgba(20, 20, 20, 0.6);
            border-radius: 12px;
            border-left: 3px solid #666;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(60, 60, 60, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #aaa;
        }
        
        .contact-details {
            flex: 1;
        }
        
        .contact-label {
            font-size: 0.9rem;
            color: #888;
            margin-bottom: 3px;
        }
        
        .contact-value {
            font-size: 1.1rem;
            color: #ccc;
        }
        
        .email-link {
            color: #aaa;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
        }
        
        .email-link:hover {
            color: #fff;
            border-bottom-color: #666;
        }
        
        .footer {
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #222;
            color: #666;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        
        @media (max-width: 768px) {
            .content {
                padding: 30px 0;
            }
            
            .name {
                font-size: 2.2rem;
            }
            
            .title {
                font-size: 1rem;
                letter-spacing: 2px;
            }
            
            .bio-section, .contact-section {
                padding: 25px;
            }
            
            .description {
                font-size: 1.05rem;
            }
        }
        