﻿:root {
    --primary: #0a2436;
    --accent: #00b4ff;
    --text-light: #e8f3ff;
    --bg-dark: #0a2436;
    --bg-light: #f7f9fb;
}

body {
    margin: 0;
    font-family: "Segoe UI", Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    height: 100vh;
    overflow: hidden;
}

.construction-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    background: linear-gradient(135deg, #0a2436 0%, #112e44 50%, #1a3b58 100%);
    position: relative;
}

.logo-wrapper {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.brand-logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 180, 255, 0.5));
    animation: fadeInLogo 2s ease;
}

.construction-content {
    z-index: 2;
    max-width: 700px;
    padding: 2rem;
    animation: fadeIn 2s ease;
}

.glow-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    text-shadow: 0 0 10px var(--accent), 0 0 25px var(--accent);
}

    .glow-title span {
        color: var(--accent);
    }

.subtitle {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    color: #d0e4f9;
}

.text {
    margin-top: 1rem;
    color: #b8d2e8;
}

.progress-bar {
    width: 80%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 2rem auto 1rem;
    overflow: hidden;
}

.progress-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #0077ff);
    animation: progressAnimation 8s linear infinite;
}

.status {
    font-size: 0.9rem;
    color: #9fc8e8;
}

.social-links {
    margin-top: 2rem;
}

.social-icon {
    color: var(--accent);
    font-size: 1.5rem;
    margin: 0 0.8rem;
    transition: transform 0.3s, color 0.3s;
}

    .social-icon:hover {
        color: #fff;
        transform: scale(1.2);
    }

.contact-info {
    margin-top: 2rem;
    font-size: 0.9rem;
}

a {
    color: var(--accent);
    text-decoration: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLogo {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progressAnimation {
    0% {
        width: 0%;
    }

    50% {
        width: 80%;
    }

    100% {
        width: 0%;
    }
}
