.btn-colorful2 {
    background-color: #FFD700; /* Gold background (not green) */
    color: #000000; /* Black text for better contrast with gold */
    padding: 10px 20px;
    font-size: 12px;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease; /* Changed to 'all' for smoother transitions */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Added subtle shadow */
}

.btn-colorful2:hover {
    background-color: #FFC000; /* Darker gold on hover */
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-colorful2:active {
    transform: translateY(0); /* Push down effect when clicked */
    background-color: #E6B800; /* Even darker gold */
}