.footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    z-index: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.footer-copyright {
    color: #888888;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-copyright-link {
    color: #aaaaaa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-copyright-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-copyright {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

@media (max-width: 768px) {
    .footer {
        padding: 25px 15px;
    }
    
    .footer-copyright {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 20px 10px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
}