/* Авторские права в углу social-bar */
.copyright-law { 
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 4px 12px !important;
    font-size: 0.7rem !important;
    font-family: monospace !important;
    color: #9ca3af !important;
    background: rgba(255, 255, 255, 0.05);
    border-top-left-radius: 8px; 
    border-bottom-right-radius: 12px; 
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    border-bottom: none;
    text-decoration: none !important;
    z-index: 10;
}

.copyright-law:hover {
    transform: none !important;
}

.copyright-text {
	color: #444;
    font-size: 0.8rem;
}

/* --- СОЦСЕТИ --- */
.social-bar { background: #000; padding: 50px; border-radius: 20px; display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; border: 2px solid #222; }
.social-bar a { color: var(--text-muted); font-size: 3rem; transition: var(--transition); }
.social-bar a:hover { color: white; transform: scale(1.2); }
.social-bar a.it:hover { color: var(--accent-it); text-shadow: var(--shadow-it); }
.social-bar a.car:hover { color: var(--accent-car); text-shadow: var(--shadow-car); }
.social-bar a.m:hover { color: #ff6b35; text-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }

/*footer {
    text-align: center;
    padding: 30px;
    color: #444;
    font-size: 0.85rem;
}*/

footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feedback-link {
    margin-bottom: 15px;
    color: #666;
    font-size: 0.85rem;
}

.feedback-link a {
    color: var(--accent-it); /* Используем ваш акцентный цвет */
    text-decoration: none;
    border-bottom: 1px dashed var(--accent-it);
    transition: 0.3s;
}

.feedback-link a:hover {
    color: white;
    border-bottom: 1px solid white;
}