/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', monospace;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.3) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: particleFloat 15s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Header */
.header {
    padding: 20px;
    text-align: center;
    z-index: 10;
}

.logo .neon-text {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 5px;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    z-index: 10;
}

/* Construction Icon */
.construction-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 40px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.helmet {
    width: 80px;
    height: 60px;
    background: linear-gradient(45deg, #ff0080, #00ffff);
    border-radius: 40px 40px 20px 20px;
    position: relative;
    margin: 0 auto 20px;
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.8);
}

.helmet::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff;
}

.tools {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.hammer, .wrench {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #ffff00, #ff8000);
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.6);
    animation: toolRotate 3s ease-in-out infinite;
}

@keyframes toolRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

/* Typography */
.main-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.neon-text {
    text-shadow: 
        0 0 5px currentColor,
        0 0 10px currentColor,
        0 0 20px currentColor,
        0 0 40px currentColor,
        0 0 80px currentColor;
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from { text-shadow: 
        0 0 5px currentColor,
        0 0 10px currentColor,
        0 0 20px currentColor,
        0 0 40px currentColor,
        0 0 80px currentColor; }
    to { text-shadow: 
        0 0 2px currentColor,
        0 0 5px currentColor,
        0 0 10px currentColor,
        0 0 20px currentColor,
        0 0 40px currentColor; }
}

.glow-blue {
    color: #00ffff;
}

.glow-pink {
    color: #ff0080;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 400;
}

.highlight {
    color: #ffff00;
    font-weight: 700;
    text-shadow: 0 0 20px #ffff00;
}

/* Countdown */
.countdown-container {
    margin-bottom: 50px;
}

.countdown-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
}

.countdown {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.time-unit {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.2), rgba(0, 255, 255, 0.2));
    border: 2px solid #00ffff;
    border-radius: 15px;
    padding: 20px;
    min-width: 100px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.time-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px #fff;
}

.time-label {
    display: block;
    font-size: 0.8rem;
    color: #00ffff;
    margin-top: 5px;
    letter-spacing: 2px;
}

/* Features */
.features {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.feature-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px currentColor);
}

/* Newsletter */
.newsletter {
    margin-bottom: 50px;
    max-width: 500px;
    width: 100%;
}

.newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ff0080;
    text-shadow: 0 0 20px #ff0080;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #00ffff;
    border-radius: 50px;
    color: #fff;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ff0080;
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.neon-button {
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff0080, #00ffff);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.neon-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.8);
}

.neon-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.neon-button:hover::before {
    left: 100%;
}

/* Progress Bar */
.progress-bar-container {
    width: 100%;
    max-width: 400px;
    margin-bottom: 30px;
}

.progress-bar-container p {
    margin-bottom: 10px;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #00ffff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff0080, #00ffff, #ffff00);
    border-radius: 20px;
    width: 75%;
    animation: progressGlow 2s ease-in-out infinite alternate;
    position: relative;
}

@keyframes progressGlow {
    from { box-shadow: 0 0 10px rgba(0, 255, 255, 0.8); }
    to { box-shadow: 0 0 30px rgba(0, 255, 255, 1); }
}

.progress-text {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #fff;
    font-weight: 700;
}

/* Footer */
.footer {
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.2), rgba(0, 255, 255, 0.2));
    border: 2px solid #00ffff;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
    border-color: #ff0080;
}

.footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .time-unit {
        padding: 15px;
        min-width: 80px;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .features {
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .countdown {
        gap: 8px;
    }
    
    .time-unit {
        padding: 10px;
        min-width: 70px;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
    
    .time-label {
        font-size: 0.7rem;
    }
}