.smart-template-suggestion {
    margin-top: 12px;
}

/* ---------------------------------- */
/* ------ "ALL OUT" FOOTER V3.3 ------- */
/* ---------------------------------- */

.app-footer-v3 {
    padding: 24px var(--content-padding, 28px);
    margin-top: auto;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background-color: rgba(var(--bg-secondary-rgb), 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 2px solid transparent; /* Placeholder for gradient border */
    box-shadow: 0 -10px 30px -15px rgba(0,0,0,0.2);
    color: var(--text-secondary);
    text-align: center;
    z-index: 1;
}

/* Holographic Animated Top Border */
.app-footer-v3::before {
    content: '';
    position: absolute;
    top: -2px; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, 
        var(--accent-danger), 
        var(--accent-primary), 
        var(--accent-secondary), 
        var(--accent-warning), 
        var(--accent-danger)
    );
    background-size: 200% 100%;
    animation: holographic-border 5s linear infinite;
    z-index: 2;
}

@keyframes holographic-border {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Subtle Aurora Background */
.app-footer-v3::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(315deg, 
        rgba(var(--accent-primary-rgb), 0.05), 
        rgba(var(--accent-secondary-rgb), 0.05), 
        rgba(var(--accent-warning-rgb), 0.05)
    );
    background-size: 200% 200%;
    animation: aurora-bg 25s ease infinite;
    opacity: 0.7;
}

.dark-theme .app-footer-v3::after {
    background: linear-gradient(315deg, 
        rgba(var(--accent-primary-rgb), 0.1), 
        rgba(var(--accent-secondary-rgb), 0.1), 
        rgba(var(--accent-danger-rgb), 0.1)
    );
    background-size: 200% 200%;
    animation: aurora-bg 25s ease infinite;
}

@keyframes aurora-bg {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

.footer-content-v3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-seal-v3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-monospace);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: help;
}

.footer-seal-v3 svg {
    width: 20px;
    height: 20px;
    color: var(--text-placeholder);
}

.footer-copyright-v3 {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

.footer-legal-notice-v3 {
    font-size: 0.75rem;
    max-width: 650px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.footer-legal-notice-v3 strong {
    color: var(--text-primary);
    font-weight: 600;
}

.footer-tooltip {
    position: fixed;
    z-index: 9999;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 0.8rem;
    font-weight: 500;
    max-width: 250px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    transform: translateY(5px);
}
.footer-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}


@media (min-width: 768px) {
    .footer-content-v3 {
        flex-direction: row;
        justify-content: space-between;
        gap: 24px;
    }
    .footer-copyright-v3 { order: 1; text-align: left; }
    .footer-legal-notice-v3 { order: 3; text-align: right; }
    .footer-seal-v3 { order: 2; }
}