/*Адаптировано*/
.footer {
    background: linear-gradient(
            135deg,
            rgba(15, 15, 15, 0.98) 0%,
            rgba(20, 20, 20, 0.95) 100%
    );
    border-top: 1px solid rgba(255, 94, 0, 0.2);
    padding: 50px 0 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--neon);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 94, 0, 0.3);
}

.footer-description {
    color: var(--text-light, #ccc);
    line-height: 1.6;
    font-size: 14px;
    max-width: 300px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--neon);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
}

.contact-item:hover {
    background: rgba(255, 94, 0, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.contact-text {
    color: var(--text-light, #ccc);
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-text {
    color: var(--neon);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--text-light, #ccc);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.footer-link:hover {
    color: var(--neon);
    background: rgba(255, 94, 0, 0.1);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-light, rgba(255, 255, 255, 0.1));
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    color: var(--text-muted, #888);
    font-size: 12px;
}

.footer-developer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted, #888);
    font-size: 14px;
}

.developer-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--neon);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 94, 0, 0.1);
}

.developer-link:hover {
    color: var(--ink);
    background: rgba(255, 94, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 94, 0, 0.3);
}

.developer-name {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.developer-icon {
    font-size: 16px;
}

/* Анимация появления */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Адаптивность */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-description {
        max-width: none;
        margin: 0 auto;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        justify-content: center;
    }

    .footer-link {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-developer {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }

    .footer-logo {
        font-size: 24px;
    }

    .footer-title {
        font-size: 16px;
    }

    .contact-item {
        padding: 6px 10px;
    }

    .footer-link {
        padding: 6px 10px;
    }

    .footer-developer {
        flex-direction: column;
        gap: 5px;
    }

    .developer-link {
        padding: 5px 10px;
    }
}
