.site-footer {
    background: #2c3e50;
    color: white;
    margin-top: auto;
    padding: 2rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-logo-icon {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    max-width: 400px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #bdc3c7;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    color: white;
    transform: translateY(-2px);
}

.social-icon.facebook:hover {
    background-color: #1877f2;
}

.social-icon.twitter:hover {
    background-color: #1da1f2;
}

.social-icon.linkedin:hover {
    background-color: #0a66c2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.youtube:hover {
    background-color: #ff0000;
}

.social-icon.github:hover {
    background-color: #333;
}

.patreon-link {
    color: #f96854 !important;
}

.patreon-link:hover {
    color: #ff5722 !important;
}

.patreon-icon {
    font-size: 1.1em;
    margin-right: 0.3rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .site-footer {
        padding: 1.5rem 0 1rem;
    }
    
    .social-icons {
        justify-content: center;
        margin-top: 1.5rem;
    }
}