#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;
}
html, body {
margin: 0;
padding: 0;
width: 100%;
min-height: 100%;
overflow-x: hidden;
background: #000;
}
body {
font-family: 'Montserrat', sans-serif;
}
#video-wrapper {
position: fixed;
inset: 0;
width: 100vw;
height: 100vh;
overflow: hidden;
z-index: -2;
}
#bg-video {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
#pink-overlay {
position: fixed;
inset: 0;
z-index: -1;
pointer-events: none;
background:
linear-gradient(to bottom, rgba(0,0,0,0.10), rgba(0,0,0,0.18)),
radial-gradient(circle at center, rgba(255,20,147,0.14), transparent 70%);
}.vc_custom_1771876096054{padding-right: 0px !important;padding-left: 0px !important;}