body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #93c5fd 100%);
    overflow: hidden;
}

.lmgxfwsc {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    margin: 20px;
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease-in-out;
}

.logo {
    margin-bottom: 20px;
}

.logo svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

h1 {
    font-size: 3rem;
    color: #1e3a8a;
    margin: 0 0 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

p {
    font-size: 1.2rem;
    color: #4b5563;
    margin: 0 0 10px;
    line-height: 1.8;
}

.fbzipgut {
    font-size: 0.9rem;
    color: #6b7280;
    opacity: 0.8;
    margin-top: 20px;
}

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

@media (max-width: 600px) {
    .lmgxfwsc {
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }
}