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

/* Global link reset - aggressive for mobile */
a, a:link, a:visited, a:hover, a:active {
    color: #333 !important;
    text-decoration: underline !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

a:hover {
    color: #666 !important;
}

/* Remove all link styling defaults */
a:any-link {
    color: #333 !important;
}

body {
    font-family: 'Courier New', monospace;
    background: #fff;
    color: #333;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

.container {
    text-align: center;
    max-width: 400px;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.tagline {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.links a {
    font-size: 1rem;
}

/* Section styles */
.section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 0.8rem;
    color: #333;
}

.section-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.section-links a {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Blog styles */
.blog-container {
    max-width: 600px;
    text-align: left;
}

.blog-post-container {
    max-width: 600px;
    text-align: left;
}

.blog-nav {
    margin-bottom: 2rem;
    text-align: center;
}

.blog-nav a {
    color: #333;
    text-decoration: underline;
    font-size: 1rem;
}

.blog-nav a:hover {
    color: #666;
}

.blog-posts {
    margin-top: 2rem;
}

.blog-post-preview {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.blog-post-preview:last-child {
    border-bottom: none;
}

.blog-post-preview h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.blog-post-preview h2 a {
    color: #333;
    text-decoration: none;
}

.blog-post-preview h2 a:hover {
    text-decoration: underline;
}

.blog-post-preview time {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.blog-post-preview p {
    color: #666;
    line-height: 1.5;
}

.blog-post {
    margin-top: 2rem;
}

.blog-post h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.blog-post time {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 2rem;
    text-align: center;
}

.blog-post p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    body {
        padding: 1.5rem 1rem;
    }
    
    .container {
        max-width: 100%;
    }
    
    .profile-image {
        width: 90px;
        height: 90px;
        margin-bottom: 1rem;
    }
    
    h1 {
        font-size: 2.2rem;
        margin-bottom: 0.6rem;
    }
    
    .tagline {
        margin-bottom: 2rem;
        font-size: 0.95rem;
    }
    
    .section {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.15rem;
        margin-bottom: 0.8rem;
    }
    
    .section-links {
        gap: 0.6rem;
    }
    
    .section-links a {
        font-size: 0.95rem;
    }
    
    .links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-container,
    .blog-post-container {
        max-width: 100%;
        padding: 1rem;
    }
    
    .blog-post h1 {
        font-size: 1.5rem;
    }
}