@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.08); }
100% { transform: scale(1); }
}
@keyframes shine {
0% { left: -75%; }
100% { left: 125%; }
}
.shiny-btn {
position: relative;
display: inline-block;
text-align: center;
padding: 12px 24px;
background: linear-gradient(45deg, #007fa0, #00bcd4);
color: #fff;
border-radius: 6px;
font-weight: bold;
overflow: hidden;
animation: pulse 1.8s infinite;
}
.shiny-btn::before {
content: "";
position: absolute;
top: 0;
left: -75%;
width: 50%;
height: 100%;
background: linear-gradient(
120deg,
rgba(255,255,255,0.2) 0%,
rgba(255,255,255,0.6) 50%,
rgba(255,255,255,0.2) 100%
);
transform: skewX(-20deg);
animation: shine 2.5s infinite;
}