/* josfox-legal-footer.css */

.jfx-legal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 1.5rem 2rem;
    margin-top: 3rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.aurora-gold-link {
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #f5c842, #d4a017, #f5c842);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    display: inline-block;
}

.aurora-gold-link:hover {
    background-position: right center;
    transform: translateY(-1px);
    opacity: 0.9;
}

.active-aurora {
    background: rgba(99, 91, 255, 0.15) !important;
    color: white !important;
}

/* Modern Footer */
.jfx-footer-modern {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 1.5rem 2rem;
    margin-top: 3rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.gradient-josfox {
    background: linear-gradient(135deg, #ffd700, #f5c842);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-money {
    background: linear-gradient(135deg, #00f2c3, #00d4aa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: #cca;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-cta-link {
    font-size: 1rem;
    font-weight: 700;
    color: #f5c842;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-cta-link:hover {
    color: #d4a017;
}

/* Base aurora button */
.btn-aurora {
    background: linear-gradient(135deg, #00d4aa 0%, #635bff 50%, #7c3aed 100%);
    background-size: 200% auto;
    animation: gradientFlow 3s ease infinite;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(99, 91, 255, 0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-aurora:hover {
    background-position: right center;
    box-shadow: 0 6px 20px rgba(99, 91, 255, 0.6);
    transform: translateY(-2px);
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Common Header Navigation */
.jfx-public-nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem;
    display: flex;
    justify-content: center;
}

.jfx-public-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    width: 100%;
    max-width: 1000px;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.jfx-nav-brand {
    color: white;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.jfx-nav-brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.jfx-nav-brand span {
    font-weight: 800;
    background: linear-gradient(135deg, #00d4aa, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.jfx-nav-links {
    display: flex;
    gap: 8px;
}

.jfx-nav-links a {
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 600;
    color: #aaa;
    text-decoration: none;
    transition: all 0.2s;
}

.jfx-nav-links a:hover {
    background: rgba(99, 91, 255, 0.15);
    color: white;
}