@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;700&display=swap');

/* --- Keyframes for animations --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    background-color: #121212;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
    overflow: hidden; /* Hide scrollbars that might appear during animation */
}

.container {
    max-width: 800px;
    padding: 2rem;
}

h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    /* --- Gradient Text --- */
    background: linear-gradient(45deg, #FF8A00, #E52E71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    /* --- Animation --- */
    animation: fadeIn 1s ease-out forwards;
}

p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #A0A0A0;
    /* --- Animation with delay --- */
    animation: fadeIn 1s ease-out 0.5s forwards;
    opacity: 0; /* Start hidden */
}

#countdown {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: #00BFFF; /* Deep Sky Blue for a modern tech feel */
    /* --- Animation with more delay --- */
    animation: fadeIn 1s ease-out 1s forwards;
    opacity: 0; /* Start hidden */
}