.beautiful-button {
    position: relative;
    display: inline-block;
    background: #e6af18;
    color: white;
    font-family: "Segoe UI", sans-serif;
    font-weight: bold;
    font-size: 18px;
    border: none;
    border-radius: 30px;
    padding: 14px 28px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: button-shimmer 2s infinite;
    transition: all 0.3s ease-in-out;
}

.beautiful-button:hover {
    animation: button-particles 1s ease-in-out infinite;
    background: #626d43;
    transform: translateY(-2px);
}

.beautiful-button:active {
    transform: scale(0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes button-shimmer {
    0% {
        background-position: left top;
    }
    100% {
        background-position: right bottom;
    }
}

@keyframes button-particles {
    0% {
        background-position: left top;
    }
    100% {
        background-position: right bottom;
    }
}

/* Media query for smaller screens */
@media (max-width: 991px) {
    .beautiful-button {
        width: 90%;
        margin: 10px;
        padding: 12px 10px;
        border-radius: 10px;
        font-size: 16px;
    }
    
    .beautiful-button:hover {
        margin: 10px;
        background: #333333;
        transform: none;
    }
}
