@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --font: 'Roboto Mono', monospace;
    --background: white;
    --color: #232333;
}

body{
    background-color: var(--background);
    color: var(--color);
    font-family: var(--font);
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    display: flex;
    min-height: 100vh;
    min-width: 100vw;
    flex-direction: column;
}

.container {
    flex: 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.content{
    display: flex;
    flex-direction: column;
    flex: 1 auto;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.subtitle{
    max-width: 450px;
    margin: 5px;
    align-items: center;
    justify-content: center;

}

footer{
    text-align: center;
    font-size: 0.75rem;
    font-weight: 400;
    padding-bottom: 20px;
}

#userPhoto{
    width: 160px;
    height: 160px;
    display: block;
    margin: 35px auto 20px;
    border-radius: 50%;
    border: solid var(--color) 2px;
}

#userName{
    width: 100%;
    text-align: center;
    text-decoration: none;
    line-height: 1.25;
    display: block;
    color: var(--color);
}

#links{
    max-width: 90%;
    width: auto;
    display: block;
    margin: 27px auto;
}

.link{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
    padding: 18px 24px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    border: dashed var(--color) 2px;
    text-align: center;
    text-decoration: none;  
    color: var(--color);  
    word-wrap: break-word;
    transition: all 0.2s ease;
}

.link:hover {
    transform: translateY(-2px);
    background-color: rgba(35, 35, 51, 0.05);
}

.link i {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Bio Page Styles */
.bio-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0px 20px;
}

.bio-header {
    text-align: center;
    margin-bottom: 40px;
}

.bio-header img {
    width: 160px;
    height: 160px;
    display: block;
    margin: 35px auto 20px;
}

.bio-header h1 {
    color: var(--color);
}

.bio-header .subtitle {
    font-size: 1rem;
    color: var(--color);
    opacity: 1;
    margin-bottom: 20px;
}

.bio-content {
    line-height: 1.8;
    font-size: 1rem;
}

.bio-content p {
    margin-bottom: 20px;
    text-align: left;
}

.bio-content strong {
    font-weight: 700;
}

.highlights {
    background-color: rgba(35, 35, 51, 0.05);
    border-left: 3px solid var(--color);
    padding: 20px;
    margin: 30px 0;
}

.highlights h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.highlights ul {
    list-style: none;
    padding: 0;
}

.highlights li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.highlights li:before {
    content: "▸";
    position: absolute;
    left: 0;
    font-weight: 700;
}

.back-link {
    display: inline-block;
    margin: 30px 0;
    padding: 12px 24px;
    border: dashed var(--color) 2px;
    border-radius: 5px;
    text-decoration: none;
    color: var(--color);
    font-weight: 500;
    transition: all 0.2s ease;
}

.back-link:hover {
    transform: translateY(-2px);
    background-color: rgba(35, 35, 51, 0.05);
}

@media (max-width: 768px) {
    .bio-header img {
        width: 160px;
        height: 160px;
    }
    
    .bio-content {
        font-size: 1rem;
    }
}

@media (prefers-color-scheme: dark) {
    :root {        
        --background: #202124;
        --color: white;
    }
    
    .link:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    .highlights {
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    .back-link:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }
}
