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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #0d2b5c;
    background: radial-gradient(circle at center, #103c80 0%, #091c3d 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px 32px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.logo {
    width: 140px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.message {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 32px;
}

.message strong {
    color: #38ef7d;
    font-weight: 600;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #e5e7eb;
}

.pulse {
    width: 8px;
    height: 8px;
    background-color: #00b4db;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 180, 219, 0.7);
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 180, 219, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 180, 219, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 180, 219, 0);
    }
}
