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

body {
    background-color: #0a0a0a;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

header {
    text-align: center;
    padding: 40px 0;
}

.name {
    font-size: 2.5em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.middle-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.news-section,
.bio-section {
    padding: 20px;
}

h2 {
    color: #ffffff;
    font-size: 1.5em;
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.news-list {
    list-style: none;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.news-list::-webkit-scrollbar {
    width: 8px;
}

.news-list::-webkit-scrollbar-track {
    background: transparent;
}

.news-list::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 4px;
}

.news-list:hover::-webkit-scrollbar-thumb {
    background: #444;
}

.news-list::-webkit-scrollbar-thumb:hover {
    background: #b19cd9;
}

.news-list li {
    margin-bottom: 20px;
    padding-left: 0;
}

.news-date {
    display: block;
    color: #999;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.news-description {
    color: #e0e0e0;
}

.bio-content {
    color: #d0d0d0;
    font-size: 1.05em;
}

.bio-content a {
    color: #b19cd9;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.bio-content a:hover {
    color: #d4c5f9;
    border-bottom-color: #d4c5f9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    padding: 30px 0;
}

.social-links a {
    color: #e0e0e0;
    font-size: 2em;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #b19cd9;
}

.publications-section {
    margin-top: 60px;
    padding: 20px;
}

.publications-list {
    list-style: none;
}

.publications-list li {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #141414;
    border-radius: 8px;
    border-left: 3px solid #333;
    transition: border-color 0.3s ease;
}

.publications-list li:hover {
    border-left-color: #b19cd9;
}

.pub-title {
    font-size: 1.15em;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.pub-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pub-title a:hover {
    color: #b19cd9;
}

.pub-authors {
    color: #999;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.pub-authors a {
    color: #b19cd9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pub-authors a:hover {
    color: #d4c5f9;
}

.pub-authors span {
    color: #999;
}

.pub-venue {
    color: #888;
    font-size: 0.9em;
    font-style: italic;
    margin-bottom: 10px;
}

.pub-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.pub-links a {
    color: #b19cd9;
    text-decoration: none;
    font-size: 1.3em;
    transition: all 0.3s ease;
}

.pub-links a:hover {
    color: #d4c5f9;
    transform: scale(1.15);
}

.pub-links a img {
    filter: invert(78%) sepia(15%) saturate(1200%) hue-rotate(210deg) brightness(90%) contrast(85%);
    transition: filter 0.3s ease;
    opacity: 0.9;
}

.pub-links a:hover img {
    filter: invert(85%) sepia(20%) saturate(1500%) hue-rotate(210deg) brightness(100%) contrast(90%);
    opacity: 1;
}

.news-description a {
    color: #b19cd9;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.news-description a:hover {
    color: #d4c5f9;
    border-bottom-color: #d4c5f9;
}


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

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .middle-section {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 30px 0;
    }
    
    .name {
        font-size: 2em;
    }
    
    header {
        padding: 30px 0;
    }
    
    .news-section,
    .bio-section {
        padding: 10px;
    }
    
    .news-list {
        max-height: 300px;
    }
    
    .social-links {
        gap: 20px;
        margin: 30px 0;
        padding: 20px 0;
    }
    
    .social-links a {
        font-size: 1.5em;
    }
    
    .publications-section {
        margin-top: 40px;
        padding: 10px;
    }
    
    .publications-list li {
        padding: 15px;
    }
    
    .pub-title {
        font-size: 1.05em;
    }
    
    .pub-links {
        gap: 15px;
    }
    
    .pub-links a {
        font-size: 1.2em;
    }
}

