/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Aspekta:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;500;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Aspekta', sans-serif;
    background-color: #0C0D01;
    color: #ffffff;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* Main layout */
.container {
    min-height: 100vh;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
    box-sizing: border-box;
}

/* Hero section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid #0224FF;
    background-color: #0C0D01;
    margin-bottom: 2rem;
    object-fit: contain;
    object-position: 30% 30%;
    transition: filter 0.3s ease;
}

.profile-photo:hover {
    filter: invert(1);
}

/* Facts ticker */
.facts-ticker {
    font-family: 'Chakra Petch', monospace;
    font-size: 1.5rem;
    font-weight: 400;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    letter-spacing: 0.1rem;
}

.fact-text {
    white-space: nowrap;
    font-family: 'Chakra Petch', monospace;
}

/* Footer */
.footer {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 0;
    padding: 1rem 0;
}

/* ASCII Links */
.ascii-link {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Chakra Petch', monospace;
    font-size: 0.8rem;
    line-height: 1.2;
    display: block;
    text-align: center;
    transition: all 0.2s ease;
    padding: 0.5rem;
}

.ascii-link:hover {
    color: #cccccc;
    transform: scale(1.05);
}

.ascii-art {
    margin-bottom: 0.5rem;
    white-space: pre;
    font-family: 'Courier New', Courier, monospace;
    font-size: 2rem;
    line-height: 1.0;
    letter-spacing: 0;
    font-weight: 400;
    color: #91FFC0;
}

.link-label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .profile-photo {
        width: 150px;
        height: 150px;
        margin-bottom: 2rem;
    }
    
    .facts-ticker {
        font-size: 1.2rem;
        min-width: 250px;
    }
    
    .footer {
        flex-wrap: nowrap;
        gap: 0.5rem;
        overflow-x: auto;
    }
    
    .ascii-link {
        font-size: 0.7rem;
        flex-shrink: 0;
        min-width: 60px;
    }
    
    .ascii-art {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .facts-ticker {
        font-size: 1rem;
        min-width: 200px;
    }
    
    .footer {
        gap: 0.3rem;
    }
    
    .ascii-link {
        font-size: 0.6rem;
        min-width: 50px;
    }
    
    .ascii-art {
        font-size: 2rem;
    }
} 