/* Удаляем глобальные стили для footer */

.footer {
    width: 100vw;
    min-width: 100vw;
    margin: 50px 0 0 0;
    padding: 40px 0 30px 0;
    background: rgba(0, 0, 0, 0.8);
    border: 1px #181818;
    box-shadow: 0 0 20px rgba(0, 255, 156, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 30px 30px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-color: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.footer-inner {
    width: 1081px;
    max-width: 100vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] .footer,
[data-theme="light"] .footer {
    background: linear-gradient(120deg, #050508 0%, #0a0a12 60%, #101014 100%);
    border: none;
    box-shadow: 0 0 20px rgba(147, 112, 219, 0.2);
    backdrop-filter: blur(8px);
}

.footer-logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin-bottom: 24px;
}

.footer-logo {
    height: 54px;
    width: auto;
    display: block;
}

.footer-cursor-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}

.cursor-part {
    margin: 0;
    padding: 0;
    height: 54px;
    width: auto;
}

.footer-copyright {
    font-family: 'Ubuntu';
    font-size: 34px;
    font-weight: 300;
    color: #fff;
    text-align: center;
    margin-top: 10px;
}

.logo-vmware {
    height: 36px !important;
    width: auto !important;
}

.logo-cursor2 {
    height: 36px !important;
    width: auto !important;
} 