.telegram-banner {
    width: 100%;
    background: linear-gradient(135deg, #0088cc 0%, #00a8ff 100%);
    color: white;
    padding: 15px 0;
    position: relative;
    overflow: hidden;
    animation: bannerSlide 0.8s ease-out;
}

@keyframes bannerSlide {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    gap: 20px;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.telegram-icon {
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.banner-text {
    flex: 1;
}

.banner-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 4px;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.3;
}

.banner-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.banner-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.banner-cta {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.banner-cta:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}

/* Адаптивность */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .banner-left {
        flex-direction: column;
        gap: 10px;
    }
    
    .banner-right {
        flex-direction: column;
        gap: 15px;
    }
    
    .banner-features {
        justify-content: center;
    }
    
    .banner-title {
        font-size: 16px;
    }
    
    .banner-subtitle {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .telegram-banner {
        padding: 12px 0;
    }
    
    .banner-content {
        padding: 0 15px;
    }
    
    .banner-title {
        font-size: 15px;
    }
    
    .banner-subtitle {
        font-size: 12px;
    }
    
    .feature {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .banner-cta {
        font-size: 13px;
        padding: 8px 16px;
    }
} 