octopus99.co
<>
.highlight-button-04 {
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
box-sizing: border-box;
width: 100%;
max-width: 600px;
height: 70px;
position: relative;
padding: 16px 32px;
font-size: 18px;
font-weight: bold;
color: white;
background: transparent;
border: none;
cursor: pointer;
border-radius: 50px;
overflow: hidden;
transform: scale(1.03);
margin: 0 auto;
transition: 0.5s;
}
.highlight-button-04:hover {
transform: scale(1.05);
}
.highlight-button-04::before {
content: "";
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: conic-gradient(
from 0deg,
#ff6b6b,
#4ecdc4,
#45b7d1,
#96ceb4,
#feca57,
#ff9ff3,
#ff6b6b
);
z-index: -2;
filter: blur(10px);
animation: rotate-bg 3s linear infinite;
}
.highlight-button-04::after {
content: "";
position: absolute;
inset: 3px;
background: black;
border-radius: 47px;
z-index: -1;
filter: blur(5px);
}
.gradient-text {
width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
position: relative;
z-index: 1;
color: transparent;
text-align: center;
background: conic-gradient(
from 0deg,
#ff6b6b,
#4ecdc4,
#45b7d1,
#96ceb4,
#feca57,
#ff9ff3,
#ff6b6b
);
-webkit-background-clip: text;
background-clip: text;
animation: hue-rotating 2s linear infinite;
white-space: nowrap;
}
@keyframes rotate-bg {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
@keyframes hue-rotating {
to { filter: hue-rotate(360deg); }
}
.highlight-button-04:active {
transform: scale(0.99);
}
>