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

:root {
    --bg-color: #fafafa;
    --text-color: #323437;
    --text-secondary: #646669;
    --accent-color: #d4a373;
    --link-color: #a67c52;
    --border-color: #e4e4e4;
    --hover-bg: #f0f0f0;
}

body {
    font-family: 'JetBrains Mono', 'IBM Plex Mono', 'SF Mono', 'Monaco', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 900px;
    width: 100%;
    padding: 60px 40px;
}

header {
    margin-bottom: 60px;
    text-align: center;
}

.name {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: var(--text-color);
}

.links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative;
}

.links a:hover {
    color: var(--text-color);
    background-color: var(--hover-bg);
}

.links a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 16px;
    right: 16px;
    height: 1px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.links a:hover::after {
    transform: scaleX(1);
}

.about {
    margin-bottom: 60px;
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.about p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.8;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.section-group h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
    letter-spacing: -0.2px;
}

.publications {
    counter-reset: pub-counter;
    list-style: none;
    padding-left: 0;
}

.publications li {
    counter-increment: pub-counter;
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.publications li::before {
    content: counter(pub-counter) ".";
    position: absolute;
    left: 0;
    color: var(--text-secondary);
    font-size: 11px;
    opacity: 0.6;
}

.publications strong {
    color: var(--text-color);
    font-weight: 500;
}

.publications em {
    font-style: italic;
    color: var(--text-color);
}

.publications a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.publications a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.publications .note {
    display: inline-block;
    margin-left: 4px;
    font-size: 11px;
    color: var(--accent-color);
    opacity: 0.8;
}

.footnote {
    margin-top: 15px;
    font-size: 11px;
    color: var(--text-secondary);
    opacity: 0.7;
}

.talks {
    list-style: none;
    padding-left: 0;
}

.talks li {
    margin-bottom: 14px;
    font-size: 12px;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.talks li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    opacity: 0.6;
}

.talks strong {
    color: var(--text-color);
    font-weight: 500;
}

.talks a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.talks a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }
    
    .name {
        font-size: 28px;
    }
    
    .links {
        gap: 15px;
    }
    
    .links a {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .publications li {
        padding-left: 25px;
    }
    
    .about p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 30px 15px;
    }
    
    .name {
        font-size: 24px;
    }
    
    header {
        margin-bottom: 40px;
    }
    
    .about {
        margin-bottom: 40px;
    }
}