





#rotating-border {
position: absolute;
width: 100%;
height: 100%;
padding: 2px;
border-radius: 5px;
background: conic-gradient(
red,
orange,
yellow,
lime,
cyan,
blue,
violet,
white
);
background-size: 200% 200%;
animation: spinColors 40s linear infinite;
-webkit-mask:
linear-gradient(#000 0 0) content-box,
linear-gradient(#000 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
pointer-events: none;
}
#iframe-container {
position: relative;
width: 100%;
height: 100%;
border-radius: 15px;
overflow: hidden;
z-index: 2;
}
#iframe-container iframe {
width: 100%;
height: 100%;
border: none;
border-radius: 10px;
}
@keyframes spinColors {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.button-bar {
position: absolute;
top: 660px;
left: 120px;
display: flex;
gap: 790px;
z-index: 10;
}
.neon-btn {
padding: 7px 7px;
border: none;
border-radius: 10px;
background: linear-gradient(270deg, #ff00ff, #00ffff, #ffff00, #ff6600);
background-size: 400% 400%;
color: #fff;
font-size: 18px;
font-weight: bold;
cursor: pointer;
animation: moveGradient 6s linear infinite;
transition: transform 0.2s ease;
text-shadow: 0 0 8px rgba(0,0,0,0.6);
}
.neon-btn:hover {
transform: scale(1.1);
}
@keyframes moveGradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}