/* Основные стили для подвала */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem 0;
}

/* Основная секция подвала */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #404040;
}

.footer-brand {
    max-width: 400px;
}

.brand-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #6366f1;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin: 0 0 1rem 0;
    font-weight: 500;
}

.brand-tagline {
    font-size: 0.95rem;
    color: #999999;
    margin: 0;
}

/* Форма подписки */
.newsletter-section h4 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    color: #ffffff;
}

.newsletter-section p {
    font-size: 0.9rem;
    color: #cccccc;
    margin: 0 0 1rem 0;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #404040;
    border-radius: 6px;
    background: #2d2d2d;
    color: #ffffff;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.newsletter-input::placeholder {
    color: #888888;
}

.newsletter-button {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Навигационные колонки */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    min-width: 0;
}

.column-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: #ffffff;
    position: relative;
}

.column-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #6366f1;
    transform: translateX(4px);
}

/* Социальные сети */
.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2d2d2d;
    border-radius: 8px;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #404040;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-link.telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
    color: #ffffff;
}

.social-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: #ffffff;
}

.social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #ffffff;
}

.social-link.discord:hover {
    background: #5865f2;
    border-color: #5865f2;
    color: #ffffff;
}

.contact-info {
    font-size: 0.85rem;
    color: #999999;
}

.contact-info p {
    margin: 0.25rem 0;
}

.contact-info strong {
    color: #cccccc;
}

/* Нижняя секция */
.footer-bottom {
    background: #0f0f0f;
    border-top: 1px solid #404040;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 0;
    gap: 2rem;
}

.copyright {
    font-size: 0.85rem;
    color: #888888;
}

.disclaimer {
    max-width: 600px;
    font-size: 0.8rem;
    color: #666666;
    text-align: right;
}

.disclaimer strong {
    color: #ff6b6b;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-main {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 2rem 1rem 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-button {
        align-self: flex-start;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .disclaimer {
        text-align: left;
        max-width: none;
    }
    
    .brand-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 1.5rem 0.75rem 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .brand-title {
        font-size: 1.5rem;
    }
    
    .column-title {
        font-size: 1rem;
    }
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: fadeInUp 0.6s ease-out;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

/* Дополнительные эффекты */
.newsletter-input:focus + .newsletter-button {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.footer-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #6366f1;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a {
    position: relative;
}

/* --- КОД ДЛЯ УДАЛЕНИЯ СТАРОГО ПОДВАЛА --- */
div.site-footer-container {
    display: none !important;
}
/* --- КОНЕЦ КОДА --- */


