#youtube-link {
display: flex;
justify-content: center;
align-items: center;
margin-top: 6px;
margin-bottom: 20px;
opacity: 0.85;
transition: all 0.3s ease;
}
#youtube-link svg {
fill: white;
filter: drop-shadow(0 0 4px rgba(255,255,255,0.3));
animation: ytPulse 3s ease-in-out infinite;
}
/* Pulse subtil (premium) */
@keyframes ytPulse {
0% {
transform: scale(1);
filter: drop-shadow(0 0 3px rgba(255,255,255,0.2));
}
50% {
transform: scale(1.08);
filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}
100% {
transform: scale(1);
filter: drop-shadow(0 0 3px rgba(255,255,255,0.2));
}
}
/* Hover = ușor mai prezent */
#youtube-link:hover svg {
transform: scale(1.15);
filter: drop-shadow(0 0 10px rgba(255,255,255,0.7));
animation-duration: 1.5s;
}.vc_custom_1771876096054{padding-right: 0px !important;padding-left: 0px !important;}