body {
    font-family: 'Roboto Mono', monospace;
    background: #0f0c29;
    background: -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29);
    background: linear-gradient(to right, #24243e, #302b63, #0f0c29);
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    animation: fadeIn 2s ease-in-out;
}

.container {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

header h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    animation: slideInDown 1s ease-out;
}

.highlight {
    color: #00e5ff;
    text-shadow: 0 0 10px #00e5ff, 0 0 20px #00e5ff;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    height: 2.5rem; /* Reserve space to prevent layout shift */
}

#typing-effect {
    border-right: 2px solid #e0e0e0;
    white-space: nowrap;
    overflow: hidden;
    animation: blinkCursor .75s step-end infinite;
}

footer {
    font-size: 0.8rem;
    opacity: 0.7;
    animation: slideInUp 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

@keyframes blinkCursor {
    from, to { border-color: transparent }
    50% { border-color: #e0e0e0; }
} 