/* Add these styles to your existing style.css */

/* Video slide indicator */
.single-hero-slide[data-has-video="true"]::before {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 12px;
    height: 12px;
    background-color: #ff4444;
    border-radius: 50%;
    z-index: 100;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 10px rgba(255,68,68,0.5);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Optional: Show slide type badge */
.single-hero-slide[data-has-video="true"]::after {
    content: '🎬 VIDEO';
    position: absolute;
    bottom: 20px;
    right: 40px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.5px;
    z-index: 100;
    border-left: 3px solid #ff4444;
}

.single-hero-slide[data-has-video="false"]::after {
    content: '🖼️ IMAGE - ' attr(data-autoplay-speed) 'ms';
    position: absolute;
    bottom: 20px;
    right: 40px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.5px;
    z-index: 100;
    border-left: 3px solid #4CAF50;
}