/* Modern Futuristic Coming Soon Page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(-45deg, #000428, #004e92, #000428, #004e92);
    background-size: 400% 400%;
    color: #fff;
    overflow: hidden;
    height: 100vh;
    position: relative;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animated Background */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(10, 10, 21, 0.8) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 10, 21, 0.8) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: grid-move 20s linear infinite;
    opacity: 0.3;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

/* Gradient Background Animation */
body {
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: rgba(100, 200, 255, 0.5);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Main Container */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 10;
}

/* Logo */
.logo {
    margin-bottom: 30px;
    animation: pulse 3s infinite;
}

.logo h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00c6ff, #0072ff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(0, 198, 255, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 198, 255, 0.8), 0 0 30px rgba(0, 114, 255, 0.6);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Content */
.content {
    max-width: 800px;
    width: 100%;
}

.service {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #00c6ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-out 0.5s both;
}

.status {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #ff00cc, #3333ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeIn 1s ease-out 1s both;
    text-shadow: 0 0 15px rgba(255, 0, 204, 0.3);
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(10, 10, 21, 0.7);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 10px;
    padding: 15px;
    min-width: 100px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.2);
    animation: fadeIn 1s ease-out 1.5s both;
}

.countdown-item .number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00c6ff;
    display: block;
    margin-bottom: 5px;
}

.countdown-item .label {
    font-size: 0.9rem;
    color: #a0a0ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Subscribe Form */
.subscribe {
    animation: fadeIn 1s ease-out 2s both;
}

.subscribe p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #a0a0ff;
}

#emailForm {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

#email {
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    background: rgba(10, 10, 21, 0.7);
    color: white;
    font-size: 1rem;
    width: 250px;
    border: 1px solid rgba(0, 198, 255, 0.3);
    backdrop-filter: blur(10px);
    outline: none;
    transition: all 0.3s ease;
}

#email:focus {
    border-color: #00c6ff;
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.5);
}

button {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 114, 255, 0.4);
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 114, 255, 0.6);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 3rem;
    }
    
    .service {
        font-size: 1.4rem;
    }
    
    .status {
        font-size: 2.5rem;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 10px;
    }
    
    .countdown-item .number {
        font-size: 1.8rem;
    }
    
    #emailForm {
        flex-direction: column;
        align-items: center;
    }
    
    #email {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .status {
        font-size: 2rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 8px;
    }
    
    .countdown-item .number {
        font-size: 1.5rem;
    }
    
    .countdown-item .label {
        font-size: 0.7rem;
    }
}