/* ╔══════════════════════════════════════════╗
   ║  ViralTools — Shared Footer Styles      ║
   ╚══════════════════════════════════════════╝ */

.vt-footer {
    background: var(--bg-mid, #0d0a1e);
    color: var(--text-primary, #f0ecff);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

.vt-footer::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08), transparent 70%);
    pointer-events: none;
}

.vt-footer__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.vt-footer__top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.vt-footer__brand {
    max-width: 400px;
}

.vt-footer__desc {
    color: rgba(240, 236, 255, 0.55);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.vt-footer__social {
    display: flex;
    gap: 16px;
}

.vt-footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(240, 236, 255, 0.7);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.vt-footer__social a:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    color: #a78bfa;
    transform: translateY(-3px);
}

.vt-footer__links-group {
    display: flex;
    gap: 80px;
}

.vt-footer {
    --text-muted: rgba(240, 236, 255, 0.55);
}

.vt-footer__links h5 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.vt-footer__links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vt-footer__links li {
    margin-bottom: 14px;
}

.vt-footer__links a {
    color: rgba(240, 236, 255, 0.65);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.vt-footer__links a:hover {
    color: #a78bfa;
    padding-left: 5px;
}

.vt-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.vt-footer__copyright {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.vt-footer__status {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.08);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(74, 222, 128, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulseStatus 2s infinite;
}

@keyframes pulseStatus {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

.vt-footer__disclaimer {
    font-size: 0.75rem;
    color: rgba(240, 236, 255, 0.35);
    text-align: center;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .vt-footer__top {
        flex-direction: column;
        gap: 40px;
    }
    
    .vt-footer__links-group {
        gap: 40px;
    }
    
    .vt-footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
