/* App Footer Styles */

.app-footer {
    padding: 40px 24px 20px;
    background: #000;
    border-top: 1px solid var(--border-subtle);
    margin-top: 32px;
    text-align: center;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-info {
    margin-bottom: 24px;
}

.footer-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-info-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.2s;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(204, 253, 51, 0.3);
}

.footer-copy {
    font-size: 0.8rem;
    color: #444;
    margin-top: 24px;
}