footer {
    margin-top: 6rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
}

#social-links {
    justify-content: center;
    display: flex !important;
    bottom: max(16px, env(safe-area-inset-bottom));
    left: 50%;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    z-index: 9999;
    font-size: 20px;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    contain: layout style;
}

#social-links a {
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

#social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}