* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #282c34;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    animation: fadeIn 2s ease-in-out;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: slideIn 1s ease-out forwards;
}

p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    animation: fadeIn 3s ease-in-out;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    animation: pulse 2s infinite;
}

.countdown div {
    font-size: 1.5rem;
}

.countdown span {
    font-size: 3rem;
    font-weight: bold;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-100px); }
    to { transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
