/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #00202c;
    --accent-cyan: #26e0fc;
    --neutral-gray: #3e4044;
    --accent-gold: #ffd700;
    --white: #ffffff;
}

body {
    font-family: 'Red Hat Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: var(--primary-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

/* Logo Styles */
.logo-container {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 32, 44, 0.1));
}

/* Typography */
.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    animation: fadeInUp 1s ease-out 0.2s both;
    letter-spacing: -0.5px;
}

.construction-message {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.construction-message h2 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.construction-message p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--neutral-gray);
    margin-bottom: 0.5rem;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    max-width: 400px;
    height: 4px;
    background-color: rgba(0, 32, 44, 0.1);
    border-radius: 2px;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-dark), var(--accent-cyan));
    border-radius: 2px;
    animation: progressAnimation 2s ease-in-out infinite;
    width: 60%;
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 2rem 0 1rem;
    text-align: center;
    animation: fadeIn 1s ease-out 0.8s both;
}

.footer p {
    font-size: 0.875rem;
    color: rgba(0, 32, 44, 0.5);
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes progressAnimation {
    0%, 100% {
        transform: translateX(-10%);
    }
    50% {
        transform: translateX(50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .construction-message h2 {
        font-size: 1.5rem;
    }
    
    .construction-message p {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.5rem;
    }
    
    .construction-message h2 {
        font-size: 1.25rem;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .container {
        padding: 1.5rem;
    }
}

