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

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    overflow: hidden;
    height: 100vh;
    background-color: #fff;
    color: #000;
    transition: background-color 0.5s ease, color 0.5s ease;
}

body.inverted {
    background-color: #000;
    color: #fff;
}

.container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 2;
}

/* Typography */
.typewriter {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 900;
}

h1.typewriter {
    font-size: 3rem;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid;
    width: 0;
    animation: typing 2s steps(12) forwards,
               blink .5s step-end infinite alternate;
}

footer {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.contact, .copyright, .banned-link-footer, .footer-link, .divider {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 900;
    font-size: 0.8rem;
}

.banned-link-footer, .footer-link {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.banned-link-footer:hover, .footer-link:hover {
    opacity: 0.6;
}

.divider {
    opacity: 0.5;
}

/* Animations */
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink {
    50% { border-color: transparent }
}

/* Responsive design */
@media (max-width: 768px) {
    h1.typewriter {
        font-size: 2rem;
    }
    
    footer {
        flex-direction: row; /* Keep horizontal on mobile */
        flex-wrap: wrap; /* Allow wrapping if needed */
        justify-content: center; /* Center items */
        gap: 0.7rem;
        padding: 0 1rem;
        text-align: center;
        width: 100%;
    }
    
    .contact, .copyright, .banned-link-footer, .footer-link {
        font-size: 0.7rem;
    }
} 