.app-footer {
    background-color: #05060c !important;
    background-image:
        radial-gradient(circle at 12% 18%, rgba(244,199,107,0.18), transparent 55%),
        radial-gradient(circle at 90% 0%, rgba(122,79,239,0.15), transparent 40%),
        linear-gradient(135deg, #05060c 0%, #0e0a20 42%, #1a0f3d 68%, #2a1360 100%);
    color: rgba(255,255,255,0.82) !important;
    position: relative;
    overflow: hidden;
    z-index: 10;
    box-shadow: 0 -30px 60px rgba(5,6,12,0.35);
}

.app-footer::after {
    content: "";
    position: absolute;
    inset: auto -140px -140px auto;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(244,199,107,0.28), transparent 68%);
    filter: blur(14px);
    pointer-events: none;
    z-index: -1;
}

.app-footer h3,
.app-footer h4 {
    color: #fff !important;
}

.app-footer p,
.app-footer li,
.app-footer a {
    color: rgba(255,255,255,0.7) !important;
}

.app-footer .footer-link {
    color: rgba(255,255,255,0.65) !important;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.app-footer .footer-link:hover {
    color: #f4c76b;
    transform: translateX(2px);
}

.app-footer .footer-divider {
    border-color: rgba(255,255,255,0.15) !important;
}

.app-footer .footer-accent {
    color: #f4c76b;
}

.app-footer .list-unstyled li + li {
    margin-top: 0.35rem;
}

.app-footer .footer-brand {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    backdrop-filter: blur(6px);
    box-shadow: 0 20px 40px rgba(5,6,12,0.2);
}

.app-footer .footer-logo {
    max-height: 56px;
    width: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

@media (max-width: 991px) {
    .app-footer .list-unstyled {
        margin-bottom: 1.5rem;
    }
}

