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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', monospace;
    background-color: #000;
    color: #00ffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Background grid effect */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.construction-box {
    background: rgba(0, 20, 30, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 40px 60px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}

/* Animated red rectangle */
.status-indicator {
    width: 120px;
    height: 4px;
    background: #77c8e0;
    margin: 0 auto 30px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.status-indicator::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #ff6666, transparent);
    animation: scan 2s infinite linear;
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

h1 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ffff80;
    animation: flicker 3s infinite alternate;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.info {
    font-size: 0.9rem;
    color: rgba(0, 255, 255, 0.7);
    line-height: 1.6;
}

.countdown {
    font-size: 1.2rem;
    color: #00ffff;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 600px) {
    .construction-box {
        padding: 30px 40px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
}