/* Footer - Savaş Medya İmzası */

.footer {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(5, 7, 20, 0.98) 100%);
    padding: 3rem 2rem 2rem;
    text-align: center;
    border-top: 2px solid rgba(0, 217, 255, 0.3);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    animation: footerGlow 3s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-year {
    color: var(--primary-cyan);
    font-weight: 600;
}

.footer-divider {
    color: var(--primary-cyan);
    margin: 0 0.5rem;
}

.footer-credit {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    flex-wrap: wrap;
}

.footer-credit-text {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-credit-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.footer-credit-link:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: var(--primary-cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--glow-cyan);
}

.footer-credit-link i {
    font-size: 1.1rem;
}

/* Mobil */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .footer-main {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .footer-divider {
        display: none;
    }
    
    .footer-credit {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
    }
    
    .footer-credit-text {
        font-size: 0.85rem;
    }
    
    .footer-credit-link {
        width: 100%;
        justify-content: center;
    }
}
