@import url('https://fonts.googleapis.com/css2?family=Metal+Mania&family=Orbitron:wght@400;700&family=Outfit:wght@300;400;700&display=swap');

:root {
    --bg-color: #050505;
    --card-bg: rgba(15, 15, 15, 0.85);
    --neon-green: #00ff41;
    --neon-green-glow: rgba(0, 255, 65, 0.5);
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --font-header: 'Metal Mania', cursive;
    --font-secondary: 'Orbitron', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('official_background.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    filter: brightness(0.7) contrast(1.2);
    z-index: -1;
}

.smoke-layer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(transparent, rgba(0, 255, 65, 0.05));
    pointer-events: none;
    z-index: -1;
    filter: blur(50px);
}

.container {
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    text-align: center;
    z-index: 1;
}

.logo-container {
    margin-bottom: 2rem;
    animation: floating 3s ease-in-out infinite;
}

.logo-image {
    max-width: 300px;
    width: 80%;
    height: auto;
    filter: drop-shadow(0 0 10px var(--neon-green-glow));
}

.maintenance-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--neon-green);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 255, 65, 0.1);
    position: relative;
    overflow: hidden;
}

.maintenance-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 65, 0.05), transparent);
    transform: rotate(45deg);
    animation: shine 6s infinite linear;
}

h1 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: var(--neon-green);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 5px;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

p.message {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-weight: 300;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green);
    animation: pulse 1.5s infinite;
}

.status-text {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    color: var(--neon-green);
    text-transform: uppercase;
}

.footer {
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Animations */
@keyframes floating {

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

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

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

    50% {
        transform: scale(1.5);
        opacity: 0.4;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shine {
    from {
        transform: translateX(-100%) rotate(45deg);
    }

    to {
        transform: translateX(100%) rotate(45deg);
    }
}

@media (max-width: 600px) {
    .logo-placeholder {
        font-size: 2.5rem;
    }

    h1 {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    p.message {
        font-size: 1rem;
    }
}