/* Glassmorphism Footer */
footer.glass-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    /* Optional height */
    padding: 0 20px;
    background: rgba(15, 15, 19, 0.4);
    /* Based on bg-app color but darker */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle border */
    z-index: 9999;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.footer-container {
    display: flex;
    gap: 30px;
    align-items: center;
    font-size: 0.85rem;
    color: #a1a1aa;
    /* text-muted */
}

.footer-text {
    display: flex;
    gap: 5px;
    align-items: center;
}

.footer-nick {
    color: #d4af37;
    /* Gold accent */
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-divider {
    width: 1px;
    height: 15px;
    background: #3f3f46;
    /* border color */
}

a.footer-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.8;
    position: relative;
    padding-bottom: 2px;
}

a.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

a.footer-link:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

a.footer-link:hover::after {
    width: 100%;
}

@media (max-width: 600px) {
    footer.glass-footer {
        height: auto;
        padding: 10px 15px;
    }

    .footer-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .footer-divider {
        display: none;
    }
}