 /* Фиксированная кнопка Telegram */
        .telegram-subscribe-btn {
            position: fixed;
            left: 30px;
            bottom: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }
        
        .telegram-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #0088cc;
            color: white;
            padding: 15px 15px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
            transition: all 0.3s ease;
            transform: translateY(0);
            animation: pulse 2s infinite;
        }
        
        .telegram-btn:hover {
            background-color: #006a9e;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 136, 204, 0.6);
        }
        
        .telegram-btn:active {
            transform: translateY(1px);
        }
        
        .telegram-icon {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        
        .telegram-text {
            white-space: nowrap;
        }
        
        .notification {
            background-color: #f8f9fa;
            color: #333;
            padding: 12px 20px;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            max-width: 300px;
            text-align: center;
            border-left: 4px solid #0088cc;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .notification.show {
            display: block;
            opacity: 1;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
            }
            50% {
                box-shadow: 0 5px 20px rgba(0, 136, 204, 0.7);
            }
            100% {
                box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
            }
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {

            
            .telegram-subscribe-btn {
                right: 20px;
                bottom: 20px;
            }
            
            .telegram-btn {
                padding: 12px 20px;
                font-size: 1rem;
            }
            
            .telegram-text {
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 480px) {
            .telegram-btn {
                padding: 15px;
                border-radius: 50%;
                width: 60px;
                height: 60px;
            }
            
            .telegram-text {
                display: none;
            }
            
            .telegram-icon {
                margin-right: 0;
                font-size: 1.8rem;
            }
        }