/* 
   Modern Buttons Design System for ZaapTV
   Glassmorphism + Dynamic Gradients + Micro-interactions
*/

/* 1. Estilo Base para todos os botões modernos */
.continue-watch-btn, 
.subscribe-btn, 
.btn-primary-modern,
.btn-danger-modern {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    text-decoration: none !important;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

/* 2. Botão de Continuar / Play (Blue Glow) */
.continue-watch-btn, .subscribe-btn {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
}

.continue-watch-btn:hover, .subscribe-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(79, 172, 254, 0.6);
    filter: brightness(1.1);
}

.continue-watch-btn:active, .subscribe-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* 3. Botão de Deletar / Remover (Red Pulse) */
.btn-danger-modern {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(245, 87, 108, 0.3);
}

.btn-danger-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 87, 108, 0.5);
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

/* 4. Efeito de Brilho Dinâmico (Inner Glow) */
.continue-watch-btn::after, .subscribe-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.6s ease;
}

.continue-watch-btn:hover::after, .subscribe-btn:hover::after {
    left: 120%;
}

/* 5. Animação de Pulso para itens assistidos recentemente */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(102, 126, 234, 0); }
    100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0); }
}

.pulse-modern {
    animation: pulse-glow 2s infinite;
}

/* 6. Estilização extra para ícones dentro dos botões */
.continue-watch-btn i, .subscribe-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.continue-watch-btn:hover i {
    transform: translateX(4px);
}
