body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #0f172a, #1e293b);
    color: #f8fafc;
    font-family: Arial, sans-serif;
    text-align: center;
}

.container {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

h3 {
    font-weight: normal;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

#timer {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }
    50% {
        transform: scale(1.06);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.85;
    }
}

.background {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 0;
}



.flower {
    position: absolute;
    width: 80px;
    opacity: 0;
    animation: bloom 6s infinite ease-in-out;
}

@keyframes bloom {
    0% {
        transform: scale(0.2) rotate(0deg);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        transform: scale(0.2) rotate(360deg);
        opacity: 0;
    }
}