<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Minimal and Professional CSS Design */
:root {
    --text-color: #2c3e50;
    --heading-color: #2c3e50;
    --link-color: #3498db;
    --background: #ffffff;
    --secondary-bg: #f8f9fa;
    --max-width: 800px;
    --font-mono: ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono",
    "Roboto Mono", "Oxygen Mono", "Ubuntu Monospace", "Source Code Pro",
    "Fira Mono", "Droid Sans Mono", "Courier New", monospace;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem;
    background: var(--background);
}

h1, h2, h3, h4 {
    color: var(--heading-color);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.5rem;
}

p {
    margin: 1rem 0;
}

a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.header {
    margin: 3rem 0;
    text-align: center;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
}

.project {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: 1.25rem 0;
    margin: 1rem 0;
    border-bottom: 1px solid #eee;
    transition: transform 0.2s ease;
    background: transparent;
}

.project:hover {
    transform: translateY(-2px);
}

.project img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.project-content h3 {
    font-size: 1.1rem;
    margin: 0;
}

.project-content p {
    font-size: 0.95rem;
    margin: 0;
    color: #666;
    line-height: 1.5;
}

.project-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.project-tech span {
    font-size: 0.8rem;
    padding: 0.15rem 0.5rem;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: transparent;
}

@media (max-width: 600px) {
    .project {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .project img {
        width: 80px;
        height: 100px;
    }
}

.project h3 {
    margin-top: 0;
}

.blog-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.blog-list li {
    margin: 0.5rem 0;
    display: flex;
    gap: 0.75rem;
    align-items: baseline;
}

.blog-date {
    color: #666;
    font-family: var(--font-mono);
    white-space: nowrap;
    font-size: 0.9rem;
}

.contact-form {
    max-width: 500px;
    margin: 2rem auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin: 0.5rem 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.contact-form button {
    background: var(--link-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.contact-form button:hover {
    opacity: 0.9;
}

footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    text-align: center;
    color: #666;
}

/* Dark mode styles */
.dark-mode {
    --text-color: #e1e1e1;
    --heading-color: #ffffff;
    --link-color: #61dafb;
    --background: #1a1a1a;
    --secondary-bg: #2d2d2d;
}

/* Dark mode toggle button */
.theme-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem;
    background: var(--secondary-bg);
    border: none;
    border-radius: 50%;
    color: var(--text-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.theme-toggle:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .project {
        margin: 1rem 0;
    }

    .social-links {
        flex-wrap: wrap;
    }
}

/* Animations */
.header, .project, section {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#experience h3 {
    margin-top: 0.5rem;
}

#experience h3 {
    margin: 0.5rem 0 0.25rem;
    font-size: 1.2rem;
}

#experience h4 {
    margin: 0.25rem 0;
    font-size: 1rem;
    color: #666;
}

#experience p {
    margin: 0.5rem 0;
}

#experience-timeline &gt; div {
    position: relative;
    margin-bottom: 2rem;
}

#experience-timeline &gt; div {
    margin-bottom: 1.5rem;
}

#experience-timeline .date-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

[data-date] {
    margin-top: 0.5rem;
}

#experience-timeline [data-date] {
    position: relative;
    padding-top: 1.5rem;
}

#experience-timeline [data-date]::before {
    content: attr(data-date);
    position: absolute;
    top: 0;
    left: 0;
    color: #666;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 500;
}

#experience-timeline .date-line h3 {
    margin: 0;
}

#experience-timeline .date {
    color: #666;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: normal;
}
</pre></body></html>