:root {
    --bg-color: #f4f4f9;
    --text-color: #333;
    --btn-bg: #fff;
    --btn-hover: #007bff;
    --btn-text: #333;
    --btn-text-hover: #fff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    max-width: 400px;
    width: 90%;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

h1 {
    margin: 0 0 2rem 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.social-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.8rem;
    transition: all 0.2s ease-in-out;
}

.social-icon:hover {
    color: var(--btn-hover);
    transform: translateY(-3px);
}