/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Header Section */
.header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.profile-info h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.bio {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 25px;
}

/* Links Section */
.links-section {
    margin-bottom: 20px;
}

.links-section p {
    margin-bottom: 8px;
    color: #666;
    font-size: 0.95rem;
}

.links-section a {
    color: #0066cc;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.links-section a:hover {
    border-bottom-color: #0066cc;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #666;
    transition: color 0.2s;
    position: relative;
}

.social-icons a:hover {
    color: #111;
}

.social-icons a::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.social-icons a:hover::after {
    opacity: 1;
}

.social-icons svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Content Section */
.content-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
}

.content-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
}

.content-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #222;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #444;
}

.content-section ul,
.content-section ol {
    margin-bottom: 15px;
    margin-left: 25px;
    color: #444;
}

.content-section li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.content-section a {
    color: #0066cc;
    text-decoration: none;
    border-bottom: 1px solid #0066cc;
}

.content-section a:hover {
    border-bottom-width: 2px;
}

.content-section blockquote {
    border-left: 3px solid #ddd;
    padding-left: 20px;
    margin: 20px 0;
    color: #666;
    font-style: italic;
}

.content-section code {
    background-color: #f5f5f5;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.content-section pre {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    margin-bottom: 15px;
}

.content-section pre code {
    background-color: transparent;
    padding: 0;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 40px 20px;
    }
    
    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .profile-info h1 {
        font-size: 1.75rem;
    }
    
    .bio {
        font-size: 1rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .content-section {
        margin-top: 40px;
        padding-top: 30px;
    }
}