:root {
    --primary: #58c0c0;
    --primary-dark: #2a9d8f;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.8);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

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

body {
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #f0f4f8;
    color: var(--text-main);
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg.png') no-repeat center center/cover;
    z-index: -1;
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.container {
    padding: 20px;
    width: 100%;
    max-width: 600px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow);
    animation: fadeIn 1.2s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.status-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 100px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(88, 192, 192, 0.3);
}

.brand-name {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: -1px;
    color: #1a1a1a;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.loading-bar {
    width: 100%;
    max-width: 200px;
    height: 4px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin: 0 auto 24px;
    overflow: hidden;
}

.progress {
    width: 60%;
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
    animation: progressMoving 3s ease-in-out infinite;
}

@keyframes progressMoving {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(50%);
    }

    100% {
        transform: translateX(100%);
    }
}

.construction-text {
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer {
    position: fixed;
    bottom: 40px;
    z-index: 10;
}

.developed-by {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.developed-by>span {
    font-size: 0.8rem;
    color: var(--glass-bg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.atlas-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
    transition: transform 0.3s ease;
}

.atlas-link:hover {
    transform: translateY(-2px);
}

.atlas-logo {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.atlas-name {
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 500px) {
    .brand-name {
        font-size: 2.5rem;
    }

    .glass-card {
        padding: 40px 24px;
    }
}