.app-footer-full {
    border-top: 1px solid rgba(0, 255, 0, 0.1);
    background: linear-gradient(
        180deg,
        rgba(6, 3, 16, 0.98),
        rgba(13, 6, 32, 1)
    );
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
}

.app-footer-full::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.05), transparent 70%);
    border-radius: 50%;
    animation: footerGlow 15s ease-in-out infinite;
    pointer-events: none;
}

.app-footer-full::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(0, 212, 255, 0.04),
        transparent 70%
    );
    border-radius: 50%;
    animation: footerGlowAlt 18s ease-in-out infinite;
    pointer-events: none;
}

@keyframes footerGlow {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, 50%) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes footerGlowAlt {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: translate(50%, -50%) scale(1.3);
        opacity: 0.5;
    }
}

.footer-full-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-col-title {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%,
    100% {
        text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    }

    50% {
        text-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
    }
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--color-text-light);
    transition: all 0.3s ease;
    padding: 4px;
    border-radius: 4px;
}

.footer-contact-list li:hover {
    color: var(--primary-color);
    background: rgba(0, 255, 0, 0.05);
    padding-left: 8px;
}

.footer-contact-list i {
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.footer-contact-list li:hover i {
    transform: scale(1.2) rotate(10deg);
}

.footer-social-row {
    margin-top: 20px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-light);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-social-link::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.footer-social-link:hover::before {
    opacity: 0.15;
}

.footer-social-link:hover {
    background: rgba(0, 255, 0, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-6px) scale(1.15);
    box-shadow: 0 8px 20px rgba(0, 255, 0, 0.25);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-copyright p {
    font-size: 13px;
    color: var(--color-muted-text);
    margin: 0;
    transition: color 0.3s ease;
}

.footer-copyright strong {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    animation: brandGlow 2s ease-in-out infinite;
}

@keyframes brandGlow {
    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(0, 255, 0, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.5));
    }
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .footer-full-inner {
        padding: 0 16px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-full-inner {
        padding: 0 12px;
    }

    .app-footer-full {
        padding: 40px 0 0;
    }

    .footer-brand-logo {
        width: 48px;
        height: 48px;
    }
}
