@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background-color: #000000;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    padding: 2rem;
    text-align: center;
}

.maintenance-container {
    max-width: 600px;
    width: 100%;
    background-color: #020202;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #1f1f1f;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.308);
    backdrop-filter: blur(8px);
    box-sizing: border-box;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f0f0f0;
}

h1 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    color: #bbbbbb;
    margin: 0.5rem 0;
}

a {
    color: #999;
    text-decoration: underline;
    transition: color 0.3s ease;
}

a:hover {
    color: #ccc;
}

footer {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #666;
}

#hr-bg {
    width: 70%;
    height: 3px;
    background: linear-gradient(to right, #444, #666, #444);
    background-size: 200% 200%;
    animation: subtle-flow 6s ease infinite;
    margin: 2rem auto;
    border: none;
    border-radius: 40px;
}

@keyframes subtle-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 600px) {
    .maintenance-container {
        padding: 1.5rem;
        border-radius: 16px;
    }

    h1 {
        font-size: 1.6rem;
    }

    p {
        font-size: 0.95rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    #hr-bg {
        width: 90%;
    }
}

