/* === 🚀 УНИФИЦИРОВАННЫЙ ФУТЕР КАК НА ГЛАВНОЙ TRANSFERS === */
footer {
    background-color: #181A1B;
    padding: 20px 40px;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #2A2D2E;
    margin-top: 40px;
    margin-bottom: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

footer .logo {
    font-size: 24px;
    font-weight: 600;
    color: #b1972d;
}

.quantum-plane {
    position: relative;
    width: 30px;
    height: 20px;
}

.plane-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 3px #B1972D);
    animation: planeHover 2s infinite alternate;
}

@keyframes planeHover {
    from { 
        transform: translateY(0);
        filter: drop-shadow(0 0 3px #B1972D);
    }
    to { 
        transform: translateY(-2px);
        filter: drop-shadow(0 0 8px #FFD700);
    }
}

footer nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #b1972d;
    font-weight: 500;
}

footer nav a:hover {
    color: #b1972d;
}

/* Мобильная адаптивность */
@media (max-width: 768px) {
    footer {
        position: relative;
        margin-top: 40px;
        padding: 20px;
    }
}
