.main-footer {
    padding: 4rem 2rem 1.5rem 2rem;
    background: var(--bg-dark-secondary);
    border-top: 1px solid color-mix(in srgb, var(--text-main) 8%, transparent);
    margin-top: auto;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    text-align: left;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
}

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: 0.5px;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.footer-links-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.footer-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    transition: all 0.2s;
}

.footer-link:hover {
    color: var(--mc-blue);
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-socials-title {
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    margin: 0;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--text-main) 3%, transparent);
    border: 1px solid color-mix(in srgb, var(--text-main) 8%, transparent);
    color: var(--text-muted);
    transition: all 0.2s;
}

.social-icon.discord:hover {
    color: #5865F2;
    border-color: rgba(88, 101, 242, 0.5);
    background: rgba(88, 101, 242, 0.1);
}

.social-icon.x:hover {
    color: var(--text-main);
    border-color: color-mix(in srgb, var(--text-main) 50%, transparent);
    background: color-mix(in srgb, var(--text-main) 10%, transparent);
}

.social-icon.instagram:hover {
    color: #E1306C;
    border-color: rgba(225, 48, 108, 0.5);
    background: rgba(225, 48, 108, 0.1);
}

.social-icon.facebook:hover {
    color: #1877F2;
    border-color: rgba(24, 119, 242, 0.5);
    background: rgba(24, 119, 242, 0.1);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid color-mix(in srgb, var(--text-main) 8%, transparent);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-credit {
    color: color-mix(in srgb, var(--text-muted) 70%, transparent);
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    .footer-desc {
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .footer-links-horizontal {
        justify-content: center;
    }
}