/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 60px;
    text-align: center;
    z-index: 100;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

.footer-links a:hover {
    color: #FFFFFF;
    letter-spacing: 3px;
}

.footer-copyright {
    color: #666666;
    font-size: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
}

.footer-link {
    cursor: pointer;
}
