/* Quick Watch Button Special Styles */
.quick-watch-btn {
    background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%);
    color: white;
    position: relative;
    z-index: 1;
    border: none;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Animated border effect */
.quick-watch-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, 
        #4776E6, #8E54E9, #E14594, #4776E6
    );
    background-size: 400% 100%;
    z-index: -1;
    border-radius: 12px;
    animation: borderFlow 8s linear infinite;
    filter: blur(1px);
}

/* Glowing effect */
.quick-watch-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: 12px;
    z-index: -2;
    filter: blur(15px);
    opacity: 0.7;
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

/* Icon styles */
.quick-watch-btn i {
    font-size: 1.2em;
    margin-right: 10px;
    animation: iconFloat 2s ease infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes borderFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

@keyframes pulseGlow {
    0% { 
        opacity: 0.5; 
        filter: blur(15px);
        transform: scale(1);
    }
    100% { 
        opacity: 0.8; 
        filter: blur(20px);
        transform: scale(1.05);
    }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Hover effects */
.quick-watch-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(71, 118, 230, 0.3),
        0 0 50px rgba(142, 84, 233, 0.2);
}

.quick-watch-btn:hover::before {
    animation: borderFlow 4s linear infinite;
}

.quick-watch-btn:hover::after {
    filter: blur(20px);
    opacity: 0.9;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .quick-watch-btn {
        font-size: 15px;
        padding: 14px 20px;
    }
    
    .quick-watch-btn i {
        font-size: 1.1em;
    }
} 