/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #0a192f;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Particles Background */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Main Container */
.container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    background-color: rgba(13, 28, 51, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1;
    animation: fadeIn 1.5s ease-in-out;
}

/* Logo */
.logo {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #64ffda;
}

.logo i {
    animation: pulse 2s infinite;
}

/* Site Name */
.site-name {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ccd6f6;
    letter-spacing: 1px;
}

/* Construction Banner */
.construction-banner {
    background-color: rgba(100, 255, 218, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.construction-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #64ffda;
    animation: wrench 2.5s ease infinite;
}

.construction-banner h2 {
    font-size: 1.8rem;
    color: #64ffda;
}

/* Message */
.message {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #8892b0;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, #64ffda, #0a81ff);
    border-radius: 5px;
    animation: progress 3s ease-in-out infinite alternate;
}

/* Contact Info */
.contact-info {
    margin-bottom: 2rem;
    color: #8892b0;
}

.contact-info a {
    color: #64ffda;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #64ffda;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #64ffda;
    color: #0a192f;
    transform: translateY(-3px);
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes wrench {
    0% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(30deg);
    }
    40% {
        transform: rotate(-30deg);
    }
    60% {
        transform: rotate(15deg);
    }
    80% {
        transform: rotate(-15deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes progress {
    0% {
        width: 15%;
    }
    100% {
        width: 85%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .logo {
        font-size: 3rem;
    }
    
    .site-name {
        font-size: 2rem;
    }
    
    .construction-banner h2 {
        font-size: 1.5rem;
    }
    
    .message {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .site-name {
        font-size: 1.8rem;
    }
    
    .construction-banner h2 {
        font-size: 1.3rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
} 