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

html {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('https://images.unsplash.com/photo-1528722828814-77b9b83aafb2?q=80') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Dark overlay over galaxy background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    pointer-events: none;
}

/* Animated stars effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: moveBackground 40s linear infinite;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

@keyframes moveBackground {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.container {
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 700px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.2s ease-in;
}

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

/* Construction Icon */
.construction-icon {
    position: relative;
    height: 100px;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-in 0.2s both;
}

.gear {
    font-size: 80px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.gear-1 {
    animation: rotate 3s linear infinite;
    top: 0;
}

.gear-2 {
    animation: rotate-reverse 3s linear infinite;
    top: 20px;
    font-size: 60px;
    left: 60%;
    opacity: 0.8;
}

@keyframes rotate {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: translateX(-50%) rotate(360deg); }
    to { transform: translateX(-50%) rotate(0deg); }
}

/* Title */
.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeIn 1s ease-in 0.4s both;
}

/* Subtitle */
.subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeIn 1s ease-in 0.6s both;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-in 0.8s both;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fff, #0095ff);
    border-radius: 10px;
    width: 0%;
    animation: fillProgress 2s ease-in-out 1s forwards, shimmer 2s ease-in-out infinite;
}

@keyframes fillProgress {
    to { width: 75%; }
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Info */
.info {
    margin-bottom: 30px;
    animation: fadeIn 1s ease-in 1s both;
}

.notify-text {
    font-size: 1rem;
    opacity: 0.9;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.6; }
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeIn 1s ease-in 1.2s both;
}

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        max-height: 90vh;
        max-height: 90dvh;
        overflow-y: auto;
        margin: 20px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .gear {
        font-size: 60px;
    }
    
    .gear-2 {
        font-size: 45px;
    }
    
    .construction-icon {
        height: 80px;
        margin-bottom: 20px;
    }
}