/* Enhanced Video Skip Button */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    padding: 40px;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 50%, rgba(0,0,0,0.3) 100%);
    z-index: 10;
}

.skip-button {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    padding: 16px 32px;
    border-radius: 100px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.skip-button:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.skip-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.skip-arrow {
    font-size: 24px;
    color: var(--artemed-blue);
    transition: transform 0.3s ease;
}

.skip-button:hover .skip-arrow {
    transform: translateX(4px);
}

.video-duration {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin: 0;
    align-self: flex-start;
}

/* Pulse animation for attention */
@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 4px 30px rgba(123, 167, 204, 0.4); }
    100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); }
}

.skip-button {
    animation: pulse 2s ease-in-out infinite;
}

.skip-button:hover {
    animation: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .video-overlay {
        padding: 20px;
    }
    
    .skip-button {
        padding: 12px 24px;
    }
    
    .skip-text {
        font-size: 16px;
    }
}