html, 
body {
    height: 100%;
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}
.wrap {
    min-height: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}
.card {
    background: rgba(255,255,255,0.14);
    border-radius: 20px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 28px 32px;
    max-width: 720px;
    width: 100%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
    border: 1px solid rgba(255, 255, 255, 0.2);

}
h1 {
    font-size: clamp(42px, 7vw, 80px);
    line-height: 1.05;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}
p {
    margin: 0.5rem 0;
    font-size: clamp(16px, 2.6vw, 22px);
    opacity: 0.9;
}
.muted { 
    opacity: 0.75; 
    font-size: 14px; 
}
.loading {
    animation: pulse 2s infinite;
}
.wrap.logo {
    min-height:20%;
}
.logo img {
    height:120px;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

footer {
    backdrop-filter: blur(10px);
    padding-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
.footer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    min-width: 200px;
    justify-content: center;
}      
.footer-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}      
.footer-link svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}      
.footer-link:hover svg {
    transform: scale(1.1);
}      
.facebook-link:hover,
.website-link:hover,
.instagram-link:hover {
    background: rgba(0, 0, 0, 0.2);
} 
@media (max-width: 480px) {
    .footer-link {
        min-width: 180px;
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }          
    .footer-link svg {
        width: 20px;
        height: 20px;
    }
}
