* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    position: relative;
    text-align: center;
}

.circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #ff6f61, #ff9a8b);
    border-radius: 50%;
    animation: pulse 2s infinite ease-in-out;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

.content {
    z-index: 1;
}

h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
}

p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    animation: fadeIn 3s ease-in-out;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.time {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    animation: fadeIn 4s ease-in-out;
}

.time span:first-child {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.time span:last-child {
    font-size: 1rem;
    color: #aaa;
    mix-blend-mode: color-dodge;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}