* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.main-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #f8fafc;
    color: #1e293b;
}

.content-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.name {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #64748b;
    margin-bottom: 2rem;
    font-style: italic;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.bio {
    text-align: left;
}

.info-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    min-width: 70px;
}

.info-link {
    font-size: 0.9rem;
    color: #3b82f6;
    text-decoration: underline;
    transition: color 0.3s ease;
    font-weight: 500;
}

.info-link:hover {
    color: #1d4ed8;
}

.bio p {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    color: #475569;
}

.latest-posts {
    align-self: start;
}

.posts-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.posts-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.post-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.post-item:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.post-item a {
    color: #1e293b;
    text-decoration: none;
    display: block;
}

.post-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: #1e293b;
}

.post-date {
    font-size: 0.9rem;
    color: #64748b;
}

.loading {
    text-align: center;
    color: #64748b;
    font-style: italic;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .name {
        font-size: 2.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-links {
        margin-bottom: 1.5rem;
    }
    
    .bio {
        text-align: center;
    }
    
    .info-links {
        justify-content: center;
        align-items: center;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .info-label {
        min-width: 60px;
        font-size: 0.85rem;
    }
    
    .info-link {
        font-size: 0.85rem;
    }
    
    .bio p {
        font-size: 1rem;
    }
    
    .posts-title {
        font-size: 1.3rem;
    }
    
    .post-title {
        font-size: 1rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .name {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .info-links {
        margin-bottom: 1rem;
    }
    
    .info-label {
        min-width: 50px;
        font-size: 0.8rem;
    }
    
    .info-link {
        font-size: 0.8rem;
    }
    
    .bio p {
        font-size: 0.95rem;
    }
    
    .main-content {
        padding: 20px;
    }
    
    .content-grid {
        gap: 1rem;
    }
    
    .social-links {
        margin-bottom: 1rem;
        gap: 1rem;
    }
    
    .social-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .posts-title {
        font-size: 1.2rem;
    }
}