/* Footer Styles */
.footer {
    margin-top: 4rem;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.footer-author {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0;
}

.footer-contact {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.telegram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, #0088cc, #229ED9);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(34, 158, 217, 0.2);
}

.telegram-link:hover {
    background: linear-gradient(135deg, #006699, #0088cc);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 158, 217, 0.3);
}

.telegram-link:active {
    transform: translateY(0);
}

.telegram-link svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .footer {
        margin-top: 3rem;
        padding: 1.5rem 0;
    }

    .footer-author {
        font-size: 0.9rem;
    }

    .footer-contact {
        font-size: 0.85rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .telegram-link {
        padding: 0.35rem 0.7rem;
        font-size: 0.9rem;
    }
}
