main h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation-name: none;
}

.highlight {
    color: #9b5de5;
    animation: glowText 3s ease-in-out infinite alternate;
}

.bio-intro {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInText 2s ease forwards;
    line-height: 1.5;
}

.langs {
    background: #111;
    border: 2px solid #222;
    border-radius: 12px;
    padding: 20px 30px;
    max-width: 400px;
    margin: 0 auto 50px auto;
    animation: fadeInUp 1.2s ease forwards;
}

.langs h3 {
    margin-bottom: 15px;
    color: #9b5de5;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.langs ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 0;
}

.langs ul li {
    background: #333;
    padding: 10px 20px;
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    cursor: default;
    user-select: none;
    transition: background 0.3s ease;
}

.langs ul li:hover {
    background: #9b5de5;
    color: #fff;
    box-shadow: 0 0 8px #9b5de5;
}

.links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.links a {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 999px;
    background: #333;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    animation: fadeInUp 1.2s ease forwards;
    user-select: none;
}

.links a:hover {
    background: #5f3dc4;
    transform: translateY(-3px);
    box-shadow: 0 0 10px #9b5de5;
}

.status {
    text-align: center;
    color: #bbb;
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 40px;
    animation: fadeInText 2s ease forwards;
}

header h1 a {
    animation: float 3s ease-in-out infinite, glowText 3s ease-in-out infinite alternate;
}