* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #4f46e5, #9333ea);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    flex-direction: column;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.countdown {
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}