:root {
    --primary: #0061ff;
    --secondary: #60efff;
    --bg-light: #f0f4f8;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.5);
    --text-main: #0f172a;
    --text-muted: #475569;
}

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

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

/* --- Animated Background --- */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(100px);
    opacity: 0.6;
}

.blob {
    position: absolute;
    border-radius: 50%;
    animation: move 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: #e0f2fe;
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 700px;
    height: 700px;
    background: #f0f9ff;
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: #e8eaff;
    top: 40%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes move {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(150px, 100px) scale(1.1); }
}

/* --- Content --- */
.content {
    z-index: 1;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1s ease-out;
}

.logo-container {
    margin-bottom: 40px;
}

.logo {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1e293b;
}

.title span {
    background: linear-gradient(90deg, #0061ff, #60efff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 97, 255, 0.05);
    color: #0061ff;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 97, 255, 0.1);
}

.dot {
    width: 8px;
    height: 8px;
    background: #0061ff;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px rgba(0, 97, 255, 0.5);
    animation: pulse 2s infinite;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.social-icon:hover {
    background: #0061ff;
    color: #ffffff;
    border-color: #0061ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 97, 255, 0.1);
}

.footer {
    position: fixed;
    bottom: 30px;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

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

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 480px) {
    .title {
        font-size: 2.5rem;
    }
    .glass-card {
        padding: 40px 20px;
        border-radius: 30px;
    }
    .social-links {
        flex-direction: column;
        gap: 10px;
    }
}
