/* main.css */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #fff;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1 {
    color: #222;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.bio {
    padding: 0;
    margin-bottom: 50px;
    text-align: center;
    font-size: 1.1rem;
    color: #444;
}

.bio p {
    margin: 0;
    line-height: 1.6;
}

.linktree {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links {
    background-color: #f7f7f7;
    color: #333;
    padding: 16px;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.links:hover {
    background-color: #eee;
}

.links p {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Simple responsive adjustments */
@media (max-width: 480px) {
    body {
        padding: 30px 15px;
    }
    
    h1 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .bio {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}