:root {
    --primary: #00b4ff;
    --secondary: #3b82f6;
    --text: #ffffff;
    --text-soft: #cbd5e1;
    --card: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.15);
}

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

body {
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;

    background:
        radial-gradient(circle at 20% 20%, #2563eb 0%, transparent 30%),
        radial-gradient(circle at 80% 30%, #06b6d4 0%, transparent 25%),
        linear-gradient(135deg, #0f172a, #1e293b, #0f172a);

    color: var(--text);
}

.background-blur {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.15);
    filter: blur(120px);
    z-index: 0;
}

.card {
    position: relative;
    z-index: 1;

    max-width: 760px;
    width: 100%;

    padding: 60px;
    text-align: center;

    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.logo {
    margin-bottom: 30px;
}

.logo img {
    width: 100%;
    max-width: 220px;
    height: auto;

    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.badge {
    display: inline-block;

    padding: 10px 18px;
    margin-bottom: 25px;

    background: rgba(0, 180, 255, 0.15);
    border: 1px solid rgba(0, 180, 255, 0.35);
    border-radius: 999px;

    color: #8edbff;

    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

h1 {
    margin-bottom: 20px;

    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

p {
    margin-bottom: 35px;

    color: var(--text-soft);
    font-size: 1.15rem;
    line-height: 1.8;
}

.status {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    color: #94f7be;
    font-weight: 500;
}

.dot {
    width: 12px;
    height: 12px;

    background: #22c55e;
    border-radius: 50%;

    animation: pulse 1.8s infinite;
}

.footer {
    margin-top: 35px;

    color: #94a3b8;
    font-size: 0.9rem;
}

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

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

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

@media (max-width: 768px) {

    .card {
        padding: 40px 30px;
    }

    h1 {
        font-size: 2.2rem;
    }

    p {
        font-size: 1rem;
    }
}