.footer-42 {
    background: linear-gradient(135deg, #1A202C 0%, #2D3748 100%);
    color: #FFFFFF;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.footer-42::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3182CE, transparent);
    animation: shimmer-42 3s ease-in-out infinite;
}

@keyframes shimmer-42 {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.footer-container-42 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    position: relative;
}

.footer-top-42 {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-brand-42 {
    max-width: 400px;
}

.footer-logo-42 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo-icon-42 {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3182CE, #63B3ED);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FFFFFF;
    box-shadow: 0 8px 32px rgba(49, 130, 206, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo-42:hover .footer-logo-icon-42 {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 12px 40px rgba(49, 130, 206, 0.5);
}

.footer-brand-text-42 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.025em;
}

.footer-description-42 {
    color: #A0AEC0;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    font-weight: 400;
}

.footer-social-42 {
    display: flex;
    gap: 1.2rem;
}

.social-link-42 {
    width: 52px;
    height: 52px;
    background: rgba(45, 55, 72, 0.8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A0AEC0;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link-42::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.social-link-42:hover::before {
    left: 100%;
}

.social-link-42:hover {
    background: linear-gradient(135deg, #3182CE, #63B3ED);
    color: #FFFFFF;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(49, 130, 206, 0.4);
    border-color: #63B3ED;
}

.footer-links-42 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column-42 {
    display: flex;
    flex-direction: column;
}

.footer-title-42 {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title-42::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3182CE, #63B3ED);
    border-radius: 2px;
    animation: glow-42 2s ease-in-out infinite alternate;
}

@keyframes glow-42 {
    0% { box-shadow: 0 0 5px #3182CE; }
    100% { box-shadow: 0 0 15px #63B3ED; }
}

.footer-list-42 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link-42 {
    color: #A0AEC0;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
    font-weight: 400;
    display: inline-block;
}

.footer-link-42::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.3rem;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3182CE, #63B3ED);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link-42:hover {
    color: #FFFFFF;
    transform: translateX(8px);
    font-weight: 500;
}

.footer-link-42:hover::before {
    width: 100%;
}

.footer-bottom-42 {
    border-top: 1px solid rgba(45, 55, 72, 0.8);
    padding-top: 2.5rem;
    position: relative;
}

.footer-bottom-42::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3182CE, transparent);
}

.footer-bottom-content-42 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright-42 {
    color: #A0AEC0;
    margin: 0;
    font-weight: 400;
    font-size: 0.95rem;
}

.footer-legal-42 {
    display: flex;
    gap: 2.5rem;
}

.legal-link-42 {
    color: #A0AEC0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
    padding: 0.3rem 0;
}

.legal-link-42::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #3182CE;
    transition: width 0.3s ease;
}

.legal-link-42:hover {
    color: #3182CE;
    font-weight: 500;
}

.legal-link-42:hover::after {
    width: 100%;
}

.main-content-42 {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-container-42 {
        padding: 1rem;
    }
    
    .nav-menu-42 {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(45, 55, 72, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
    }
    
    .nav-menu-42.active-42 {
        top: 100%;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-links-42 {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    
    .nav-auth-42 {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .login-btn-42,
    .signup-btn-42 {
        width: 100%;
        justify-content: center;
    }
    
    .mobile-menu-toggle-42 {
        display: flex;
    }
    
    .footer-container-42 {
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-top-42 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links-42 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content-42 {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-legal-42 {
        gap: 1.5rem;
    }
    
    .social-link-42 {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .footer-links-42 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-social-42 {
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-legal-42 {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer-container-42 {
        padding: 2.5rem 1rem 1.5rem;
    }
}

@media screen and (max-width: 1024px) {
    
    .nav-links01 {
        display: none;
    }
    
    .mobile-menu-btn01 {
        display: block;
    }
}