@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #0a0a1a;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(76, 0, 255, 0.1), transparent 70%);
    animation: pulse 5s infinite;
}

.container {
    text-align: center;
    z-index: 1;
    padding: 20px;
    border-radius: 15px;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    width: 90%;
}

header .logo h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin: 0;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #00bfff, 0 0 40px #00bfff, 0 0 50px #00bfff, 0 0 60px #00bfff, 0 0 70px #00bfff;
}

.content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #00bfff;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.time {
    background: rgba(0, 191, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #00bfff;
    width: 100px;
}

.time span {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    display: block;
}

.time small {
    font-size: 1rem;
    text-transform: uppercase;
}

.subscription-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.subscription-form input {
    padding: 15px;
    border: 1px solid #00bfff;
    border-radius: 5px;
    background: transparent;
    color: #ffffff;
    font-size: 1rem;
    width: 300px;
}

.subscription-form input::placeholder {
    color: #ccc;
}

.subscription-form button {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    background-color: #00bfff;
    color: #0a0a1a;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    font-weight: bold;
}

.subscription-form button:hover {
    background-color: #ffffff;
    box-shadow: 0 0 15px #00bfff;
}

footer {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #aaa;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.1;
    }
}

/* Background Animation */
body {
    background: #000;
}

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

.dot {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: move linear infinite;
}

@keyframes move {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100vh);
    }
}
