/* Direct styling for the Watch Video button with improved mobile support */

/* Base button styling */
#watchVideoBtn {
    background-color: #fff;
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    position: relative;
    z-index: 100;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
    touch-action: manipulation; /* Optimize for touch */
    user-select: none; /* Prevent text selection */
}

#watchVideoBtn:hover, 
#watchVideoBtn:focus {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

#watchVideoBtn:active,
#watchVideoBtn.clicked {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    background-color: #f0f0f0;
}

#watchVideoBtn i {
    color: #FF0000;
    font-size: 1.1em;
    pointer-events: none; /* Prevent icon from capturing events */
}

/* Mobile responsive styles */
@media (max-width: 992px) {
    #watchVideoBtn {
        min-width: 180px;
        z-index: 100;
    }
}

@media (max-width: 576px) {
    #watchVideoBtn {
        width: 100%;
        max-width: 280px;
        padding: 12px 15px;
        font-size: 15px;
    }
}

@media (max-width: 393px) {
    #watchVideoBtn {
        padding: 10px 15px;
        font-size: 14px;
    }
}
