footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e0e0e0;
    padding: 50px 0 20px;
    margin-top: 60px;
    border-top: 3px solid #8a0303;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.3em;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #8a0303;
}

.footer-logo h3 {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-tagline {
    margin-top: 15px;
    padding: 10px 15px;
    background: rgba(231, 76, 60, 0.1);
    border-left: 3px solid #8a0303;
    border-radius: 4px;
}

.footer-tagline p {
    margin: 0;
    font-style: italic;
    color: #bdc3c7;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li a:hover {
    color: #f39c12;
    transform: translateX(5px);
}

.footer-section ul li a i {
    width: 20px;
    text-align: center;
    color: #fafafa;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.contact-item i {
    color: #fafafa;
    width: 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.social-icon.discord:hover { background: #5865F2; }
.social-icon.vk:hover { background: #4C75A3; }
.social-icon.youtube:hover { background: #FF0000; }
.social-icon.twitch:hover { background: #9146FF; }

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    margin: 0;
    color: #95a5a6;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f39c12;
}

/* Адаптивность */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}