* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #050816;
    --card: rgba(255,255,255,0.04);
    --border: rgba(255,255,255,0.08);
    --text: #ffffff;
    --muted: #a8b3cf;
    --accent: #4f8cff;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.background-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(79,140,255,0.25) 0%,
        transparent 70%
    );
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}

.container {
    width: 100%;
    max-width: 850px;
    padding: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.logo img {
    max-width: 160px;
    margin-bottom: 40px;
}

.badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(79,140,255,0.15);
    border: 1px solid rgba(79,140,255,0.25);
    color: #9fc0ff;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

h1 {
    font-size: clamp(2.8rem, 7vw, 5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto;
}

.divider {
    width: 120px;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 40px auto;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 14px 24px;
    border-radius: 50px;
    backdrop-filter: blur(20px);
}

.pulse {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.contact {
    margin-top: 30px;
    color: var(--muted);
}

.contact a {
    color: var(--accent);
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    70% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes float {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

@media (max-width: 768px) {

    .container {
        padding: 30px;
    }

    p {
        font-size: 1rem;
    }

}

footer {
    position: absolute;
    bottom: 25px;
    width: 100%;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}