html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    cursor: url('./images/hearts.png') 16 16, auto;
    color: #E44357;
}

canvas {
    width: 100%;
    height: auto;
    background: #111;
}

#valentineImage {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: auto;
    margin-top: 90px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Mute button styling */
#muteButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(228, 67, 87, 0.8);
    border: 2px solid #E44357;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(228, 67, 87, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

#muteButton:hover {
    background-color: rgba(228, 67, 87, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(228, 67, 87, 0.6);
}

#yesButton, #noButton {
    display: none;
    position: absolute;
    border: 3px solid #E44357;
    cursor: url('./images/hearts.png') 16 16, pointer;
    height: 60px;
    width: 120px;
    font-size: 20px;
    font-weight: bold;
    font-family: "Comic Sans MS", cursive, sans-serif;
    border-radius: 15px;
    top: calc(50% + 180px);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(228, 67, 87, 0.4);
}

#yesButton {
    background-color: #E44357;
    color: white;
    left: calc(50% - 140px);
    transform: translateX(0);
}

#yesButton:hover {
    background-color: #ff5a6e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(228, 67, 87, 0.6);
}

#noButton {
    background-color: transparent;
    color: #E44357;
    left: calc(50% + 20px);
    transform: translateX(0);
}

#noButton:hover {
    background-color: rgba(228, 67, 87, 0.1);
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    #valentineImage {
        width: 280px;
        margin-top: 70px;
    }
    
    #muteButton {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
    
    #yesButton, #noButton {
        height: 50px;
        width: 100px;
        font-size: 18px;
        top: calc(50% + 135px);
    }
    
    #yesButton {
        left: calc(50% - 120px);
    }
    
    #noButton {
        left: calc(50% + 20px);
    }
}
