:root {
    --primary-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --bg-color: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.9);
    --text-main: #1e293b;
    --text-dim: #64748b;
    --accent: #4f46e5;
    --border: rgba(0, 0, 0, 0.05);
}

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

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

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(79, 70, 229, 0.05) 0%, transparent 80%);
    z-index: -1;
}

.container {
    padding: 2rem;
    width: 100%;
    max-width: 600px;
    z-index: 1;
}

.content-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.02);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-wrapper {
    margin-bottom: 2.5rem;
}

.logo {
    max-width: 160px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.05));
    animation: float 6s ease-in-out infinite;
}

.title {
    font-size: 2.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #f1f5f9;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pulse {
    width: 10px;
    height: 10px;
    background-color: var(--accent);
    border-radius: 50%;
    position: relative;
}

.pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.status-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
}

.footer {
    position: absolute;
    bottom: 2.5rem;
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 400;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.25rem;
    }
    .content-card {
        padding: 3rem 1.5rem;
    }
}
