body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: #0d0d0d;
    color: #00ffea;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00ffea, #ff00ff, #00ffea);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    z-index: -1;
}

@keyframes gradientBG {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

.container {
    text-align: center;
    z-index: 1;
}

.logo {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {text-shadow: 0 0 10px #00ffea, 0 0 20px #00ffea, 0 0 30px #ff00ff;}
    to {text-shadow: 0 0 20px #00ffea, 0 0 40px #ff00ff, 0 0 60px #ff00ff;}
}

.message {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

input[type="email"] {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    outline: none;
    margin-right: 10px;
}

button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background: #ff00ff;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: #00ffea;
    color: #000;
}

.timer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.2rem;
}

.timer div {
    background: rgba(0,0,0,0.4);
    padding: 15px 20px;
    border-radius: 10px;
}

body:hover .logo {
    transform: scale(1.05);
}
