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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #6E42A0, #16213e);
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

main {
    max-width: 600px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Subtle fade-in animation */
main {
    animation: fadeIn 1.8s ease-out;
}

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

/* Responsive */
@media (max-width: 600px) {
    h1 { 
        font-size: 2.8rem; 
    }
    p { 
        font-size: 1.15rem; 
    }
}