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

:root {
    --bg-color: #fafafa;
    --text-color: #1a1a1a;
    --accent-color: #ff6b35;
    --muted-color: #666;
    --font-mono: 'IBM Plex Mono', 'SF Mono', 'Consolas', 'Monaco', monospace;
}

body {
    font-family: var(--font-mono);
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.6;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* Typewriter effect - only for name */
.typewriter-line {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.typewriter-line::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
    animation: blink 1s step-end infinite;
}

.typewriter-line.typing-complete::after {
    display: none;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Fade in animations with staggered delays */
.fade-in {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.title {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 400;
    animation-delay: 2.5s;
}

.background-line {
    font-size: 0.8rem;
    color: #999;
    margin: 0.75rem 0;
    animation-delay: 2.8s;
}

.experience {
    font-size: 0.95rem;
    color: var(--muted-color);
    margin-bottom: 1rem;
    animation-delay: 3.1s;
}

.highlight {
    color: var(--accent-color);
    font-weight: 500;
}

.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.9rem;
    animation-delay: 3.4s;
}

.contact-link {
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-link:hover {
    border-bottom-color: var(--accent-color);
}

.separator {
    color: var(--accent-color);
}

/* Name styling */
.name {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

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

/* Mobile responsive */
@media (max-width: 480px) {
    .name {
        font-size: 1.8rem;
    }
    
    .background-line,
    .contact {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .separator {
        display: none;
    }
}