@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

.play-now-button {
    font-family: 'Marcellus', serif !important; /* Marcellus font */
    font-size: 25px !important;
    font-weight: bold !important;
    color: #ffd700 !important; /* Gold color */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.play-now-button:hover {
    background-color: #ffd700 !important; /* Make background gold on hover */
    color: #8b0000 !important; /* Make font color red on hover */
    border-color: #8b0000 !important; /* Make border red on hover */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5) !important;
    transform: scale(1.1) !important; /* Enlarge button on hover */
    box-shadow: 0 0 15px #ffd700 !important; /* Add glow effect */
}