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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #4A00E0, #8E2DE2);
    color: white;
    text-align: center;
}

.container {
    animation: fadeIn 1.5s ease-in-out;
}

h1 {
    font-size: 3rem;
    letter-spacing: 4px;
}

.subtitle {
    margin-top: 10px;
    font-size: 1.5rem;
    opacity: 0.8;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}