.glow-button {
    display: inline-block;
    background-color: #bf9a42;
    color: white;
    font-size: 0.875rem; /* text-sm */
    padding: 12px 24px; /* px-6 py-2 */
    border-radius: 8px; /* rounded-md */
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s;
}

.glow-button:hover {
    background-color: #eebd32;
    box-shadow: 0 0 20px rgba(238, 189, 50, 0.8);
}

.glow-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(238, 189, 50, 0.5), transparent);
    transform: translateX(-50%);
    animation: move 1s infinite;
}

@keyframes move {
    0% {
        top: -100%;
    }
    100% {
        top: 100%;
    }
}

