:root {
    --primary: #2d3436;
    --secondary: #636e72;
    --accent: #0984e3;
}

body {
    font-family: 'Inter', sans-serif;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    line-height: 1.5;
    color: var(--primary);
    background: #f8f9fa;
}

h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-weight: 300;
    font-size: 1.2rem;
    color: var(--secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    border: 4px solid white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}

.links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(9,132,227,0.3);
}

@media (max-width: 600px) {
    body {
        padding: 2rem 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    img {
        width: 150px;
        height: 150px;
    }
    
    .links {
        flex-direction: column;
        gap: 1rem;
    }
}