:root {
    --neon-glow: #4facfe;
    --dark-bg: #121212;
    --text-color: #f0f0f0;
    --accent-color: #7a42f4;
}

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

html {
    height: 100%;
    font-size: 62.5%;
}

body {
    min-height: 100vh;
    background: var(--dark-bg);
    color: var(--text-color);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    overflow-x: hidden;
}

.maintenance-header {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    isolation: isolate;
}

.glow-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--neon-glow), transparent 70%);
    filter: blur(60px);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 8s infinite alternate;
}

.content {
    max-width: 600px;
    padding: 3rem;
}

.globe-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    fill: var(--neon-glow);
    filter: drop-shadow(0 0 8px rgba(79, 172, 254, 0.6));
    animation: float 6s ease-in-out infinite;
}

h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--neon-glow), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(79, 172, 254, 0.2);
}

p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.loader {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.loader-dot {
    width: 12px;
    height: 12px;
    background: var(--neon-glow);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out;
}

.loader-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.maintenance-footer {
    text-align: center;
    padding: 2rem;
    font-size: 1.4rem;
    opacity: 0.7;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.2;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.4;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.4rem;
    }

    p {
        font-size: 1.6rem;
    }

    .content {
        padding: 2rem;
    }

    .glow-circle {
        width: 200px;
        height: 200px;
    }
}