/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

.construction-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.construction-content {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    margin-bottom: 2rem;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.construction-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease;
}

.construction-logo:hover {
    transform: scale(1.05);
}

.construction-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #e0e0e0, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.construction-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #b0b0b0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.coming-soon-text {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #c0c0c0;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}

.construction-animation {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    animation: bounce 1.4s ease-in-out infinite both;
}

.dot1 {
    animation-delay: -0.32s;
}

.dot2 {
    animation-delay: -0.16s;
}

.dot3 {
    animation-delay: 0s;
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .construction-title {
        font-size: 2rem;
    }
    
    .construction-subtitle {
        font-size: 1.2rem;
    }
    
    .coming-soon-text {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .construction-logo {
        max-width: 150px;
    }
    
    .construction-content {
        padding: 1rem;
    }
    
}

@media (max-width: 480px) {
    .construction-title {
        font-size: 1.5rem;
    }
    
    .construction-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .coming-soon-text {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .construction-logo {
        max-width: 120px;
    }
}

/* Additional visual enhancements */
.construction-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: backgroundShift 10s ease-in-out infinite alternate;
}

@keyframes backgroundShift {
    0% {
        transform: translateX(-10px) translateY(-10px);
    }
    100% {
        transform: translateX(10px) translateY(10px);
    }
}