/* Neon Button Styles */
.neon-button {
display: inline-block;
padding: 15px 30px;
font-size: 18px;
color: #fff;
text-decoration: none;
overflow: hidden;
letter-spacing: 2px;
background-color: #111;
border-radius: 5px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
position: relative;
transition: background-color 0.3s;
cursor: pointer;
}
.neon-button a {
color: #fff;
text-decoration: none;
}
.neon-button::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, #00ff00, #ff00ff, #00ff00);
background-size: 200% 200%;
opacity: 0;
transition: opacity 0.3s, transform 0.3s;
z-index: -1;
}
.neon-button:hover {
background-color: transparent;
}
.neon-button:hover::before {
opacity: 1;
transform: scale(1.2);
}