body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

#countdown {
    font-size: 4rem;
    font-weight: bold;
    opacity: 1;
    animation: none;
}

#circular-countdown {
    display: none;
    position: relative;
    width: 150px;
    height: 150px;
    text-align: center;
}

.circle {
    stroke: url(#gradient);
    stroke-width: 10;
    fill: none;
    animation: gradient-shift 2s infinite;
}

.circle-text {
    font-size: 2rem;
    font-weight: bold;
    fill: #ffffff;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes fade-out-up {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-50px);
    }
}

@keyframes gradient-shift {
    0% {
        stroke: url(#gradient);
    }
    50% {
        stroke: url(#gradient2);
    }
    100% {
        stroke: url(#gradient);
    }
}

#code-display {
    display: none;
    text-align: center;
}

#code-display h1 {
    margin: 0;
    font-size: 2rem;
}

#code-display .code {
    font-size: 5rem;
    font-weight: bold;
    background: linear-gradient(to right, #32e0c4, #89cff0);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift-text 2s infinite;
}

@keyframes gradient-shift-text {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
