@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    margin: 0;
    padding: 0;
    background: radial-gradient(circle at top, #171b29 0%, #0a0b10 80%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    color: #e4e4e4;
    text-align: center;
}

.container {
    animation: fadeIn 1.5s ease-out forwards;
}

h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.3rem;
    color: #8da4ff;
    margin-bottom: 0.5rem;
}

.sub {
    font-size: 0.95rem;
    opacity: 0.7;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
