body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0f2c, #16204b);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    text-align: center;
}

h1 {
    font-size: 50px;
    font-weight: 600;
    background: linear-gradient(90deg,#4db8ff,#d66bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    0% { text-shadow: 0 0 10px #4db8ff; }
    100% { text-shadow: 0 0 20px #d66bff; }
}

p {
    opacity: 0.8;
    font-size: 18px;
    margin-top: 10px;
}

.container {
    animation: fadeIn 2s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.timer-box {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.time {
    background: rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    min-width: 60px;
}

.time h2 {
    margin: 0;
    font-size: 28px;
    color: #4db8ff;
}

.time span {
    font-size: 14px;
    opacity: 0.9;
}

footer {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    color: #ccc;
    font-size: 14px;
}

/* Mobile responsiveness */
@media(max-width: 480px) {
    h1 { font-size: 36px; }
    .time h2 { font-size: 22px; }
    .timer-box { gap: 10px; }
}
